From 41b2e87a5e023e99a57bf9baaadea9512c7c0b1c Mon Sep 17 00:00:00 2001
From: CircleCI docs-deploy job Note: This is a very simple example of instrumenting crashes using the Glean SDK. There will be challenges to
using this approach in a production application that should be considered. For instance, when an app crashes it can be in an
unknown state and may not be able to do things like upload data to a server. The recommended way of instrumenting crashes with
-Android Components is called lib-crash, which takes into consideration things like multiple processes and persistence.
There are a few things that need to be installed in order to proceed, mainly Android Studio. If you include the Android SDK, Android Studio can take a little while to download and get installed. This walk-through assumes some knowledge of Android diff --git a/book/language-bindings/index.html b/book/language-bindings/index.html index e832ea1dda..d831f469a0 100644 --- a/book/language-bindings/index.html +++ b/book/language-bindings/index.html @@ -230,9 +230,7 @@
The Glean Kotlin SDK is primarily used for integration with Android applications. It assumes a common interaction model for mobile applications. It sends builtin pings at startup of the integrating application.
-It is available standalone as org.mozilla.telemetry:glean
-or via Android Components as org.mozilla.components:service-glean
-from the Mozilla Maven instance.
It is available standalone as org.mozilla.telemetry:glean
from the Mozilla Maven instance.
The Kotlin SDK can also be used from Java.
See Android for more on integrating Glean on Android.
implementation "org.mozilla.telemetry:glean:{latest-version}"
--The
-{latest-version}
placeholder in the above link should be replaced with the version of Android Components used by the project.
The Glean Kotlin SDK is released as part of android-components. Therefore, it follows android-components' versions. -The android-components release page can be used to determine the latest version.
-For example, if version 33.0.0 is used, then the include directive becomes:
-implementation "org.mozilla.components:service-glean:33.0.0"
+The {latest-version}
placeholder in the above link should be replaced with the latest version of the Glean SDK.
+For example, if version 63.0.0 is the latest version, then the include directive becomes:
+implementation "org.mozilla.telemetry:glean:63.0.0"
+
Size impact on the application APK
@@ -374,18 +372,14 @@ Python envs plugin
The Glean Gradle plugin is distributed through Mozilla's Maven, so we need to tell your build where to look for it by adding the following to the top of your build.gradle
:
-buildscript {
+buildscript {
repositories {
- // Include the next clause if you are tracking snapshots of android components
- maven {
- url "https://snapshots.maven.mozilla.org/maven2"
- }
maven {
url "https://maven.mozilla.org/maven2"
}
dependencies {
- classpath "org.mozilla.components:tooling-glean-gradle:{android-components-version}"
+ classpath "org.mozilla.telemetry:glean-gradle-plugin:{latest-version}"
}
}
}
@@ -393,7 +387,7 @@
Important
-As above, the {android-components-version}
placeholder in the above link should be replaced with the version number of android components used in your project.
+As above, the {latest-components-version}
placeholder in the above link should be replaced with the version number of the Glean SDK used in your project.
The JetBrains Python plugin is distributed in the Gradle plugin repository, so it can be included with:
plugins {
@@ -12866,9 +12860,7 @@ Kotlin
The Glean Kotlin SDK is primarily used for integration with Android applications.
It assumes a common interaction model for mobile applications.
It sends builtin pings at startup of the integrating application.
-It is available standalone as org.mozilla.telemetry:glean
-or via Android Components as org.mozilla.components:service-glean
-from the Mozilla Maven instance.
+It is available standalone as org.mozilla.telemetry:glean
from the Mozilla Maven instance.
The Kotlin SDK can also be used from Java.
See Android for more on integrating Glean on Android.
Swift
@@ -13026,7 +13018,7 @@ Note: This is a very simple example of instrumenting crashes using the Glean SDK. There will be challenges to
using this approach in a production application that should be considered. For instance, when an app crashes it can be in an
unknown state and may not be able to do things like upload data to a server. The recommended way of instrumenting crashes with
-Android Components is called lib-crash, which takes into consideration things like multiple processes and persistence.
+Android Components is called lib-crash, which takes into consideration things like multiple processes and persistence.
Before You Start
There are a few things that need to be installed in order to proceed, mainly Android Studio. If you include the Android SDK,
Android Studio can take a little while to download and get installed. This walk-through assumes some knowledge of Android
diff --git a/book/searchindex.js b/book/searchindex.js
index 13d38c317d..52b97937ae 100644
--- a/book/searchindex.js
+++ b/book/searchindex.js
@@ -1 +1 @@
-Object.assign(window.search, {"doc_urls":["index.html#introduction","index.html#sections","index.html#user-guides","index.html#api-reference","index.html#sdk-specific-information","index.html#appendix","index.html#contact","index.html#license","user/adding-glean-to-your-project/index.html#adding-glean-to-your-project","user/adding-glean-to-your-project/index.html#glean-integration-checklist","user/adding-glean-to-your-project/kotlin.html#adding-glean-to-your-kotlin-project","user/adding-glean-to-your-project/kotlin.html#setting-up-the-dependency","user/adding-glean-to-your-project/kotlin.html#dependency-for-local-testing","user/adding-glean-to-your-project/kotlin.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/swift.html#adding-glean-to-your-swift-project","user/adding-glean-to-your-project/swift.html#requirements","user/adding-glean-to-your-project/swift.html#setting-up-the-dependency","user/adding-glean-to-your-project/swift.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/python.html#adding-glean-to-your-python-project","user/adding-glean-to-your-project/python.html#setting-up-the-dependency","user/adding-glean-to-your-project/python.html#consuming-yaml-registry-files","user/adding-glean-to-your-project/python.html#automation-steps","user/adding-glean-to-your-project/python.html#parallelism","user/adding-glean-to-your-project/rust.html#adding-glean-to-your-rust-project","user/adding-glean-to-your-project/rust.html#setting-up-the-dependency","user/adding-glean-to-your-project/rust.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/rust.html#glean-build-is-in-beta","user/adding-glean-to-your-project/rust.html#include-the-generated-code","user/adding-glean-to-your-project/rust.html#use-the-metrics","user/adding-glean-to-your-project/javascript.html#adding-glean-to-your-javascript-project","user/adding-glean-to-your-project/javascript.html#requirements","user/adding-glean-to-your-project/javascript.html#browser-extension-specific-requirements","user/adding-glean-to-your-project/javascript.html#setting-up-the-dependency","user/adding-glean-to-your-project/javascript.html#browser-extension-security-considerations","user/adding-glean-to-your-project/javascript.html#common-import-errors","user/adding-glean-to-your-project/javascript.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/javascript.html#automation-steps","user/adding-glean-to-your-project/javascript.html#documentation","user/adding-glean-to-your-project/javascript.html#yaml-registry-files-linting","user/adding-glean-to-your-project/qt.html#adding-glean-to-your-qtqml-project","user/adding-glean-to-your-project/qt.html#requirements","user/adding-glean-to-your-project/qt.html#setting-up-the-dependency","user/adding-glean-to-your-project/qt.html#picking-the-correct-version","user/adding-glean-to-your-project/qt.html#consuming-yaml-registry-files","user/adding-glean-to-your-project/qt.html#make-sure-you-have-the-correct-glean_parser-version","user/adding-glean-to-your-project/qt.html#automation-steps","user/adding-glean-to-your-project/qt.html#documentation","user/adding-glean-to-your-project/qt.html#yaml-registry-files-linting","user/adding-glean-to-your-project/qt.html#debugging","user/adding-glean-to-your-project/qt.html#troubleshooting","user/adding-glean-to-your-project/qt.html#submitping-may-cause-crashes-when-debugging-ios-devices","user/adding-glean-to-your-project/server.html#adding-glean-to-your-server-application","user/adding-glean-to-your-project/server.html#differences-from-using-the-glean-sdk","user/adding-glean-to-your-project/server.html#when-to-use-server-side-collection","user/adding-glean-to-your-project/server.html#how-to-add-glean-server-side-collection-to-your-service","user/adding-glean-to-your-project/server.html#how-to-add-a-new-event-to-your-server-side-collection","user/adding-glean-to-your-project/server.html#technical-details---ingestion","user/adding-glean-to-your-project/enable-data-ingestion.html#enabling-data-to-be-ingested-by-the-data-platform","user/adding-glean-to-your-project/enable-data-ingestion.html#requirements","user/adding-glean-to-your-project/enable-data-ingestion.html#add-your-product-to-probe-scraper","user/adding-glean-to-your-project/enable-data-ingestion.html#validate-and-publish-metrics","user/adding-glean-to-your-project/enable-data-ingestion.html#add-your-library-to-probe-scraper","user/integrating-glean-for-product-managers.html#integrating-glean-for-product-managers","user/integrating-glean-for-product-managers.html#building-a-telemetry-plan","user/integrating-glean-for-product-managers.html#integrating-glean-into-your-product","user/integrating-glean-for-product-managers.html#optional-adapting-glean-to-your-platform","user/integrating-glean-for-product-managers.html#optional-designing-ping-submission","user/integrating-glean-for-product-managers.html#optional-new-metric-types","user/integrating-glean-for-product-managers.html#integrating-glean-into-glam","user/metrics/adding-new-metrics.html#adding-new-metrics","user/metrics/adding-new-metrics.html#table-of-contents","user/metrics/adding-new-metrics.html#process-overview","user/metrics/adding-new-metrics.html#choosing-a-metric-type","user/metrics/adding-new-metrics.html#is-it-a-single-measurement","user/metrics/adding-new-metrics.html#are-you-measuring-user-behavior","user/metrics/adding-new-metrics.html#are-you-counting-things","user/metrics/adding-new-metrics.html#are-you-measuring-time","user/metrics/adding-new-metrics.html#for-how-long-do-you-need-to-collect-this-data","user/metrics/adding-new-metrics.html#when-should-the-glean-sdk-automatically-clear-the-measurement","user/metrics/adding-new-metrics.html#a-lifetime-example","user/metrics/adding-new-metrics.html#what-if-none-of-these-lifetimes-are-appropriate","user/metrics/adding-new-metrics.html#what-should-this-new-metric-be-called","user/metrics/adding-new-metrics.html#reuse-names-from-other-applications","user/metrics/adding-new-metrics.html#make-names-unique-within-an-application","user/metrics/adding-new-metrics.html#be-as-specific-as-possible","user/metrics/adding-new-metrics.html#what-if-none-of-these-metric-types-is-the-right-fit","user/metrics/adding-new-metrics.html#how-do-i-make-sure-my-metric-is-working","user/metrics/adding-new-metrics.html#adding-the-metric-to-the-metricsyaml-file","user/metrics/adding-new-metrics.html#using-the-metric-from-your-code","user/metrics/adding-new-metrics.html#capitalization","user/metrics/adding-new-metrics.html#adding-new-metrics","user/metrics/adding-new-metrics.html#table-of-contents","user/metrics/adding-new-metrics.html#process-overview","user/metrics/adding-new-metrics.html#choosing-a-metric-type","user/metrics/adding-new-metrics.html#is-it-a-single-measurement","user/metrics/adding-new-metrics.html#are-you-measuring-user-behavior","user/metrics/adding-new-metrics.html#are-you-counting-things","user/metrics/adding-new-metrics.html#are-you-measuring-time","user/metrics/adding-new-metrics.html#for-how-long-do-you-need-to-collect-this-data","user/metrics/adding-new-metrics.html#when-should-the-glean-sdk-automatically-clear-the-measurement","user/metrics/adding-new-metrics.html#a-lifetime-example","user/metrics/adding-new-metrics.html#what-if-none-of-these-lifetimes-are-appropriate","user/metrics/adding-new-metrics.html#what-should-this-new-metric-be-called","user/metrics/adding-new-metrics.html#reuse-names-from-other-applications","user/metrics/adding-new-metrics.html#make-names-unique-within-an-application","user/metrics/adding-new-metrics.html#be-as-specific-as-possible","user/metrics/adding-new-metrics.html#what-if-none-of-these-metric-types-is-the-right-fit","user/metrics/adding-new-metrics.html#how-do-i-make-sure-my-metric-is-working","user/metrics/adding-new-metrics.html#adding-the-metric-to-the-metricsyaml-file","user/metrics/adding-new-metrics.html#using-the-metric-from-your-code","user/metrics/adding-new-metrics.html#capitalization","user/metrics/testing-metrics.html#unit-testing-glean-metrics","user/metrics/testing-metrics.html#example-of-using-the-test-api","user/metrics/testing-metrics.html#generating-testing-coverage-reports","user/metrics/testing-metrics.html#recording-coverage","user/metrics/testing-metrics.html#post-processing-the-results","user/metrics/testing-metrics.html#uploading-coverage","user/metrics/validation-checklist.html#validating-the-collected-data","user/metrics/validation-checklist.html#how-to-annotate-metrics-without-changing-the-source-code","user/metrics/validation-checklist.html#does-the-product-support-multiple-release-channels","user/metrics/error-reporting.html#error-reporting","user/collected-metrics/metrics.html#the-glean-javascript-sdk-provides-a-slightly-different-set-of-metrics-and-pings","user/collected-metrics/metrics.html#metrics","user/collected-metrics/metrics.html#pings","user/collected-metrics/metrics.html#all-pings","user/collected-metrics/metrics.html#baseline","user/collected-metrics/metrics.html#deletion-request","user/collected-metrics/metrics.html#metrics-1","user/pings/index.html#pings","user/pings/index.html#table-of-contents","user/pings/index.html#payload-structure","user/pings/index.html#the-ping_info-section","user/pings/index.html#the-client_info-section","user/pings/index.html#ping-submission","user/pings/index.html#url","user/pings/index.html#limitations","user/pings/index.html#submitted-headers","user/pings/custom.html#custom-pings","user/pings/custom.html#defining-a-custom-ping","user/pings/custom.html#sending-metrics-in-a-custom-ping","user/pings/custom.html#ping-metadata-must-be-loaded-before-sending","user/pings/custom.html#the-gleanrestarted-event","user/pings/custom.html#event-timestamps-throughout-application-restarts","user/pings/testing-custom-pings.html#testing-custom-pings","user/pings/testing-custom-pings.html#general-testing-strategy","user/pings/sent-by-glean.html#pings-sent-by-glean","user/pings/sent-by-glean.html#available-pings-per-platform","user/pings/sent-by-glean.html#defining-foreground-and-background-state","user/pings/sent-by-glean.html#foreground","user/pings/sent-by-glean.html#background","user/pings/sent-by-glean.html#foreground-1","user/pings/sent-by-glean.html#background-1","user/pings/baseline.html#the-baseline-ping","user/pings/baseline.html#description","user/pings/baseline.html#platform-availability","user/pings/baseline.html#scheduling","user/pings/baseline.html#contents","user/pings/baseline.html#querying-ping-contents","user/pings/baseline.html#example-baseline-ping","user/pings/deletion-request.html#the-deletion-request-ping","user/pings/deletion-request.html#description","user/pings/deletion-request.html#platform-availability","user/pings/deletion-request.html#scheduling","user/pings/deletion-request.html#contents","user/pings/deletion-request.html#example-deletion-request-ping","user/pings/events.html#the-events-ping","user/pings/events.html#description","user/pings/events.html#platform-availability","user/pings/events.html#scheduling","user/pings/events.html#python-and-javascript-caveats","user/pings/events.html#contents","user/pings/events.html#example-event-json","user/pings/metrics.html#the-metrics-ping","user/pings/metrics.html#description","user/pings/metrics.html#platform-availability","user/pings/metrics.html#scheduling","user/pings/metrics.html#contents","user/pings/metrics.html#querying-ping-contents","user/pings/metrics.html#scheduling-examples","user/pings/metrics.html#crossing-due-time-with-the-application-closed","user/pings/metrics.html#crossing-due-time-and-changing-timezones","user/pings/metrics.html#the-application-doesnt-run-in-a-week","user/pings/metrics.html#the-application-doesnt-run-for-a-week-and-when-its-finally-re-opened-the-timezone-has-changed","user/pings/metrics.html#the-user-changes-timezone-in-an-extreme-enough-fashion-that-they-cross-0400-twice-on-the-same-date","user/pings/ping-schedules-and-timings.html#ping-schedules-and-timings-overview","user/server-knobs/index.html#server-knobs-glean-data-control-plane","user/server-knobs/index.html#contents","user/server-knobs/metrics/index.html#data-control-plane-aka-server-knobs","user/server-knobs/metrics/index.html#contents","user/server-knobs/metrics/example-scenarios.html#example-scenarios","user/server-knobs/metrics/example-scenarios.html#scenario-1","user/server-knobs/metrics/example-scenarios.html#scenario-2","user/server-knobs/metrics/product-integration.html#product-integration","user/server-knobs/metrics/product-integration.html#desktop-feature-integration","user/server-knobs/metrics/product-integration.html#integration-option-1","user/server-knobs/metrics/product-integration.html#integration-option-2-advanced-use","user/server-knobs/metrics/product-integration.html#mobile-feature-integration","user/server-knobs/metrics/product-integration.html#integration-option-1-1","user/server-knobs/metrics/product-integration.html#integration-option-2-advanced-use-1","user/server-knobs/metrics/experimenter-configuration.html#experimenter-configuration","user/server-knobs/metrics/experimenter-configuration.html#example-configuration","user/server-knobs/metrics/advanced-topics.html#advanced-topics","user/server-knobs/metrics/advanced-topics.html#merging-of-configurations-from-multiple-features","user/server-knobs/metrics/advanced-topics.html#example","user/server-knobs/metrics/advanced-topics.html#merging-caveats","user/server-knobs/metrics/faq.html#frequently-asked-questions","user/server-knobs/pings/index.html#data-control-plane-aka-server-knobs","user/server-knobs/pings/index.html#contents","user/server-knobs/pings/product-integration.html#product-integration","user/server-knobs/pings/experimenter-configuration.html#experimenter-configuration","user/server-knobs/pings/experimenter-configuration.html#example-configuration","user/server-knobs/other/index.html#other-server-knobs","user/server-knobs/other/index.html#contents","user/server-knobs/other/max-events.html#max-events","user/server-knobs/other/max-events.html#example-configuration","user/debugging/index.html#debugging-products-using-the-glean-sdk","user/debugging/index.html#features","user/debugging/index.html#log-pings","user/debugging/index.html#debug-view-tag","user/debugging/index.html#source-tags","user/debugging/index.html#send-ping","user/debugging/index.html#debugging-methods","user/debugging/index.html#platform-specific-information","user/debugging/index.html#available-debugging-methods-per-platform","user/debugging/android.html#debugging-android-applications-using-the-glean-sdk","user/debugging/android.html#glean-kotlin-sdk-log-messages","user/debugging/android.html#android-studio","user/debugging/android.html#command-line","user/debugging/ios.html#debugging-ios-applications-using-the-glean-sdk","user/debugging/ios.html#enabling-debugging-features-in-ios-through-environment-variables","user/debugging/ios.html#enabling-debugging-features-in-ios-through-a-custom-url-scheme","user/debugging/ios.html#available-commands-and-query-format","user/debugging/ios.html#instrumenting-the-application-for-glean-swift-sdk-debug-functionality","user/debugging/ios.html#invoking-the-glean-ios-debug-commands","user/debugging/ios.html#glean-log-messages","user/debugging/python.html#debugging-python-applications-using-the-glean-sdk","user/debugging/python.html#sending-pings","user/debugging/python.html#logging-pings","user/debugging/python.html#simple-logging-api","user/debugging/python.html#flexible-logging-api","user/debugging/javascript.html#debugging-javascript-applications-using-gleanjs","user/debugging/javascript.html#debugging-in-the-browser","user/debugging/javascript.html#sending-pings","user/debugging/javascript.html#logging-pings","user/debugging/javascript.html#firefox","user/debugging/javascript.html#chromium-based-browsers","user/howto/index.html#how-tos","user/howto/index.html#server-knobs-walkthrough","user/howto/index.html#real-time-events","user/howto/index.html#telemetrydata-bug-investigation-recommendations","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#server-knobs-a-complete-walkthrough","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#purpose","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#audience","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#lets-get-started","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#experiment-setup","user/howto/real-time-events/real-time-events.html#real-time-events","user/howto/real-time-events/real-time-events.html#defining-real-time-events-within-the-glean-sdk","user/howto/real-time-events/real-time-events.html#methods-to-achieve-this-with-glean","user/howto/real-time-events/real-time-events.html#option-1-configuring-glean-to-send-all-events-as-soon-as-they-are-recorded","user/howto/real-time-events/real-time-events.html#option-2-using-a-custom-ping-and-submitting-it-immediately-pings-as-events","user/howto/real-time-events/real-time-events.html#considerations","user/howto/real-time-events/real-time-events.html#what-real-time-glean-eventspings-are--not","user/howto/real-time-events/real-time-events.html#more-network-requests","user/howto/real-time-events/real-time-events.html#more-ingestion-endpoint-traffic","user/howto/real-time-events/real-time-events.html#storage-space-requirements","user/howto/investigating-data-issues/investigating-data-issues.html#telemetrydata-bug-investigation-recommendations","user/howto/investigating-data-issues/investigating-data-issues.html#1-countries","user/howto/investigating-data-issues/investigating-data-issues.html#2-isp-internet-service-provider","user/howto/investigating-data-issues/investigating-data-issues.html#3-product-version--build-id","user/howto/investigating-data-issues/investigating-data-issues.html#4-glean-sdk-version","user/howto/investigating-data-issues/investigating-data-issues.html#5-other-library-version-changes","user/howto/investigating-data-issues/investigating-data-issues.html#6-osplatform-sdk-version","user/howto/investigating-data-issues/investigating-data-issues.html#7-time-differences-startend_time-vs-submission_timestamp","user/howto/investigating-data-issues/investigating-data-issues.html#8-glean-errors","user/howto/investigating-data-issues/investigating-data-issues.html#9-hardware-details-manufacturerversion-mobile-platforms-only","user/howto/investigating-data-issues/investigating-data-issues.html#10-ping-reason","reference/yaml/index.html#yaml-registry-format","reference/yaml/index.html#metricsyaml-file","reference/yaml/index.html#pingsyaml-file","reference/yaml/index.html#tagsyaml-file","reference/yaml/metrics.html#metrics-yaml-registry-format","reference/yaml/metrics.html#note-on-the-naming-of-these-files","reference/yaml/metrics.html#file-structure","reference/yaml/metrics.html#schema","reference/yaml/metrics.html#tags","reference/yaml/metrics.html#category","reference/yaml/metrics.html#name","reference/yaml/metrics.html#metric-parameters","reference/yaml/metrics.html#required-parameters","reference/yaml/metrics.html#optional-parameters","reference/yaml/pings.html#pings-yaml-registry-format","reference/yaml/pings.html#note-on-the-naming-of-these-files","reference/yaml/pings.html#file-structure","reference/yaml/pings.html#schema","reference/yaml/pings.html#name","reference/yaml/pings.html#reserved-ping-names","reference/yaml/pings.html#ping-parameters","reference/yaml/pings.html#required-parameters","reference/yaml/pings.html#optional-parameters","reference/yaml/tags.html#tags-yaml-registry-format","reference/yaml/tags.html#note-on-the-naming-of-these-files","reference/yaml/tags.html#file-structure","reference/yaml/tags.html#schema","reference/yaml/tags.html#name","reference/yaml/tags.html#tag-parameters","reference/yaml/tags.html#required-parameters","reference/general/index.html#the-general-api","reference/general/index.html#the-api","reference/general/initializing.html#initializing","reference/general/initializing.html#libraries-are-not-required-to-initialize-glean","reference/general/initializing.html#behavior-when-uninitialized","reference/general/initializing.html#behavior-once-initialized","reference/general/initializing.html#when-upload-is-enabled","reference/general/initializing.html#when-upload-is-disabled","reference/general/initializing.html#api","reference/general/initializing.html#gleaninitializeconfiguration","reference/general/initializing.html#consuming-glean-through-android-components","reference/general/initializing.html#custom-uploaders","reference/general/initializing.html#testing-api","reference/general/initializing.html#reference","reference/general/toggling-upload-status.html#toggling-upload-status","reference/general/toggling-upload-status.html#disabling-upload","reference/general/toggling-upload-status.html#enabling-upload","reference/general/toggling-upload-status.html#api","reference/general/toggling-upload-status.html#gleansetuploadenabledboolean","reference/general/toggling-upload-status.html#reference","reference/general/experiments-api.html#using-the-experiments-api","reference/general/experiments-api.html#recording-api","reference/general/experiments-api.html#setexperimentactive","reference/general/experiments-api.html#setexperimentinactive","reference/general/experiments-api.html#set-an-experimentation-identifier","reference/general/experiments-api.html#testing-api","reference/general/experiments-api.html#testisexperimentactive","reference/general/experiments-api.html#testgetexperimentdata","reference/general/experiments-api.html#testgetexperimentationid","reference/general/experiments-api.html#reference","reference/general/register-custom-pings.html#registering-custom-pings","reference/general/register-custom-pings.html#api","reference/general/register-custom-pings.html#registerpings","reference/general/shutdown.html#shut-down","reference/general/shutdown.html#how-the-glean-sdks-execute-tasks","reference/general/shutdown.html#api","reference/general/shutdown.html#shutdown","reference/general/shutdown.html#reference","reference/general/glean-event-listener.html#glean-event-listener","reference/general/glean-event-listener.html#summary","reference/general/glean-event-listener.html#usage","reference/general/glean-event-listener.html#examples","reference/debug/index.html#debugging","reference/debug/index.html#platform-specific-information","reference/debug/index.html#features","reference/debug/index.html#log-pings","reference/debug/index.html#debug-view-tag","reference/debug/index.html#source-tags","reference/debug/index.html#send-pings","reference/debug/logPings.html#log-pings","reference/debug/logPings.html#on-how-to-access-logs","reference/debug/logPings.html#limits","reference/debug/logPings.html#api","reference/debug/logPings.html#setlogpings","reference/debug/logPings.html#getlogpings","reference/debug/logPings.html#environment-variable","reference/debug/logPings.html#glean_log_pings","reference/debug/debugViewTag.html#debug-view-tag","reference/debug/debugViewTag.html#limits","reference/debug/debugViewTag.html#api","reference/debug/debugViewTag.html#setdebugviewtag","reference/debug/debugViewTag.html#getdebugviewtag","reference/debug/debugViewTag.html#environment-variable","reference/debug/debugViewTag.html#glean_debug_view_tag","reference/debug/sourceTags.html#source-tags","reference/debug/sourceTags.html#limits","reference/debug/sourceTags.html#api","reference/debug/sourceTags.html#setsourcetags","reference/debug/sourceTags.html#environment-variable","reference/debug/sourceTags.html#glean_source_tags","reference/metrics/index.html#metrics","reference/metrics/index.html#labeled-metrics","reference/metrics/index.html#label-format","reference/metrics/index.html#adding-or-changing-metric-types","reference/metrics/index.html#deprecated-metrics","reference/metrics/boolean.html#boolean","reference/metrics/boolean.html#recording-api","reference/metrics/boolean.html#set","reference/metrics/boolean.html#testing-api","reference/metrics/boolean.html#testgetvalue","reference/metrics/boolean.html#testgetnumrecordederrors","reference/metrics/boolean.html#metric-parameters","reference/metrics/boolean.html#extra-metric-parameters","reference/metrics/boolean.html#data-questions","reference/metrics/boolean.html#reference","reference/metrics/labeled_booleans.html#labeled-booleans","reference/metrics/labeled_booleans.html#recording-api","reference/metrics/labeled_booleans.html#set","reference/metrics/labeled_booleans.html#testing-api","reference/metrics/labeled_booleans.html#testgetvalue","reference/metrics/labeled_booleans.html#testgetnumrecordederrors","reference/metrics/labeled_booleans.html#metric-parameters","reference/metrics/labeled_booleans.html#extra-metric-parameters","reference/metrics/labeled_booleans.html#data-questions","reference/metrics/labeled_booleans.html#reference","reference/metrics/counter.html#counter","reference/metrics/counter.html#let-the-glean-metric-do-the-counting","reference/metrics/counter.html#recording-api","reference/metrics/counter.html#add","reference/metrics/counter.html#testing-api","reference/metrics/counter.html#testgetvalue","reference/metrics/counter.html#testgetnumrecordederrors","reference/metrics/counter.html#metric-parameters","reference/metrics/counter.html#extra-metric-parameters","reference/metrics/counter.html#data-questions","reference/metrics/counter.html#reference","reference/metrics/labeled_counters.html#labeled-counters","reference/metrics/labeled_counters.html#recording-api","reference/metrics/labeled_counters.html#add","reference/metrics/labeled_counters.html#testing-api","reference/metrics/labeled_counters.html#testgetvalue","reference/metrics/labeled_counters.html#testgetnumrecordederrors","reference/metrics/labeled_counters.html#metric-parameters","reference/metrics/labeled_counters.html#extra-metric-parameters","reference/metrics/labeled_counters.html#data-questions","reference/metrics/labeled_counters.html#reference","reference/metrics/string.html#strings","reference/metrics/string.html#important","reference/metrics/string.html#recording-api","reference/metrics/string.html#set","reference/metrics/string.html#testing-api","reference/metrics/string.html#testgetvalue","reference/metrics/string.html#testgetnumrecordederrors","reference/metrics/string.html#metric-parameters","reference/metrics/string.html#extra-metric-parameters","reference/metrics/string.html#data-questions","reference/metrics/string.html#reference","reference/metrics/labeled_strings.html#labeled-strings","reference/metrics/labeled_strings.html#recording-api","reference/metrics/labeled_strings.html#set","reference/metrics/labeled_strings.html#testing-api","reference/metrics/labeled_strings.html#testgetvalue","reference/metrics/labeled_strings.html#testgetnumrecordederrors","reference/metrics/labeled_strings.html#metric-parameters","reference/metrics/labeled_strings.html#extra-metric-parameters","reference/metrics/labeled_strings.html#data-questions","reference/metrics/labeled_strings.html#reference","reference/metrics/string_list.html#string-list","reference/metrics/string_list.html#recording-api","reference/metrics/string_list.html#add","reference/metrics/string_list.html#set","reference/metrics/string_list.html#testing-api","reference/metrics/string_list.html#testgetvalue","reference/metrics/string_list.html#testgetnumrecordederrors","reference/metrics/string_list.html#metric-parameters","reference/metrics/string_list.html#extra-metric-parameters","reference/metrics/string_list.html#data-questions","reference/metrics/string_list.html#reference","reference/metrics/timespan.html#timespan","reference/metrics/timespan.html#recording-api","reference/metrics/timespan.html#start","reference/metrics/timespan.html#stop","reference/metrics/timespan.html#cancel","reference/metrics/timespan.html#measure","reference/metrics/timespan.html#setrawnanos","reference/metrics/timespan.html#only-use-this-if-you-have-to","reference/metrics/timespan.html#these-are-different","reference/metrics/timespan.html#testing-api","reference/metrics/timespan.html#testgetvalue","reference/metrics/timespan.html#testgetnumrecordederrors","reference/metrics/timespan.html#metric-parameters","reference/metrics/timespan.html#extra-metric-parameters","reference/metrics/timespan.html#values-are-truncated","reference/metrics/timespan.html#data-questions","reference/metrics/timespan.html#reference","reference/metrics/timing_distribution.html#timing-distribution","reference/metrics/timing_distribution.html#recording-api","reference/metrics/timing_distribution.html#start","reference/metrics/timing_distribution.html#stopandaccumulate","reference/metrics/timing_distribution.html#accumulatesamples","reference/metrics/timing_distribution.html#accumulatesinglesample","reference/metrics/timing_distribution.html#measure","reference/metrics/timing_distribution.html#cancel","reference/metrics/timing_distribution.html#testing-api","reference/metrics/timing_distribution.html#testgetvalue","reference/metrics/timing_distribution.html#testgetnumrecordederrors","reference/metrics/timing_distribution.html#metric-parameters","reference/metrics/timing_distribution.html#extra-metric-parameters","reference/metrics/timing_distribution.html#limits","reference/metrics/timing_distribution.html#data-questions","reference/metrics/timing_distribution.html#reference","reference/metrics/timing_distribution.html#simulator","reference/metrics/labeled_timing_distributions.html#labeled-timing-distributions","reference/metrics/labeled_timing_distributions.html#recording-api","reference/metrics/labeled_timing_distributions.html#start","reference/metrics/labeled_timing_distributions.html#stopandaccumulate","reference/metrics/labeled_timing_distributions.html#cancel","reference/metrics/labeled_timing_distributions.html#accumulatesamples","reference/metrics/labeled_timing_distributions.html#accumulatesinglesample","reference/metrics/labeled_timing_distributions.html#testing-api","reference/metrics/labeled_timing_distributions.html#testgetvalue","reference/metrics/labeled_timing_distributions.html#testgetnumrecordederrors","reference/metrics/labeled_timing_distributions.html#metric-parameters","reference/metrics/labeled_timing_distributions.html#extra-metric-parameters","reference/metrics/labeled_timing_distributions.html#data-questions","reference/metrics/labeled_timing_distributions.html#limits","reference/metrics/labeled_timing_distributions.html#reference","reference/metrics/memory_distribution.html#memory-distribution","reference/metrics/memory_distribution.html#recording-api","reference/metrics/memory_distribution.html#accumulate","reference/metrics/memory_distribution.html#testing-api","reference/metrics/memory_distribution.html#testgetvalue","reference/metrics/memory_distribution.html#testgetnumrecordederrors","reference/metrics/memory_distribution.html#metric-parameters","reference/metrics/memory_distribution.html#extra-metric-parameters","reference/metrics/memory_distribution.html#limits","reference/metrics/memory_distribution.html#data-questions","reference/metrics/memory_distribution.html#reference","reference/metrics/memory_distribution.html#simulator","reference/metrics/labeled_memory_distributions.html#labeled-memory-distributions","reference/metrics/labeled_memory_distributions.html#recording-api","reference/metrics/labeled_memory_distributions.html#accumulate","reference/metrics/labeled_memory_distributions.html#testing-api","reference/metrics/labeled_memory_distributions.html#testgetvalue","reference/metrics/labeled_memory_distributions.html#testgetnumrecordederrors","reference/metrics/labeled_memory_distributions.html#metric-parameters","reference/metrics/labeled_memory_distributions.html#extra-metric-parameters","reference/metrics/labeled_memory_distributions.html#data-questions","reference/metrics/labeled_memory_distributions.html#limits","reference/metrics/labeled_memory_distributions.html#reference","reference/metrics/uuid.html#uuid","reference/metrics/uuid.html#recording-api","reference/metrics/uuid.html#generateandset","reference/metrics/uuid.html#set","reference/metrics/uuid.html#testing-api","reference/metrics/uuid.html#testgetvalue","reference/metrics/uuid.html#testgetnumrecordederrors","reference/metrics/uuid.html#metric-parameters","reference/metrics/uuid.html#extra-metric-parameters","reference/metrics/uuid.html#data-questions","reference/metrics/uuid.html#reference","reference/metrics/url.html#url","reference/metrics/url.html#important","reference/metrics/url.html#recording-api","reference/metrics/url.html#set","reference/metrics/url.html#seturl","reference/metrics/url.html#testing-api","reference/metrics/url.html#testgetvalue","reference/metrics/url.html#testgetnumrecordederrors","reference/metrics/url.html#metric-parameters","reference/metrics/url.html#note-on-data_sensitivity-of-url-metrics","reference/metrics/url.html#extra-metric-parameters","reference/metrics/url.html#data-questions","reference/metrics/datetime.html#datetime","reference/metrics/datetime.html#recording-api","reference/metrics/datetime.html#set","reference/metrics/datetime.html#testing-api","reference/metrics/datetime.html#testgetvalue","reference/metrics/datetime.html#testgetvalueasstring","reference/metrics/datetime.html#testgetnumrecordederrors","reference/metrics/datetime.html#metric-parameters","reference/metrics/datetime.html#extra-metric-parameters","reference/metrics/datetime.html#data-questions","reference/metrics/datetime.html#reference","reference/metrics/event.html#events","reference/metrics/event.html#immediate-submission-or-batching","reference/metrics/event.html#recording-api","reference/metrics/event.html#recordobject","reference/metrics/event.html#testing-api","reference/metrics/event.html#testgetvalue","reference/metrics/event.html#testgetnumrecordederrors","reference/metrics/event.html#metric-parameters","reference/metrics/event.html#extra-metric-parameters","reference/metrics/event.html#data-questions","reference/metrics/event.html#limits","reference/metrics/event.html#reference","reference/metrics/custom_distribution.html#custom-distribution","reference/metrics/custom_distribution.html#recording-api","reference/metrics/custom_distribution.html#accumulatesamples","reference/metrics/custom_distribution.html#accumulatesinglesample","reference/metrics/custom_distribution.html#testing-api","reference/metrics/custom_distribution.html#testgetvalue","reference/metrics/custom_distribution.html#testgetnumrecordederrors","reference/metrics/custom_distribution.html#metric-parameters","reference/metrics/custom_distribution.html#extra-metric-parameters","reference/metrics/custom_distribution.html#reference","reference/metrics/custom_distribution.html#simulator","reference/metrics/labeled_custom_distributions.html#labeled-custom-distributions","reference/metrics/labeled_custom_distributions.html#recording-api","reference/metrics/labeled_custom_distributions.html#accumulatesamples","reference/metrics/labeled_custom_distributions.html#accumulatesinglesample","reference/metrics/labeled_custom_distributions.html#testing-api","reference/metrics/labeled_custom_distributions.html#testgetvalue","reference/metrics/labeled_custom_distributions.html#testgetnumrecordederrors","reference/metrics/labeled_custom_distributions.html#metric-parameters","reference/metrics/labeled_custom_distributions.html#extra-metric-parameters","reference/metrics/labeled_custom_distributions.html#data-questions","reference/metrics/labeled_custom_distributions.html#limits","reference/metrics/labeled_custom_distributions.html#reference","reference/metrics/quantity.html#quantity","reference/metrics/quantity.html#do-not-use-quantity-for-counting","reference/metrics/quantity.html#recording-api","reference/metrics/quantity.html#set","reference/metrics/quantity.html#testing-api","reference/metrics/quantity.html#testgetvalue","reference/metrics/quantity.html#testgetnumrecordederrors","reference/metrics/quantity.html#metric-parameters","reference/metrics/quantity.html#extra-metric-parameters","reference/metrics/quantity.html#data-questions","reference/metrics/quantity.html#reference","reference/metrics/labeled_quantity.html#labeled-quantities","reference/metrics/labeled_quantity.html#do-not-use-labeled-quantity-metrics-for-counting","reference/metrics/labeled_quantity.html#recording-api","reference/metrics/labeled_quantity.html#set","reference/metrics/labeled_quantity.html#testing-api","reference/metrics/labeled_quantity.html#testgetvalue","reference/metrics/labeled_quantity.html#testgetnumrecordederrors","reference/metrics/labeled_quantity.html#metric-parameters","reference/metrics/labeled_quantity.html#extra-metric-parameters","reference/metrics/labeled_quantity.html#data-questions","reference/metrics/labeled_quantity.html#limits","reference/metrics/labeled_quantity.html#reference","reference/metrics/rate.html#rate","reference/metrics/rate.html#let-the-glean-metric-do-the-counting","reference/metrics/rate.html#recording-api","reference/metrics/rate.html#addtonumerator--addtodenominator","reference/metrics/rate.html#testing-api","reference/metrics/rate.html#testgetvalue","reference/metrics/rate.html#testgetnumrecordederrors","reference/metrics/rate.html#metric-parameters","reference/metrics/rate.html#external-denominators","reference/metrics/rate.html#data-questions","reference/metrics/rate.html#reference","reference/metrics/text.html#text","reference/metrics/text.html#important","reference/metrics/text.html#recording-api","reference/metrics/text.html#set","reference/metrics/text.html#testing-api","reference/metrics/text.html#testgetvalue","reference/metrics/text.html#testgetnumrecordederrors","reference/metrics/text.html#metric-parameters","reference/metrics/text.html#data-questions","reference/metrics/object.html#object","reference/metrics/object.html#recording-api","reference/metrics/object.html#set","reference/metrics/object.html#testing-api","reference/metrics/object.html#testgetvalue","reference/metrics/object.html#testgetnumrecordederrors","reference/metrics/object.html#metric-parameters","reference/metrics/object.html#example-object-metric-definition","reference/metrics/object.html#data-questions","reference/pings/index.html#pings","reference/pings/index.html#submission-api","reference/pings/index.html#submit","reference/pings/index.html#testing-api","reference/pings/index.html#getregisteredpingnames","reference/pings/index.html#testbeforenextsubmit","language-bindings/index.html#overview","language-bindings/index.html#rust-core-based-sdks","language-bindings/index.html#rust","language-bindings/index.html#kotlin","language-bindings/index.html#swift","language-bindings/index.html#python","language-bindings/index.html#javascript-core-based-sdks","language-bindings/index.html#javascript","language-bindings/index.html#qml","language-bindings/android/index.html#android-specific-information","language-bindings/android/android-build-configuration-options.html#android-build-script-configuration-options","language-bindings/android/android-build-configuration-options.html#gleanbuilddate","language-bindings/android/android-build-configuration-options.html#allowmetricsfromaar","language-bindings/android/android-build-configuration-options.html#gleangeneratemarkdowndocs","language-bindings/android/android-build-configuration-options.html#gleandocsdirectory","language-bindings/android/android-build-configuration-options.html#gleanyamlfiles","language-bindings/android/android-build-configuration-options.html#gleanexpirebyversion","language-bindings/android/android-build-configuration-options.html#gleanpythonenvdir","language-bindings/android/android-offline-builds.html#offline-builds-of-android-applications-that-use-glean","language-bindings/android/android-offline-builds.html#provide-an-externally-managed-virtualenv","language-bindings/android/android-offline-builds.html#provide-a-python-interpreter-and-the-required-wheels","language-bindings/android/instrument-android-crashes-example.html#instrumenting-android-crashes-with-the-glean-sdk","language-bindings/android/instrument-android-crashes-example.html#before-you-start","language-bindings/android/instrument-android-crashes-example.html#setup-build-configuration","language-bindings/android/instrument-android-crashes-example.html#add-a-custom-metric","language-bindings/android/instrument-android-crashes-example.html#add-a-custom-ping","language-bindings/android/instrument-android-crashes-example.html#instrument-the-app-to-record-the-event","language-bindings/android/instrument-android-crashes-example.html#next-steps","language-bindings/ios/index.html#ios-specific-information","language-bindings/ios/ios-build-configuration-options.html#ios-build-script-configuration-options","language-bindings/ios/ios-build-configuration-options.html#--output----o-path","language-bindings/ios/ios-build-configuration-options.html#--build-date----b","language-bindings/ios/ios-build-configuration-options.html#--expire-by-version","language-bindings/ios/ios-build-configuration-options.html#--markdown----m","language-bindings/ios/ios-build-configuration-options.html#--glean-namespace----g","language-bindings/javascript/index.html#glean-javascript-sdk","language-bindings/javascript/cli.html#command-line-interface","language-bindings/javascript/cli.html#customizing-virtual-environment","language-bindings/javascript/cli.html#what-if-the-glean-command-is-called-from-inside-an-active-virtual-environment","language-bindings/javascript/cli.html#preventing-automatic-installation-of-glean_parser","language-bindings/javascript/plugins/index.html#plugins","language-bindings/javascript/plugins/index.html#on-writing-your-own-plugins","language-bindings/javascript/plugins/index.html#available-plugins","language-bindings/javascript/plugins/index.html#pingencryptionplugin","language-bindings/javascript/plugins/encryption.html#pingencryptionplugin","language-bindings/javascript/plugins/encryption.html#requesting-an-encryption-key","language-bindings/javascript/plugins/encryption.html#usage","language-bindings/javascript/plugins/encryption.html#entry-point","language-bindings/javascript/plugins/encryption.html#instantiating","appendix/glossary.html#glossary","appendix/glossary.html#glean","appendix/glossary.html#glean-pipeline","appendix/glossary.html#glean-sdks","appendix/glossary.html#glean-sdks-book","appendix/glossary.html#glean-tools","appendix/glossary.html#metric","appendix/glossary.html#ping","appendix/glossary.html#submission","appendix/glossary.html#measurement-window","appendix/glossary.html#this-week-in-glean-twig","appendix/changelog/index.html#changelog","appendix/changelog/sdk.html#unreleased-changes","appendix/changelog/sdk.html#v6300-2024-11-28","appendix/changelog/sdk.html#v6200-2024-11-05","appendix/changelog/sdk.html#v6120-2024-10-07","appendix/changelog/sdk.html#v6110-2024-09-24","appendix/changelog/sdk.html#v6100-2024-08-21","appendix/changelog/sdk.html#v6050-2024-08-06","appendix/changelog/sdk.html#v6040-2024-07-23","appendix/changelog/sdk.html#v6030-2024-05-31","appendix/changelog/sdk.html#v6020-2024-05-23","appendix/changelog/sdk.html#v6011-2024-05-31","appendix/changelog/sdk.html#v6010-2024-05-06","appendix/changelog/sdk.html#v6001-2024-05-31","appendix/changelog/sdk.html#v6000-2024-04-22","appendix/changelog/sdk.html#v5900-2024-03-28","appendix/changelog/sdk.html#v5810-2024-03-12","appendix/changelog/sdk.html#v5800-2024-02-29","appendix/changelog/sdk.html#v5700-2024-02-12","appendix/changelog/sdk.html#v5610-2024-01-16","appendix/changelog/sdk.html#v5600-2023-11-30","appendix/changelog/sdk.html#v5500-2023-10-23","appendix/changelog/sdk.html#v5400-2023-09-12","appendix/changelog/sdk.html#v5320-2023-08-02","appendix/changelog/sdk.html#v5310-2023-06-28","appendix/changelog/sdk.html#v5300-2023-06-07","appendix/changelog/sdk.html#v5270-2023-05-10","appendix/changelog/sdk.html#v5260-2023-04-20","appendix/changelog/sdk.html#v5250-2023-04-11","appendix/changelog/sdk.html#v5243-2023-03-24","appendix/changelog/sdk.html#v5242-2023-03-15","appendix/changelog/sdk.html#v5241-2023-03-10","appendix/changelog/sdk.html#v5240-2023-03-09","appendix/changelog/sdk.html#v5231-2023-03-01","appendix/changelog/sdk.html#v5230-2023-02-23","appendix/changelog/sdk.html#v5220-2023-01-30","appendix/changelog/sdk.html#v5211-2023-01-26","appendix/changelog/sdk.html#v5210-2023-01-26","appendix/changelog/sdk.html#v5201-2023-01-19","appendix/changelog/sdk.html#v5200-2022-12-13","appendix/changelog/sdk.html#v5183-2022-11-25","appendix/changelog/sdk.html#v5182-2022-11-17","appendix/changelog/sdk.html#v5181-2022-11-15","appendix/changelog/sdk.html#v5180-2022-11-03","appendix/changelog/sdk.html#v5170-2022-10-25","appendix/changelog/sdk.html#v5160-2022-10-24","appendix/changelog/sdk.html#v5150-2022-10-18","appendix/changelog/sdk.html#v5140-2022-10-04","appendix/changelog/sdk.html#v5130-2022-09-28","appendix/changelog/sdk.html#v5120-2022-09-08","appendix/changelog/sdk.html#v5110-2022-08-08","appendix/changelog/sdk.html#v5101-2022-07-26","appendix/changelog/sdk.html#v5100-2022-07-22","appendix/changelog/sdk.html#v5014-2022-08-01","appendix/changelog/sdk.html#v5013-2022-07-26","appendix/changelog/sdk.html#v5012-2022-07-08","appendix/changelog/sdk.html#v5011-2022-06-17","appendix/changelog/sdk.html#v5010-2022-06-15","appendix/changelog/sdk.html#v5001-2022-05-25","appendix/changelog/sdk.html#v5000-2022-05-20","appendix/changelog/sdk.html#v4420-2022-05-16","appendix/changelog/sdk.html#v4411-2022-04-14","appendix/changelog/sdk.html#v4410-2022-04-06","appendix/changelog/sdk.html#v4400-2022-02-09","appendix/changelog/sdk.html#v4302-2022-01-17","appendix/changelog/sdk.html#v4301-2022-01-17","appendix/changelog/sdk.html#v4300-2022-01-17","appendix/changelog/sdk.html#v4232-2021-12-15","appendix/changelog/sdk.html#v4231-2021-12-07","appendix/changelog/sdk.html#v4230-2021-12-07","appendix/changelog/sdk.html#v4220-2021-11-03","appendix/changelog/sdk.html#v4210-2021-10-18","appendix/changelog/sdk.html#v4201-2021-10-11","appendix/changelog/sdk.html#v4200-2021-10-06","appendix/changelog/sdk.html#v4111-2021-09-29","appendix/changelog/sdk.html#v4110-2021-09-16","appendix/changelog/sdk.html#v4100-2021-09-13","appendix/changelog/sdk.html#v4020-2021-09-08","appendix/changelog/sdk.html#v4011-2021-09-02","appendix/changelog/sdk.html#v4010-2021-08-25","appendix/changelog/sdk.html#v4000-2021-07-28","appendix/changelog/sdk.html#v3910-2021-07-26","appendix/changelog/sdk.html#v3904-2021-07-26","appendix/changelog/sdk.html#v3903-2021-06-09","appendix/changelog/sdk.html#v3902-2021-06-07","appendix/changelog/sdk.html#v3901-2021-06-04","appendix/changelog/sdk.html#v3900-2021-05-31","appendix/changelog/sdk.html#v3801-2021-05-17","appendix/changelog/sdk.html#v3800-2021-05-12","appendix/changelog/sdk.html#v3700-2021-04-30","appendix/changelog/sdk.html#v3601-2021-04-09","appendix/changelog/sdk.html#v3600-2021-03-16","appendix/changelog/sdk.html#v3500-2021-02-22","appendix/changelog/sdk.html#v3410-2021-02-04","appendix/changelog/sdk.html#v3400-2021-01-29","appendix/changelog/sdk.html#v33103-2021-01-18","appendix/changelog/sdk.html#v33102-2021-01-15","appendix/changelog/sdk.html#v33101-2021-01-06","appendix/changelog/sdk.html#v33100-2021-01-06","appendix/changelog/sdk.html#v3391-2020-12-17","appendix/changelog/sdk.html#v3390-2020-12-15","appendix/changelog/sdk.html#v3380-2020-12-10","appendix/changelog/sdk.html#v3370-2020-12-07","appendix/changelog/sdk.html#v3360-2020-12-02","appendix/changelog/sdk.html#v3350-2020-12-01","appendix/changelog/sdk.html#v3340-2020-11-17","appendix/changelog/sdk.html#v3330-2020-11-12","appendix/changelog/sdk.html#v3320-2020-11-10","appendix/changelog/sdk.html#v3312-2020-11-04","appendix/changelog/sdk.html#v3311-2020-11-04","appendix/changelog/sdk.html#v3310-2020-11-04","appendix/changelog/sdk.html#v3304-2020-09-28","appendix/changelog/sdk.html#v3303-2020-09-25","appendix/changelog/sdk.html#v3302-2020-09-25","appendix/changelog/sdk.html#v3301-2020-09-24","appendix/changelog/sdk.html#v3300-2020-09-22","appendix/changelog/sdk.html#v3241-2020-10-01","appendix/changelog/sdk.html#v3240-2020-09-18","appendix/changelog/sdk.html#v3232-2020-09-11","appendix/changelog/sdk.html#v3231-2020-09-09","appendix/changelog/sdk.html#v3230-2020-08-27","appendix/changelog/sdk.html#v3220-2020-08-25","appendix/changelog/sdk.html#v3211-2020-08-24","appendix/changelog/sdk.html#v3210-2020-08-17","appendix/changelog/sdk.html#v3200-2020-08-03","appendix/changelog/sdk.html#v3160-2020-07-24","appendix/changelog/sdk.html#v3150-2020-07-22","appendix/changelog/sdk.html#v3141-2020-07-20","appendix/changelog/sdk.html#v3140-2020-07-16","appendix/changelog/sdk.html#v3130-2020-07-10","appendix/changelog/sdk.html#v3123-2020-06-29","appendix/changelog/sdk.html#v3122-2020-06-26","appendix/changelog/sdk.html#v3121-2020-06-25","appendix/changelog/sdk.html#v3120-2020-06-24","appendix/changelog/sdk.html#v3112-2020-06-23","appendix/changelog/sdk.html#v3111-2020-06-12","appendix/changelog/sdk.html#v3110-2020-06-11","appendix/changelog/sdk.html#v3102-2020-05-29","appendix/changelog/sdk.html#v3101-2020-05-29","appendix/changelog/sdk.html#v3100-2020-05-28","appendix/changelog/sdk.html#v3010-2020-05-22","appendix/changelog/sdk.html#v3000-2020-05-13","appendix/changelog/sdk.html#v2912-2021-01-26","appendix/changelog/sdk.html#v2911-2020-05-22","appendix/changelog/sdk.html#v2910-2020-05-11","appendix/changelog/sdk.html#v2900-2020-05-05","appendix/changelog/sdk.html#v2800-2020-04-23","appendix/changelog/sdk.html#v2710-2020-04-09","appendix/changelog/sdk.html#v2700-2020-04-08","appendix/changelog/sdk.html#v2600-2020-03-27","appendix/changelog/sdk.html#v2510-2020-02-26","appendix/changelog/sdk.html#v2500-2020-02-17","appendix/changelog/sdk.html#v2420-2020-02-11","appendix/changelog/sdk.html#v2410-2020-01-16","appendix/changelog/sdk.html#v2400-2020-01-14","appendix/changelog/sdk.html#v2301-2020-01-08","appendix/changelog/sdk.html#v2300-2020-01-07","appendix/changelog/sdk.html#v2210-2019-12-17","appendix/changelog/sdk.html#v2200-2019-12-05","appendix/changelog/sdk.html#v2130-2019-12-03","appendix/changelog/sdk.html#v2120-2019-11-21","appendix/changelog/sdk.html#v2111-2019-11-20","appendix/changelog/sdk.html#v2110-2019-11-20","appendix/changelog/sdk.html#v2100-2019-11-18","appendix/changelog/sdk.html#v2020-2019-11-11","appendix/changelog/sdk.html#v2010-2019-11-11","appendix/changelog/sdk.html#v2000-2019-11-11","appendix/changelog/sdk.html#v1910-2019-10-29","appendix/changelog/sdk.html#v1900-2019-10-22","appendix/changelog/sdk.html#v001-testing6-2019-10-18","appendix/changelog/sdk.html#v001-testing5-2019-10-10","appendix/changelog/sdk.html#v001-testing4-2019-10-09","appendix/changelog/sdk.html#v001-testing3-2019-10-08","appendix/changelog/sdk.html#v001-testing2-2019-10-07","appendix/changelog/sdk.html#v001-testing1-2019-10-02","appendix/changelog/sdk.html#general","appendix/changelog/js.html#unreleased-changes","appendix/changelog/js.html#v503-2024-08-02","appendix/changelog/js.html#v502-2024-05-23","appendix/changelog/js.html#v501-2024-04-30","appendix/changelog/js.html#v500-2024-03-25","appendix/changelog/js.html#v500-pre0-2024-03-21","appendix/changelog/js.html#v410-pre0-2024-03-05","appendix/changelog/js.html#v400-2024-01-24","appendix/changelog/js.html#v400-pre3-2023-12-22","appendix/changelog/js.html#v400-pre2-2023-12-06","appendix/changelog/js.html#v400-pre1-2023-12-01","appendix/changelog/js.html#v400-pre0-2023-11-27","appendix/changelog/js.html#v300-2023-11-16","appendix/changelog/js.html#v300-pre1-2023-11-15","appendix/changelog/js.html#v300-pre0-2023-11-10","appendix/changelog/js.html#v205-2023-10-16","appendix/changelog/js.html#v204-2023-10-10","appendix/changelog/js.html#v203-2023-09-27","appendix/changelog/js.html#v202-2023-09-14","appendix/changelog/js.html#v201-2023-08-11","appendix/changelog/js.html#v200-2023-08-03","appendix/changelog/js.html#v140-2023-05-10","appendix/changelog/js.html#v130-2022-10-18","appendix/changelog/js.html#v120-2022-09-21","appendix/changelog/js.html#v110-2022-07-18","appendix/changelog/js.html#v100-2022-03-17","appendix/changelog/js.html#v0320-2022-03-01","appendix/changelog/js.html#v0310-2022-01-25","appendix/changelog/js.html#v0300-2022-01-10","appendix/changelog/js.html#v0290-2022-01-04","appendix/changelog/js.html#v0280-2021-12-08","appendix/changelog/js.html#v0270-2021-11-22","appendix/changelog/js.html#v0260-2021-11-19","appendix/changelog/js.html#v0250-2021-11-15","appendix/changelog/js.html#v0240-2021-11-04","appendix/changelog/js.html#v0230-2021-10-12","appendix/changelog/js.html#v0220-2021-10-06","appendix/changelog/js.html#v0211-2021-09-30","appendix/changelog/js.html#v0210-2021-09-30","appendix/changelog/js.html#v0200-2021-09-17","appendix/changelog/js.html#v0190-2021-09-03","appendix/changelog/js.html#v0181-2021-07-22","appendix/changelog/js.html#v0180-2021-07-20","appendix/changelog/js.html#v0170-2021-07-16","appendix/changelog/js.html#v0160-2021-07-06","appendix/changelog/js.html#v0150-2021-06-03","appendix/changelog/js.html#v0141-2021-05-21","appendix/changelog/js.html#v0140-2021-05-19","appendix/changelog/js.html#v0130-2021-05-18","appendix/changelog/js.html#v0120-2021-05-11","appendix/changelog/js.html#v0110-2021-05-03","appendix/changelog/js.html#v0102-2021-04-26","appendix/changelog/js.html#v0101-2021-04-26","appendix/changelog/js.html#v0100-2021-04-20","appendix/changelog/js.html#v092-2021-04-19","appendix/changelog/js.html#v091-2021-04-19","appendix/changelog/js.html#v090-2021-04-19","appendix/changelog/js.html#v081-2021-04-14","appendix/changelog/js.html#v080-2021-04-13","appendix/changelog/js.html#v070-2021-03-26","appendix/changelog/js.html#v061-2021-03-22","appendix/changelog/js.html#v060-2021-03-22","appendix/changelog/js.html#v050-2021-03-18","appendix/changelog/js.html#v040-2021-03-10","appendix/changelog/js.html#v030-2021-02-24","appendix/changelog/js.html#v020-2021-02-23","appendix/changelog/js.html#v011-2021-02-17","appendix/changelog/js.html#v010-2021-02-17","appendix/twig.html#this-week-in-glean-twig","appendix/twig.html#blog-posts","appendix/contribution-guidelines.html#contribution-guidelines","appendix/contribution-guidelines.html#table-of-contents","appendix/contribution-guidelines.html#where-to-add-new-content","appendix/contribution-guidelines.html#overview","appendix/contribution-guidelines.html#user-guides","appendix/contribution-guidelines.html#api-reference","appendix/contribution-guidelines.html#sdk-specific-information","appendix/contribution-guidelines.html#appendix","appendix/contribution-guidelines.html#in-which-format-to-present-content","appendix/contribution-guidelines.html#general-guidelines","appendix/contribution-guidelines.html#custom-elements"],"index":{"documentStore":{"docInfo":{"0":{"body":106,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":33,"breadcrumbs":8,"title":4},"100":{"body":275,"breadcrumbs":6,"title":2},"101":{"body":50,"breadcrumbs":7,"title":3},"102":{"body":6,"breadcrumbs":7,"title":3},"103":{"body":60,"breadcrumbs":7,"title":3},"104":{"body":71,"breadcrumbs":9,"title":5},"105":{"body":37,"breadcrumbs":6,"title":2},"106":{"body":26,"breadcrumbs":9,"title":5},"107":{"body":64,"breadcrumbs":8,"title":4},"108":{"body":57,"breadcrumbs":8,"title":4},"109":{"body":43,"breadcrumbs":7,"title":3},"11":{"body":116,"breadcrumbs":7,"title":3},"110":{"body":155,"breadcrumbs":5,"title":1},"111":{"body":64,"breadcrumbs":7,"title":4},"112":{"body":142,"breadcrumbs":7,"title":4},"113":{"body":23,"breadcrumbs":7,"title":4},"114":{"body":31,"breadcrumbs":5,"title":2},"115":{"body":105,"breadcrumbs":6,"title":3},"116":{"body":29,"breadcrumbs":5,"title":2},"117":{"body":179,"breadcrumbs":6,"title":3},"118":{"body":34,"breadcrumbs":9,"title":6},"119":{"body":28,"breadcrumbs":8,"title":5},"12":{"body":44,"breadcrumbs":7,"title":3},"120":{"body":123,"breadcrumbs":5,"title":2},"121":{"body":9,"breadcrumbs":14,"title":9},"122":{"body":24,"breadcrumbs":6,"title":1},"123":{"body":5,"breadcrumbs":6,"title":1},"124":{"body":132,"breadcrumbs":6,"title":1},"125":{"body":165,"breadcrumbs":6,"title":1},"126":{"body":76,"breadcrumbs":7,"title":2},"127":{"body":424,"breadcrumbs":6,"title":1},"128":{"body":36,"breadcrumbs":2,"title":1},"129":{"body":67,"breadcrumbs":3,"title":2},"13":{"body":164,"breadcrumbs":10,"title":6},"130":{"body":84,"breadcrumbs":3,"title":2},"131":{"body":160,"breadcrumbs":3,"title":2},"132":{"body":319,"breadcrumbs":3,"title":2},"133":{"body":18,"breadcrumbs":3,"title":2},"134":{"body":54,"breadcrumbs":2,"title":1},"135":{"body":122,"breadcrumbs":2,"title":1},"136":{"body":182,"breadcrumbs":3,"title":2},"137":{"body":65,"breadcrumbs":7,"title":2},"138":{"body":74,"breadcrumbs":8,"title":3},"139":{"body":12,"breadcrumbs":9,"title":4},"14":{"body":33,"breadcrumbs":8,"title":4},"140":{"body":61,"breadcrumbs":10,"title":5},"141":{"body":24,"breadcrumbs":7,"title":2},"142":{"body":259,"breadcrumbs":10,"title":5},"143":{"body":13,"breadcrumbs":7,"title":3},"144":{"body":52,"breadcrumbs":7,"title":3},"145":{"body":90,"breadcrumbs":7,"title":3},"146":{"body":30,"breadcrumbs":8,"title":4},"147":{"body":8,"breadcrumbs":8,"title":4},"148":{"body":14,"breadcrumbs":5,"title":1},"149":{"body":52,"breadcrumbs":5,"title":1},"15":{"body":2,"breadcrumbs":5,"title":1},"150":{"body":19,"breadcrumbs":5,"title":1},"151":{"body":50,"breadcrumbs":5,"title":1},"152":{"body":0,"breadcrumbs":8,"title":2},"153":{"body":15,"breadcrumbs":7,"title":1},"154":{"body":10,"breadcrumbs":8,"title":2},"155":{"body":57,"breadcrumbs":7,"title":1},"156":{"body":15,"breadcrumbs":7,"title":1},"157":{"body":32,"breadcrumbs":9,"title":3},"158":{"body":64,"breadcrumbs":9,"title":3},"159":{"body":0,"breadcrumbs":10,"title":3},"16":{"body":34,"breadcrumbs":7,"title":3},"160":{"body":84,"breadcrumbs":8,"title":1},"161":{"body":11,"breadcrumbs":9,"title":2},"162":{"body":13,"breadcrumbs":8,"title":1},"163":{"body":9,"breadcrumbs":8,"title":1},"164":{"body":59,"breadcrumbs":11,"title":4},"165":{"body":0,"breadcrumbs":8,"title":2},"166":{"body":20,"breadcrumbs":7,"title":1},"167":{"body":10,"breadcrumbs":8,"title":2},"168":{"body":45,"breadcrumbs":7,"title":1},"169":{"body":33,"breadcrumbs":9,"title":3},"17":{"body":194,"breadcrumbs":10,"title":6},"170":{"body":74,"breadcrumbs":7,"title":1},"171":{"body":73,"breadcrumbs":9,"title":3},"172":{"body":0,"breadcrumbs":8,"title":2},"173":{"body":91,"breadcrumbs":7,"title":1},"174":{"body":10,"breadcrumbs":8,"title":2},"175":{"body":172,"breadcrumbs":7,"title":1},"176":{"body":39,"breadcrumbs":7,"title":1},"177":{"body":11,"breadcrumbs":9,"title":3},"178":{"body":0,"breadcrumbs":8,"title":2},"179":{"body":42,"breadcrumbs":11,"title":5},"18":{"body":28,"breadcrumbs":8,"title":4},"180":{"body":45,"breadcrumbs":11,"title":5},"181":{"body":45,"breadcrumbs":10,"title":4},"182":{"body":45,"breadcrumbs":16,"title":10},"183":{"body":120,"breadcrumbs":17,"title":11},"184":{"body":249,"breadcrumbs":11,"title":4},"185":{"body":96,"breadcrumbs":12,"title":6},"186":{"body":15,"breadcrumbs":7,"title":1},"187":{"body":95,"breadcrumbs":16,"title":6},"188":{"body":16,"breadcrumbs":11,"title":1},"189":{"body":0,"breadcrumbs":14,"title":2},"19":{"body":126,"breadcrumbs":7,"title":3},"190":{"body":150,"breadcrumbs":14,"title":2},"191":{"body":79,"breadcrumbs":14,"title":2},"192":{"body":29,"breadcrumbs":14,"title":2},"193":{"body":12,"breadcrumbs":15,"title":3},"194":{"body":71,"breadcrumbs":15,"title":3},"195":{"body":181,"breadcrumbs":17,"title":5},"196":{"body":0,"breadcrumbs":15,"title":3},"197":{"body":71,"breadcrumbs":15,"title":3},"198":{"body":138,"breadcrumbs":17,"title":5},"199":{"body":42,"breadcrumbs":14,"title":2},"2":{"body":42,"breadcrumbs":3,"title":2},"20":{"body":59,"breadcrumbs":8,"title":4},"200":{"body":13,"breadcrumbs":14,"title":2},"201":{"body":0,"breadcrumbs":14,"title":2},"202":{"body":42,"breadcrumbs":16,"title":4},"203":{"body":347,"breadcrumbs":13,"title":1},"204":{"body":40,"breadcrumbs":14,"title":2},"205":{"body":49,"breadcrumbs":16,"title":3},"206":{"body":94,"breadcrumbs":16,"title":6},"207":{"body":9,"breadcrumbs":11,"title":1},"208":{"body":71,"breadcrumbs":14,"title":2},"209":{"body":35,"breadcrumbs":14,"title":2},"21":{"body":126,"breadcrumbs":6,"title":2},"210":{"body":13,"breadcrumbs":14,"title":2},"211":{"body":13,"breadcrumbs":10,"title":2},"212":{"body":35,"breadcrumbs":9,"title":1},"213":{"body":34,"breadcrumbs":14,"title":2},"214":{"body":8,"breadcrumbs":14,"title":2},"215":{"body":10,"breadcrumbs":9,"title":5},"216":{"body":0,"breadcrumbs":5,"title":1},"217":{"body":6,"breadcrumbs":6,"title":2},"218":{"body":79,"breadcrumbs":7,"title":3},"219":{"body":8,"breadcrumbs":6,"title":2},"22":{"body":228,"breadcrumbs":5,"title":1},"220":{"body":3,"breadcrumbs":6,"title":2},"221":{"body":58,"breadcrumbs":6,"title":2},"222":{"body":23,"breadcrumbs":7,"title":3},"223":{"body":70,"breadcrumbs":9,"title":5},"224":{"body":358,"breadcrumbs":11,"title":6},"225":{"body":17,"breadcrumbs":10,"title":5},"226":{"body":50,"breadcrumbs":7,"title":2},"227":{"body":69,"breadcrumbs":7,"title":2},"228":{"body":0,"breadcrumbs":11,"title":6},"229":{"body":25,"breadcrumbs":12,"title":7},"23":{"body":28,"breadcrumbs":8,"title":4},"230":{"body":40,"breadcrumbs":13,"title":8},"231":{"body":210,"breadcrumbs":9,"title":4},"232":{"body":226,"breadcrumbs":12,"title":7},"233":{"body":208,"breadcrumbs":10,"title":5},"234":{"body":85,"breadcrumbs":8,"title":3},"235":{"body":16,"breadcrumbs":11,"title":6},"236":{"body":20,"breadcrumbs":7,"title":2},"237":{"body":51,"breadcrumbs":7,"title":2},"238":{"body":27,"breadcrumbs":8,"title":3},"239":{"body":59,"breadcrumbs":8,"title":3},"24":{"body":11,"breadcrumbs":7,"title":3},"240":{"body":18,"breadcrumbs":10,"title":5},"241":{"body":40,"breadcrumbs":7,"title":2},"242":{"body":30,"breadcrumbs":7,"title":2},"243":{"body":11,"breadcrumbs":7,"title":2},"244":{"body":10,"breadcrumbs":6,"title":1},"245":{"body":15,"breadcrumbs":8,"title":3},"246":{"body":9,"breadcrumbs":3,"title":1},"247":{"body":9,"breadcrumbs":5,"title":3},"248":{"body":12,"breadcrumbs":5,"title":3},"249":{"body":10,"breadcrumbs":6,"title":4},"25":{"body":0,"breadcrumbs":10,"title":6},"250":{"body":0,"breadcrumbs":9,"title":4},"251":{"body":31,"breadcrumbs":6,"title":1},"252":{"body":38,"breadcrumbs":6,"title":1},"253":{"body":19,"breadcrumbs":7,"title":2},"254":{"body":476,"breadcrumbs":7,"title":2},"255":{"body":0,"breadcrumbs":8,"title":3},"256":{"body":20,"breadcrumbs":12,"title":7},"257":{"body":0,"breadcrumbs":8,"title":3},"258":{"body":182,"breadcrumbs":13,"title":8},"259":{"body":80,"breadcrumbs":14,"title":9},"26":{"body":69,"breadcrumbs":7,"title":3},"260":{"body":0,"breadcrumbs":6,"title":1},"261":{"body":51,"breadcrumbs":9,"title":4},"262":{"body":35,"breadcrumbs":8,"title":3},"263":{"body":19,"breadcrumbs":9,"title":4},"264":{"body":44,"breadcrumbs":8,"title":3},"265":{"body":13,"breadcrumbs":10,"title":4},"266":{"body":23,"breadcrumbs":8,"title":2},"267":{"body":37,"breadcrumbs":11,"title":5},"268":{"body":35,"breadcrumbs":11,"title":5},"269":{"body":23,"breadcrumbs":10,"title":4},"27":{"body":33,"breadcrumbs":7,"title":3},"270":{"body":20,"breadcrumbs":10,"title":4},"271":{"body":35,"breadcrumbs":10,"title":4},"272":{"body":24,"breadcrumbs":12,"title":6},"273":{"body":17,"breadcrumbs":9,"title":3},"274":{"body":17,"breadcrumbs":12,"title":6},"275":{"body":38,"breadcrumbs":9,"title":3},"276":{"body":72,"breadcrumbs":6,"title":3},"277":{"body":10,"breadcrumbs":5,"title":2},"278":{"body":10,"breadcrumbs":5,"title":2},"279":{"body":15,"breadcrumbs":5,"title":2},"28":{"body":23,"breadcrumbs":6,"title":2},"280":{"body":47,"breadcrumbs":8,"title":4},"281":{"body":23,"breadcrumbs":7,"title":3},"282":{"body":36,"breadcrumbs":6,"title":2},"283":{"body":13,"breadcrumbs":5,"title":1},"284":{"body":8,"breadcrumbs":5,"title":1},"285":{"body":62,"breadcrumbs":5,"title":1},"286":{"body":30,"breadcrumbs":5,"title":1},"287":{"body":19,"breadcrumbs":6,"title":2},"288":{"body":318,"breadcrumbs":6,"title":2},"289":{"body":579,"breadcrumbs":6,"title":2},"29":{"body":42,"breadcrumbs":8,"title":4},"290":{"body":49,"breadcrumbs":8,"title":4},"291":{"body":23,"breadcrumbs":7,"title":3},"292":{"body":24,"breadcrumbs":6,"title":2},"293":{"body":13,"breadcrumbs":5,"title":1},"294":{"body":50,"breadcrumbs":5,"title":1},"295":{"body":13,"breadcrumbs":7,"title":3},"296":{"body":0,"breadcrumbs":6,"title":2},"297":{"body":155,"breadcrumbs":6,"title":2},"298":{"body":36,"breadcrumbs":6,"title":2},"299":{"body":44,"breadcrumbs":8,"title":4},"3":{"body":17,"breadcrumbs":3,"title":2},"30":{"body":16,"breadcrumbs":5,"title":1},"300":{"body":23,"breadcrumbs":7,"title":3},"301":{"body":11,"breadcrumbs":6,"title":2},"302":{"body":13,"breadcrumbs":5,"title":1},"303":{"body":24,"breadcrumbs":5,"title":1},"304":{"body":0,"breadcrumbs":6,"title":2},"305":{"body":12,"breadcrumbs":6,"title":2},"306":{"body":40,"breadcrumbs":4,"title":2},"307":{"body":75,"breadcrumbs":3,"title":1},"308":{"body":26,"breadcrumbs":4,"title":1},"309":{"body":13,"breadcrumbs":7,"title":4},"31":{"body":67,"breadcrumbs":8,"title":4},"310":{"body":28,"breadcrumbs":5,"title":2},"311":{"body":0,"breadcrumbs":6,"title":3},"312":{"body":19,"breadcrumbs":5,"title":2},"313":{"body":44,"breadcrumbs":5,"title":2},"314":{"body":0,"breadcrumbs":4,"title":1},"315":{"body":432,"breadcrumbs":4,"title":1},"316":{"body":324,"breadcrumbs":8,"title":5},"317":{"body":95,"breadcrumbs":5,"title":2},"318":{"body":412,"breadcrumbs":5,"title":2},"319":{"body":17,"breadcrumbs":4,"title":1},"32":{"body":106,"breadcrumbs":7,"title":3},"320":{"body":21,"breadcrumbs":8,"title":3},"321":{"body":30,"breadcrumbs":7,"title":2},"322":{"body":23,"breadcrumbs":7,"title":2},"323":{"body":0,"breadcrumbs":6,"title":1},"324":{"body":68,"breadcrumbs":6,"title":1},"325":{"body":17,"breadcrumbs":6,"title":1},"326":{"body":77,"breadcrumbs":7,"title":3},"327":{"body":0,"breadcrumbs":6,"title":2},"328":{"body":161,"breadcrumbs":5,"title":1},"329":{"body":41,"breadcrumbs":5,"title":1},"33":{"body":35,"breadcrumbs":8,"title":4},"330":{"body":67,"breadcrumbs":7,"title":3},"331":{"body":0,"breadcrumbs":6,"title":2},"332":{"body":22,"breadcrumbs":5,"title":1},"333":{"body":62,"breadcrumbs":5,"title":1},"334":{"body":36,"breadcrumbs":5,"title":1},"335":{"body":14,"breadcrumbs":5,"title":1},"336":{"body":15,"breadcrumbs":8,"title":3},"337":{"body":0,"breadcrumbs":6,"title":1},"338":{"body":147,"breadcrumbs":6,"title":1},"339":{"body":18,"breadcrumbs":6,"title":2},"34":{"body":55,"breadcrumbs":7,"title":3},"340":{"body":52,"breadcrumbs":8,"title":4},"341":{"body":0,"breadcrumbs":5,"title":1},"342":{"body":73,"breadcrumbs":5,"title":1},"343":{"body":8,"breadcrumbs":5,"title":1},"344":{"body":17,"breadcrumbs":9,"title":3},"345":{"body":11,"breadcrumbs":7,"title":1},"346":{"body":57,"breadcrumbs":7,"title":1},"347":{"body":67,"breadcrumbs":7,"title":1},"348":{"body":25,"breadcrumbs":2,"title":1},"349":{"body":33,"breadcrumbs":4,"title":3},"35":{"body":53,"breadcrumbs":10,"title":6},"350":{"body":6,"breadcrumbs":2,"title":1},"351":{"body":9,"breadcrumbs":3,"title":2},"352":{"body":11,"breadcrumbs":4,"title":3},"353":{"body":9,"breadcrumbs":3,"title":2},"354":{"body":20,"breadcrumbs":3,"title":2},"355":{"body":17,"breadcrumbs":5,"title":2},"356":{"body":18,"breadcrumbs":5,"title":2},"357":{"body":6,"breadcrumbs":4,"title":1},"358":{"body":0,"breadcrumbs":4,"title":1},"359":{"body":21,"breadcrumbs":4,"title":1},"36":{"body":0,"breadcrumbs":6,"title":2},"360":{"body":14,"breadcrumbs":4,"title":1},"361":{"body":0,"breadcrumbs":5,"title":2},"362":{"body":66,"breadcrumbs":4,"title":1},"363":{"body":35,"breadcrumbs":7,"title":3},"364":{"body":19,"breadcrumbs":5,"title":1},"365":{"body":0,"breadcrumbs":5,"title":1},"366":{"body":31,"breadcrumbs":5,"title":1},"367":{"body":23,"breadcrumbs":5,"title":1},"368":{"body":0,"breadcrumbs":6,"title":2},"369":{"body":70,"breadcrumbs":5,"title":1},"37":{"body":69,"breadcrumbs":5,"title":1},"370":{"body":35,"breadcrumbs":5,"title":2},"371":{"body":60,"breadcrumbs":4,"title":1},"372":{"body":0,"breadcrumbs":4,"title":1},"373":{"body":44,"breadcrumbs":4,"title":1},"374":{"body":0,"breadcrumbs":5,"title":2},"375":{"body":76,"breadcrumbs":4,"title":1},"376":{"body":246,"breadcrumbs":3,"title":1},"377":{"body":131,"breadcrumbs":4,"title":2},"378":{"body":9,"breadcrumbs":4,"title":2},"379":{"body":51,"breadcrumbs":6,"title":4},"38":{"body":39,"breadcrumbs":8,"title":4},"380":{"body":8,"breadcrumbs":4,"title":2},"381":{"body":6,"breadcrumbs":4,"title":1},"382":{"body":0,"breadcrumbs":5,"title":2},"383":{"body":39,"breadcrumbs":4,"title":1},"384":{"body":0,"breadcrumbs":5,"title":2},"385":{"body":68,"breadcrumbs":4,"title":1},"386":{"body":31,"breadcrumbs":4,"title":1},"387":{"body":38,"breadcrumbs":5,"title":2},"388":{"body":1,"breadcrumbs":6,"title":3},"389":{"body":2,"breadcrumbs":5,"title":2},"39":{"body":28,"breadcrumbs":8,"title":4},"390":{"body":14,"breadcrumbs":4,"title":1},"391":{"body":8,"breadcrumbs":6,"title":2},"392":{"body":0,"breadcrumbs":6,"title":2},"393":{"body":119,"breadcrumbs":5,"title":1},"394":{"body":0,"breadcrumbs":6,"title":2},"395":{"body":99,"breadcrumbs":5,"title":1},"396":{"body":61,"breadcrumbs":5,"title":1},"397":{"body":27,"breadcrumbs":6,"title":2},"398":{"body":104,"breadcrumbs":7,"title":3},"399":{"body":3,"breadcrumbs":6,"title":2},"4":{"body":19,"breadcrumbs":4,"title":3},"40":{"body":4,"breadcrumbs":5,"title":1},"400":{"body":20,"breadcrumbs":5,"title":1},"401":{"body":45,"breadcrumbs":4,"title":1},"402":{"body":31,"breadcrumbs":6,"title":3},"403":{"body":0,"breadcrumbs":5,"title":2},"404":{"body":108,"breadcrumbs":4,"title":1},"405":{"body":0,"breadcrumbs":5,"title":2},"406":{"body":77,"breadcrumbs":4,"title":1},"407":{"body":48,"breadcrumbs":4,"title":1},"408":{"body":37,"breadcrumbs":5,"title":2},"409":{"body":1,"breadcrumbs":6,"title":3},"41":{"body":39,"breadcrumbs":7,"title":3},"410":{"body":3,"breadcrumbs":5,"title":2},"411":{"body":14,"breadcrumbs":4,"title":1},"412":{"body":35,"breadcrumbs":6,"title":2},"413":{"body":0,"breadcrumbs":6,"title":2},"414":{"body":192,"breadcrumbs":5,"title":1},"415":{"body":0,"breadcrumbs":6,"title":2},"416":{"body":110,"breadcrumbs":5,"title":1},"417":{"body":59,"breadcrumbs":5,"title":1},"418":{"body":28,"breadcrumbs":6,"title":2},"419":{"body":104,"breadcrumbs":7,"title":3},"42":{"body":18,"breadcrumbs":7,"title":3},"420":{"body":6,"breadcrumbs":6,"title":2},"421":{"body":20,"breadcrumbs":5,"title":1},"422":{"body":22,"breadcrumbs":4,"title":1},"423":{"body":15,"breadcrumbs":4,"title":1},"424":{"body":0,"breadcrumbs":5,"title":2},"425":{"body":134,"breadcrumbs":4,"title":1},"426":{"body":0,"breadcrumbs":5,"title":2},"427":{"body":110,"breadcrumbs":4,"title":1},"428":{"body":69,"breadcrumbs":4,"title":1},"429":{"body":37,"breadcrumbs":5,"title":2},"43":{"body":17,"breadcrumbs":8,"title":4},"430":{"body":1,"breadcrumbs":6,"title":3},"431":{"body":13,"breadcrumbs":5,"title":2},"432":{"body":14,"breadcrumbs":4,"title":1},"433":{"body":11,"breadcrumbs":6,"title":2},"434":{"body":0,"breadcrumbs":6,"title":2},"435":{"body":140,"breadcrumbs":5,"title":1},"436":{"body":0,"breadcrumbs":6,"title":2},"437":{"body":95,"breadcrumbs":5,"title":1},"438":{"body":60,"breadcrumbs":5,"title":1},"439":{"body":31,"breadcrumbs":6,"title":2},"44":{"body":83,"breadcrumbs":9,"title":5},"440":{"body":104,"breadcrumbs":7,"title":3},"441":{"body":7,"breadcrumbs":6,"title":2},"442":{"body":20,"breadcrumbs":5,"title":1},"443":{"body":29,"breadcrumbs":6,"title":2},"444":{"body":0,"breadcrumbs":6,"title":2},"445":{"body":94,"breadcrumbs":5,"title":1},"446":{"body":105,"breadcrumbs":5,"title":1},"447":{"body":0,"breadcrumbs":6,"title":2},"448":{"body":101,"breadcrumbs":5,"title":1},"449":{"body":41,"breadcrumbs":5,"title":1},"45":{"body":0,"breadcrumbs":6,"title":2},"450":{"body":39,"breadcrumbs":6,"title":2},"451":{"body":1,"breadcrumbs":7,"title":3},"452":{"body":3,"breadcrumbs":6,"title":2},"453":{"body":14,"breadcrumbs":5,"title":1},"454":{"body":45,"breadcrumbs":4,"title":1},"455":{"body":0,"breadcrumbs":5,"title":2},"456":{"body":128,"breadcrumbs":4,"title":1},"457":{"body":65,"breadcrumbs":4,"title":1},"458":{"body":49,"breadcrumbs":4,"title":1},"459":{"body":45,"breadcrumbs":4,"title":1},"46":{"body":57,"breadcrumbs":5,"title":1},"460":{"body":14,"breadcrumbs":4,"title":1},"461":{"body":55,"breadcrumbs":4,"title":1},"462":{"body":52,"breadcrumbs":4,"title":1},"463":{"body":0,"breadcrumbs":5,"title":2},"464":{"body":78,"breadcrumbs":4,"title":1},"465":{"body":42,"breadcrumbs":4,"title":1},"466":{"body":41,"breadcrumbs":5,"title":2},"467":{"body":39,"breadcrumbs":6,"title":3},"468":{"body":16,"breadcrumbs":5,"title":2},"469":{"body":4,"breadcrumbs":5,"title":2},"47":{"body":22,"breadcrumbs":8,"title":4},"470":{"body":14,"breadcrumbs":4,"title":1},"471":{"body":156,"breadcrumbs":6,"title":2},"472":{"body":0,"breadcrumbs":6,"title":2},"473":{"body":92,"breadcrumbs":5,"title":1},"474":{"body":63,"breadcrumbs":5,"title":1},"475":{"body":86,"breadcrumbs":5,"title":1},"476":{"body":154,"breadcrumbs":5,"title":1},"477":{"body":25,"breadcrumbs":5,"title":1},"478":{"body":53,"breadcrumbs":5,"title":1},"479":{"body":0,"breadcrumbs":6,"title":2},"48":{"body":44,"breadcrumbs":5,"title":1},"480":{"body":179,"breadcrumbs":5,"title":1},"481":{"body":57,"breadcrumbs":5,"title":1},"482":{"body":28,"breadcrumbs":6,"title":2},"483":{"body":23,"breadcrumbs":7,"title":3},"484":{"body":76,"breadcrumbs":5,"title":1},"485":{"body":4,"breadcrumbs":6,"title":2},"486":{"body":6,"breadcrumbs":5,"title":1},"487":{"body":82,"breadcrumbs":5,"title":1},"488":{"body":23,"breadcrumbs":8,"title":3},"489":{"body":0,"breadcrumbs":7,"title":2},"49":{"body":0,"breadcrumbs":5,"title":1},"490":{"body":61,"breadcrumbs":6,"title":1},"491":{"body":67,"breadcrumbs":6,"title":1},"492":{"body":46,"breadcrumbs":6,"title":1},"493":{"body":114,"breadcrumbs":6,"title":1},"494":{"body":116,"breadcrumbs":6,"title":1},"495":{"body":0,"breadcrumbs":7,"title":2},"496":{"body":81,"breadcrumbs":6,"title":1},"497":{"body":23,"breadcrumbs":6,"title":1},"498":{"body":35,"breadcrumbs":7,"title":2},"499":{"body":127,"breadcrumbs":8,"title":3},"5":{"body":62,"breadcrumbs":2,"title":1},"50":{"body":40,"breadcrumbs":10,"title":6},"500":{"body":17,"breadcrumbs":7,"title":2},"501":{"body":81,"breadcrumbs":6,"title":1},"502":{"body":10,"breadcrumbs":6,"title":1},"503":{"body":45,"breadcrumbs":6,"title":2},"504":{"body":0,"breadcrumbs":6,"title":2},"505":{"body":69,"breadcrumbs":5,"title":1},"506":{"body":0,"breadcrumbs":6,"title":2},"507":{"body":192,"breadcrumbs":5,"title":1},"508":{"body":60,"breadcrumbs":5,"title":1},"509":{"body":25,"breadcrumbs":6,"title":2},"51":{"body":26,"breadcrumbs":8,"title":4},"510":{"body":30,"breadcrumbs":7,"title":3},"511":{"body":13,"breadcrumbs":5,"title":1},"512":{"body":4,"breadcrumbs":6,"title":2},"513":{"body":9,"breadcrumbs":5,"title":1},"514":{"body":83,"breadcrumbs":5,"title":1},"515":{"body":19,"breadcrumbs":8,"title":3},"516":{"body":0,"breadcrumbs":7,"title":2},"517":{"body":60,"breadcrumbs":6,"title":1},"518":{"body":0,"breadcrumbs":7,"title":2},"519":{"body":80,"breadcrumbs":6,"title":1},"52":{"body":48,"breadcrumbs":8,"title":4},"520":{"body":24,"breadcrumbs":6,"title":1},"521":{"body":35,"breadcrumbs":7,"title":2},"522":{"body":134,"breadcrumbs":8,"title":3},"523":{"body":15,"breadcrumbs":7,"title":2},"524":{"body":59,"breadcrumbs":6,"title":1},"525":{"body":10,"breadcrumbs":6,"title":1},"526":{"body":11,"breadcrumbs":4,"title":1},"527":{"body":0,"breadcrumbs":5,"title":2},"528":{"body":65,"breadcrumbs":4,"title":1},"529":{"body":102,"breadcrumbs":4,"title":1},"53":{"body":21,"breadcrumbs":8,"title":4},"530":{"body":0,"breadcrumbs":5,"title":2},"531":{"body":110,"breadcrumbs":4,"title":1},"532":{"body":53,"breadcrumbs":4,"title":1},"533":{"body":39,"breadcrumbs":5,"title":2},"534":{"body":1,"breadcrumbs":6,"title":3},"535":{"body":3,"breadcrumbs":5,"title":2},"536":{"body":14,"breadcrumbs":4,"title":1},"537":{"body":20,"breadcrumbs":4,"title":1},"538":{"body":32,"breadcrumbs":4,"title":1},"539":{"body":0,"breadcrumbs":5,"title":2},"54":{"body":36,"breadcrumbs":10,"title":6},"540":{"body":41,"breadcrumbs":4,"title":1},"541":{"body":51,"breadcrumbs":4,"title":1},"542":{"body":0,"breadcrumbs":5,"title":2},"543":{"body":67,"breadcrumbs":4,"title":1},"544":{"body":64,"breadcrumbs":4,"title":1},"545":{"body":42,"breadcrumbs":5,"title":2},"546":{"body":12,"breadcrumbs":7,"title":4},"547":{"body":1,"breadcrumbs":6,"title":3},"548":{"body":13,"breadcrumbs":5,"title":2},"549":{"body":33,"breadcrumbs":4,"title":1},"55":{"body":9,"breadcrumbs":10,"title":6},"550":{"body":0,"breadcrumbs":5,"title":2},"551":{"body":143,"breadcrumbs":4,"title":1},"552":{"body":0,"breadcrumbs":5,"title":2},"553":{"body":146,"breadcrumbs":4,"title":1},"554":{"body":80,"breadcrumbs":4,"title":1},"555":{"body":48,"breadcrumbs":4,"title":1},"556":{"body":40,"breadcrumbs":5,"title":2},"557":{"body":32,"breadcrumbs":6,"title":3},"558":{"body":4,"breadcrumbs":5,"title":2},"559":{"body":14,"breadcrumbs":4,"title":1},"56":{"body":13,"breadcrumbs":7,"title":3},"560":{"body":58,"breadcrumbs":4,"title":1},"561":{"body":18,"breadcrumbs":6,"title":3},"562":{"body":0,"breadcrumbs":5,"title":2},"563":{"body":134,"breadcrumbs":4,"title":1},"564":{"body":0,"breadcrumbs":5,"title":2},"565":{"body":179,"breadcrumbs":4,"title":1},"566":{"body":52,"breadcrumbs":4,"title":1},"567":{"body":64,"breadcrumbs":5,"title":2},"568":{"body":69,"breadcrumbs":6,"title":3},"569":{"body":3,"breadcrumbs":5,"title":2},"57":{"body":28,"breadcrumbs":11,"title":5},"570":{"body":53,"breadcrumbs":4,"title":1},"571":{"body":14,"breadcrumbs":4,"title":1},"572":{"body":35,"breadcrumbs":6,"title":2},"573":{"body":0,"breadcrumbs":6,"title":2},"574":{"body":24,"breadcrumbs":5,"title":1},"575":{"body":40,"breadcrumbs":5,"title":1},"576":{"body":0,"breadcrumbs":6,"title":2},"577":{"body":130,"breadcrumbs":5,"title":1},"578":{"body":54,"breadcrumbs":5,"title":1},"579":{"body":40,"breadcrumbs":6,"title":2},"58":{"body":2,"breadcrumbs":7,"title":1},"580":{"body":72,"breadcrumbs":7,"title":3},"581":{"body":3,"breadcrumbs":5,"title":1},"582":{"body":45,"breadcrumbs":5,"title":1},"583":{"body":29,"breadcrumbs":8,"title":3},"584":{"body":0,"breadcrumbs":7,"title":2},"585":{"body":67,"breadcrumbs":6,"title":1},"586":{"body":68,"breadcrumbs":6,"title":1},"587":{"body":0,"breadcrumbs":7,"title":2},"588":{"body":84,"breadcrumbs":6,"title":1},"589":{"body":23,"breadcrumbs":6,"title":1},"59":{"body":21,"breadcrumbs":10,"title":4},"590":{"body":44,"breadcrumbs":7,"title":2},"591":{"body":142,"breadcrumbs":8,"title":3},"592":{"body":14,"breadcrumbs":7,"title":2},"593":{"body":56,"breadcrumbs":6,"title":1},"594":{"body":10,"breadcrumbs":6,"title":1},"595":{"body":12,"breadcrumbs":4,"title":1},"596":{"body":17,"breadcrumbs":6,"title":3},"597":{"body":0,"breadcrumbs":5,"title":2},"598":{"body":50,"breadcrumbs":4,"title":1},"599":{"body":0,"breadcrumbs":5,"title":2},"6":{"body":31,"breadcrumbs":2,"title":1},"60":{"body":61,"breadcrumbs":9,"title":3},"600":{"body":93,"breadcrumbs":4,"title":1},"601":{"body":66,"breadcrumbs":4,"title":1},"602":{"body":38,"breadcrumbs":5,"title":2},"603":{"body":10,"breadcrumbs":6,"title":3},"604":{"body":3,"breadcrumbs":5,"title":2},"605":{"body":14,"breadcrumbs":4,"title":1},"606":{"body":16,"breadcrumbs":6,"title":2},"607":{"body":18,"breadcrumbs":9,"title":5},"608":{"body":0,"breadcrumbs":6,"title":2},"609":{"body":53,"breadcrumbs":5,"title":1},"61":{"body":31,"breadcrumbs":10,"title":4},"610":{"body":0,"breadcrumbs":6,"title":2},"611":{"body":47,"breadcrumbs":5,"title":1},"612":{"body":23,"breadcrumbs":5,"title":1},"613":{"body":56,"breadcrumbs":6,"title":2},"614":{"body":115,"breadcrumbs":7,"title":3},"615":{"body":3,"breadcrumbs":6,"title":2},"616":{"body":46,"breadcrumbs":5,"title":1},"617":{"body":10,"breadcrumbs":5,"title":1},"618":{"body":37,"breadcrumbs":4,"title":1},"619":{"body":29,"breadcrumbs":6,"title":3},"62":{"body":56,"breadcrumbs":8,"title":4},"620":{"body":0,"breadcrumbs":5,"title":2},"621":{"body":168,"breadcrumbs":5,"title":2},"622":{"body":0,"breadcrumbs":5,"title":2},"623":{"body":103,"breadcrumbs":4,"title":1},"624":{"body":45,"breadcrumbs":4,"title":1},"625":{"body":42,"breadcrumbs":5,"title":2},"626":{"body":67,"breadcrumbs":5,"title":2},"627":{"body":9,"breadcrumbs":5,"title":2},"628":{"body":8,"breadcrumbs":4,"title":1},"629":{"body":9,"breadcrumbs":4,"title":1},"63":{"body":64,"breadcrumbs":7,"title":3},"630":{"body":16,"breadcrumbs":4,"title":1},"631":{"body":0,"breadcrumbs":5,"title":2},"632":{"body":72,"breadcrumbs":4,"title":1},"633":{"body":0,"breadcrumbs":5,"title":2},"634":{"body":66,"breadcrumbs":4,"title":1},"635":{"body":67,"breadcrumbs":4,"title":1},"636":{"body":43,"breadcrumbs":5,"title":2},"637":{"body":9,"breadcrumbs":5,"title":2},"638":{"body":3,"breadcrumbs":4,"title":1},"639":{"body":0,"breadcrumbs":5,"title":2},"64":{"body":19,"breadcrumbs":7,"title":3},"640":{"body":66,"breadcrumbs":4,"title":1},"641":{"body":0,"breadcrumbs":5,"title":2},"642":{"body":76,"breadcrumbs":4,"title":1},"643":{"body":26,"breadcrumbs":4,"title":1},"644":{"body":59,"breadcrumbs":5,"title":2},"645":{"body":43,"breadcrumbs":7,"title":4},"646":{"body":11,"breadcrumbs":5,"title":2},"647":{"body":21,"breadcrumbs":2,"title":1},"648":{"body":0,"breadcrumbs":3,"title":2},"649":{"body":74,"breadcrumbs":2,"title":1},"65":{"body":65,"breadcrumbs":8,"title":4},"650":{"body":0,"breadcrumbs":3,"title":2},"651":{"body":18,"breadcrumbs":2,"title":1},"652":{"body":269,"breadcrumbs":2,"title":1},"653":{"body":83,"breadcrumbs":2,"title":1},"654":{"body":21,"breadcrumbs":5,"title":4},"655":{"body":40,"breadcrumbs":2,"title":1},"656":{"body":41,"breadcrumbs":2,"title":1},"657":{"body":30,"breadcrumbs":2,"title":1},"658":{"body":27,"breadcrumbs":2,"title":1},"659":{"body":13,"breadcrumbs":5,"title":4},"66":{"body":47,"breadcrumbs":8,"title":4},"660":{"body":39,"breadcrumbs":2,"title":1},"661":{"body":26,"breadcrumbs":2,"title":1},"662":{"body":22,"breadcrumbs":4,"title":3},"663":{"body":29,"breadcrumbs":10,"title":5},"664":{"body":31,"breadcrumbs":6,"title":1},"665":{"body":62,"breadcrumbs":6,"title":1},"666":{"body":45,"breadcrumbs":6,"title":1},"667":{"body":21,"breadcrumbs":6,"title":1},"668":{"body":25,"breadcrumbs":6,"title":1},"669":{"body":49,"breadcrumbs":6,"title":1},"67":{"body":64,"breadcrumbs":8,"title":4},"670":{"body":32,"breadcrumbs":6,"title":1},"671":{"body":55,"breadcrumbs":10,"title":6},"672":{"body":9,"breadcrumbs":8,"title":4},"673":{"body":159,"breadcrumbs":9,"title":5},"674":{"body":60,"breadcrumbs":10,"title":5},"675":{"body":37,"breadcrumbs":7,"title":2},"676":{"body":13,"breadcrumbs":8,"title":3},"677":{"body":208,"breadcrumbs":8,"title":3},"678":{"body":172,"breadcrumbs":8,"title":3},"679":{"body":95,"breadcrumbs":9,"title":4},"68":{"body":23,"breadcrumbs":7,"title":3},"680":{"body":40,"breadcrumbs":7,"title":2},"681":{"body":22,"breadcrumbs":4,"title":3},"682":{"body":21,"breadcrumbs":10,"title":5},"683":{"body":6,"breadcrumbs":9,"title":4},"684":{"body":41,"breadcrumbs":10,"title":5},"685":{"body":53,"breadcrumbs":8,"title":3},"686":{"body":45,"breadcrumbs":9,"title":4},"687":{"body":35,"breadcrumbs":10,"title":5},"688":{"body":44,"breadcrumbs":4,"title":3},"689":{"body":24,"breadcrumbs":7,"title":3},"69":{"body":0,"breadcrumbs":4,"title":3},"690":{"body":61,"breadcrumbs":7,"title":3},"691":{"body":17,"breadcrumbs":11,"title":7},"692":{"body":57,"breadcrumbs":8,"title":4},"693":{"body":55,"breadcrumbs":3,"title":1},"694":{"body":8,"breadcrumbs":4,"title":2},"695":{"body":0,"breadcrumbs":4,"title":2},"696":{"body":12,"breadcrumbs":3,"title":1},"697":{"body":96,"breadcrumbs":6,"title":1},"698":{"body":37,"breadcrumbs":8,"title":3},"699":{"body":0,"breadcrumbs":6,"title":1},"7":{"body":14,"breadcrumbs":2,"title":1},"70":{"body":58,"breadcrumbs":3,"title":2},"700":{"body":9,"breadcrumbs":7,"title":2},"701":{"body":55,"breadcrumbs":6,"title":1},"702":{"body":7,"breadcrumbs":2,"title":1},"703":{"body":23,"breadcrumbs":2,"title":1},"704":{"body":32,"breadcrumbs":3,"title":2},"705":{"body":12,"breadcrumbs":3,"title":2},"706":{"body":1,"breadcrumbs":4,"title":3},"707":{"body":10,"breadcrumbs":3,"title":2},"708":{"body":19,"breadcrumbs":2,"title":1},"709":{"body":18,"breadcrumbs":2,"title":1},"71":{"body":41,"breadcrumbs":3,"title":2},"710":{"body":54,"breadcrumbs":2,"title":1},"711":{"body":45,"breadcrumbs":3,"title":2},"712":{"body":18,"breadcrumbs":4,"title":3},"713":{"body":7,"breadcrumbs":2,"title":1},"714":{"body":2,"breadcrumbs":4,"title":2},"715":{"body":56,"breadcrumbs":6,"title":4},"716":{"body":54,"breadcrumbs":6,"title":4},"717":{"body":16,"breadcrumbs":6,"title":4},"718":{"body":30,"breadcrumbs":6,"title":4},"719":{"body":25,"breadcrumbs":6,"title":4},"72":{"body":13,"breadcrumbs":4,"title":3},"720":{"body":45,"breadcrumbs":6,"title":4},"721":{"body":69,"breadcrumbs":6,"title":4},"722":{"body":16,"breadcrumbs":6,"title":4},"723":{"body":9,"breadcrumbs":6,"title":4},"724":{"body":18,"breadcrumbs":6,"title":4},"725":{"body":23,"breadcrumbs":6,"title":4},"726":{"body":18,"breadcrumbs":6,"title":4},"727":{"body":63,"breadcrumbs":6,"title":4},"728":{"body":35,"breadcrumbs":6,"title":4},"729":{"body":51,"breadcrumbs":6,"title":4},"73":{"body":105,"breadcrumbs":3,"title":2},"730":{"body":28,"breadcrumbs":6,"title":4},"731":{"body":47,"breadcrumbs":6,"title":4},"732":{"body":51,"breadcrumbs":6,"title":4},"733":{"body":13,"breadcrumbs":6,"title":4},"734":{"body":78,"breadcrumbs":6,"title":4},"735":{"body":39,"breadcrumbs":6,"title":4},"736":{"body":74,"breadcrumbs":6,"title":4},"737":{"body":33,"breadcrumbs":6,"title":4},"738":{"body":99,"breadcrumbs":6,"title":4},"739":{"body":39,"breadcrumbs":6,"title":4},"74":{"body":35,"breadcrumbs":4,"title":3},"740":{"body":12,"breadcrumbs":6,"title":4},"741":{"body":75,"breadcrumbs":6,"title":4},"742":{"body":25,"breadcrumbs":6,"title":4},"743":{"body":17,"breadcrumbs":6,"title":4},"744":{"body":12,"breadcrumbs":6,"title":4},"745":{"body":25,"breadcrumbs":6,"title":4},"746":{"body":8,"breadcrumbs":6,"title":4},"747":{"body":58,"breadcrumbs":6,"title":4},"748":{"body":7,"breadcrumbs":6,"title":4},"749":{"body":13,"breadcrumbs":6,"title":4},"75":{"body":48,"breadcrumbs":3,"title":2},"750":{"body":46,"breadcrumbs":6,"title":4},"751":{"body":18,"breadcrumbs":6,"title":4},"752":{"body":137,"breadcrumbs":6,"title":4},"753":{"body":37,"breadcrumbs":6,"title":4},"754":{"body":19,"breadcrumbs":6,"title":4},"755":{"body":23,"breadcrumbs":6,"title":4},"756":{"body":36,"breadcrumbs":6,"title":4},"757":{"body":25,"breadcrumbs":6,"title":4},"758":{"body":26,"breadcrumbs":6,"title":4},"759":{"body":32,"breadcrumbs":6,"title":4},"76":{"body":119,"breadcrumbs":3,"title":2},"760":{"body":19,"breadcrumbs":6,"title":4},"761":{"body":40,"breadcrumbs":6,"title":4},"762":{"body":95,"breadcrumbs":6,"title":4},"763":{"body":42,"breadcrumbs":6,"title":4},"764":{"body":20,"breadcrumbs":6,"title":4},"765":{"body":70,"breadcrumbs":6,"title":4},"766":{"body":11,"breadcrumbs":6,"title":4},"767":{"body":20,"breadcrumbs":6,"title":4},"768":{"body":12,"breadcrumbs":6,"title":4},"769":{"body":25,"breadcrumbs":6,"title":4},"77":{"body":105,"breadcrumbs":5,"title":4},"770":{"body":31,"breadcrumbs":6,"title":4},"771":{"body":14,"breadcrumbs":6,"title":4},"772":{"body":166,"breadcrumbs":6,"title":4},"773":{"body":45,"breadcrumbs":6,"title":4},"774":{"body":20,"breadcrumbs":6,"title":4},"775":{"body":30,"breadcrumbs":6,"title":4},"776":{"body":56,"breadcrumbs":6,"title":4},"777":{"body":8,"breadcrumbs":6,"title":4},"778":{"body":7,"breadcrumbs":6,"title":4},"779":{"body":46,"breadcrumbs":6,"title":4},"78":{"body":155,"breadcrumbs":6,"title":5},"780":{"body":9,"breadcrumbs":6,"title":4},"781":{"body":8,"breadcrumbs":6,"title":4},"782":{"body":45,"breadcrumbs":6,"title":4},"783":{"body":14,"breadcrumbs":6,"title":4},"784":{"body":13,"breadcrumbs":6,"title":4},"785":{"body":21,"breadcrumbs":6,"title":4},"786":{"body":60,"breadcrumbs":6,"title":4},"787":{"body":9,"breadcrumbs":6,"title":4},"788":{"body":25,"breadcrumbs":6,"title":4},"789":{"body":38,"breadcrumbs":6,"title":4},"79":{"body":275,"breadcrumbs":3,"title":2},"790":{"body":28,"breadcrumbs":6,"title":4},"791":{"body":26,"breadcrumbs":6,"title":4},"792":{"body":39,"breadcrumbs":6,"title":4},"793":{"body":70,"breadcrumbs":6,"title":4},"794":{"body":14,"breadcrumbs":6,"title":4},"795":{"body":10,"breadcrumbs":6,"title":4},"796":{"body":31,"breadcrumbs":6,"title":4},"797":{"body":9,"breadcrumbs":6,"title":4},"798":{"body":15,"breadcrumbs":6,"title":4},"799":{"body":115,"breadcrumbs":6,"title":4},"8":{"body":24,"breadcrumbs":6,"title":3},"80":{"body":50,"breadcrumbs":4,"title":3},"800":{"body":13,"breadcrumbs":6,"title":4},"801":{"body":70,"breadcrumbs":6,"title":4},"802":{"body":81,"breadcrumbs":6,"title":4},"803":{"body":57,"breadcrumbs":6,"title":4},"804":{"body":118,"breadcrumbs":6,"title":4},"805":{"body":54,"breadcrumbs":6,"title":4},"806":{"body":68,"breadcrumbs":6,"title":4},"807":{"body":119,"breadcrumbs":6,"title":4},"808":{"body":7,"breadcrumbs":6,"title":4},"809":{"body":46,"breadcrumbs":6,"title":4},"81":{"body":6,"breadcrumbs":4,"title":3},"810":{"body":13,"breadcrumbs":6,"title":4},"811":{"body":45,"breadcrumbs":6,"title":4},"812":{"body":27,"breadcrumbs":6,"title":4},"813":{"body":23,"breadcrumbs":6,"title":4},"814":{"body":87,"breadcrumbs":6,"title":4},"815":{"body":40,"breadcrumbs":6,"title":4},"816":{"body":48,"breadcrumbs":6,"title":4},"817":{"body":42,"breadcrumbs":6,"title":4},"818":{"body":60,"breadcrumbs":6,"title":4},"819":{"body":22,"breadcrumbs":6,"title":4},"82":{"body":60,"breadcrumbs":4,"title":3},"820":{"body":30,"breadcrumbs":6,"title":4},"821":{"body":6,"breadcrumbs":6,"title":4},"822":{"body":6,"breadcrumbs":6,"title":4},"823":{"body":78,"breadcrumbs":6,"title":4},"824":{"body":61,"breadcrumbs":6,"title":4},"825":{"body":9,"breadcrumbs":6,"title":4},"826":{"body":12,"breadcrumbs":6,"title":4},"827":{"body":19,"breadcrumbs":6,"title":4},"828":{"body":25,"breadcrumbs":6,"title":4},"829":{"body":23,"breadcrumbs":6,"title":4},"83":{"body":71,"breadcrumbs":6,"title":5},"830":{"body":104,"breadcrumbs":6,"title":4},"831":{"body":68,"breadcrumbs":6,"title":4},"832":{"body":9,"breadcrumbs":6,"title":4},"833":{"body":34,"breadcrumbs":6,"title":4},"834":{"body":210,"breadcrumbs":6,"title":4},"835":{"body":21,"breadcrumbs":6,"title":4},"836":{"body":15,"breadcrumbs":6,"title":4},"837":{"body":84,"breadcrumbs":6,"title":4},"838":{"body":83,"breadcrumbs":6,"title":4},"839":{"body":95,"breadcrumbs":6,"title":4},"84":{"body":37,"breadcrumbs":3,"title":2},"840":{"body":53,"breadcrumbs":6,"title":4},"841":{"body":10,"breadcrumbs":6,"title":4},"842":{"body":66,"breadcrumbs":6,"title":4},"843":{"body":22,"breadcrumbs":6,"title":4},"844":{"body":20,"breadcrumbs":6,"title":4},"845":{"body":17,"breadcrumbs":6,"title":4},"846":{"body":53,"breadcrumbs":6,"title":4},"847":{"body":34,"breadcrumbs":6,"title":4},"848":{"body":16,"breadcrumbs":6,"title":4},"849":{"body":40,"breadcrumbs":6,"title":4},"85":{"body":26,"breadcrumbs":6,"title":5},"850":{"body":9,"breadcrumbs":6,"title":4},"851":{"body":9,"breadcrumbs":6,"title":4},"852":{"body":83,"breadcrumbs":6,"title":4},"853":{"body":80,"breadcrumbs":6,"title":4},"854":{"body":67,"breadcrumbs":6,"title":4},"855":{"body":15,"breadcrumbs":6,"title":4},"856":{"body":11,"breadcrumbs":6,"title":4},"857":{"body":30,"breadcrumbs":6,"title":4},"858":{"body":128,"breadcrumbs":6,"title":4},"859":{"body":55,"breadcrumbs":6,"title":4},"86":{"body":64,"breadcrumbs":5,"title":4},"860":{"body":55,"breadcrumbs":6,"title":4},"861":{"body":130,"breadcrumbs":6,"title":4},"862":{"body":114,"breadcrumbs":6,"title":4},"863":{"body":21,"breadcrumbs":6,"title":4},"864":{"body":125,"breadcrumbs":6,"title":4},"865":{"body":117,"breadcrumbs":6,"title":4},"866":{"body":29,"breadcrumbs":6,"title":4},"867":{"body":75,"breadcrumbs":6,"title":4},"868":{"body":23,"breadcrumbs":6,"title":4},"869":{"body":60,"breadcrumbs":6,"title":4},"87":{"body":57,"breadcrumbs":5,"title":4},"870":{"body":7,"breadcrumbs":6,"title":4},"871":{"body":22,"breadcrumbs":6,"title":4},"872":{"body":26,"breadcrumbs":6,"title":4},"873":{"body":42,"breadcrumbs":6,"title":4},"874":{"body":14,"breadcrumbs":6,"title":4},"875":{"body":35,"breadcrumbs":6,"title":4},"876":{"body":22,"breadcrumbs":6,"title":4},"877":{"body":15,"breadcrumbs":6,"title":4},"878":{"body":31,"breadcrumbs":6,"title":4},"879":{"body":28,"breadcrumbs":6,"title":4},"88":{"body":43,"breadcrumbs":4,"title":3},"880":{"body":59,"breadcrumbs":6,"title":4},"881":{"body":32,"breadcrumbs":6,"title":4},"882":{"body":29,"breadcrumbs":7,"title":5},"883":{"body":6,"breadcrumbs":7,"title":5},"884":{"body":22,"breadcrumbs":7,"title":5},"885":{"body":11,"breadcrumbs":7,"title":5},"886":{"body":7,"breadcrumbs":7,"title":5},"887":{"body":2,"breadcrumbs":7,"title":5},"888":{"body":8,"breadcrumbs":3,"title":1},"889":{"body":2,"breadcrumbs":4,"title":2},"89":{"body":155,"breadcrumbs":2,"title":1},"890":{"body":20,"breadcrumbs":6,"title":4},"891":{"body":22,"breadcrumbs":6,"title":4},"892":{"body":23,"breadcrumbs":6,"title":4},"893":{"body":8,"breadcrumbs":6,"title":4},"894":{"body":26,"breadcrumbs":7,"title":5},"895":{"body":34,"breadcrumbs":7,"title":5},"896":{"body":8,"breadcrumbs":6,"title":4},"897":{"body":29,"breadcrumbs":7,"title":5},"898":{"body":18,"breadcrumbs":7,"title":5},"899":{"body":11,"breadcrumbs":7,"title":5},"9":{"body":180,"breadcrumbs":6,"title":3},"90":{"body":0,"breadcrumbs":7,"title":3},"900":{"body":18,"breadcrumbs":7,"title":5},"901":{"body":7,"breadcrumbs":6,"title":4},"902":{"body":18,"breadcrumbs":7,"title":5},"903":{"body":12,"breadcrumbs":7,"title":5},"904":{"body":11,"breadcrumbs":6,"title":4},"905":{"body":27,"breadcrumbs":6,"title":4},"906":{"body":9,"breadcrumbs":6,"title":4},"907":{"body":37,"breadcrumbs":6,"title":4},"908":{"body":25,"breadcrumbs":6,"title":4},"909":{"body":39,"breadcrumbs":6,"title":4},"91":{"body":58,"breadcrumbs":6,"title":2},"910":{"body":12,"breadcrumbs":6,"title":4},"911":{"body":25,"breadcrumbs":6,"title":4},"912":{"body":98,"breadcrumbs":6,"title":4},"913":{"body":45,"breadcrumbs":6,"title":4},"914":{"body":42,"breadcrumbs":6,"title":4},"915":{"body":127,"breadcrumbs":6,"title":4},"916":{"body":119,"breadcrumbs":6,"title":4},"917":{"body":32,"breadcrumbs":6,"title":4},"918":{"body":20,"breadcrumbs":6,"title":4},"919":{"body":91,"breadcrumbs":6,"title":4},"92":{"body":41,"breadcrumbs":6,"title":2},"920":{"body":32,"breadcrumbs":6,"title":4},"921":{"body":55,"breadcrumbs":6,"title":4},"922":{"body":26,"breadcrumbs":6,"title":4},"923":{"body":83,"breadcrumbs":6,"title":4},"924":{"body":69,"breadcrumbs":6,"title":4},"925":{"body":38,"breadcrumbs":6,"title":4},"926":{"body":13,"breadcrumbs":6,"title":4},"927":{"body":34,"breadcrumbs":6,"title":4},"928":{"body":20,"breadcrumbs":6,"title":4},"929":{"body":139,"breadcrumbs":6,"title":4},"93":{"body":13,"breadcrumbs":7,"title":3},"930":{"body":12,"breadcrumbs":6,"title":4},"931":{"body":6,"breadcrumbs":6,"title":4},"932":{"body":19,"breadcrumbs":6,"title":4},"933":{"body":84,"breadcrumbs":6,"title":4},"934":{"body":21,"breadcrumbs":6,"title":4},"935":{"body":27,"breadcrumbs":6,"title":4},"936":{"body":16,"breadcrumbs":6,"title":4},"937":{"body":20,"breadcrumbs":6,"title":4},"938":{"body":30,"breadcrumbs":6,"title":4},"939":{"body":41,"breadcrumbs":6,"title":4},"94":{"body":105,"breadcrumbs":6,"title":2},"940":{"body":9,"breadcrumbs":6,"title":4},"941":{"body":13,"breadcrumbs":6,"title":4},"942":{"body":24,"breadcrumbs":6,"title":4},"943":{"body":7,"breadcrumbs":6,"title":4},"944":{"body":10,"breadcrumbs":6,"title":4},"945":{"body":20,"breadcrumbs":6,"title":4},"946":{"body":13,"breadcrumbs":6,"title":4},"947":{"body":32,"breadcrumbs":6,"title":4},"948":{"body":9,"breadcrumbs":6,"title":4},"949":{"body":10,"breadcrumbs":6,"title":4},"95":{"body":35,"breadcrumbs":7,"title":3},"950":{"body":66,"breadcrumbs":6,"title":4},"951":{"body":100,"breadcrumbs":6,"title":4},"952":{"body":27,"breadcrumbs":6,"title":4},"953":{"body":36,"breadcrumbs":6,"title":4},"954":{"body":10,"breadcrumbs":6,"title":4},"955":{"body":9,"breadcrumbs":6,"title":4},"956":{"body":130,"breadcrumbs":6,"title":4},"957":{"body":22,"breadcrumbs":5,"title":3},"958":{"body":443,"breadcrumbs":4,"title":2},"959":{"body":20,"breadcrumbs":4,"title":2},"96":{"body":48,"breadcrumbs":6,"title":2},"960":{"body":49,"breadcrumbs":4,"title":2},"961":{"body":23,"breadcrumbs":5,"title":3},"962":{"body":34,"breadcrumbs":3,"title":1},"963":{"body":51,"breadcrumbs":4,"title":2},"964":{"body":66,"breadcrumbs":4,"title":2},"965":{"body":28,"breadcrumbs":5,"title":3},"966":{"body":17,"breadcrumbs":3,"title":1},"967":{"body":0,"breadcrumbs":5,"title":3},"968":{"body":69,"breadcrumbs":4,"title":2},"969":{"body":434,"breadcrumbs":4,"title":2},"97":{"body":119,"breadcrumbs":6,"title":2},"98":{"body":105,"breadcrumbs":8,"title":4},"99":{"body":155,"breadcrumbs":9,"title":5}},"docs":{"0":{"body":"The Glean SDKs are modern cross-platform telemetry client libraries and are a part of the Glean project . Glean logo The Glean SDKs are available for several programming languages and development environments. Each SDK aims to contain the same group of features with similar, but idiomatic APIs. To learn more about each SDK, refer to the SDKs overview page. To get started adding Glean to your project, choose one of the following guides: Kotlin Get started adding Glean to an Android application or library. Swift Get started adding Glean to an iOS application or library. Python Get started adding Glean to any Python project. Rust Get started adding Glean to any Rust project or library. JavaScript Get started adding Glean to a website, web extension or Node.js project. QML Get started adding Glean to a Qt/QML application or library. Server Get started adding Glean to a server-side application. For development documentation on the Glean SDK, refer to the Glean SDK development book .","breadcrumbs":"Glean » Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Glean » Sections","id":"1","title":"Sections"},"10":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Kotlin project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so. Currently, this SDK only supports the Android platform.","breadcrumbs":"Adding Glean to your project » Kotlin » Adding Glean to your Kotlin project","id":"10","title":"Adding Glean to your Kotlin project"},"100":{"body":"Let's work through an example to see how these lifetimes play out in practice. Let's suppose we have a user preference, \"turbo mode\", which defaults to false, but the user can turn it to true at any time. We want to know when this flag is true so we can measure its affect on other metrics in the same ping. In the following diagram, we look at a time period that sends 4 pings across two separate runs of the application. We assume here, that like the Glean SDK's built-in metrics ping , the developer writing the metric isn't in control of when the ping is submitted. In this diagram, the ping measurement windows are represented as rectangles, but the moment the ping is \"submitted\" is represented by its right edge. The user changes the \"turbo mode\" setting from false to true in the first run, and then toggles it again twice in the second run. Metric lifetime timeline A. Ping lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. It is included in the first ping after being recorded (Ping 2), which causes it to be cleared. B. Ping lifetime, set on init and change : The default value is included in Ping 1, and the changed value is included in Ping 2, which causes it to be cleared. It therefore misses Ping 3, but when the application is started, it is recorded again and it is included in Ping 4. However, this causes it to be cleared again and it is not in Ping 5. C. Application lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. After the value is changed, it is included in Pings 2 and 3, but then due to application restart it is cleared, so it is not included until the value is manually toggled again. D. Application, set on init and change : The default value is included in Ping 1, and the changed value is included in Pings 2 and 3. Even though the application startup causes it to be cleared, it is set again, and all subsequent pings also have the value. E. User, set on change : The default value is missing from Ping 1, but since user lifetime metrics aren't cleared unless the user profile is reset (e.g. on Android, when the product is uninstalled), it is included in all subsequent pings. F. User, set on init and change : Since user lifetime metrics aren't cleared unless the user profile is reset, it is included in all subsequent pings. This would be true even if the \"turbo mode\" preference were never changed again. Note that for all of the metric configurations, the toggle of the preference off and on during Ping 4 is completely missed. If you need to create a ping containing one, and only one, value for this metric, consider using a custom ping to create a ping whose lifetime matches the lifetime of the value.","breadcrumbs":"Metrics » Adding new metrics » A lifetime example","id":"100","title":"A lifetime example"},"101":{"body":"If the timing at which the metric is sent in the ping needs to closely match the timing of the metrics value, the best option is to use a custom ping to manually control when pings are sent. This is especially useful when metrics need to be tightly related to one another, for example when you need to measure the distribution of frame paint times when a particular rendering backend is in use. If these metrics were in different pings, with different measurement windows, it is much harder to do that kind of reasoning with much certainty.","breadcrumbs":"Metrics » Adding new metrics » What if none of these lifetimes are appropriate?","id":"101","title":"What if none of these lifetimes are appropriate?"},"102":{"body":"Metric names have a maximum length of 30 characters.","breadcrumbs":"Metrics » Adding new metrics » What should this new metric be called?","id":"102","title":"What should this new metric be called?"},"103":{"body":"There's a lot of value using the same name for analogous metrics collected across different products. For example, BigQuery makes it simple to join columns with the same name across multiple tables. Therefore, we encourage you to investigate if a similar metric is already being collected by another product. If it is, there may be an opportunity for code reuse across these products, and if all the projects are using the Glean SDK, it's easy for libraries to send their own metrics. If sharing the code doesn't make sense, at a minimum we recommend using the same metric name for similar actions and concepts whenever possible.","breadcrumbs":"Metrics » Adding new metrics » Reuse names from other applications","id":"103","title":"Reuse names from other applications"},"104":{"body":"Metric identifiers (the combination of a metric's category and name) must be unique across all metrics that are sent by a single application. This includes not only the metrics defined in the app's metrics.yaml, but the metrics.yaml of any Glean SDK-using library that the application uses, including the Glean SDK itself. Therefore, care should be taken to name things specifically enough so as to avoid namespace collisions. In practice, this generally involves thinking carefully about the category of the metric, more than the name. Note: Duplicate metric identifiers are not currently detected at build time. See bug 1578383 for progress on that. However, the probe_scraper process, which runs nightly, will detect duplicate metrics and e-mail the notification_emails associated with the given metrics.","breadcrumbs":"Metrics » Adding new metrics » Make names unique within an application","id":"104","title":"Make names unique within an application"},"105":{"body":"More broadly, you should choose the names of metrics to be as specific as possible. It is not necessary to put the type of the metric in the category or name, since this information is retained in other ways through the entire end-to-end system. For example, if defining a set of events related to search, put them in a category called search, rather than just events or search_events. The events word here would be redundant.","breadcrumbs":"Metrics » Adding new metrics » Be as specific as possible","id":"105","title":"Be as specific as possible"},"106":{"body":"The current set of metrics the Glean SDKs support is based on known common use cases, but new use cases are discovered all the time. Please reach out to us on #glean:mozilla.org . If you think you need a new metric type, we have a process for that .","breadcrumbs":"Metrics » Adding new metrics » What if none of these metric types is the right fit?","id":"106","title":"What if none of these metric types is the right fit?"},"107":{"body":"The Glean SDK has rich support for writing unit tests involving metrics. Writing a good unit test is a large topic, but in general, you should write unit tests for all new telemetry that does the following: Performs the operation being measured. Asserts that metrics contain the expected data, using the testGetValue API on the metric. Where applicable, asserts that no errors are recorded, such as when values are out of range, using the testGetNumRecordedErrors API. In addition to unit tests, it is good practice to validate the incoming data for the new metric on a pre-release channel to make sure things are working as expected.","breadcrumbs":"Metrics » Adding new metrics » How do I make sure my metric is working?","id":"107","title":"How do I make sure my metric is working?"},"108":{"body":"The metrics.yaml file defines the metrics your application or library will send. They are organized into categories. The overall organization is: # Required to indicate this is a `metrics.yaml` file\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 toolbar: click: type: event description: | Event to record toolbar clicks. metadata: tags: - Interaction notification_emails: - CHANGE-ME@example.com bugs: - https://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review expires: 2019-06-01 # <-- Update to a date in the future double_click: ... Refer to the metrics YAML registry format for a full reference on the metrics.yaml file structure.","breadcrumbs":"Metrics » Adding new metrics » Adding the metric to the metrics.yaml file","id":"108","title":"Adding the metric to the metrics.yaml file"},"109":{"body":"The reference documentation for each metric type goes into detail about using each metric type from your code. Note that all Glean metrics are write-only. Outside of unit tests, it is impossible to retrieve a value from the Glean SDK's database. While this may seem limiting, this is required to: enforce the semantics of certain metric types (e.g. that Counters can only be incremented). ensure the lifetime of the metric (when it is cleared or reset) is correctly handled.","breadcrumbs":"Metrics » Adding new metrics » Using the metric from your code","id":"109","title":"Using the metric from your code"},"11":{"body":"The Glean Kotlin SDK is published on maven.mozilla.org . To use it, you need to add the following to your project's top-level build file, in the allprojects block (see e.g. Glean SDK's own build.gradle ): repositories { maven { url \"https://maven.mozilla.org/maven2\" }\n} Each module that uses the Glean Kotlin SDK needs to specify it in its build file, in the dependencies block. Add this to your Gradle configuration: implementation \"org.mozilla.components:service-glean:{latest-version}\" Pick the correct version The {latest-version} placeholder in the above link should be replaced with the version of Android Components used by the project. The Glean Kotlin SDK is released as part of android-components . Therefore, it follows android-components' versions. The android-components release page can be used to determine the latest version. For example, if version 33.0.0 is used, then the include directive becomes: implementation \"org.mozilla.components:service-glean:33.0.0\" Size impact on the application APK The Glean Kotlin SDK APK ships binary libraries for all the supported platforms. Each library file measures about 600KB. If the final APK size of the consuming project is a concern, please enable ABI splits .","breadcrumbs":"Adding Glean to your project » Kotlin » Setting up the dependency","id":"11","title":"Setting up the dependency"},"110":{"body":"One thing to note is that we try to adhere to the coding conventions of each language wherever possible, so the metric name and category in the metrics.yaml (which is in snake_case) may be changed to some other case convention, such as camelCase, when used from code. Event extras and labels are never capitalized, no matter the target language. Category and metric names in the metrics.yaml are in snake_case, but given the Kotlin coding standards defined by ktlint , these identifiers must be camelCase in Kotlin. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: import org.mozilla.yourApplication.GleanMetrics.Views\nGleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, but given the Swift coding standards defined by swiftlint , these identifiers must be camelCase in Swift. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: GleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, which matches the PEP8 standard, so no translation is needed for Python. Given the Rust coding standards defined by clippy , identifiers should all be snake_case. This includes category names which in the metrics.yaml are dotted.snake_case: compound.category: metric_name: ... In Rust this becomes: use firefox_on_glean::metrics; metrics::compound_category::metric_name... JavaScript identifiers are customarily camelCase. This requires transforming a metric defined in the metrics.yaml as: compound.category: metric_name: ... to a form useful in JS as: import * as compoundCategory from \"./path/to/generated/files/compoundCategory.js\"; compoundCategory.metricName... Firefox Desktop has Coding Style Guidelines for both C++ and JS. This results in, for a metric defined in the metrics.yaml as: compound.category: metric_name: ... an identifier that looks like: C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::compound_category::metric_name... JavaScript Glean.compoundCategory.metricName... Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Adding new metrics » Capitalization","id":"110","title":"Capitalization"},"111":{"body":"In order to support unit testing inside of client applications using the Glean SDK, a set of testing API functions have been included. The intent is to make the Glean SDKs easier to test 'out of the box' in any client application it may be used in. These functions expose a way to inspect and validate recorded metric values within the client application. but are restricted to test code only. (Outside of a testing context, Glean APIs are otherwise write-only so that it can enforce semantics and constraints about data). To encourage using the testing APIs, it is also possible to generate testing coverage reports to show which metrics in your project are tested.","breadcrumbs":"Metrics » Testing metrics » Unit testing Glean metrics","id":"111","title":"Unit testing Glean metrics"},"112":{"body":"In order to enable metrics testing APIs in each SDK, Glean must be reset and put in testing mode. For documentation on how to do that, refer to Initializing - Testing API . Check out full examples of using the metric testing API on each Glean SDK. All examples omit the step of resetting Glean for tests to focus solely on metrics unit testing. // Record a metric value with extra to validate against\nGleanMetrics.BrowserEngagement.click.record( BrowserEngagementExtras(font = \"Courier\")\n) // Record more events without extras attached\nBrowserEngagement.click.record()\nBrowserEngagement.click.record() // Retrieve a snapshot of the recorded events\nval events = BrowserEngagement.click.testGetValue()!! // Check if we collected all 3 events in the snapshot\nassertEquals(3, events.size) // Check extra key/value for first event in the list\nassertEquals(\"Courier\", events.elementAt(0).extra[\"font\"]) // Record a metric value with extra to validate against\nGleanMetrics.BrowserEngagement.click.record([.font: \"Courier\"]) // Record more events without extras attached\nBrowserEngagement.click.record()\nBrowserEngagement.click.record() // Retrieve a snapshot of the recorded events\nlet events = BrowserEngagement.click.testGetValue()! // Check if we collected all 3 events in the snapshot\nXCTAssertEqual(3, events.count) // Check extra key/value for first event in the list\nXCTAssertEqual(\"Courier\", events[0].extra?[\"font\"]) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Record a metric value with extra to validate against\nmetrics.url.visit.add(1) # Check if we collected any events into the 'click' metric\nassert metrics.url.visit.test_get_value() is not Null # Retrieve a snapshot of the recorded events\nassert 1 == metrics.url.visit.test_get_value()","breadcrumbs":"Metrics » Testing metrics » Example of using the test API","id":"112","title":"Example of using the test API"},"113":{"body":"Glean can generate coverage reports to track which metrics are tested in your unit test suite. There are three steps to integrate it into your continuous integration workflow: recording coverage, post-processing the results, and uploading the results.","breadcrumbs":"Metrics » Testing metrics » Generating testing coverage reports","id":"113","title":"Generating testing coverage reports"},"114":{"body":"Glean testing coverage is enabled by setting the GLEAN_TEST_COVERAGE environment variable to the name of a file to store results. It is good practice to set it to the absolute path to a file, since some testing harnesses (such as cargo test) may change the current working directory. GLEAN_TEST_COVERAGE=$(realpath glean_coverage.txt) make test","breadcrumbs":"Metrics » Testing metrics » Recording coverage","id":"114","title":"Recording coverage"},"115":{"body":"A post-processing step is required to convert the raw output in the file specified by GLEAN_TEST_COVERAGE into usable output for coverage reporting tools. Currently, the only coverage reporting tool supported is codecov.io . This post-processor is available in the coverage subcommand in the glean_parser tool. For some build systems, glean_parser is already installed for you by the build system integration at the following locations: On Android/Gradle, $GRADLE_HOME/glean/bootstrap-4.5.11/Miniconda3/bin/glean_parser On iOS, $PROJECT_ROOT/.venv/bin/glean_parser For other systems, install glean_parser using pip install glean_parser The glean_parser coverage command requires the following parameters: -f: The output format to produce, for example codecovio to produce codecov.io 's custom format. -o: The path to the output file, for example codecov.json. -c: The input raw coverage file. glean_coverage.txt in the example above. A list of the metrics.yaml files in your repository. For example, to produce output for codecov.io : glean_parser coverage -f codecovio -o glean_coverage.json -c glean_coverage.txt app/metrics.yaml In this example, the glean_coverage.json file is now ready for uploading to codecov.io.","breadcrumbs":"Metrics » Testing metrics » Post-processing the results","id":"115","title":"Post-processing the results"},"116":{"body":"If using codecov.io, the uploader doesn't send coverage results for YAML files by default. Pass the -X yaml option to the uploader to make sure they are included: bash <(curl -s https://codecov.io/bash) -X yaml Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Testing metrics » Uploading coverage","id":"116","title":"Uploading coverage"},"117":{"body":"It is worth investing time when instrumentation is added to the product to understand if the data looks reasonable and expected, and to take action if it does not. It is important to highlight that an automated rigorous test suite for testing metrics is an important precondition for building confidence in newly collected data (especially business-critical ones). The following checklist could help guide this validation effort. Before releasing the product with the new data collection, make sure the data looks as expected by generating sample data on a local machine and inspecting it on the Glean Debug View (see the debugging facilities) : a. Is the data showing up in the correct ping(s)? b. Does the metric report the expected data? c. If exercising the same path again, is it expected for the data to be submitted again? And does it? As users start adopting the version of the product with the new data collection (usually within a few days of release), the initial data coming in should be checked, to understand how the measurements are behaving in the wild: a. Does this organically-sent data satisfy the same quality expectations the manually-sent data did in Step 1? b. Is the metric showing up correctly in the Glean Dictionary ? c. Is there any new error being reported for the new data points? If so, does this point to an edge case that should be documented and/or fixed in the code? d. As the first three or four days pass, distributions will converge towards their final shapes. Consider extreme values; are there a very high number of zero/minimum values when there shouldn't be, or values near what you would realistically expect to be the maximum (e.g. a timespan for a single day that is reporting close to 86,400 seconds)? In case of oddities in the data, how much of the product population is affected? Does this require changing the instrumentation or documenting?","breadcrumbs":"Metrics » Validating metrics » Validating the collected data","id":"117","title":"Validating the collected data"},"118":{"body":"Data practitioners that lack familiarity with YAML or product-specific development workflows can still document any discovered edge-cases and anomalies by identifying the metric in the Glean Dictionary and initiate adding commentary from the metric page. After enough data is collected from the product population, are the expectations from the previous points still met?","breadcrumbs":"Metrics » Validating metrics » How to annotate metrics without changing the source code?","id":"118","title":"How to annotate metrics without changing the source code?"},"119":{"body":"In case of multiple distinct product populations, the above checklist should be ideally run against all of them. For example, in case of Firefox , the checklist should be run for the Nightly population first, then on the other channels as the collection moves across the release trains. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Validating metrics » Does the product support multiple release channels?","id":"119","title":"Does the product support multiple release channels?"},"12":{"body":"Due to its use of a native library you will need additional setup to allow local testing. First add a new configuration to your build.gradle, just before your dependencies: configurations { jnaForTest\n} Then add the following lines to your dependencies block: jnaForTest \"net.java.dev.jna:jna:5.6.0@jar\"\ntestImplementation files(configurations.jnaForTest.copyRecursive().files)\ntestImplementation \"org.mozilla.telemetry:glean-forUnitTests:${project.ext.glean_version}\" Note: Always use org.mozilla.telemetry:glean-forUnitTests. This package is standalone and its version will be exported from the main Glean package automatically.","breadcrumbs":"Adding Glean to your project » Kotlin » Dependency for local testing","id":"12","title":"Dependency for local testing"},"120":{"body":"The Glean SDKs record the number of errors that occur when metrics are passed invalid data or are otherwise used incorrectly. This information is reported back in special labeled counter metrics in the glean.error category. Error metrics are included in the same pings as the metric that caused the error. Additionally, error metrics are always sent in the metrics ping ping. The following categories of errors are recorded: invalid_value: The metric value was invalid. invalid_label: The label on a labeled metric was invalid. invalid_state: The metric caught an invalid state while recording. invalid_overflow: The metric value to be recorded overflows the metric-specific upper range. invalid_type: The metric value is not of the expected type. This error type is only recorded by the Glean JavaScript SDK. This error may only happen in dynamically typed languages. For example, if you had a string metric and passed it a string that was too long: MyMetrics.stringMetric.set(\"this_string_is_longer_than_the_limit_for_string_metrics\") The following error metric counter would be incremented: Glean.error.invalidOverflow[\"my_metrics.string_metric\"].add(1) Resulting in the following keys in the ping: { \"metrics\": { \"labeled_counter\": { \"glean.error.invalid_overflow\": { \"my_metrics.string_metric\": 1 } } }\n} If you have a debug build of the Glean SDK, details about the errors being recorded are included in the logs. This detailed information is not included in Glean pings. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Error reporting » Error reporting","id":"120","title":"Error reporting"},"121":{"body":"If you are looking for the metrics collected by Glean.js, refer to the documentation over on the @mozilla/glean.js repository.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » The Glean JavaScript SDK provides a slightly different set of metrics and pings","id":"121","title":"The Glean JavaScript SDK provides a slightly different set of metrics and pings"},"122":{"body":"This document enumerates the metrics collected by this project using the Glean SDK . This project may depend on other projects which also collect metrics. This means you might have to go searching through the dependency tree to get a full picture of everything collected by this project.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » Metrics","id":"122","title":"Metrics"},"123":{"body":"all-pings baseline deletion-request metrics","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » Pings","id":"123","title":"Pings"},"124":{"body":"These metrics are sent in every ping. All Glean pings contain built-in metrics in the ping_info and client_info sections. In addition to those built-in metrics, the following metrics are added to the ping: Name Type Description Data reviews Extras Expiration Data Sensitivity glean.client.annotation.experimentation_id string An experimentation identifier derived and provided by the application for the purpose of experimentation enrollment. Bug 1848201 never 1 glean.error.invalid_label labeled_counter Counts the number of times a metric was set with an invalid label. The labels are the category.name identifier of the metric. Bug 1499761 never 1 glean.error.invalid_overflow labeled_counter Counts the number of times a metric was set a value that overflowed. The labels are the category.name identifier of the metric. Bug 1591912 never 1 glean.error.invalid_state labeled_counter Counts the number of times a timing metric was used incorrectly. The labels are the category.name identifier of the metric. Bug 1499761 never 1 glean.error.invalid_value labeled_counter Counts the number of times a metric was set to an invalid value. The labels are the category.name identifier of the metric. Bug 1499761 never 1 glean.restarted event Recorded when the Glean SDK is restarted. Only included in custom pings that record events. For more information, please consult the Custom Ping documentation . Bug 1716725 never 1","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » all-pings","id":"124","title":"all-pings"},"125":{"body":"This is a built-in ping that is assembled out of the box by the Glean SDK. See the Glean SDK documentation for the baseline ping . This ping is sent if empty. This ping includes the client id . Data reviews for this ping: https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3 https://bugzilla.mozilla.org/show_bug.cgi?id=1599877#c25 Bugs related to this ping: https://bugzilla.mozilla.org/1512938 https://bugzilla.mozilla.org/1599877 Reasons this ping may be sent: active: The ping was submitted when the application became active again, which includes when the application starts. In earlier versions, this was called foreground. *Note*: this ping will not contain the `glean.baseline.duration` metric. dirty_startup: The ping was submitted at startup, because the application process was killed before the Glean SDK had the chance to generate this ping, before becoming inactive, in the last session. *Note*: this ping will not contain the `glean.baseline.duration` metric. inactive: The ping was submitted when becoming inactive. In earlier versions, this was called background. All Glean pings contain built-in metrics in the ping_info and client_info sections. In addition to those built-in metrics, the following metrics are added to the ping: Name Type Description Data reviews Extras Expiration Data Sensitivity glean.baseline.duration timespan The duration of the last foreground session. Bug 1512938 never 1, 2 glean.validation.pings_submitted labeled_counter A count of the pings submitted, by ping type. This metric appears in both the metrics and baseline pings. - On the metrics ping, the counts include the number of pings sent since the last metrics ping (including the last metrics ping) - On the baseline ping, the counts include the number of pings send since the last baseline ping (including the last baseline ping) Bug 1586764 never 1","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » baseline","id":"125","title":"baseline"},"126":{"body":"This is a built-in ping that is assembled out of the box by the Glean SDK. See the Glean SDK documentation for the deletion-request ping . This ping is sent if empty. This ping includes the client id . Data reviews for this ping: https://bugzilla.mozilla.org/show_bug.cgi?id=1587095#c6 https://bugzilla.mozilla.org/show_bug.cgi?id=1702622#c2 Bugs related to this ping: https://bugzilla.mozilla.org/1587095 https://bugzilla.mozilla.org/1702622 Reasons this ping may be sent: at_init: The ping was submitted at startup. Glean discovered that between the last time it was run and this time, upload of data has been disabled. set_upload_enabled: The ping was submitted between Glean init and Glean shutdown. Glean was told after init but before shutdown that upload has changed from enabled to disabled. All Glean pings contain built-in metrics in the ping_info and client_info sections. This ping contains no metrics.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » deletion-request","id":"126","title":"deletion-request"},"127":{"body":"This is a built-in ping that is assembled out of the box by the Glean SDK. See the Glean SDK documentation for the metrics ping . This ping includes the client id . Data reviews for this ping: https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3 https://bugzilla.mozilla.org/show_bug.cgi?id=1557048#c13 Bugs related to this ping: https://bugzilla.mozilla.org/1512938 Reasons this ping may be sent: overdue: The last ping wasn't submitted on the current calendar day, but it's after 4am, so this ping submitted immediately reschedule: A ping was just submitted. This ping was rescheduled for the next calendar day at 4am. today: The last ping wasn't submitted on the current calendar day, but it is still before 4am, so schedule to send this ping on the current calendar day at 4am. tomorrow: The last ping was already submitted on the current calendar day, so schedule this ping for the next calendar day at 4am. upgrade: This ping was submitted at startup because the application was just upgraded. All Glean pings contain built-in metrics in the ping_info and client_info sections. In addition to those built-in metrics, the following metrics are added to the ping: Name Type Description Data reviews Extras Expiration Data Sensitivity glean.database.size memory_distribution The size of the database file at startup. Bug 1656589 never 1 glean.error.io counter The number of times we encountered an IO error when writing a pending ping to disk. Bug 1686233 never 1 glean.error.preinit_tasks_overflow counter The number of tasks that overflowed the pre-initialization buffer. Only sent if the buffer ever overflows. In Version 0 this reported the total number of tasks enqueued. Bug 1609482 never 1 glean.upload.deleted_pings_after_quota_hit counter The number of pings deleted after the quota for the size of the pending pings directory or number of files is hit. Since quota is only calculated for the pending pings directory, and deletion request ping live in a different directory, deletion request pings are never deleted. Bug 1601550 never 1 glean.upload.discarded_exceeding_pings_size memory_distribution The size of pings that exceeded the maximum ping size allowed for upload. Bug 1597761 never 1 glean.upload.in_flight_pings_dropped counter How many pings were dropped because we found them already in-flight. Bug 1816401 never 1 glean.upload.missing_send_ids counter How many ping upload responses did we not record as a success or failure (in glean.upload.send_success or glean.upload.send_failue, respectively) due to an inconsistency in our internal bookkeeping? Bug 1816400 never 1 glean.upload.pending_pings counter The total number of pending pings at startup. This does not include deletion-request pings. Bug 1665041 never 1 glean.upload.pending_pings_directory_size memory_distribution The size of the pending pings directory upon initialization of Glean. This does not include the size of the deletion request pings directory. Bug 1601550 never 1 glean.upload.ping_upload_failure labeled_counter Counts the number of ping upload failures, by type of failure. This includes failures for all ping types, though the counts appear in the next successfully sent metrics ping. Bug 1589124 status_code_4xxstatus_code_5xxstatus_code_unknownunrecoverablerecoverable never 1 glean.upload.send_failure timing_distribution Time needed for a failed send of a ping to the servers and getting a reply back. Bug 1814592 never 1 glean.upload.send_success timing_distribution Time needed for a successful send of a ping to the servers and getting a reply back Bug 1814592 never 1 glean.validation.foreground_count counter On mobile, the number of times the application went to foreground. Bug 1683707 never 1 glean.validation.pings_submitted labeled_counter A count of the pings submitted, by ping type. This metric appears in both the metrics and baseline pings. - On the metrics ping, the counts include the number of pings sent since the last metrics ping (including the last metrics ping) - On the baseline ping, the counts include the number of pings send since the last baseline ping (including the last baseline ping) Bug 1586764 never 1 glean.validation.shutdown_dispatcher_wait timing_distribution Time waited for the dispatcher to unblock during shutdown. Most samples are expected to be below the 10s timeout used. Bug 1828066 never 1 glean.validation.shutdown_wait timing_distribution Time waited for the uploader at shutdown. Bug 1814592 never 1 Data categories are defined here . Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » metrics","id":"127","title":"metrics"},"128":{"body":"A ping is a bundle of related metrics, gathered in a payload to be transmitted. The ping payload is encoded in JSON format and contains one or more of the common sections with shared information data. If data collection is enabled, the chosen Glean SDK may provide a set of built-in pings that are assembled out of the box without any developer intervention.","breadcrumbs":"Pings » Pings","id":"128","title":"Pings"},"129":{"body":"Payload structure The ping_info section seq start_time end_time reason (optional) experiments (optional) The client_info section app_build app_channel (optional) app_display_version build_date (optional) architecture client_id (optional) device_manufacturer (optional) device_model (optional) first_run_date os os_version android_sdk_version (optional) windows_build_number (optional) telemetry_sdk_build locale (optional) Ping submission URL Limitations Rate limiting Request body size limiting Storage quota Submitted headers Content-Type Date User-Agent (deprecated) X-Telemetry-Agent X-Debug-Id (optional) X-Source-Tags (optional)","breadcrumbs":"Pings » Table of contents","id":"129","title":"Table of contents"},"13":{"body":"In order for the Glean Kotlin SDK to generate an API for your metrics, two Gradle plugins must be included in your build: The Glean Gradle plugin JetBrains' Python envs plugin The Glean Gradle plugin is distributed through Mozilla's Maven, so we need to tell your build where to look for it by adding the following to the top of your build.gradle: buildscript { repositories { // Include the next clause if you are tracking snapshots of android components maven { url \"https://snapshots.maven.mozilla.org/maven2\" } maven { url \"https://maven.mozilla.org/maven2\" } dependencies { classpath \"org.mozilla.components:tooling-glean-gradle:{android-components-version}\" } }\n} Important As above, the {android-components-version} placeholder in the above link should be replaced with the version number of android components used in your project. The JetBrains Python plugin is distributed in the Gradle plugin repository, so it can be included with: plugins { id \"com.jetbrains.python.envs\" version \"0.0.26\"\n} Right before the end of the same file, we need to apply the Glean Gradle plugin. Set any additional parameters to control the behavior of the Glean Gradle plugin before calling apply plugin. // Optionally, set any parameters to send to the plugin.\next.gleanGenerateMarkdownDocs = true\napply plugin: \"org.mozilla.telemetry.glean-gradle-plugin\" Rosetta 2 required on Apple Silicon On Apple Silicon machines (M1/M2/M3 MacBooks and iMacs) Rosetta 2 is required for the bundled Python. See the Apple documentation about Rosetta 2 and Bug 1775420 for details. You can install it with softwareupdate --install-rosetta Offline builds The Glean Gradle plugin has limited support for offline builds of applications that use the Glean SDK. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Kotlin » Setting up metrics and pings code generation","id":"13","title":"Setting up metrics and pings code generation"},"130":{"body":"Every ping payload has the following keys at the top-level: The ping_info section contains core metadata that is included in every ping that doesn't set the metadata.include_info_sections property to false. The client_info section contains information that identifies the client. It is included in every ping that doesn't set the metadata.include_info_sections property to false. When included, it contains a persistent client identifier client_id, except when the include_client_id property is set to false. The following keys are only present if any metrics or events were recorded for the given ping: The metrics section contains the submitted values for all metric types except for events . It has keys for each of the metric types, under which is data for each metric. The events section contains the events recorded in the ping. See the payload documentation for more details for each metric type in the metrics and events section.","breadcrumbs":"Pings » Payload structure","id":"130","title":"Payload structure"},"131":{"body":"Metadata about the ping itself. This section is included in every ping that doesn't set the metadata.include_info_sections property to false. The following fields are included in the ping_info section. Optional fields are marked accordingly. seq Type: Counter , Lifetime: User A running counter of the number of times pings of this type have been sent. start_time Type: Datetime , Lifetime: User The time of the start of collection of the data in the ping, in local time and with millisecond precision (by default), including timezone information. ( Note : Custom pings can opt-out of precise timestamps and use minute precision.) end_time Type: Datetime , Lifetime: Ping The time of the end of collection of the data in the ping, in local time and with millisecond precision (by default), including timezone information. This is also the time this ping was generated and is likely well before ping transmission time. ( Note : Custom pings can opt-out of precise timestamps and use minute precision.) reason (optional) The reason the ping was submitted. The specific set of values and their meanings are defined for each metric type in the reasons field in the pings.yaml file. experiments (optional) A dictionary of active experiments. This object contains experiment annotations keyed by the experiment id. Each annotation contains the experiment branch the client is enrolled in and may contain a string to string map with additional data in the extra key. Both the id and branch are truncated to 30 characters. See Using the Experiments API on how to record experiments data. { \"\": { \"branch\": \"branch-id\", \"extra\": { \"some-key\": \"a-value\" } }\n}","breadcrumbs":"Pings » The ping_info section","id":"131","title":"The ping_info section"},"132":{"body":"A limited amount of metrics that are generally useful across products. The data is provided by the embedding application or automatically fetched by the Glean SDK. It is collected at initialization time and sent in every ping afterwards. For historical reasons it contains metrics that are only useful on a certain platform. This section is included in every ping that doesn't set the metadata.include_info_sections property to false. Additional metrics require a proposal Adding new metrics maintained by the Glean SDKs team will require a full proposal and details on why that value is useful across multiple platforms and products and needs Glean SDKs team ownership. The Glean SDKs are not taking ownership of new metrics that are platform- or product-specific. The following fields are included in the client_info section. Optional fields are marked accordingly. app_build Type: String , Lifetime: Application The build identifier generated by the CI system (e.g. \"1234/A\"). If the value was not provided through configuration, this metric gets set to Unknown. app_channel (optional) Type: String , Lifetime: Application The product-provided release channel (e.g. \"beta\"). app_display_version Type: String , Lifetime: Application The user-visible version string (e.g. \"1.0.3\"). The meaning of the string (e.g. whether semver or a git hash) is application-specific. If the value was not provided through configuration, this metric gets set to Unknown. build_date (optional) Type: Datetime , Lifetime: Application architecture Type: String , Lifetime: Application The architecture of the device (e.g. \"arm\", \"x86\"). client_id (optional) Type: UUID , Lifetime: User A UUID identifying a profile and allowing user-oriented correlation of data. device_manufacturer (optional) Type: String , Lifetime: Application The manufacturer of the device the application is running on. Not set if the device manufacturer can't be determined (e.g. on Desktop). device_model (optional) Type: String , Lifetime: Application The model of the device the application is running on. On Android, this is Build.MODEL, the user-visible marketing name, like \"Pixel 2 XL\". Not set if the device model can't be determined (e.g. on Desktop). first_run_date Type: Datetime , Lifetime: User The date of the first run of the application, in local time and with day precision, including timezone information. os Type: String , Lifetime: Application The name of the operating system (e.g. \"Linux\", \"Android\", \"iOS\"). os_version Type: String , Lifetime: Application The user-visible version of the operating system (e.g. \"1.2.3\"). If the version detection fails, this metric gets set to Unknown. android_sdk_version (optional) Type: String , Lifetime: Application The Android specific SDK version of the software running on this hardware device (e.g. \"23\"). windows_build_number (optional ) Type: Quantity , Lifetime: Application The optional Windows build number, reported by Windows (e.g. 22000) and not set for other platforms. telemetry_sdk_build Type: String , Lifetime: Application The version of the Glean SDK. locale (optional) Type: String , Lifetime: Application The locale of the application during initialization (e.g. \"es-ES\"). If the locale can't be determined on the system, the value is \"und\", to indicate \"undetermined\".","breadcrumbs":"Pings » The client_info section","id":"132","title":"The client_info section"},"133":{"body":"The pings that the Glean SDKs generate are submitted to the Mozilla servers at specific paths, in order to provide additional metadata without the need to unpack the ping payload.","breadcrumbs":"Pings » Ping submission","id":"133","title":"Ping submission"},"134":{"body":"A typical submission URL looks like \"/submit////\" where: : the address of the server that receives the pings; : a unique application id, automatically detected by the Glean SDK; this is the value returned by Context.getPackageName() ; : the name of the ping; this can be one of the pings available out of the box with the Glean SDK, or a custom ping; : the version of the Glean ping schema; : a unique identifier for this ping.","breadcrumbs":"Pings » URL","id":"134","title":"URL"},"135":{"body":"To keep resource usage in check, the Glean SDK enforces some limitations on ping uploading and ping storage. Rate limiting Only up to 15 ping submissions every 60 seconds are allowed. For the JavaScript SDK that limit is higher and up to 40 ping submissions every 60 seconds are allowed. Request body size limiting The body of a ping request may have up to 1MB (after compression). Pings that exceed this size are discarded and don't get uploaded. Size and number of discarded pings are recorded on the internal Glean metric glean.upload.discarded_exceeding_pings_size . Storage quota Pending pings are stored on disk. Storage is scanned every time Glean is initialized and upon scanning Glean checks its size. If it exceeds a size of 10MB or 250 pending pings, pings are deleted to get the storage back to an accepted size. Pings are deleted oldest first, until the storage size is below the quota. The number of deleted pings due to exceeding storage quota is recorded on the metric glean.upload.deleted_pings_after_quota_hit and the size of the pending pings directory is recorded (regardless on whether quota has been reached) on the metric glean.upload.pending_pings_directory_size . Deletion request pings are not subject to this limitation and never get deleted.","breadcrumbs":"Pings » Limitations","id":"135","title":"Limitations"},"136":{"body":"A pre-defined set of headers is additionally sent along with the submitted ping. Content-Type Describes the data sent to the server. Value is always application/json; charset=utf-8. Date Submission date/time in GMT/UTC+0 offset, e.g. Mon, 23 Jan 2019 10:10:10 GMT+00:00. User-Agent (deprecated) Up to Glean v44.0.0 and Glean.js v0.13.0 this contained the Glean SDK version and platform information. Newer Glean SDKs do not overwrite this header. See X-Telemetry-Agent for details. Clients might still send it, for example, when sending pings from browsers it will contain the characteristic browser UA string . This header is parsed by the Glean pipeline and can be queried at analysis time through the metadata.user_agent.* fields in the ping tables. X-Telemetry-Agent The Glean SDK version and platform this ping is sent from. Useful for debugging purposes when pings are sent to the error stream . as it describes the application and the Glean SDK used for sending the ping. It's looks like Glean/40.0.0 (Kotlin on Android), where 40.0.0 is the Glean Kotlin SDK version number and Kotlin on Android is the name of the language used by the SDK that sent the request plus the name of the platform it is running on. X-Debug-Id (optional) Debug header attached to Glean pings by using the debug APIs , e.g. test-tag. When this header is present, the ping is redirected to the Glean Debug View . X-Source-Tags (optional) A list of tags to associate with the ping, useful for clustering pings at analysis time, for example to tell data generated from CI from other data e.g. automation, perf. This header is attached to Glean pings by using the debug APIs . Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Submitted headers","id":"136","title":"Submitted headers"},"137":{"body":"Applications can define metrics that are sent in custom pings. Unlike the built-in pings, custom pings are sent explicitly by the application. This is useful when the scheduling of the built-in pings ( metrics , baseline and events ) are not appropriate for your data. Since the timing of the submission of custom pings is handled by the application, the measurement window is under the application's control. This is especially useful when metrics need to be tightly related to one another, for example when you need to measure the distribution of frame paint times when a particular rendering backend is in use. If these metrics were in different pings, with different measurement windows, it is much harder to do that kind of reasoning with much certainty.","breadcrumbs":"Pings » Adding new custom pings » Custom pings","id":"137","title":"Custom pings"},"138":{"body":"Custom pings must be defined in a pings.yaml file , placed in the same directory alongside your app's metrics.yaml file. For example, to define a custom ping called search specifically for search information: $schema: moz://mozilla.org/schemas/glean/pings/2-0-0 search: description: > A ping to record search data. metadata: tags: - Search include_client_id: false notification_emails: - CHANGE-ME@example.com bugs: - http://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review Tags are an optional feature you can use to provide an additional layer of categorization to pings. Any tags specified in the metadata section of a ping must have a corresponding entry in a tags YAML registry for your project. Refer to the pings YAML registry format for a full reference on the pings.yaml file structure.","breadcrumbs":"Pings » Adding new custom pings » Defining a custom ping","id":"138","title":"Defining a custom ping"},"139":{"body":"To send a metric on a custom ping, you add the custom ping's name to the send_in_pings parameter in the metrics.yaml file.","breadcrumbs":"Pings » Adding new custom pings » Sending metrics in a custom ping","id":"139","title":"Sending metrics in a custom ping"},"14":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Swift project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so. Currently, this SDK only supports the iOS platform.","breadcrumbs":"Adding Glean to your project » Swift » Adding Glean to your Swift project","id":"14","title":"Adding Glean to your Swift project"},"140":{"body":"After defining a custom ping, before it can be used for sending data, its metadata must be loaded into your application or library . For example, to define a new metric to record the default search engine, which is sent in a custom ping called search, put search in the send_in_pings parameter. Note that it is an error to specify a ping in send_in_pings that does not also have an entry in pings.yaml. search.default: name: type: string description: > The name of the default search engine. send_in_pings: - search If this metric should also be sent in the default ping for the given metric type, you can add the special value default to send_in_pings: send_in_pings: - search - default","breadcrumbs":"Pings » Adding new custom pings » Ping metadata must be loaded before sending!","id":"140","title":"Ping metadata must be loaded before sending!"},"141":{"body":"For custom pings that contain event metrics, the glean.restarted event is injected by Glean on every application restart that may happen during the pings measurement window. Note : All leading and trailing glean.restarted events are omitted from each ping.","breadcrumbs":"Pings » Adding new custom pings » The glean.restarted event","id":"141","title":"The glean.restarted event"},"142":{"body":"Event timestamps are always calculated relative to the first event in a ping. The first event will always have timestamp 0 and subsequent events will have timestamps corresponding to the elapsed amount of milliseconds since that first event. That is also the case for events recorded throughout restarts. Example In the below example payload, there were two events recorded on the first application run. The first event is timestamp 0 and the second event happens one second after the first one, so it has timestamp 1000. The application is restarted one hour after the first event and a glean.restarted event is recorded, timestamp 3600000. Finally, an event is recorded during the second application run two seconds after restart, timestamp 3602000. { ... \"events\": [ { \"timestamp\": 0, \"category\": \"examples\", \"name\": \"event_example\", }, { \"timestamp\": 1000, \"category\": \"examples\", \"name\": \"event_example\" }, { \"timestamp\": 3600000, \"category\": \"glean\", \"name\": \"restarted\" }, { \"timestamp\": 3602000, \"category\": \"examples\", \"name\": \"event_example\" }, ]\n} Caveat: Handling decreasing time offsets For events recorded in a single application run, Glean relies on a monotonically increasing timer to calculate event timestamps, while for calculating the time elapsed between application runs Glean has to rely on the computer clock, which is not necessarily monotonically increasing. In the case that timestamps in between application runs are not monotonically increasing, Glean will take the value of the previous timestamp and add one millisecond, thus guaranteeing that timestamps are always increasing. Checking for decreasing time offsets between restarts When this edge case is hit, Glean records an InvalidValue error for the glean.restarted metric. This metric may be consulted at analysis time. It is sent in the same ping where the error happened. In the below example payload, the first and second application runs go exactly like in the example above . The only difference is that when the restart happens, the offset between the absolute time of the first event and the absolute time of the restart is not enough to keep the timestamps increasing. That may happen for many reasons, such as a change in timezones or simply a manual change in the clock by the user. In this case, Glean will ignore the incorrect timestamp and add one millisecond to the last timestamp of the previous run, in order to keep the monotonically increasing nature of the timestamps. { ... \"events\": [ { \"timestamp\": 0, \"category\": \"examples\", \"name\": \"event_example\", }, { \"timestamp\": 1000, \"category\": \"examples\", \"name\": \"event_example\" }, { \"timestamp\": 1001, \"category\": \"glean\", \"name\": \"restarted\" }, { \"timestamp\": 3001, \"category\": \"examples\", \"name\": \"event_example\" }, ]\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Adding new custom pings » Event timestamps throughout application restarts","id":"142","title":"Event timestamps throughout application restarts"},"143":{"body":"Applications defining custom pings can use use the ping testing API to test these pings in unit tests.","breadcrumbs":"Pings » Testing custom pings » Testing custom pings","id":"143","title":"Testing custom pings"},"144":{"body":"The schedule of custom pings depends on the specific application implementation, since it is up to the SDK user to define the ping semantics. This makes the testing strategy a bit more complex, but usually boiling down to: Triggering the code path that accumulates/records the data. Defining a callback validation function using the ping testing API . Finally triggering the code path that submits the custom ping or submitting the ping using the submit API . Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Testing custom pings » General testing strategy","id":"144","title":"General testing strategy"},"145":{"body":"If data collection is enabled, the Glean SDKs provide a set of built-in pings that are assembled out of the box without any developer intervention. The following is a list of these built-in pings: baseline ping : A small ping sent every time the application goes to foreground and background. Going to foreground also includes when the application starts. deletion-request ping : Sent when the user disables telemetry in order to request a deletion of their data. events ping : The default ping for events. Sent every time the application goes to background or a certain number of events is reached. Is not sent when there are no events recorded, even if there are other metrics with values. metrics ping : The default ping for metrics. Sent approximately daily. Applications can also define and send their own custom pings when the schedules of these pings is not suitable. There is also a high-level overview of how the metrics and baseline pings relate and the timings they record.","breadcrumbs":"Pings » Pings sent by Glean » Pings sent by Glean","id":"145","title":"Pings sent by Glean"},"146":{"body":"SDK baseline deletion-request events metrics Kotlin ✅ ✅ ✅ ✅ Swift ✅ ✅ ✅ ✅ Python ✅ [1] ✅ ✅ [2] ❌ Rust ✅ ✅ ✅ ✅ JavaScript ❌ ✅ ✅ ❌ Firefox Desktop ✅ ✅ ✅ ✅ Not sent automatically. Use the handle_client_active and handle_client_inactive API. Sent on startup when pending events are stored. Additionally sent when handle_client_inactive is called.","breadcrumbs":"Pings » Pings sent by Glean » Available pings per platform","id":"146","title":"Available pings per platform"},"147":{"body":"These docs refer to application 'foreground' and 'background' state in several places.","breadcrumbs":"Pings » Pings sent by Glean » Defining foreground and background state","id":"147","title":"Defining foreground and background state"},"148":{"body":"For Android, this specifically means the activity becomes visible to the user, it has entered the Started state, and the system invokes the onStart() callback.","breadcrumbs":"Pings » Pings sent by Glean » Foreground","id":"148","title":"Foreground"},"149":{"body":"This specifically means when the activity is no longer visible to the user, it has entered the Stopped state, and the system invokes the onStop() callback. This may occur, if the user uses Overview button to change to another app, the user presses the Back button and navigates to a previous application or the home screen, or if the user presses the Home button to return to the home screen. This can also occur if the user navigates away from the application through some notification or other means. The system may also call onStop() when the activity has finished running, and is about to be terminated.","breadcrumbs":"Pings » Pings sent by Glean » Background","id":"149","title":"Background"},"15":{"body":"Python >= 3.8.","breadcrumbs":"Adding Glean to your project » Swift » Requirements","id":"15","title":"Requirements"},"150":{"body":"For iOS, the Glean Swift SDK attaches to the willEnterForegroundNotification . This notification is posted by the OS shortly before an app leaves the background state on its way to becoming the active app.","breadcrumbs":"Pings » Pings sent by Glean » Foreground","id":"150","title":"Foreground"},"151":{"body":"For iOS, this specifically means when the app is no longer visible to the user, or when the UIApplicationDelegate receives the applicationDidEnterBackground event. This may occur if the user opens the task switcher to change to another app, or if the user presses the Home button to show the home screen. This can also occur if the user navigates away from the app through a notification or other means. Note: Glean does not currently support Scene based lifecycle events that were introduced in iOS 13. Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Background","id":"151","title":"Background"},"152":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » The baseline ping","id":"152","title":"The baseline ping"},"153":{"body":"This ping is intended to provide metrics that are managed by the Glean SDKs themselves, and not explicitly set by the application or included in the application's metrics.yaml file.","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Description","id":"153","title":"Description"},"154":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop baseline ping ✅ ✅ ❌ ✅ ❌ ✅","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Platform availability","id":"154","title":"Platform availability"},"155":{"body":"The baseline ping is automatically submitted with a reason: active when the application becomes active (on mobile it means getting to foreground ). These baseline pings do not contain duration. The baseline ping is automatically submitted with a reason: inactive when the application becomes inactive (on mobile it means getting to background ). If no baseline ping is triggered when becoming inactive (e.g. the process is abruptly killed) a baseline ping with reason dirty_startup will be submitted on the next application startup. This only happens from the second application start onward. See also the ping schedules and timing overview .","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Scheduling","id":"155","title":"Scheduling"},"156":{"body":"The baseline ping also includes the common ping sections found in all pings. It also includes a number of metrics defined in the Glean SDKs themselves .","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Contents","id":"156","title":"Contents"},"157":{"body":"A quick note about querying ping contents (i.e. for sql.telemetry.mozilla.org ): Each metric in the baseline ping is organized by its metric type, and uses a namespace of glean.baseline. For instance, in order to select duration you would use metrics.timespan['glean.baseline.duration']. If you were trying to select a String based metric such as os, then you would use metrics.string['glean.baseline.os']","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Querying ping contents","id":"157","title":"Querying ping contents"},"158":{"body":"{ \"ping_info\": { \"experiments\": { \"third_party_library\": { \"branch\": \"enabled\" } }, \"seq\": 0, \"start_time\": \"2019-03-29T09:50-04:00\", \"end_time\": \"2019-03-29T09:53-04:00\", \"reason\": \"foreground\" }, \"client_info\": { \"telemetry_sdk_build\": \"0.49.0\", \"first_run_date\": \"2019-03-29-04:00\", \"os\": \"Android\", \"android_sdk_version\": \"27\", \"os_version\": \"8.1.0\", \"device_manufacturer\": \"Google\", \"device_model\": \"Android SDK built for x86\", \"architecture\": \"x86\", \"app_build\": \"1\", \"app_display_version\": \"1.0\", \"client_id\": \"35dab852-74db-43f4-8aa0-88884211e545\" }, \"metrics\": { \"timespan\": { \"glean.baseline.duration\": { \"value\": 52, \"time_unit\": \"second\" } } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Example baseline ping","id":"158","title":"Example baseline ping"},"159":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » The deletion-request ping","id":"159","title":"The deletion-request ping"},"16":{"body":"The Glean Swift SDK can be consumed as a Swift Package. In your Xcode project add a new package dependency: https://github.com/mozilla/glean-swift Use the dependency rule \"Up to Next Major Version\". Xcode will automatically fetch the latest version for you. The Glean library will be automatically available to your code when you import it: import Glean","breadcrumbs":"Adding Glean to your project » Swift » Setting up the dependency","id":"16","title":"Setting up the dependency"},"160":{"body":"This ping is submitted when a user opts out of sending technical and interaction data. This ping contains the client id. This ping is intended to communicate to the Data Pipeline that the user wishes to have their reported Telemetry data deleted. As such it attempts to send itself at the moment the user opts out of data collection, and continues to try and send itself. Adding secondary ids It is possible to send secondary ids in the deletion request ping. For instance, if the application is migrating from legacy telemetry to Glean, the legacy client ids can be added to the deletion request ping by creating a metrics.yaml entry for the id to be added with a send_in_pings value of deletion_request. An example metrics.yaml entry might look like this: legacy_client_id: type: uuid description: A UUID uniquely identifying the legacy client. send_in_pings: - deletion_request ...","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Description","id":"160","title":"Description"},"161":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop deletion-request ping ✅ ✅ ✅ ✅ ✅ ✅","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Platform availability","id":"161","title":"Platform availability"},"162":{"body":"The deletion-request ping is automatically submitted when upload is disabled in Glean. If upload fails, it is retried after Glean is initialized.","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Scheduling","id":"162","title":"Scheduling"},"163":{"body":"The deletion-request does not contain additional metrics aside from secondary ids that have been added.","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Contents","id":"163","title":"Contents"},"164":{"body":"{ \"ping_info\": { \"seq\": 0, \"start_time\": \"2019-12-06T09:50-04:00\", \"end_time\": \"2019-12-06T09:53-04:00\" }, \"client_info\": { \"telemetry_sdk_build\": \"22.0.0\", \"first_run_date\": \"2019-03-29-04:00\", \"os\": \"Android\", \"android_sdk_version\": \"28\", \"os_version\": \"9\", \"device_manufacturer\": \"Google\", \"device_model\": \"Android SDK built for x86\", \"architecture\": \"x86\", \"app_build\": \"1\", \"app_display_version\": \"1.0\", \"client_id\": \"35dab852-74db-43f4-8aa0-88884211e545\" }, \"metrics\": { \"uuid\": { \"legacy_client_id\": \"5faffa6d-6147-4d22-a93e-c1dbd6e06171\" } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Example deletion-request ping","id":"164","title":"Example deletion-request ping"},"165":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » The events ping","id":"165","title":"The events ping"},"166":{"body":"The events ping's purpose is to transport event metric information. If the application crashes, an events ping is generated next time the application starts with events that were not sent before the crash.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Description","id":"166","title":"Description"},"167":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop events ping ✅ ✅ ✅ ✅ ✅ ✅","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Platform availability","id":"167","title":"Platform availability"},"168":{"body":"The events ping is automatically submitted under the following circumstances: If there are any recorded events to send when the application becomes inactive (on mobile, this means going to background ). When the queue of events exceeds Glean.configuration.maxEvents (default 1 for Glean.js, 500 for all other SDKs). This configuration option can be changed at initialization or through Server Knobs . If there are any unsent events found on disk when starting the application. (This results in this ping never containing the glean.restarted event.)","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Scheduling","id":"168","title":"Scheduling"},"169":{"body":"Since the Glean Python and JavaScript SDKs don't have a generic concept of \"inactivity\", case (1) above cannot be handled automatically. On Python, users can call the handle_client_inactive API to let Glean know the app is inactive and that will trigger submission of the events ping. On JavaScript there is no such API and only cases (2) and (3) apply.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Python and JavaScript caveats","id":"169","title":"Python and JavaScript caveats"},"17":{"body":"The metrics.yaml file is parsed at build time and Swift code is generated. Add a new metrics.yaml file to your Xcode project. Follow these steps to automatically run the parser at build time: Download the sdk_generator.sh script from the Glean repository: https://raw.githubusercontent.com/mozilla/glean/{latest-release}/glean-core/ios/sdk_generator.sh Pick the correct version As above, the {latest-version} placeholder should be replaced with the version number of Glean Swift SDK release used in this project. Add the sdk_generator.sh file to your Xcode project. On your application targets' Build Phases settings tab, click the + icon and choose New Run Script Phase. Create a Run Script in which you specify your shell (ex: /bin/sh), add the following contents to the script area below the shell: bash $PWD/sdk_generator.sh Set additional options to control the behavior of the script. Add the path to your metrics.yaml and (optionally) pings.yaml and tags.yaml under \"Input files\": $(SRCROOT)/{project-name}/metrics.yaml\n$(SRCROOT)/{project-name}/pings.yaml\n$(SRCROOT)/{project-name}/tags.yaml Add the path to the generated code file to the \"Output Files\": $(SRCROOT)/{project-name}/Generated/Metrics.swift If you are using Git, add the following lines to your .gitignore file: .venv/\n{project-name}/Generated This will ignore files that are generated at build time by the sdk_generator.sh script. They don't need to be kept in version control, as they can be re-generated from your metrics.yaml and pings.yaml files. Glean and embedded extensions Metric collection is a no-op in application extensions and Glean will not run. Since extensions run in a separate sandbox and process from the application, Glean would run in an extension as if it were a completely separate application with different client ids and storage. This complicates things because Glean doesn’t know or care about other processes. Because of this, Glean is purposefully prevented from running in an application extension and if metrics need to be collected from extensions, it's up to the integrating application to pass the information to the base application to record in Glean. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Swift » Setting up metrics and pings code generation","id":"17","title":"Setting up metrics and pings code generation"},"170":{"body":"At the top-level, this ping contains the following keys: client_info: The information common to all pings . ping_info: The information common to all pings . events: An array of all of the events that have occurred since the last time the events ping was sent. Each entry in the events array is an object with the following properties: \"timestamp\": The milliseconds relative to the first event in the ping. \"category\": The category of the event, as defined by its location in the metrics.yaml file. \"name\": The name of the event, as defined in the metrics.yaml file. \"extra\" (optional): A mapping of strings to strings providing additional data about the event. Keys are restricted to 40 UTF-8 bytes while values in the extra object are limited a maximum length of 500 UTF-8 bytes.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Contents","id":"170","title":"Contents"},"171":{"body":"{ \"ping_info\": { \"experiments\": { \"third_party_library\": { \"branch\": \"enabled\" } }, \"seq\": 0, \"start_time\": \"2019-03-29T09:50-04:00\", \"end_time\": \"2019-03-29T10:02-04:00\" }, \"client_info\": { \"telemetry_sdk_build\": \"0.49.0\", \"first_run_date\": \"2019-03-29-04:00\", \"os\": \"Android\", \"android_sdk_version\": \"27\", \"os_version\": \"8.1.0\", \"device_manufacturer\": \"Google\", \"device_model\": \"Android SDK built for x86\", \"architecture\": \"x86\", \"app_build\": \"1\", \"app_display_version\": \"1.0\", \"client_id\": \"35dab852-74db-43f4-8aa0-88884211e545\" }, \"events\": [ { \"timestamp\": 0, \"category\": \"examples\", \"name\": \"event_example\", \"extra\": { \"metadata1\": \"extra\", \"metadata2\": \"more_extra\" } }, { \"timestamp\": 1000, \"category\": \"examples\", \"name\": \"event_example\" } ]\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Example event JSON","id":"171","title":"Example event JSON"},"172":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The metrics ping","id":"172","title":"The metrics ping"},"173":{"body":"The metrics ping is intended for all of the metrics that are explicitly set by the application or are included in the application's metrics.yaml file (except events). The reported data is tied to the ping's measurement window , which is the time between the collection of two metrics pings. Ideally, this window is expected to be about 24 hours, given that the collection is scheduled daily at 04:00. However, the metrics ping is only submitted while the application is actually running, so in practice, it may not meet the 04:00 target very frequently. Data in the ping_info section of the ping can be used to infer the length of this window and the reason that triggered the ping to be submitted. If the application crashes, unsent recorded metrics are sent along with the next metrics ping. Additionally, it is undesirable to mix metric recording from different versions of the application. Therefore, if a version upgrade is detected, the metrics ping is collected immediately before further metrics from the new version are recorded.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Description","id":"173","title":"Description"},"174":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop metrics ping ✅ ✅ ❌ ✅ ❌ ✅","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Platform availability","id":"174","title":"Platform availability"},"175":{"body":"The desired behavior is to collect the ping at the first available opportunity after 04:00 local time on a new calendar day, but given constraints of the platform, it can only be submitted while the application is running. This breaks down into three scenarios: the application was just installed; the application was just upgraded (the version of the app is different from the last time the app was run); the application was just started (after a crash or a long inactivity period); the application was running at 04:00. In the first case, since the application was just installed, if the due time for the current calendar day has passed, a metrics ping is immediately generated and scheduled for sending (reason code overdue). Otherwise, if the due time for the current calendar day has not passed, a ping collection is scheduled for that time (reason code today). In the second case, if a version change is detected at startup, the metrics ping is immediately submitted so that metrics from one version are not aggregated with metrics from another version (reason code upgrade). In the third case, if the metrics ping was not already collected on the current calendar day, and it is before 04:00, a collection is scheduled for 04:00 on the current calendar day (reason code today). If it is after 04:00, a new collection is scheduled immediately (reason code overdue). Lastly, if a ping was already collected on the current calendar day, the next one is scheduled for collecting at 04:00 on the next calendar day (reason code tomorrow). In the fourth and last case, the application is running during a scheduled ping collection time. The next ping is scheduled for 04:00 the next calendar day (reason code reschedule). More scheduling examples are included below. See also the ping schedules and timing overview .","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Scheduling","id":"175","title":"Scheduling"},"176":{"body":"The metrics ping contains all of the metrics defined in metrics.yaml (except events) that don't specify a ping or where default is specified in their send in pings property. Additionally, error metrics in the glean.error category are included in the metrics ping. The metrics ping shall also include the common ping_info and 'client_info' sections. It also includes a number of metrics defined in the Glean SDKs themselves .","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Contents","id":"176","title":"Contents"},"177":{"body":"Information about query ping contents is available in Accessing Glean data in the Firefox data docs.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Querying ping contents","id":"177","title":"Querying ping contents"},"178":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Scheduling Examples","id":"178","title":"Scheduling Examples"},"179":{"body":"The application is opened on Feb 7 on 15:00, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 8 on 17:00. Glean notes that we passed local 04:00 since MW1. Glean closes MW1, with: start_time=Feb7/15:00; end_time=Feb8/17:00. Glean records metric A again, into MW2, which has a start_time of Feb8/17:00.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Crossing due time with the application closed","id":"179","title":"Crossing due time with the application closed"},"18":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Python project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Python » Adding Glean to your Python project","id":"18","title":"Adding Glean to your Python project"},"180":{"body":"The application is opened on Feb 7 on 15:00 in timezone UTC, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 8 on 17:00 in timezone UTC+1. Glean notes that we passed local 04:00 UTC+1 since MW1. Glean closes MW1, with: start_time=Feb7/15:00/UTC; end_time=Feb8/17:00/UTC+1. Glean records metric A again, into MW2.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Crossing due time and changing timezones","id":"180","title":"Crossing due time and changing timezones"},"181":{"body":"The application is opened on Feb 7 on 15:00 in timezone UTC, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 16 on 17:00 in timezone UTC. Glean notes that we passed local 04:00 UTC since MW1. Glean closes MW1, with: start_time=Feb7/15:00/UTC; end_time=Feb16/17:00/UTC. Glean records metric A again, into MW2.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The application doesn’t run in a week","id":"181","title":"The application doesn’t run in a week"},"182":{"body":"The application is opened on Feb 7 on 15:00 in timezone UTC, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 16 on 17:00 in timezone UTC+1. Glean notes that we passed local 04:00 UTC+1 since MW1. Glean closes MW1, with: start_time=Feb7/15:00/UTC end_time=Feb16/17:00/UTC+1. Glean records metric A again, into MW2.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The application doesn’t run for a week, and when it’s finally re-opened the timezone has changed","id":"182","title":"The application doesn’t run for a week, and when it’s finally re-opened the timezone has changed"},"183":{"body":"The application is opened on Feb 7 at 15:00 in timezone UTC+11, closed at 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 8 at 04:30 in timezone UTC+11. Glean notes that we passed local 04:00 UTC+11. Glean closes MW1, with: start_time=Feb7/15:00/UTC+11; end_time=Feb8/04:30/UTC+11. Glean records metric A again, into MW2. The user changes to timezone UTC-10 and opens the application at Feb 7 at 22:00 in timezone UTC-10 Glean records metric A again, into MW2 (not MW1, which was already sent). The user opens the application at Feb 8 05:00 in timezone UTC-10 Glean notes that we have not yet passed local 04:00 on Feb 9 Measurement window MW2 remains the current measurement window The user opens the application at Feb 9 07:00 in timezone UTC-10 Glean notes that we have passed local 04:00 on Feb 9 Glean closes MW2 with: start_time=Feb8/04:30/UTC+11; end_time=Feb9/19:00/UTC-10. Glean records metric A again, into MW3. Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The user changes timezone in an extreme enough fashion that they cross 04:00 twice on the same date","id":"183","title":"The user changes timezone in an extreme enough fashion that they cross 04:00 twice on the same date"},"184":{"body":"Full reference details about the metrics and baseline ping schedules are detailed elsewhere. The following diagram shows a typical timeline of a mobile application, when pings are sent and what timing-related information is included. ping timeline diagram There are two distinct runs of the application, where the OS shutdown the application at the end of Run 1, and the user started it up again at the beginning of Run 2. There are three distinct foreground sessions, where the application was visible on the screen and the user was able to interact with it. The rectangles for the baseline and metrics pings represent the measurement windows of those pings, which always start exactly at the end of the preceding ping. The ping_info.start_time and ping_info.end_time metrics included in these pings correspond to these beginning and the end of their measurement windows. The baseline.duration metric (included only in baseline pings) corresponds to amount of time the application spent on the foreground, which, since measurement window always extend to the next ping, is not always the same thing as the baseline ping's measurement window. The submission_timestamp is the time the ping was received at the telemetry endpoint, added by the ingestion pipeline. It is not exactly the same as ping_info.end_time, since there may be various networking and system latencies both on the client and in the ingestion pipeline (represented by the dotted horizontal line, not to scale). Also of note is that start_time/end_time are measured using the client's real-time clock in its local timezone, which is not a fully reliable source of time. The \"Baseline 4\" ping illustrates an important corner case. When \"Session 2\" ended, the OS also shut down the entire process, and the Glean SDK did not have an opportunity to send a baseline ping immediately. In this case, it is sent at the next available opportunity when the application starts up again in \"Run 2\". This baseline ping is annotated with the reason code dirty_startup. The \"Metrics 2\" ping likewise illustrates another important corner case. \"Metrics 1\" was able to be sent at the target time of 04:00 (local device time) because the application was currently running. However, the next time 04:00 came around, the application was not active, so the Glean SDK was unable to send a metrics ping. It is sent at the next available opportunity, when the application starts up again in \"Run 2\". This metrics ping is annotated with the reason code overdue. NOTE : Ping scheduling and other application lifecycle dependent activities are not set up when Glean is used in a non-main process. See initializing Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Schedules and timings overview » Ping schedules and timings overview","id":"184","title":"Ping schedules and timings overview"},"185":{"body":"Glean provides Server Knobs, a Data Control Plane through which Glean runtime settings can be changed remotely including the ability to enable, disable or throttle metrics and pings through a Nimbus rollout or experiment. Products can use this capability to control \"data traffic\", similar to how a network control plane controls \"network traffic\". Server Knobs provides the ability to do the following: Allow runtime changes to data collection without needing to land code and ride release trains. Eliminate the need for manual creation and maintenance of feature flags specific to data collection. Sampling of measurements from a subset of the population so that we do not collect or ingest more data than is necessary from high traffic areas of an application instrumented with Glean metrics. Operational safety through being able to react to high-volume or unwanted data. Visibility into sampling and sampling rates for remotely configured metrics.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Server Knobs: Glean Data Control Plane","id":"185","title":"Server Knobs: Glean Data Control Plane"},"186":{"body":"Controlling Metrics with Server Knobs Controlling Pings with Server Knobs Other Server Knobs Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Contents","id":"186","title":"Contents"},"187":{"body":"Glean provides a Data Control Plane through which metrics can be enabled, disabled or throttled through a Nimbus rollout or experiment. Products can use this capability to control \"data-traffic\", similar to how a network control plane controls \"network-traffic\". This provides the ability to do the following: Allow runtime changes to data collection without needing to land code and ride release trains. Eliminate the need for manual creation and maintenance of feature flags specific to data collection. Sampling of measurements from a subset of the population so that we do not collect or ingest more data than is necessary from high traffic areas of an application instrumented with Glean metrics. Operational safety through being able to react to high-volume or unwanted data. Visibility into sampling and sampling rates for remotely configured metrics. For information on controlling pings with Server Knobs, see the metrics documentation for Server Knobs - Pings .","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Data Control Plane (a.k.a. Server Knobs)","id":"187","title":"Data Control Plane (a.k.a. Server Knobs)"},"188":{"body":"Example Scenarios Product Integration Experimenter Configuration Advanced Topics Frequently Asked Questions Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Contents","id":"188","title":"Contents"},"189":{"body":"","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Example Scenarios » Example Scenarios","id":"189","title":"Example Scenarios"},"19":{"body":"We recommend using a virtual environment for your work to isolate the dependencies for your project. There are many popular abstractions on top of virtual environments in the Python ecosystem which can help manage your project dependencies. The Glean Python SDK currently has prebuilt wheels on PyPI for Windows (i686 and x86_64), Linux/glibc (x86_64) and macOS (x86_64) . For other platforms, including BSD or Linux distributions that don't use glibc, such as Alpine Linux, the glean_sdk package will be built from source on your machine. This requires that Cargo and Rust are already installed. The easiest way to do this is through rustup . Once you have your virtual environment set up and activated, you can install the Glean Python SDK into it using: $ python -m pip install glean_sdk Important Installing Python wheels is still a rapidly evolving feature of the Python package ecosystem. If the above command fails, try upgrading pip: python -m pip install --upgrade pip Important The Glean Python SDK make extensive use of type annotations to catch type related errors at build time. We highly recommend adding mypy to your continuous integration workflow to catch errors related to type mismatches early.","breadcrumbs":"Adding Glean to your project » Python » Setting up the dependency","id":"19","title":"Setting up the dependency"},"190":{"body":"Landing a metric that is disabled by default and then enabling it for some segment of the population This scenario can be expected in cases such as when instrumenting high-traffic areas of the browser. These are instrumentations that would normally generate a lot of data because they are recorded frequently for every user. In this case, the telemetry which has the potential to be high-volume would land with the “disabled” property of the metric set to “true”. This will ensure that it does not record data by default. An example metric definition with this property set would look something like this: urlbar: impression: disabled: true type: event description: Recorded when urlbar results are shown to the user. ... Once the instrumentation is landed, it can now be enabled for a subset of the population through a Nimbus rollout or experiment without further code changes. Through Nimbus , we have the ability to sample the population by setting the audience size to a certain percentage of the eligible population. Nimbus also provides the ability to target clients based on the available targeting parameters for a particular application (for instance, Firefox Desktop’s available targeting parameters). This can be used to slowly roll out instrumentations to the population in order to validate the data we are collecting before measuring the entire population and potentially avoiding costs and overhead by collecting data that isn’t useful. Note: if planning to use this feature for permanently keeping a data collection on for the whole population, please consider enabling the metrics by default by setting disabled: false in the metrics.yaml. Then you can \"down-sample\" if necessary (see Scenario 2 below).","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Example Scenarios » Scenario 1","id":"190","title":"Scenario 1"},"191":{"body":"Landing a metric that is enabled by default and then disabling it for a segment of the population This is effectively the inverse of Scenario 1 , instead of landing the metrics disabled by default, they are landed as enabled so that they are normally collecting data from the entire population. Similar to the first scenario, a Nimbus rollout or experiment can then be launched to configure the metrics as disabled for a subset of the population. This provides a mechanism by which we can disable the sending of telemetry from an audience that we do not wish to collect telemetry data from. For instance, this could be useful in tuning out telemetry data coming from automation sources or bad actors. In addition, it provides a way to disable broken, incorrect, or unexpectedly noisy instrumentations as an operational safety mechanism to directly control the volume of the data we collect and ingest. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Example Scenarios » Scenario 2","id":"191","title":"Scenario 2"},"192":{"body":"In order to enable sharing of this functionality between multiple Nimbus Features, the implementation is not defined as part of the stand-alone Glean feature defined in the Nimbus Feature Manifest, but instead is intended to be added as a feature variable to other Nimbus Feature definitions for them to make use of.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Product Integration","id":"192","title":"Product Integration"},"193":{"body":"In order to make use of the remote metric configuration in a Firefox Desktop component, there are two available options.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Desktop Feature Integration","id":"193","title":"Desktop Feature Integration"},"194":{"body":"Glean provides a general Nimbus feature that can be used for configuration of metrics named glean. Simply select the glean feature along with your Nimbus feature from the Experimenter UI when configuring the experiment or rollout (see Nimbus documentation for more information on multi-feature experiments). The glean Nimbus feature requires the gleanMetricConfiguration variable to be used to provide the required metric configuration. The format of the configuration is a map of the fully qualified metric name (category.name) of the metric to a boolean value representing whether the metric is enabled. If a metric is omitted from this map, it will default to the value found in the metrics.yaml. An example configuration for the glean feature can be found on the Experimenter Configuration page.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 1:","id":"194","title":"Integration Option 1:"},"195":{"body":"A second option that can give you more control over the metric configuration, especially if there are more than one experiments or rollouts that are currently using the glean feature from Option 1 above, is to add a Feature Variable to represent the Glean metric configuration in your own feature. This can be accomplished by modifying the FeatureManifest.yaml file, adding a variable through which to pass metric configurations. Glean will handle merging this configuration with other metrics configurations for you (See Advanced Topics for more info on this). An example feature manifest entry would look like the following: variables: ... // Definitions of other feature variables gleanMetricConfiguration: type: json description: >- \"Glean metric configuration\" This definition allows for configuration to be set in a Nimbus rollout or experiment and fetched by the client to be applied based on the enrollment. Once the Feature Variable has been defined, the final step is to fetch the configuration from Nimbus and supply it to the Glean API. This can be done during initialization and again any time afterwards, such as in response to receiving an updated configuration from Nimbus. Glean will merge this configuration with any other active configurations and enable or disable the metrics accordingly. An example call to set a configuration through your Nimbus Feature could look like this: // Fetch the Glean metric configuration from your feature's Nimbus variable\nlet cfg = lazy.NimbusFeatures.yourNimbusFeatureName.getVariable( \"gleanMetricConfiguration\"\n);\n// Apply the configuration through the Glean API\nServices.fog.setMetricsFeatureConfig(JSON.stringify(cfg)); It is also recommended to register to listen for updates for the Nimbus Feature and apply new configurations as soon as possible. The following example illustrates how a Nimbus Feature might register and update the metric configuration whenever there is a change to the Nimbus configuration: // Register to listen for the `onUpdate` event from Nimbus\nlazy.NimbusFeatures.yourNimbusFeatureName.onUpdate(() => { // Fetch the Glean metric configuration from your feature's Nimbus variable let cfg = lazy.NimbusFeatures.yourNimbusFeatureName.getVariable( \"gleanMetricConfiguration\" ); // Apply the configuration through the Glean API Services.fog.setMetricsFeatureConfig(JSON.stringify(cfg));\n});","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 2 (Advanced use):","id":"195","title":"Integration Option 2 (Advanced use):"},"196":{"body":"","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Mobile Feature Integration","id":"196","title":"Mobile Feature Integration"},"197":{"body":"Glean provides a general Nimbus feature that can be used for configuration of metrics named glean. Simply select the glean feature along with your Nimbus feature from the Experimenter UI when configuring the experiment or rollout (see Nimbus documentation for more information on multi-feature experiments). The glean Nimbus feature requires the gleanMetricConfiguration variable to be used to provide the required metric configuration. The format of the configuration is a map of the fully qualified metric name (category.name) of the metric to a boolean value representing whether the metric is enabled. If a metric is omitted from this map, it will default to the value found in the metrics.yaml. An example configuration for the glean feature can be found on the Experimenter Configuration page.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 1:","id":"197","title":"Integration Option 1:"},"198":{"body":"A second option that can give you more control over the metric configuration, especially if there are more than one experiments or rollouts that are currently using the glean feature from Option 1 above, is to add a Feature Variable to represent the Glean metric configuration in your own feature. This can be accomplished by modifying the Nimbus Feature Manifest file, adding a variable through which to pass metric configurations. Glean will handle merging this configuration with other metrics configurations for you (See Advanced Topics for more info on this). An example feature manifest entry would look like the following: features: homescreen: description: | The homescreen that the user goes to when they press home or new tab. variables: ... // Other homescreen variables gleanMetricConfiguration: description: Glean metric configuration type: String default: \"{}\" Once the Feature Variable has been defined, the final step is to fetch the configuration from Nimbus and supply it to the Glean API. This can be done during initialization and again any time afterwards, such as in response to receiving an updated configuration from Nimbus. Only the latest configuration provided will be applied and any previously configured metrics that are omitted from the new configuration will not be changed. An example call to set a configuration from the “homescreen” Nimbus Feature could look like this: Glean.applyServerKnobsConfig(FxNimbus.features.homescreen.value().metricsEnabled) Since mobile experiments only update on initialization of the application, it isn't necessary to register to listen for notifications for experiment updates. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 2 (Advanced use):","id":"198","title":"Integration Option 2 (Advanced use):"},"199":{"body":"The structure of this configuration is a key-value collection with the full metric identification of the Glean metric serving as the key in the format . The values of the key-value pair are booleans which represent whether the metric is enabled (true) or not (false). In the example below gleanMetricConfiguration is the name of the variable defined in the Nimbus feature. This configuration would be what is entered into the branch configuration setup in Experimenter when defining an experiment or rollout.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Experimenter Configuration » Experimenter Configuration","id":"199","title":"Experimenter Configuration"},"2":{"body":"This section of the book contains step-by-step guides and essays detailing how to achieve specific tasks with each Glean SDK. It contains guides on the first steps of integrating Glean into your project, choosing the right metric type for you, debugging products that use Glean and Glean's built-in error reporting mechanism. If you want to start using Glean to report data, this is the section you should read.","breadcrumbs":"Glean » User Guides","id":"2","title":"User Guides"},"20":{"body":"For Python, the metrics.yaml file must be available and loaded at runtime. If your project is a script (i.e. just Python files in a directory), you can load the metrics.yaml using: from glean import load_metrics metrics = load_metrics(\"metrics.yaml\") # Use a metric on the returned object\nmetrics.your_category.your_metric.set(\"value\") If your project is a distributable Python package, you need to include the metrics.yaml file using one of the myriad ways to include data in a Python package and then use pkg_resources.resource_filename() to get the filename at runtime. from glean import load_metrics\nfrom pkg_resources import resource_filename metrics = load_metrics(resource_filename(__name__, \"metrics.yaml\")) # Use a metric on the returned object\nmetrics.your_category.your_metric.set(\"value\")","breadcrumbs":"Adding Glean to your project » Python » Consuming YAML registry files","id":"20","title":"Consuming YAML registry files"},"200":{"body":"{ \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"urlbar.abandonment\": true, \"urlbar.engagement\": true, \"urlbar.impression\": true } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Experimenter Configuration » Example Configuration:","id":"200","title":"Example Configuration:"},"201":{"body":"","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Advanced Topics","id":"201","title":"Advanced Topics"},"202":{"body":"Since each feature defined as a Nimbus Feature can independently provide a Glean configuration, these must be merged together into a cohesive configuration for the entire set of metrics collected by Glean. Configurations will be merged together along with the default values in the metrics.yaml file and applied to the appropriate metrics. Only the latest configuration provided for a given metric will be applied and any previously configured metrics that are omitted from the new configuration will not be changed.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Merging of Configurations from Multiple Features","id":"202","title":"Merging of Configurations from Multiple Features"},"203":{"body":"Imagine a situation where we have 3 features (A, B, C). Each of these features has an event (A.event, B.event, C.event) and these events all default to disabled from their definition in the metrics.yaml file. Let’s walk through an example of changing configurations for these features that illustrates how the merging will work: Initial State This is what the initial state of the events looks like with no configurations applied. All of the events are falling back to the defaults from the metrics.yaml file. This is the starting point for Scenario 1 in the Example Scenarios . Feature A No config, default used A.event is disabled Feature B No config, default used B.event is disabled Feature C No config, default used C.event is disabled Second State In this state, let’s create two rollouts which will provide configurations for features A and B that will enable the events associated with each. The first rollout selects Feature A in experimenter and provides the indicated configuration in the Branch setup page. The second rollout does the same thing, only for Feature B. Feature A Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"A.event\": true } } } A.event is enabled Feature B Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"B.event\": true } } } B.event is enabled Feature C No config, default used C.event is disabled As you can see, the A.event and B.event are enabled by the configurations while C.event remains disabled because there is no rollout for it. Third State In this state, let’s end the rollout for Feature B, start a rollout for Feature C, and launch an experiment for Feature A. Because experiments take precedence over rollouts, this should supersede our configuration from the rollout for Feature A. Feature A Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"A.event\": false } } } A.event is disabled Feature B No config, default used B.event is disabled Feature C Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"C.event\": true } } } C.event is enabled After the new changes to the currently running rollouts and experiments, this client is now enrolled in the experiment for Feature A and the configuration is suppressing the A.event. Feature B is no longer sending B.event because it is reverting back to the defaults from the metrics.yaml file. And finally, Feature C is sending C.event with the rollout configuration applied. Fourth State Finally, in this state, let’s end the rollout for Feature C along with the experiment for Feature A. This should stop the sending of the B.event and C.event and resume sending of the A.event as the rollout configuration will again be applied since the experiment configuration is no longer available. Feature A Configuration { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"A.event\": true } } } A.event is enabled Feature B No config, default used B.event is disabled Feature C No config, default used C.event is disabled After the new changes to the currently running rollouts and experiments, this client is now enrolled in the experiment for Feature A and the configuration is suppressing the A.event. Feature B is no longer sending B.event because it is reverting back to the defaults from the metrics.yaml file. And finally, Feature C is sending C.event with the rollout configuration applied. In each case, Glean only updates the configuration associated with the feature that provided it. Nimbus’ feature exclusion would prevent a client from being enrolled in multiple rollouts or experiments for a given feature, so no more than one configuration would be applied per feature for a given client.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Example","id":"203","title":"Example"},"204":{"body":"Because there is currently nothing that ties a particular Nimbus Feature to a set of metrics, care must be taken to avoid feature overlap over a particular metric. If two different features supply conflicting configurations for the same metric, then whether or not the metric is enabled will likely come down to a race condition of whoever set the configuration last. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Merging Caveats","id":"204","title":"Merging Caveats"},"205":{"body":"How can I tell if a given client id has the metric X on? Once we have established the functionality behind the data control plane, a dashboard for monitoring this will be provided. Details are to be determined. Why isn't some client id reporting the metric that should be enabled for all the clients for that channel? (e.g. Some fraction of population may get stuck on “default” config) Nimbus must be able to both reach and supply a valid configuration to the audience. For some outliers this doesn't work and so may be \"unreachable\" at times. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Frequently Asked Questions » Frequently Asked Questions","id":"205","title":"Frequently Asked Questions"},"206":{"body":"Glean provides a Data Control Plane through which pings can be enabled or disabled through a Nimbus rollout or experiment. Products can use this capability to control \"data-traffic\", similar to how a network control plane controls \"network-traffic\". This provides the ability to do the following: Allow runtime changes to data collection without needing to land code and ride release trains. Eliminate the need for manual creation and maintenance of feature flags specific to data collection. Sampling of measurements from a subset of the population so that we do not collect or ingest more data than is necessary from high traffic areas of an application instrumented with Glean metrics. Operational safety through being able to react to high-volume or unwanted data. Visibility into sampling and sampling rates for remotely configured metrics. For information on controlling metrics with Server Knobs, see the metrics documentation for Server Knobs - Metrics .","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Data Control Plane (a.k.a. Server Knobs)","id":"206","title":"Data Control Plane (a.k.a. Server Knobs)"},"207":{"body":"Product Integration Experimenter Configuration Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Contents","id":"207","title":"Contents"},"208":{"body":"Glean provides a general Nimbus feature named glean that can be used for configuration of pings. Simply select the glean feature along with your Nimbus feature from the Experimenter UI when configuring the experiment or rollout (see Nimbus documentation for more information on multi-feature experiments). The glean Nimbus feature requires the gleanMetricConfiguration variable to be used to provide the required metric configuration. The format of the configuration is defined in the Experimenter Configuration section. If a ping is not included, it will default to the value found in the pings.yaml. Note that this can also serve as an override for Glean builtin pings disabled using the Configuration property enable_internal_pings=false during initialization. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Product Integration » Product Integration","id":"208","title":"Product Integration"},"209":{"body":"The structure of this configuration is a key-value collection with the name of the Glean ping serving as the keys and the values are booleans representing whether the ping is enabled (true) or not (false). In the example below, gleanMetricConfiguration is the name of the variable defined in the Nimbus feature. This configuration would be what is entered into the branch configuration setup in Experimenter when defining an experiment or rollout.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Experimenter Configuration » Experimenter Configuration","id":"209","title":"Experimenter Configuration"},"21":{"body":"Documentation The documentation for your application or library's metrics and pings are written in metrics.yaml and pings.yaml. For Mozilla projects, this SDK documentation is automatically published on the Glean Dictionary . For non-Mozilla products, it is recommended to generate markdown-based documentation of your metrics and pings into the repository. For most languages and platforms, this transformation can be done automatically as part of the build. However, for some SDKs the integration to automatically generate docs is an additional step. The Glean Python SDK provides a commandline tool for automatically generating markdown documentation from your metrics.yaml and pings.yaml files. To perform that translation, run glean_parser's translate command: python3 -m glean_parser translate -f markdown -o docs metrics.yaml pings.yaml To get more help about the commandline options: python3 -m glean_parser translate --help We recommend integrating this step into your project's documentation build. The details of that integration is left to you, since it depends on the documentation tool being used and how your project is set up. Metrics linting Glean includes a \"linter\" for metrics.yaml and pings.yaml files called the glinter that catches a number of common mistakes in these files. As part of your continuous integration, you should run the following on your metrics.yaml and pings.yaml files: python3 -m glean_parser glinter metrics.yaml pings.yaml","breadcrumbs":"Adding Glean to your project » Python » Automation steps","id":"21","title":"Automation steps"},"210":{"body":"{ \"gleanMetricConfiguration\": { \"pings_enabled\": { \"baseline\": false, \"events\": false, \"metrics\": false } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Experimenter Configuration » Example Configuration:","id":"210","title":"Example Configuration:"},"211":{"body":"Below are additional Glean parameters and settings that are exposed via Server Knobs for use in a Nimbus experiment or rollout.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Other Server Knobs","id":"211","title":"Other Server Knobs"},"212":{"body":"Max Events per Event Ping Additional Glean settings will be added to Server Knobs as needed or by request. For information on controlling metrics and pings via Server Knobs, please refer to Controlling Metrics with Server Knobs and Controlling Pings with Server Knobs . Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Contents","id":"212","title":"Contents"},"213":{"body":"By default, Glean batches events together to submit on a single events ping. The event_threshold Server Knob controls how many events Glean will collect before submitting an events ping. For instance, if you wanted to disable batching in order to transmit an events ping after every event is recorded you could set event_threshold: 1.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Max Events per Ping » Max Events","id":"213","title":"Max Events"},"214":{"body":"{ \"gleanMetricConfiguration\": { \"event_threshold\": 1 }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Max Events per Ping » Example Configuration:","id":"214","title":"Example Configuration:"},"215":{"body":"Glean provides a few debugging features to assist with debugging a product using Glean.","breadcrumbs":"Debugging products using Glean » Debugging products using the Glean SDK","id":"215","title":"Debugging products using the Glean SDK"},"216":{"body":"","breadcrumbs":"Debugging products using Glean » Features","id":"216","title":"Features"},"217":{"body":"Print the ping payload upon sending a ping.","breadcrumbs":"Debugging products using Glean » Log Pings","id":"217","title":"Log Pings"},"218":{"body":"Tags all outgoing pings as debug pings to make them available for real-time validation, on the Glean Debug View. Glean Debug View The Glean Debug View enables you to easily see in real-time what data your application is sending. This data is what actually arrives in our data pipeline, shown in a web interface that is automatically updated when new data arrives. Any data sent from a Glean-instrumented application usually shows up within 10 seconds, updating the pages automatically. Pings are retained for 3 weeks. Troubleshooting If nothing is showing up on the dashboard after you set a debugViewTag and you see Glean must be enabled before sending pings. in the logs, Glean is disabled. Check with the application author on how to re-enable it.","breadcrumbs":"Debugging products using Glean » Debug View Tag","id":"218","title":"Debug View Tag"},"219":{"body":"Tags outgoing pings with a maximum of 5 comma-separated tags.","breadcrumbs":"Debugging products using Glean » Source Tags","id":"219","title":"Source Tags"},"22":{"body":"Most Glean SDKs use a separate worker thread to do most of its work, including any I/O. This thread is fully managed by the SDK as an implementation detail. Therefore, users should feel free to use the Glean SDKs wherever they are most convenient, without worrying about the performance impact of updating metrics and sending pings. Since the Glean SDKs perform disk and networking I/O, they try to do as much of their work as possible on separate threads and processes. Since there are complex trade-offs and corner cases to support Python parallelism, it is hard to design a one-size-fits-all approach. Default behavior When using the Python SDK, most of the Glean's work is done on a separate thread, managed by the SDK itself. The SDK releases the Global Interpreter Lock (GIL) for most of its operations, therefore your application's threads should not be in contention with the Glean's worker thread. The Glean Python SDK installs an atexit handler so that its worker thread can cleanly finish when your application exits. This handler will wait up to 30 seconds for any pending work to complete. By default, ping uploading is performed in a separate child process. This process will continue to upload any pending pings even after the main process shuts down. This is important for commandline tools where you want to return control to the shell as soon as possible and not be delayed by network connectivity. Cases where subprocesses aren't possible The default approach may not work with applications built using PyInstaller or similar tools which bundle an application together with a Python interpreter making it impossible to spawn new subprocesses of that interpreter. For these cases, there is an option to ensure that ping uploading occurs in the main process. To do this, set the allow_multiprocessing parameter on the glean.Configuration object to False. Using the multiprocessing module Additionally, the default approach does not work if your application uses the multiprocessing module for parallelism. The Glean Python SDK can not wait to finish its work in a multiprocessing subprocess, since atexit handlers are not supported in that context. Therefore, if the Glean Python SDK detects that it is running in a multiprocessing subprocess, all of its work that would normally run on a worker thread will run on the main thread. In practice, this should not be a performance issue: since the work is already in a subprocess, it will not block the main process of your application. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Python » Parallelism","id":"22","title":"Parallelism"},"220":{"body":"Sends a ping on demand.","breadcrumbs":"Debugging products using Glean » Send Ping","id":"220","title":"Send Ping"},"221":{"body":"Each Glean SDK may expose one or more of the following methods to interact with and enable these debugging functionalities. Enable debugging features through APIs exposed through the Glean singleton; Enable debugging features through environment variables set at runtime; Enable debugging features through platform specific tooling. For methods 1. and 2., refer to the API reference section \"Debugging\" for detailed information on how to use them. For method 3. please refer to the platform specific pages on how to debug products using Glean.","breadcrumbs":"Debugging products using Glean » Debugging methods","id":"221","title":"Debugging methods"},"222":{"body":"Debugging Android applications using the Glean SDK Debugging iOS applications using the Glean SDK Debugging Python applications using the Glean SDK Debugging JavaScript applications using Glean.js","breadcrumbs":"Debugging products using Glean » Platform Specific Information","id":"222","title":"Platform Specific Information"},"223":{"body":"Glean API Environment Variables Platform Specific Tooling Kotlin ✅ [1] Swift ✅ ✅ ✅ [2] Python ✅ Rust ✅ ✅ JavaScript ✅ Firefox Desktop ✅ ✅ [3] The Glean Kotlin SDK exposes the GleanDebugActivity for interacting with debug features. Although it is technically possible to also use environment variables in Android, the Glean team is not aware of a proper way to set environment variables in Android devices or emulators. The Glean Swift SDK exposes a custom URL format for interacting with debug features. In Firefox Desktop, developers may use the interface exposed through about:glean to log, tag or send pings. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » Available debugging methods per platform","id":"223","title":"Available debugging methods per platform"},"224":{"body":"The Glean Kotlin SDK exports the GleanDebugActivity that can be used to toggle debugging features on or off. Users can invoke this special activity, at run-time, using the following adb command: adb shell am start -n [applicationId]/mozilla.telemetry.glean.debug.GleanDebugActivity [extra keys] In the above: [applicationId] is the product's application id as defined in the manifest file and/or build script. For the Glean sample application, this is org.mozilla.samples.gleancore for a release build and org.mozilla.samples.gleancore.debug for a debug build. [extra keys] is a list of extra keys to be passed to the debug activity. See the documentation for the command line switches used to pass the extra keys. These are the currently supported keys: key type description logPings boolean (--ez) If set to true, pings are dumped to logcat; defaults to false debugViewTag string (--es) Tags all outgoing pings as debug pings to make them available for real-time validation, on the Glean Debug View . The value must match the pattern [a-zA-Z0-9-]{1,20}. Important : in older versions of the Glean SDK, this was named tagPings sourceTags string array (--esa) Tags outgoing pings with a maximum of 5 comma-separated tags. The tags must match the pattern [a-zA-Z0-9-]{1,20}. The automation tag is meant for tagging pings generated on automation: such pings will be specially handled on the pipeline (i.e. discarded from non-live views ). Tags starting with glean are reserved for future use. Subsequent calls of this overwrite any previously stored tag sendPing string (--es) Sends the ping with the given name immediately startNext string (--es) The name of an exported Android Activity, as defined in the product manifest file, to start right after the GleanDebugActivity completes. All the options provided are propagated to this next activity as well. When omitted, the default launcher activity for the product is started instead. All the options provided to start the activity are passed over to the main activity for the application to process. This is useful if SDK users wants to debug telemetry while providing additional options to the product to enable specific behaviors. Note: Due to limitations on Android logcat message size, pings larger than 4KB are broken into multiple log messages when using logPings. For example, to direct a release build of the Glean sample application to (1) dump pings to logcat, (2) tag the ping with the test-metrics-ping tag, and (3) send the \"metrics\" ping immediately, the following command can be used: adb shell am start -n org.mozilla.samples.gleancore/mozilla.telemetry.glean.debug.GleanDebugActivity \\ --ez logPings true \\ --es sendPing metrics \\ --es debugViewTag test-metrics-ping The logPings command doesn't trigger ping submission and you won't see any output until a ping has been sent. You can use the sendPing command to force a ping to be sent, but it could be more desirable to trigger the pings submission on their normal schedule. For instance, the baseline and events pings can be triggered by moving the app out of the foreground and the metrics ping can be triggered normally if it is overdue for the current calendar day. Note: The device or emulator must be connected to the internet for this to work. Otherwise the job that sends the pings won't be triggered. If no metrics have been collected, no pings will be sent unless send_if_empty is set on your ping . See the ping documentation for more information on ping scheduling to learn when pings are sent. Options that are set using the adb flags are not immediately reset and will persist until the application is closed or manually reset.","breadcrumbs":"Debugging products using Glean » Android » Debugging Android applications using the Glean SDK","id":"224","title":"Debugging Android applications using the Glean SDK"},"225":{"body":"When running a Glean SDK-powered app in the Android emulator or on a device connected to your computer via cable, there are several ways to read the log output.","breadcrumbs":"Debugging products using Glean » Android » Glean Kotlin SDK Log messages","id":"225","title":"Glean Kotlin SDK Log messages"},"226":{"body":"Android Studio can show the logs of a connected emulator or device. To display the log messages for an app: Run an app on your device. Click View > Tool Windows > Logcat (or click Logcat in the tool window bar). The Logcat window will show all log messages and allows to filter those by the application ID. Select the application ID of the product you're debugging. You can also filter by Glean only. More information can be found in the View Logs with Logcat help article.","breadcrumbs":"Debugging products using Glean » Android » Android Studio","id":"226","title":"Android Studio"},"227":{"body":"On the command line you can show all of the log output using: adb logcat This is the unfiltered output of all log messages. You can match for glean using grep: adb logcat | grep -i glean A simple way to filter for only the application that is being debugged is by using pidcat , a wrapper around adb, which adds colors and proper filtering by application ID and log level. Run it like this to filter for an application: pidcat [applicationId] In the above [applicationId] is the product's application id as defined in the manifest file and/or build script. For the Glean sample application, this is org.mozilla.samples.gleancore for a release build and org.mozilla.samples.gleancore.debug for a debug build. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » Android » Command line","id":"227","title":"Command line"},"228":{"body":"","breadcrumbs":"Debugging products using Glean » iOS » Debugging iOS applications using the Glean SDK","id":"228","title":"Debugging iOS applications using the Glean SDK"},"229":{"body":"Debugging features in iOS can be enabled using environment variables. For more information on the available features accessible through this method and how to enable them, see Debugging API reference . These environment variables must be set on the device that is running the application.","breadcrumbs":"Debugging products using Glean » iOS » Enabling debugging features in iOS through environment variables","id":"229","title":"Enabling debugging features in iOS through environment variables"},"23":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Rust project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Rust » Adding Glean to your Rust project","id":"23","title":"Adding Glean to your Rust project"},"230":{"body":"For debugging and validation purposes on iOS, the Glean Swift SDK makes use of a custom URL scheme which is implemented within the application . The Glean Swift SDK provides some convenience functions to facilitate this, but it's up to the consuming application to enable this functionality. Applications that enable this feature will be able to launch the application from a URL with the Glean debug commands embedded in the URL itself.","breadcrumbs":"Debugging products using Glean » iOS » Enabling debugging features in iOS through a custom URL scheme","id":"230","title":"Enabling debugging features in iOS through a custom URL scheme"},"231":{"body":"All 4 Glean debugging features are available through the custom URL scheme tool. logPings : This is either true or false and will cause pings that are submitted to also be echoed to the device's log. debugViewTag : This command will tag outgoing pings with the provided value, in order to identify them in the Glean Debug View. sourceTags : This command tags outgoing pings with a maximum of 5 comma-separated tags. sendPing: This command expects a string name of a ping to force immediate collection and submission of. The structure of the custom URL uses the following format: ://glean?=&= ... Where: is the \"URL Scheme\" that has been added for your app (see Instrumenting the application below), such as glean-sample-app. This is followed by :// and then glean which is required for the Glean Swift SDK to recognize the command is meant for it to process. Following standard URL query format, the next character after glean is the ? indicating the beginning of the query. This is followed by one or more queries in the form of =, where the command is one of the commands listed above, followed by an = and then the value or parameter to be used with the command. There are a few things to consider when creating the custom URL: Invalid commands will log an error and cause the entire URL to be ignored. Not all commands are required to be encoded in the URL, you can mix and match the commands that you need. Multiple instances of commands are not allowed in the same URL and, if present, will cause the entire URL to be ignored. The logPings command doesn't trigger ping submission and you won't see any output until a ping has been submitted. You can use the sendPing command to force a ping to be sent, but it could be more desirable to trigger the pings submission on their normal schedule. For instance, the baseline and events pings can be triggered by moving the app out of the foreground and the metrics ping can be triggered normally if it is overdue for the current calendar day. See the ping documentation for more information on ping scheduling to learn when pings are sent. Enabling debugging features through custom URLs overrides any debugging features set through environment variables.","breadcrumbs":"Debugging products using Glean » iOS » Available commands and query format","id":"231","title":"Available commands and query format"},"232":{"body":"In order to enable the debugging features in an iOS application, it is necessary to add some information to the application's Info.plist, and add a line and possibly an override for a function in the AppDelegate.swift. Register custom URL scheme in Info.plist Note: If your application already has a custom URL scheme implemented, there is no need to implement a second scheme, you can simply use that and skip to the next section about adding the convenience method. If the app doesn't have a custom URL scheme implemented, then you will need to perform the following instructions to register your app to receive custom URLs. Find and open the application's Info.plist and right click any blank area and select Add Row to create a new key. You will be prompted to select a key from a drop-down menu, scroll down to and select URL types. This creates an array item, which can be expanded by clicking the triangle disclosure icon. Select Item 0, click on it and click the disclosure icon to expand it and show the URL identifier line. Double-click the value field and fill in your identifier, typically the same as the bundle ID. Right-click on Item 0 and select Add Row from the context menu. In the dropdown menu, select URL Schemes to add the item. Click on the disclosure icon of URL Schemes to expand the item, double-click the value field of Item 0 and key in the value for your application's custom scheme. For instance, the Glean sample app uses glean-sample-app, which allows for custom URLs to be crafted using that as a protocol, for example: glean-sample-app://glean?logPings=true Add the Glean.handleCustomUrl() convenience function and necessary overrides In order to handle the incoming debug commands, it is necessary to implement the override in the application's AppDelegate.swift file. Within that function, you can make use of the convenience function provided in Glean handleCustomUrl(url: URL). An example of a simple implementation of this would look like this: func application(_: UIApplication, open url: URL, options _: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool { // ... // This does nothing if the url isn't meant for Glean. Glean.shared.handleCustomUrl(url: url) // ... return true\n} If you need additional help setting up a custom URL scheme in your application, please refer to Apple's documentation .","breadcrumbs":"Debugging products using Glean » iOS » Instrumenting the application for Glean Swift SDK debug functionality","id":"232","title":"Instrumenting the application for Glean Swift SDK debug functionality"},"233":{"body":"Now that the app has the debug functionality enabled, there are a few ways in which we can invoke the debug commands. Using a web browser Perhaps the simplest way to invoke the debug functionality is to open a web browser and type/paste the custom URL into the address bar. This is especially useful on an actual device because there isn't a good way to launch from the command line and process the URL for an actual device. Using the glean-sample-app as an example: to activate ping logging, tag the pings to go to the Glean Debug View, and force the events ping to be sent, enter the following URL in a web browser on the iOS device: glean-sample-app://glean?logPings=true&debugViewTag=My-ping-tag&sendPing=events This should cause iOS to prompt you with a dialog asking if you want to open the URL in the Glean Sample App, and if you select \"Okay\" then it will launch (or resume if it's already running) the application with the indicated commands and parameters and immediately force the collection and submission of the events ping. Note: This method does not work if the browser you are using to input the command is the same application you are attempting to pass the Glean debug commands to. So, you couldn't use Firefox for iOS to trigger commands within Firefox for iOS. It is also possible to encode the URL into a 2D barcode or QR code and launch the app via the camera app. After scanning the encoded URL, the dialog prompting to launch the app should appear as if the URL were entered into the browser address bar. Using the command line This method is useful for testing via the Simulator, which typically requires a Mac with Xcode installed, including the Xcode command line tools. In order to perform the same command as above with using the browser to input the URL, you can use the following command in the command line terminal of the Mac: xcrun simctl openurl booted \"glean-sample-app://glean?logPings=true&debugViewTag=My-ping-tag&sendPing=events\" This will launch the simulator and again prompt the user with a dialog box asking if you want to open the URL in the Glean Sample App (or whichever app you are instrumenting and testing).","breadcrumbs":"Debugging products using Glean » iOS » Invoking the Glean-iOS debug commands","id":"233","title":"Invoking the Glean-iOS debug commands"},"234":{"body":"The Glean Swift SDK integrates with the unified logging system available on iOS. There are various ways to retrieve log information, see the official documentation . If debugging in the simulator, the logging messages can be seen in the console window within Xcode. When running a Glean-powered app in the iOS Simulator or on a device connected to your computer via cable you can use Console.app to view the system log. You can filter the logs with category:glean to only see logs from the Glean SDK. You can also use the command line utility log to stream the log output. Run the following in a shell: log stream --predicate 'category contains \"glean\"' See Diagnosing Issues Using Crash Reports and Device Logs for more information about debugging deployed iOS apps. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » iOS » Glean log messages","id":"234","title":"Glean log messages"},"235":{"body":"Debugging features in Python can be enabled using environment variables. For more information on the available features and how to enable them, see the Debugging API reference .","breadcrumbs":"Debugging products using Glean » Python » Debugging Python applications using the Glean SDK","id":"235","title":"Debugging Python applications using the Glean SDK"},"236":{"body":"Unlike other platforms, Python doesn't expose convenience methods to send pings on demand. In case that is necessary, calling the submit function for a given ping, such as pings.custom_ping.submit(), will send it.","breadcrumbs":"Debugging products using Glean » Python » Sending pings","id":"236","title":"Sending pings"},"237":{"body":"Glean offers two options for logging from Python: Simple logging API: A simple API that only allows for setting the logging level, but includes all Glean log messages, including those from its networking subprocess. This is also the only mode in which GLEAN_LOG_PINGS can be used to display ping contents in the log. Flexible logging API: Full use of the Python logging module, including its features for redirecting to files and custom handling of messages, but does not include messages from the networking subprocess about HTTP requests.","breadcrumbs":"Debugging products using Glean » Python » Logging pings","id":"237","title":"Logging pings"},"238":{"body":"You can set the logging level for Glean log messages by passing logging.DEBUG to Glean.initialize as follows: import logging\nfrom glean import Glean Glean.initialize(..., log_level=logging.DEBUG) If you want to see ping contents as well, set the GLEAN_LOG_PINGS environment variable to true.","breadcrumbs":"Debugging products using Glean » Python » Simple logging API","id":"238","title":"Simple logging API"},"239":{"body":"You can set the logging level for the Python logging to DEBUG as follows: import logging logging.basicConfig(level=logging.DEBUG) All log messages from the Glean Python SDK are on the glean logger, so if you need to control it independently, you can set a level for just the Glean Python SDK (but note that the global Python logging level also needs to be set as above): logging.getLogger(\"glean\").setLevel(logging.DEBUG) The flexible logging API is unable to display networking-related log messages or ping contents with GLEAN_LOG_PINGS set to true. See the Python logging documentation for more information. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » Python » Flexible logging API","id":"239","title":"Flexible logging API"},"24":{"body":"The Glean Rust SDK is published on crates.io . Add it to your dependencies in Cargo.toml: [dependencies]\nglean = \"50.0.0\"","breadcrumbs":"Adding Glean to your project » Rust » Setting up the dependency","id":"24","title":"Setting up the dependency"},"240":{"body":"Debugging features in JavaScript can be enabled through APIs exposed on the Glean object. For more information on the available features and how to enable them, see the Debugging API reference .","breadcrumbs":"Debugging products using Glean » JavaScript » Debugging JavaScript applications using Glean.js","id":"240","title":"Debugging JavaScript applications using Glean.js"},"241":{"body":"Websites running Glean allow you to debug at runtime using the window.Glean object in the browser console. You can start debugging by simply: Opening the browser console Calling one of the window.Glean APIs: window.Glean.setLogPings, window.Glean.setDebugViewTag, window.Glean.setSourceTags. These debugging options will persist for the length of the current page session. Once the tab is closed, you will need to make those API calls again.","breadcrumbs":"Debugging products using Glean » JavaScript » Debugging in the browser","id":"241","title":"Debugging in the browser"},"242":{"body":"Unlike other platforms, JavaScript doesn't expose convenience methods to send pings on demand. In case that is necessary, calling the submit function for a given ping, such as pings.customPing.submit(), will send it. Note that this method is only effective for custom pings. Glean internal pings are not exposed to users.","breadcrumbs":"Debugging products using Glean » JavaScript » Sending pings","id":"242","title":"Sending pings"},"243":{"body":"By calling Glean.logPings(true) all subsequent pings sent will be logged to the console. To access the logs for web extensions on","breadcrumbs":"Debugging products using Glean » JavaScript » Logging pings","id":"243","title":"Logging pings"},"244":{"body":"Go to about:debugging#/runtime/this-firefox; Find the extension you want to see the logs for; Click on Inspect.","breadcrumbs":"Debugging products using Glean » JavaScript » Firefox","id":"244","title":"Firefox"},"245":{"body":"Go to chrome://extensions; Find the extension you want to see the logs for; Click on background page. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » JavaScript » Chromium-based browsers","id":"245","title":"Chromium-based browsers"},"246":{"body":"This chapter contains various how-tos and walkthroughs to help aid you in using Glean.","breadcrumbs":"Walkthroughs and How-tos » How-tos","id":"246","title":"How-tos"},"247":{"body":"A step-by-step guide in setting up and launching a Server Knobs Experiment.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough","id":"247","title":"Server Knobs Walkthrough"},"248":{"body":"A guide describing the different methods to collect and transmit data in a \"real-time\" fashion using Glean.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events","id":"248","title":"\"Real-Time\" Events"},"249":{"body":"Recommendations and tips on investigating data anomalies. Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations","id":"249","title":"Telemetry/Data Bug Investigation Recommendations"},"25":{"body":"","breadcrumbs":"Adding Glean to your project » Rust » Setting up metrics and pings code generation","id":"25","title":"Setting up metrics and pings code generation"},"250":{"body":"","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Server Knobs: A Complete Walkthrough","id":"250","title":"Server Knobs: A Complete Walkthrough"},"251":{"body":"This documentation serves as a step by step guide on how to create a Server Knobs configuration and make use of it in a Nimbus experiment or rollout. The intent is to explain everything from selecting the metrics or pings you wish to control all the way through launching the experiment or rollout and validating the data is being collected.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Purpose","id":"251","title":"Purpose"},"252":{"body":"This documentation is aimed at the general users of Nimbus experimentation who wish to enable or disable specific metrics and/or pings as part of their deployment. This documentation assumes the reader has no special knowledge of the inner workings of either Glean or Nimbus, but it does assume that the audience has already undergone the prerequisite Nimbus training program and has access to Experimenter to create experiment and rollout definitions.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Audience","id":"252","title":"Audience"},"253":{"body":"The first step in running a Server Knobs experiment or rollout is creating the definition for it in Experimenter . For the purposes of this walkthrough, a rollout will be used but the instructions are interchangeable if you are instead launching an experiment.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Let’s Get Started!","id":"253","title":"Let’s Get Started!"},"254":{"body":"Create a new experiment From the Experimenter landing page, we select the “Create New” button to begin defining the new rollout. Experimenter landing page Initial experiment definition The initial setup requires a name, hypothesis, and the selection of a target application. New experiment dialog Here we enter a human readable name for the rollout and a brief synopsis of what we expect to learn in the “Hypothesis” section. In the final field we select our target application, Firefox Desktop. When that is complete, we click the “Next” button to proceed with the rollout definition. The next screen we are presented with is the “Summary” page of the experiment/rollout, where we can add additional metadata like a longer description, and link to any briefs or other documentation related to the rollout. We complete the required information and then click on “Save and Continue” Experiment summary page Initial branch configuration The next screen we are presented with is the branch configuration page. On this page we can select the glean feature, and check the box to indicate that this is a rollout. Branch configuration page At this point, we now need to create a bit of JSON configuration to put in the box seen here: Branch payload text box Building the Server Knobs configuration for metrics This JSON configuration is the set of instructions for Glean that lets it know which metrics to enable or disable. In order to do this, we will visit the Glean Dictionary to help identify the metrics we wish to work with and get the identifiers from them needed for the configuration in Experimenter. Upon arriving at the Glean Dictionary, we must first find the right application. Glean Dictionary landing page We are going to select “Firefox for Desktop” to match the application we previously selected in Experimenter. This brings us to a screen where we can search and filter for metrics which are defined in the application. Glean Dictionary page for Firefox Desktop To help locate the metrics we are interested in, start typing in the search box at the top of the list. For instance, if we were interested in urlbar metrics: Using the Glean Dictionary search bar From here we can select a metric, such as “urlbar.engagement” to see more information about it: Detail view of urlbar.engagement metric Here we can see this metric currently has active sampling configurations in both release and nightly. Let’s say we wish to add one for beta also. Our next step is to click the copy to clipboard button next to “Sampling Configuration Snippet”: Sampling configuration snippet button With the snippet copied to the clipboard, we return to Experimenter and our rollout configuration. We can now paste this snippet into the text-box like below: Pasting into the branch configuration text box That’s all that needs to be done here, if this is the only metric we need to configure. But what if we want to configure more than one? Then it’s back to Glean Dictionary to find the rest of the metrics we are interested in. Let’s say we are also interested in the “exposure” metric. Searching for the urlbar.exposure metric As we select the exposure metric from the list, we can see it isn’t currently being sampled by any experiments or rollouts, and we again find the button to copy the configuration snippet to the clipboard. Back to the sampling configuration snippet button Now, we can paste this just below the other snippet inside of Experimenter. Pasting the new metric into Experimenter As you can see, the JSON validator isn’t happy and there’s a red squiggle indicating that there’s a problem. We only need a part of the latest pasted snippet, so we copy the ”urlbar.exposure”: true portion of the snippet, and add a comma after the ”urlbar.engagement”: true in the snippet above. The JSON validator isn't happy We can then delete the remains of the snippet below, leaving us with a metric configuration with multiple metrics in it. This can be repeated for all the necessary metrics required by the rollout or experiment. Cleaning up the branch payload Adding pings to the configuration This same procedure can be used to enable and disable pings, also. In order to copy a snippet for a ping, navigate to the “Pings” tab for the application on the Glean Dictionary. Navigate to the Pings tab From here, select a ping that is desired to be configured remotely. For instance, the “crash” ping: Selecting the crash ping Just like with the metric, select the button to copy the configuration snippet to your clipboard, then paste it into the Experimenter setup. Adding the ping configuration to the Experimenter setup This time we need to get everything for the ”pings_enabled” section, copy and paste it below the ”metrics_enabled” section in the snippet above. We also need to add a comma after the metrics section’s curly brace, like this: Copying the ping config into the right spot Then we can delete the remains of the pasted snippet at the bottom, leaving us with: Cleaning up the ping configuration Wrapping up That should be everything needed to enable the two urlbar metrics, as well as the crash ping. Additional experiment branches can be configured in a similar fashion, or if this is a rollout, it should be ready to launch if the metric configuration is all that is needed. Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Experiment Setup","id":"254","title":"Experiment Setup"},"255":{"body":"","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » \"Real-Time\" Events","id":"255","title":"\"Real-Time\" Events"},"256":{"body":"For the purposes of the Glean SDK and its capabilities, \"real-time\" is limited to: minimizing the time between instrumentation and reporting. It does not imply or describe how quickly received data is made available for querying.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Defining \"real-time\" events within the Glean SDK","id":"256","title":"Defining \"real-time\" events within the Glean SDK"},"257":{"body":"","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Methods to achieve this with Glean","id":"257","title":"Methods to achieve this with Glean"},"258":{"body":"Glean \"events\" ping submission can be configured either during initialization or through Server Knobs . Setting the maximum event threshold to a value of 1 will configure the Glean SDK to submit an \"events\" ping for each and every event as they are recorded. By default, the Glean SDK will batch 500 events per \"events\" ping. As of November 2024, Desktop Release: Median user per day: 67 events / 3 pings The impact of turning on one event per ping based on the median user would result in an increase of approximately 21 times more event ping volume. 85th percentile user per day: 305 events / 11 pings The impact of turning on one event per ping based on the 85th percentile user would result in an increase of approximately 26 times more event ping volume. 95th percentile user per day: 706 events / 19 pings The impact of turning on one event per ping based on the 95th percentile user would result in an increase of approximately 36 times more event ping volume. The current release population of Desktop as a whole sends us over 10 billion events per day in over 340 million event pings. Sending each of those events as a ping would increase the ping volume by 32 times the current rate. Based on this it is safe to assume that sending 1 event per event ping would increase the ingestion traffic and downstream overhead between 20-40x the current levels with Glean batching of events in the client. This is a significant increase that should be taken into consideration before configuring Glean to disable event batching.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Option 1: Configuring Glean to send all events as soon as they are recorded","id":"258","title":"Option 1: Configuring Glean to send all events as soon as they are recorded"},"259":{"body":"If it isn't necessary to receive all Glean SDK events that are instrumented in an application in \"real-time\", it may be preferable to create a custom ping which contains the relevant information to capture the context around the event and submit it as soon as the application event occurs. This has some additional advantages over using just an event in that custom pings are less restrictive than the extras attached to the event in what data and Glean SDK metric types can be used. If it is important to see the event that is being represented as a custom ping in context with other application events, then you only need to define an event metric and use the send_in_pings parameter to send it in both the custom ping and the Glean built-in \"events\" ping. It can then be seen in sequence and within context of all of the application events, and still be sent in \"real-time\" as needed.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Option 2: Using a custom ping and submitting it immediately (\"Pings-as-Events\")","id":"259","title":"Option 2: Using a custom ping and submitting it immediately (\"Pings-as-Events\")"},"26":{"body":"The glean-build crate is new and currently in beta. It can be used as a git dependency. Please file a bug if it does not work for you. At build time you need to generate the metrics and ping API from your definition files. Add the glean-build crate as a build dependency in your Cargo.toml: [build-dependencies]\nglean-build = { git = \"https://github.com/mozilla/glean\" } Then add a build.rs file next to your Cargo.toml and call the builder: use glean_build::Builder; fn main() { Builder::default() .file(\"metrics.yaml\") .file(\"pings.yaml\") .generate() .expect(\"Error generating Glean Rust bindings\");\n} Ensure your metrics.yaml and pings.yaml files are placed next to your Cargo.toml or adjust the path in the code above. You can also leave out any of the files.","breadcrumbs":"Adding Glean to your project » Rust » glean-build is in beta.","id":"26","title":"glean-build is in beta."},"260":{"body":"","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Considerations","id":"260","title":"Considerations"},"261":{"body":"Configuring the Glean SDK to submit events as soon as they are recorded or using custom pings to submit data immediately does not mean that the data is available for analysis in real time. There are networks to traverse, ingestion pipelines, etl, etc. that are all factors to keep in mind when considering how soon the data is available for analysis purposes. This documentation only purports to cover configuring the Glean SDK to send the data in a real-time fashion and does not make any assumptions about the analysis of data in real-time.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » What \"real-time\" Glean events/pings are not","id":"261","title":"What \"real-time\" Glean events/pings are not"},"262":{"body":"For every event recorded or custom ping submitted, a network request will be generated as the ping is submitted for ingestion. By default, the Glean SDK batches up to 500 events per \"events\" ping, so this has the potential to generate up to 500 times as many network requests than the current defaults for the Glean SDK \"events\" ping.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » More network requests","id":"262","title":"More network requests"},"263":{"body":"As a result of the increased network requests, the ingestion endpoint will need to handle this additional traffic. This increases the load of all the processing steps that are involved with ingesting event data from an application.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » More ingestion endpoint traffic","id":"263","title":"More ingestion endpoint traffic"},"264":{"body":"Typically the raw dataset for Glean events contains 1-500 events in a single row of the database. This row also includes metadata such as information about the client application and the ping itself. With only a single event per \"events\" ping, the replication of this metadata across the database will use additional space to house this repeated information that should rarely if ever change between events Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Storage space requirements","id":"264","title":"Storage space requirements"},"265":{"body":"This document outlines several diagnostic categories and the insights they may offer when investigating unusual telemetry patterns or data anomalies.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » Telemetry/Data Bug Investigation Recommendations","id":"265","title":"Telemetry/Data Bug Investigation Recommendations"},"266":{"body":"Purpose: Identify geographical patterns that could explain anomalies. Column Name: metadata.geo.country Considerations: Are there ongoing national holidays or similar events that could affect data? Is the region known for bot activity or unusual behavior?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 1. Countries","id":"266","title":"1. Countries"},"267":{"body":"Purpose: Analyze data at a more granular level than countries to identify potential automation or bot activity. Column Name: metadata.isp.name Considerations: Could the anomaly be traced back to a single ISP, potentially indicating automation? Be mindful of the large number of ISPs; consider applying filters (e.g., HAVING clause) to exclude smaller ISPs.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 2. ISP (Internet Service Provider)","id":"267","title":"2. ISP (Internet Service Provider)"},"268":{"body":"Purpose: Check if issues began with a specific product version or build. Column Names: client_info.app_display_version, client_info.app_build Considerations: Did the issue arise after a particular version update? If so, collaborate with the product team to identify changes. Ensure that the build ID matches a known Mozilla build. If not, it could be a clone, fork, or side-load build.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 3. Product Version / Build ID","id":"268","title":"3. Product Version / Build ID"},"269":{"body":"Purpose: Determine whether the issue is tied to a specific Glean SDK version. Column Name: client_info.telemetry_sdk_build Considerations: Did the anomaly start after an update to Glean? Work with the Glean team to verify version changes.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 4. Glean SDK Version","id":"269","title":"4. Glean SDK Version"},"27":{"body":"glean-build will generate a glean_metrics.rs file that needs to be included in your source code. To do so add the following lines of code in your src/lib.rs file: mod metrics { include!(concat!(env!(\"OUT_DIR\"), \"/glean_metrics.rs\"));\n} Alternatively create src/metrics.rs (or a different name) with only the include line: include!(concat!(env!(\"OUT_DIR\"), \"/glean_metrics.rs\")); Then add mod metrics; to your src/lib.rs file.","breadcrumbs":"Adding Glean to your project » Rust » Include the generated code","id":"27","title":"Include the generated code"},"270":{"body":"Purpose: Identify possible regressions due to library updates. Considerations: Review updates to Application Services, Gecko, and other dependencies (e.g., Viaduct, rkv) that could affect telemetry collection.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 5. Other Library Version Changes","id":"270","title":"5. Other Library Version Changes"},"271":{"body":"Purpose: Check if Operating System or platform SDK changes are impacting data collection. Column Names: client_info.os_version (Android only: client_info.android_sdk_version) Considerations: Have there been changes to platform lifecycle events or background task behaviors (e.g., 0-duration pings, or ping submission issues)? Has the OS changed the behaviour of system APIs?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 6. OS/Platform SDK Version","id":"271","title":"6. OS/Platform SDK Version"},"272":{"body":"Purpose: Assess the delay between telemetry collection and submission. Column Names: ping_info.parsed_start_time, ping_info.parsed_end_time, submission_timestamp Considerations: Are the recorded timestamps reasonable, both in terms of the ping time window and the delay from collection to submission?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 7. Time Differences: start/end_time vs. submission_timestamp","id":"272","title":"7. Time Differences: start/end_time vs. submission_timestamp"},"273":{"body":"Purpose: Identify telemetry or network errors related to data collection. Considerations: Are there networking errors, ingestion issues, or other telemetry failures that could be related to the anomaly?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 8. Glean Errors","id":"273","title":"8. Glean Errors"},"274":{"body":"Purpose: Determine if the issue is hardware-specific. Column Names: client_info.device_manufacturer, client_info.device_model Considerations: Does the anomaly occur primarily on older or newer hardware models?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 9. Hardware Details (Manufacturer/Version) (Mobile platforms only)","id":"274","title":"9. Hardware Details (Manufacturer/Version) (Mobile platforms only)"},"275":{"body":"Purpose: Determine the reason a ping was sent. Column Names: ping_info.reason Considerations: Does the anomaly occur primarily for a specific reason? The built-in pings have different ping reasons based on their schedule baseline ping schedule and reasons metrics ping schedule and reasons events ping schedule and reasons Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 10. Ping reason","id":"275","title":"10. Ping reason"},"276":{"body":"User defined Glean pings and metrics are declared in YAML files, which must be parsed by glean_parser to generate public APIs for said metrics and pings. These files also serve the purpose of documenting metrics and pings. They are consumed by the probe-scraper tool, which generates a REST API to access metrics and pings information consumed by most other tools in the Glean ecosystem, such as GLAM and the Glean Dictionary . Moreover, for products that do not wish to use the Glean Dictionary as their metrics and pings documentation source, glean_parser provides an option to generate Markdown documentation for metrics and pings based on these files. For more information of that, refer to the help output of the translate command, by running in your terminal: $ glean_parser translate --help","breadcrumbs":"YAML Registry Format » YAML Registry Format","id":"276","title":"YAML Registry Format"},"277":{"body":"For a full reference on the metrics.yaml format, refer to the Metrics YAML Registry Format page.","breadcrumbs":"YAML Registry Format » metrics.yaml file","id":"277","title":"metrics.yaml file"},"278":{"body":"For a full reference on the pings.yaml format, refer to the Pings YAML Registry Format page.","breadcrumbs":"YAML Registry Format » pings.yaml file","id":"278","title":"pings.yaml file"},"279":{"body":"For a full reference on the tags.yaml format, refer to the Tags YAML Registry Format page. Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » tags.yaml file","id":"279","title":"tags.yaml file"},"28":{"body":"In your code you can then access generated metrics nested within their category under the metrics module (or your chosen name): metrics::your_category::metric_name.set(true); See the metric API reference for details. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Rust » Use the metrics","id":"28","title":"Use the metrics"},"280":{"body":"Metrics sent by an application or library are defined in YAML files which follow the metrics.yaml JSON schema . This files must be parsed by glean_parser at build time in order to generate code in the target language (e.g. Kotlin, Swift, ...). The generated code is what becomes the public API to access the project's metrics. For more information on how to introduce the glean_parser build step for a specific language / environment, refer to the \"Adding Glean to your project\" section of this book.","breadcrumbs":"YAML Registry Format » Metrics » Metrics YAML Registry Format","id":"280","title":"Metrics YAML Registry Format"},"281":{"body":"Although we refer to metrics definitions YAML files as metrics.yaml throughout Glean documentation this files may be named whatever makes the most sense for each project and may even be broken down into multiple files, if necessary.","breadcrumbs":"YAML Registry Format » Metrics » Note on the naming of these files","id":"281","title":"Note on the naming of these files"},"282":{"body":"---\n# Schema\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 $tags: - frontend # Category\ntoolbar: # Name click: # Metric Parameters type: event description: | Event to record toolbar clicks. metadata: tags: - Interaction notification_emails: - CHANGE-ME@example.com bugs: - https://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review expires: 2019-06-01 double_click: ...","breadcrumbs":"YAML Registry Format » Metrics » File structure","id":"282","title":"File structure"},"283":{"body":"Declaring the schema at the top of a metrics definitions file is required, as it is what indicates that the current file is a metrics definitions file.","breadcrumbs":"YAML Registry Format » Metrics » Schema","id":"283","title":"Schema"},"284":{"body":"You may optionally declare tags at the file level that apply to all metrics in that file.","breadcrumbs":"YAML Registry Format » Metrics » $tags","id":"284","title":"$tags"},"285":{"body":"Categories are the top-level keys on metrics definition files. One single definition file may contain multiple categories grouping multiple metrics. They serve the purpose of grouping related metrics in a project. Categories can contain alphanumeric lower case characters as well as the . and _ characters which can be used to provide extra structure, for example category.subcategory is a valid category. Category lengths may not exceed 40 characters. Categories may not start with the string glean. That prefix is reserved for Glean internal metrics. See the \"Capitalization\" note to understand how the category is formatted in generated code.","breadcrumbs":"YAML Registry Format » Metrics » Category","id":"285","title":"Category"},"286":{"body":"Metric names are the second-level keys on metrics definition files. Names may contain alphanumeric lower case characters as well as the _ character. Metric name lengths may not exceed 30 characters. \"Capitalization\" rules also apply to metric names on generated code.","breadcrumbs":"YAML Registry Format » Metrics » Name","id":"286","title":"Name"},"287":{"body":"Specific metric types may have special required parameters in their definition, these parameters are documented in each \"Metric Type\" reference page. Following are the parameters common to all metric types.","breadcrumbs":"YAML Registry Format » Metrics » Metric parameters","id":"287","title":"Metric parameters"},"288":{"body":"type Specifies the type of a metric, like \"counter\" or \"event\". This defines which operations are valid for the metric, how it is stored and how data analysis tooling displays it. See the list of supported metric types . Types should not be changed after release Once a metric is defined in a product, its type should only be changed in rare circumstances. It's better to rename the metric with the new type instead. The ingestion pipeline will create a new column for a metric with a changed type. Any new analysis will need to use the new column going forward. The old column will still be populated with data from old clients. description A textual description of the metric for humans. It should describe what the metric does, what it means for analysts, and its edge cases or any other helpful information. The description field may contain markdown syntax . Imposed limits on line length The Glean linter uses a line length limit of 80 characters. If your description is longer, e.g. because it includes longer links, you can disable yamllint using the following annotations (and make sure to enable yamllint again as well): # yamllint disable\ndescription: | Your extra long description, that's longer than 80 characters by far.\n# yamllint enable notification_emails A list of email addresses to notify for important events with the metric or when people with context or ownership for the metric need to be contacted. For example when a metric's expiration is within in 14 days, emails will be sent from telemetry-alerts@mozilla.com to the notification_emails addresses associated with the metric. Consider adding both a group email address and an individual who is responsible for this metric. bugs A list of bugs (e.g. Bugzilla or GitHub) that are relevant to this metric. For example, bugs that track its original implementation or later changes to it. Each entry should be the full URL to the bug in an issue tracker. The use of numbers alone is deprecated and will be an error in the future. data_reviews A list of URIs to any data collection review responses relevant to the metric. expires When the metric is set to expire. After a metric expires, an application will no longer collect or send data related to it. May be one of the following values: : An ISO date yyyy-mm-dd in UTC on which the metric expires. For example, 2019-03-13. This date is checked at build time. Except in special cases, this form should be used so that the metric automatically \"sunsets\" after a period of time. Emails will be sent to the notification_emails addresses when the metric is about to expire. Generally, when a metric is no longer needed, it should simply be removed. This does not affect the availability of data already collected by the pipeline. : An integer greater than 0 representing the major version the metric expires in, For example, 11. The version is checked at build time against the major provided to the glean_parser (see e.g. Build configuration for Android , Build configuration for iOS ) and is only valid if a major version is provided at built time. If no major version is provided at build time and expiration by major version is used for a metric, an error is raised. Note that mixing expiration by date and version is not allowed within a product. never: This metric never expires. expired: This metric is manually expired.","breadcrumbs":"YAML Registry Format » Metrics » Required parameters","id":"288","title":"Required parameters"},"289":{"body":"tags default: [] A list of tag names associated with this metric. Must correspond to an entry specified in a tags file . lifetime default: ping Defines the lifetime of the metric. Different lifetimes affect when the metrics value is reset. ping (default) The metric is cleared each time it is submitted in the ping. This is the most common case, and should be used for metrics that are highly dynamic, such as things computed in response to the user's interaction with the application. application The metric is related to an application run, and is cleared after the application restarts and any Glean-owned ping, due at startup, is submitted. This should be used for things that are constant during the run of an application, such as the operating system version. In practice, these metrics are generally set during application startup. A common mistake--- using the ping lifetime for these type of metrics---means that they will only be included in the first ping sent during a particular run of the application. user NOTE: Reach out to the Glean team before using this. The metric is part of the user's profile and will live as long as the profile lives. This is often not the best choice unless the metric records a value that really needs to be persisted for the full lifetime of the user profile, e.g. an identifier like the client_id, the day the product was first executed. It is rare to use this lifetime outside of some metrics that are built in to the Glean SDK. send_in_pings default: events|metrics Defines which pings the metric should be sent on. If not specified, the metric is sent on the default ping, which is the events ping for events and the metrics ping for everything else. Most metrics don't need to specify this unless they are sent on custom pings . The special value default may be used, in case it's required for a metric to be sent on the default ping as well as in a custom ping. Adding metrics to every ping For the small number of metrics that should be in every ping the Glean SDKs will eventually provide a solution. See bug 1695236 for details. send_in_pings: - my-custom-ping - default disabled default: false Data collection for this metric is disabled. This is useful when you want to temporarily disable the collection for a specific metric without removing references to it in your source code. Generally, when a metric is no longer needed, it should simply be removed. This does not affect the availability of data already collected by the pipeline. version default: 0 The version of the metric. A monotonically increasing integer value. This should be bumped if the metric changes in a backward-incompatible way. data_sensitivity default: [] A list of data sensitivity categories that the metric falls under. There are four data collection categories related to data sensitivity defined in Mozilla's data collection review process : Category 1: Technical Data (technical) Information about the machine or Firefox itself. Examples include OS, available memory, crashes and errors, outcome of automated processes like updates, safe browsing, activation, versions, and build id. This also includes compatibility information about features and APIs used by websites, add-ons, and other 3rd-party software that interact with Firefox during usage. Category 2: Interaction Data (interaction) Information about the user’s direct engagement with Firefox. Examples include how many tabs, add-ons, or windows a user has open; uses of specific Firefox features; session length, scrolls and clicks; and the status of discrete user preferences. It also includes information about the user's in-product journeys and product choices helpful to understand engagement (attitudes). For example, selections of add-ons or tiles to determine potential interest categories etc. Category 3: Stored Content & Communications (stored_content) (formerly Web activity data, web_activity) Information about what people store, sync, communicate or connect to where the information is generally considered to be more sensitive and personal in nature. Examples include users' saved URLs or URL history, specific web browsing history, general information about their web browsing history (such as TLDs or categories of webpages visited over time) and potentially certain types of interaction data about specific web pages or stories visited (such as highlighted portions of a story). It also includes information such as content saved by users to an individual account like saved URLs, tags, notes, passwords and files as well as communications that users have with one another through a Mozilla service. Category 4: Highly sensitive data or clearly identifiable personal data (highly_sensitive) Information that directly identifies a person, or if combined with other data could identify a person. This data may be embedded within specific website content, such as memory contents, dumps, captures of screen data, or DOM data. Examples include account registration data like name, password, and email address associated with an account, payment data in connection with subscriptions or donations, contact information such as phone numbers or mailing addresses, email addresses associated with surveys, promotions and customer support contacts. It also includes any data from different categories that, when combined, can identify a person, device, household or account. For example Category 1 log data combined with Category 3 saved URLs. Additional examples are: voice audio commands (including a voice audio file), speech-to-text or text-to-speech (including transcripts), biometric data, demographic information, and precise location data associated with a persistent identifier, individual or small population cohorts. This is location inferred or determined from mechanisms other than IP such as wi-fi access points, Bluetooth beacons, cell phone towers or provided directly to us, such as in a survey or a profile. Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » Metrics » Optional parameters","id":"289","title":"Optional parameters"},"29":{"body":"This page provides a step-by-step guide on how to integrate the Glean JavaScript SDK into a JavaScript project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so. The Glean JavaScript SDK allows integration with three distinct JavaScript environments: websites, web extension and Node.js.","breadcrumbs":"Adding Glean to your project » JavaScript » Adding Glean to your JavaScript project","id":"29","title":"Adding Glean to your JavaScript project"},"290":{"body":"Custom pings sent by an application or library are defined in YAML files which follow the pings.yaml JSON schema . This files must be parsed by glean_parser at build time in order to generate code in the target language (e.g. Kotlin, Swift, ...). The generated code is what becomes the public API to access the project's custom pings. For more information on how to introduce the glean_parser build step for a specific language / environment, refer to the \"Adding Glean to your project\" section of this book.","breadcrumbs":"YAML Registry Format » Pings » Pings YAML Registry Format","id":"290","title":"Pings YAML Registry Format"},"291":{"body":"Although we refer to pings definitions YAML files as pings.yaml throughout Glean documentation this files may be named whatever makes the most sense for each project and may even be broken down into multiple files, if necessary.","breadcrumbs":"YAML Registry Format » Pings » Note on the naming of these files","id":"291","title":"Note on the naming of these files"},"292":{"body":"---\n# Schema\n$schema: moz://mozilla.org/schemas/glean/pings/2-0-0 # Name\nsearch: # Ping parameters description: > A ping to record search data. include_client_id: false notification_emails: - CHANGE-ME@example.com bugs: - http://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review","breadcrumbs":"YAML Registry Format » Pings » File structure","id":"292","title":"File structure"},"293":{"body":"Declaring the schema at the top of a pings definitions file is required, as it is what indicates that the current file is a pings definitions file.","breadcrumbs":"YAML Registry Format » Pings » Schema","id":"293","title":"Schema"},"294":{"body":"Ping names are the top-level keys on pings definitions files. One single definition file may contain multiple ping declarations. Ping names are limited to lowercase letters from the ISO basic Latin alphabet and hyphens and a maximum of 30 characters. Pings may not contain the words custom or ping in their names. These are considered redundant words and will trigger a REDUNDANT_PING lint failure on glean_parser. \"Capitalization\" rules apply to ping names on generated code.","breadcrumbs":"YAML Registry Format » Pings » Name","id":"294","title":"Name"},"295":{"body":"The names baseline, metrics, events, deletion-request, default and all-pings are reserved and may not be used as the name of a custom ping.","breadcrumbs":"YAML Registry Format » Pings » Reserved ping names","id":"295","title":"Reserved ping names"},"296":{"body":"","breadcrumbs":"YAML Registry Format » Pings » Ping parameters","id":"296","title":"Ping parameters"},"297":{"body":"description A textual description of the purpose of the ping. It may contain markdown syntax . metadata default: {} A dictionary of extra metadata associated with this ping. tags default: [] A list of tag names associated with this ping. Must correspond to an entry specified in a tags file . ping_schedule default: [] A list of ping names. When one of those pings is sent, then this ping is also sent, with the same reason. This is useful if you want a ping to be scheduled and sent at the same frequency as another ping, like baseline. Pings cannot list themselves under ping_schedule, however it is possible to accidentally create cycles of pings where Ping A schedules Ping B, which schedules Ping C, which in turn schedules Ping A. This can result in a constant stream of pings being sent. Please use caution with ping_schedule, and ensure that you have not accidentally created any cycles with the ping references. include_client_id A boolean indicating whether to include the client_id in the client_info section of the ping. notification_emails A list of email addresses to notify for important events with the ping or when people with context or ownership for the ping need to be contacted. Consider adding both a group email address and an individual who is responsible for this ping. bugs A list of bugs (e.g. Bugzilla or GitHub) that are relevant to this ping. For example, bugs that track its original implementation or later changes to it. Each entry should be the full URL to the bug in an issue tracker. The use of numbers alone is deprecated and will be an error in the future. data_reviews A list of URIs to any data collection review responses relevant to the metric.","breadcrumbs":"YAML Registry Format » Pings » Required parameters","id":"297","title":"Required parameters"},"298":{"body":"send_if_empty default: false A boolean indicating if the ping is sent if it contains no metric data. reasons default: {} The reasons that this ping may be sent. The keys are the reason codes, and the values are a textual description of each reason. The ping payload will (optionally) contain one of these reasons in the ping_info.reason field. Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » Pings » Optional parameters","id":"298","title":"Optional parameters"},"299":{"body":"Any number of custom \"tags\" can be added to any metric or ping. This can be useful in data discovery tools like the Glean Dictionary . The tags for an application are defined in YAML files which follow the tags.yaml JSON schema . These files must be parsed by glean_parser at build time in order to generate the metadata. For more information on how to introduce the glean_parser build step for a specific language / environment, refer to the \"Adding Glean to your project\" section of this book.","breadcrumbs":"YAML Registry Format » Tags » Tags YAML Registry Format","id":"299","title":"Tags YAML Registry Format"},"3":{"body":"This section of the book contains reference pages for Glean’s user facing APIs. If you are looking for information a specific Glean API, this is the section you should check out.","breadcrumbs":"Glean » API Reference","id":"3","title":"API Reference"},"30":{"body":"Node.js >= 12.20.0 npm >= 7.0.0 Webpack >= 5.34.0 Python >= 3.8 The glean command requires Python to download glean_parser which is a Python library","breadcrumbs":"Adding Glean to your project » JavaScript » Requirements","id":"30","title":"Requirements"},"300":{"body":"Although we refer to tag definitions YAML files as tags.yaml throughout Glean documentation this files may be named whatever makes the most sense for each project and may even be broken down into multiple files, if necessary.","breadcrumbs":"YAML Registry Format » Tags » Note on the naming of these files","id":"300","title":"Note on the naming of these files"},"301":{"body":"---\n# Schema\n$schema: moz://mozilla.org/schemas/glean/tags/1-0-0 Search: description: Metrics or pings in the \"search\" domain","breadcrumbs":"YAML Registry Format » Tags » File structure","id":"301","title":"File structure"},"302":{"body":"Declaring the schema at the top of a tags definitions file is required, as it is what indicates that the current file is a tag definitions file.","breadcrumbs":"YAML Registry Format » Tags » Schema","id":"302","title":"Schema"},"303":{"body":"Tag names are the top-level keys on tag definitions files. One single definition file may contain multiple tag declarations. There is no restriction on the name of a tag, aside from the fact that they have a maximum of 80 characters.","breadcrumbs":"YAML Registry Format » Tags » Name","id":"303","title":"Name"},"304":{"body":"","breadcrumbs":"YAML Registry Format » Tags » Tag parameters","id":"304","title":"Tag parameters"},"305":{"body":"description A textual description of the tag. It may contain markdown syntax . Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » Tags » Required parameters","id":"305","title":"Required parameters"},"306":{"body":"The Glean SDKs have a minimal API available on their top-level Glean object called the General API. This API allows, among other things, to enable and disable upload, register custom pings and set experiment data . Only initialize in the main application! Glean should only be initialized from the main application, not individual libraries. If you are adding Glean support to a library, you can safely skip this section.","breadcrumbs":"General API » The General API","id":"306","title":"The General API"},"307":{"body":"The Glean SDKs provide a general API that supports the following operations. See API reference pages for SDK-specific details. Operation Description Notes initialize Configure and initialize the Glean SDK. Initializing the Glean SDK setUploadEnabled Enable or disable Glean collection and upload. Toggling upload status registerPings Register custom pings generated from pings.yaml. Custom pings setExperimentActive Indicate that an experiment is running. Using the Experiments API setExperimentInactive Indicate that an experiment is no longer running.. Using the Experiments API registerEventListener Register a callback by which a consumer can be notified of all event metrics being recorded. Glean Event Listener Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » The API","id":"307","title":"The API"},"308":{"body":"Glean needs to be initialized in order to be able to send pings, record metrics and perform maintenance tasks. Thus it is advised that Glean be initialized as soon as possible in an application's lifetime and importantly, before any other libraries in the application start using Glean.","breadcrumbs":"General API » Initializing » Initializing","id":"308","title":"Initializing"},"309":{"body":"Libraries rely on the same Glean singleton as the application in which they are embedded. Hence, they are not expected to initialize Glean as the application should already do that.","breadcrumbs":"General API » Initializing » Libraries are not required to initialize Glean","id":"309","title":"Libraries are not required to initialize Glean"},"31":{"body":"webextension-polyfill >= 0.8.0 Glean.js assumes a Promise-based browser API: Firefox provides such an API by default. Other browsers may require using a polyfill library such us webextension-polyfill when using Glean in browser extensions Host permissions to the telemetry server Only necessary if the defined server endpoint denies cross-origin requests Not necessary if using the default https://incoming.telemetry.mozilla.org. \"storage\" API permissions Browser extension example configuration The manifest.json file of the sample browser extension available on the mozilla/glean.js repository provides an example on how to define the above permissions as well as how and where to load the webextension-polyfill script.","breadcrumbs":"Adding Glean to your project » JavaScript » Browser extension specific requirements","id":"31","title":"Browser extension specific requirements"},"310":{"body":"Any API called before Glean is initialized is queued and applied at initialization. To avoid unbounded memory growth the queue is bounded (currently to a maximum of 1 million tasks), and further calls are dropped. The number of calls dropped, if any, is recorded in the glean.error.preinit_tasks_overflow metric.","breadcrumbs":"General API » Initializing » Behavior when uninitialized","id":"310","title":"Behavior when uninitialized"},"311":{"body":"","breadcrumbs":"General API » Initializing » Behavior once initialized","id":"311","title":"Behavior once initialized"},"312":{"body":"Once initialized, if upload is enabled, Glean applies all metric recordings and ping submissions, for both user-defined and builtin metrics and pings. This always happens asynchronously.","breadcrumbs":"General API » Initializing » When upload is enabled","id":"312","title":"When upload is enabled"},"313":{"body":"If upload is disabled, any persisted metrics, events and pings (other than first_run_date) are cleared. Pending deletion-request pings are sent. Subsequent calls to record metrics and submit pings will be no-ops. Because Glean does that as part of its initialization, users are required to always initialize Glean. Glean must be initialized even if upload is disabled. This does not apply to special builds where telemetry is disabled at build time. In that case, it is acceptable to not call initialize at all.","breadcrumbs":"General API » Initializing » When upload is disabled","id":"313","title":"When upload is disabled"},"314":{"body":"","breadcrumbs":"General API » Initializing » API","id":"314","title":"API"},"315":{"body":"Initializes Glean. May only be called once. Subsequent calls to initialize are no-op. Configuration The available initialize configuration options may vary depending on the SDK. Below are listed the configuration options available on most SDKs. Note that on some SDKs some of the options are taken as a configuration object. Check the respective SDK documentation for details. Configuration Option Default value Description applicationId On Android/iOS: determined automatically. Otherwise required . Application identifier. For Android and iOS applications, this is the id used on the platform's respective app store and is extracted automatically from the application context. uploadEnabled Required The user preference on whether or not data upload is enabled. channel - The application's release channel. When present, the app_channel will be reported in all pings' client_info sections. appBuild On Android/iOS: determined automatically. Otherwise: - A build identifier e.g. the build identifier generated by a CI system (e.g. \"1234/A\"). If not present, app_build will be reported as \"Unknown\" on all pings' client_info sections. appDisplayVersion - The user visible version string for the application running Glean. If not present, app_display_version will be reported as \"Unknown\" on all pings' client_info sections. serverEndpoint https://incoming.telemetry.mozilla.org The server pings are sent to. maxEvents Glean.js: 1. Other SDKs: 500. The maximum number of events the Glean storage will hold on to before submitting the 'events' ping. Refer to the events ping documentation for more information on its scheduling. httpUploader - A custom HTTP uploader instance, that will overwrite Glean's provided uploader. Useful for users that wish to use specific uploader implementations. See Custom Uploaders for more information on how and when the use this feature. logLevel - The level for how verbose the internal logging is. The level filter options in order from least to most verbose are: Off, Error, Warn, Info, Debug, Trace. See the log crate docs for more information. enableEventTimestamps true Whether to add a wall clock timestamp to all events. rateLimit 15 pings per 60s interval Specifies the maximum number of pings that can be uploaded per interval of a specified number of seconds. experimentationId - Optional. An identifier derived by the application to be sent in all pings for the purpose of experimentation. See the experiments API documentation for more information. enableInternalPings true Whether to enable the internal \"baseline\", \"events\", and \"metrics\" pings. delayPingLifetimeIo false Whether Glean should delay persistence of data from metrics with ping lifetime. On Android data is automatically persisted every 1000 writes and on backgrounding when enabled. To learn about SDK specific configuration options available, refer to the Reference section. Always initialize Glean with the correct upload preference Glean must always be initialized with real values. Always pass the user preference, e.g. Glean.initialize(uploadEnabled=userSettings.telemetryEnabled) or the equivalent for your application. Calling Glean.setUploadEnabled(false) at a later point will trigger deletion-request pings and regenerate client IDs. This should only be done if the user preference actually changes. An excellent place to initialize Glean is within the onCreate method of the class that extends Android's Application class. import org.mozilla.yourApplication.GleanMetrics.GleanBuildInfo\nimport org.mozilla.yourApplication.GleanMetrics.Pings class SampleApplication : Application() { override fun onCreate() { super.onCreate() // If you have custom pings in your application, you must register them // using the following command. This command should be omitted for // applications not using custom pings. Glean.registerPings(Pings) // Initialize the Glean library. Glean.initialize( applicationContext, // Here, `settings()` is a method to get user preferences, specific to // your application and not part of the Glean API. uploadEnabled = settings().isTelemetryEnabled, configuration = Configuration(), buildInfo = GleanBuildInfo.buildInfo ) }\n} The Glean Kotlin SDK supports use across multiple processes. This is enabled by setting a dataPath value in the Glean.Configuration object passed to Glean.initialize. You do not need to set a dataPath for your main process. This configuration should only be used by a non-main process. Requirements for a non-main process: Glean.initialize must be called with the dataPath value set in the Glean.Configuration. The default dataPath for Glean is {context.applicationInfo.dataDir}/glean_data. If you try to use this path, Glean.initialize will fail and throw an error. Set the default process name as your main process. If this is not set up correctly, pings from the non-main process will not send. Configuration.Builder().setDefaultProcessName() Note : When initializing from a non-main process with a specified dataPath, the lifecycle observers will not be set up. This means you will not receive otherwise scheduled baseline or metrics pings.","breadcrumbs":"General API » Initializing » Glean.initialize(configuration)","id":"315","title":"Glean.initialize(configuration)"},"316":{"body":"When the Glean Kotlin SDK is consumed through Android Components, it is required to configure an HTTP client to be used for upload. For example: // Requires `org.mozilla.components:concept-fetch`\nimport mozilla.components.concept.fetch.Client // Requires `org.mozilla.components:lib-fetch-httpurlconnection`.\n// This can be replaced by other implementations, e.g. `lib-fetch-okhttp`\n// or an implementation from `browser-engine-gecko`.\nimport mozilla.components.lib.fetch.httpurlconnection.HttpURLConnectionClient\nimport mozilla.components.service.glean.config.Configuration\nimport mozilla.components.service.glean.net.ConceptFetchHttpUploader val httpClient = ConceptFetchHttpUploader(lazy { HttpURLConnectionClient() as Client })\nval config = Configuration(httpClient = httpClient)\nGlean.initialize( context, uploadEnabled = true, configuration = config, buildInfo = GleanBuildInfo.buildInfo\n) An excellent place to initialize Glean is within the application(_:) method of the class that extends the UIApplicationDelegate class. import Glean\nimport UIKit @UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate { func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // If you have custom pings in your application, you must register them // using the following command. This command should be omitted for // applications not using custom pings. Glean.shared.registerPings(GleanMetrics.Pings) // Initialize the Glean library. Glean.shared.initialize( // Here, `Settings` is a method to get user preferences specific to // your application, and not part of the Glean API. uploadEnabled = Settings.isTelemetryEnabled, configuration = Configuration(), buildInfo = GleanMetrics.GleanBuild.info ) }\n} The Glean Swift SDK supports use across multiple processes. This is enabled by setting a dataPath value in the Glean.Configuration object passed to Glean.initialize. You do not need to set a dataPath for your main process. This configuration should only be used by a non-main process. Requirements for a non-main process: Glean.initialize must be called with the dataPath value set in the Glean.Configuration. On iOS devices, Glean stores data in the Application Support directory. The default dataPath Glean uses is {FileManager.default.urls(for: .applicationSupportDirectory, in: .userDomainMask)[0]}/glean_data. If you try to use this path, Glean.initialize will fail and throw an error. Note : When initializing from a non-main process with a specified dataPath, the lifecycle observers will not be set up. This means you will not receive otherwise scheduled baseline or metrics pings. The main control for the Glean Python SDK is on the glean.Glean singleton. from glean import Glean, Configuration Glean.initialize( application_id=\"my-app-id\", application_version=\"0.1.0\", # Here, `is_telemetry_enabled` is a method to get user preferences specific to # your application, and not part of the Glean API. upload_enabled=is_telemetry_enabled(), configuration=Configuration(),\n) Unlike in other implementations, the Python SDK does not automatically send any pings. See the custom pings documentation about adding custom pings and sending them. The Glean Rust SDK should be initialized as soon as possible. use glean::{ClientInfoMetrics, Configuration};\nlet cfg = Configuration { data_path, application_id: \"my-app-id\".into(), // Here, `is_telemetry_enabled` is a method to get user preferences specific to // your application, and not part of the Glean API. upload_enabled: is_telemetry_enabled(), max_events: None, delay_ping_lifetime_io: false, server_endpoint: Some(\"https://incoming.telemetry.mozilla.org\".into()), uploader: None, use_core_mps: true,\n}; let client_info = ClientInfoMetrics { app_build: env!(\"CARGO_PKG_VERSION\").to_string(), app_display_version: env!(\"CARGO_PKG_VERSION\").to_string(), channel: None, locale: None,\n}; glean::initialize(cfg, client_info); The Glean Rust SDK does not support use across multiple processes, and must only be initialized on the application's main process. Unlike in other implementations, the Rust SDK does not provide a default uploader. See PingUploader for details. import Glean from \"@mozilla/glean/\"; Glean.initialize( \"my-app-id\", // Here, `isTelemetryEnabled` is a method to get user preferences specific to // your application, and not part of the Glean API. isTelemetryEnabled(), { appDisplayVersion: \"0.1.0\" }\n);","breadcrumbs":"General API » Initializing » Consuming Glean through Android Components","id":"316","title":"Consuming Glean through Android Components"},"317":{"body":"A custom HTTP uploader may be provided at initialization time in order to overwrite Glean's native ping uploader implementation. Each SDK exposes a base class for Glean users to extend into their own custom uploaders. See BaseUploader for details on how to implement a custom upload on Kotlin. See HttpPingUploader for details on how to implement a custom upload on Swift. See BaseUploader for details on how to implement a custom upload on Python. See PingUploader for details on how to implement a custom upload on Rust. import { Uploader, UploadResult, UploadResultStatus } from \"@mozilla/glean/uploader\";\nimport Glean from \"@mozilla/glean/\"; /** * My custom uploader implementation */\nexport class MyCustomUploader extends Uploader { async post(url: string, body: string, headers): Promise { // My custom POST request code }\n} Glean.initialize( \"my-app-id\", // Here, `isTelemetryEnabled` is a method to get user preferences specific to // your application, and not part of the Glean API. isTelemetryEnabled(), { httpClient: new MyCustomUploader() }\n);","breadcrumbs":"General API » Initializing » Custom Uploaders","id":"317","title":"Custom Uploaders"},"318":{"body":"When unit testing metrics and pings, Glean needs to be put in testing mode. Initializing Glean for tests is referred to as \"resetting\". It is advised that Glean is reset before each unit test to prevent side effects of one unit test impacting others. How to do that and the definition of \"testing mode\" varies per Glean SDK. Refer to the information below for SDK specific information. Using the Glean Kotlin SDK's unit testing API requires adding Robolectric 4.0 or later as a testing dependency. In Gradle, this can be done by declaring a testImplementation dependency: dependencies { testImplementation \"org.robolectric:robolectric:4.3.1\"\n} In order to put the Glean Kotlin SDK into testing mode apply the JUnit GleanTestRule to your test class. Testing mode will prevent issues with async calls when unit testing the Glean SDK on Kotlin. It also enables uploading and clears the recorded metrics at the beginning of each test run. The rule can be used as shown: @RunWith(AndroidJUnit4::class)\nclass ActivityCollectingDataTest { // Apply the GleanTestRule to set up a disposable Glean instance. // Please note that this clears the Glean data across tests. @get:Rule val gleanRule = GleanTestRule(ApplicationProvider.getApplicationContext()) @Test fun checkCollectedData() { // The Glean Kotlin SDK testing APIs can be called here. }\n} This will ensure that metrics are done recording when the other test functions are used. Note : There's no automatic test rule for Glean tests implemented in Swift. In order to prevent issues with async calls when unit testing the Glean SDK, it is important to put the Glean Swift SDK into testing mode. When the Glean Swift SDK is in testing mode, it enables uploading and clears the recorded metrics at the beginning of each test run. Activate it by resetting Glean in your test's setup: // All pings and metrics testing APIs are marked as `internal`\n// so you need to import `Glean` explicitly in test mode.\nimport XCTest class GleanUsageTests: XCTestCase { override func setUp() { Glean.shared.resetGlean(clearStores: true) } // ...\n} This will ensure that metrics are done recording when the other test functions are used. The Glean Python SDK contains a helper function glean.testing.reset_glean() for resetting Glean for tests. It has two required arguments: the application ID, and the application version. Each reset of the Glean Python SDK will create a new temporary directory for Glean to store its data in. This temporary directory is automatically cleaned up the next time the Glean Python SDK is reset or when the testing framework finishes. The instructions below assume you are using pytest as the test runner. Other test-running libraries have similar features, but are different in the details. Create a file conftest.py at the root of your test directory, and add the following to reset Glean at the start of every test in your suite: import pytest\nfrom glean import testing @pytest.fixture(name=\"reset_glean\", scope=\"function\", autouse=True)\ndef fixture_reset_glean(): testing.reset_glean(application_id=\"my-app-id\", application_version=\"0.1.0\") Note Glean uses a global singleton object. Tests need to run single-threaded or need to ensure exclusivity using a lock. The Glean Rust SDK contains a helper function test_reset_glean() for resetting Glean for tests. It has three required arguments: the configuration to use the client info to use whether to clear stores before initialization You can call it like below in every test: let dir = tempfile::tempdir().unwrap();\nlet tmpname = dir.path().to_path_buf(); let glean::Configuration { data_path: tmpname, application_id: \"app-id\".into(), upload_enabled: true, max_events: None, delay_ping_lifetime_io: false, server_endpoint: Some(\"invalid-test-host\".into()), uploader: None, use_core_mps: false,\n};\nlet client_info = glean::ClientInfoMetrics::unknown();\nglean::test_reset_glean(cfg, client_info, false); The Glean JavaScript SDK contains a helper function testResetGlean() for resetting Glean for tests. It expects the same list of arguments as Glean.initialize. Each reset of the Glean JavaScript SDK will clear stores. Calling testResetGlean will also make metrics and pings testing APIs available and replace ping uploading with a mock implementation that does not make real HTTP requests. import { testResetGlean } from \"@mozilla/glean/testing\" describe(\"myTestSuite\", () => { beforeEach(async () => { await testResetGlean(\"my-test-id\"); });\n});","breadcrumbs":"General API » Initializing » Testing API","id":"318","title":"Testing API"},"319":{"body":"Swift API docs Python API docs Rust API docs JavaScript API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Initializing » Reference","id":"319","title":"Reference"},"32":{"body":"The Glean JavaScript SDK is distributed as an npm package @mozilla/glean . This package has different entry points to access the different SDKs. @mozilla/glean/web gives access to the websites SDK @mozilla/glean/webext gives access to the web extension SDK @mozilla/glean/node gives access to the Node.js SDK [1] The Node.js SDK does not have persistent storage yet. This means, Glean does not persist state throughout application runs. For updates on the implementation of this feature in Node.js, follow Bug 1728807 . Install Glean in your JavaScript project, by running: npm install @mozilla/glean Then import Glean into your project: // Importing the Glean JavaScript SDK for use in **web extensions**\n//\n// esm\nimport Glean from \"@mozilla/glean/webext\";\n// cjs\nconst { default: Glean } = require(\"@mozilla/glean/webext\"); // Importing the Glean JavaScript SDK for use in **websites**\n//\n// esm\nimport Glean from \"@mozilla/glean/web\";\n// cjs\nconst { default: Glean } = require(\"@mozilla/glean/web\"); // Importing the Glean JavaScript SDK for use in **Node.js**\n//\n// esm\nimport Glean from \"@mozilla/glean/node\";\n// cjs\nconst { default: Glean } = require(\"@mozilla/glean/node\");","breadcrumbs":"Adding Glean to your project » JavaScript » Setting up the dependency","id":"32","title":"Setting up the dependency"},"320":{"body":"The Glean SDKs provide an API for toggling Glean's upload status after initialization. Applications instrumented with Glean are expected to provide some form of user interface to allow for toggling the upload status.","breadcrumbs":"General API » Toggling upload status » Toggling upload status","id":"320","title":"Toggling upload status"},"321":{"body":"When upload is disabled, the Glean SDK will perform the following tasks: Submit a deletion-request ping. Cancel scheduled ping uploads. Clear metrics and pings data from the client, except for the first_run_date metric. While upload is disabled, metrics aren't recorded and no data is uploaded.","breadcrumbs":"General API » Toggling upload status » Disabling upload","id":"321","title":"Disabling upload"},"322":{"body":"When upload is enabled, the Glean SDK will re-initialize its core metrics . The only core metric that is not re-initialized is the first_run_date metric. While upload is enabled all metrics are recorded as expected and pings are sent to the telemetry servers.","breadcrumbs":"General API » Toggling upload status » Enabling upload","id":"322","title":"Enabling upload"},"323":{"body":"","breadcrumbs":"General API » Toggling upload status » API","id":"323","title":"API"},"324":{"body":"Enables or disables upload. If called prior to initialize this function is a no-op. If the upload state is not actually changed in between calls to this function, it is also a no-op. import mozilla.telemetry.glean.Glean open class MainActivity : AppCompatActivity() { override fun onCreate() { // ... uploadSwitch.setOnCheckedChangeListener { _, isChecked -> if (isChecked) { Glean.setUploadEnabled(true) } else { Glean.setUploadEnabled(false) } } }\n} import mozilla.telemetry.glean.Glean Glean.INSTANCE.setUploadEnabled(false); import Glean\nimport UIKit class ViewController: UIViewController { @IBOutlet var enableSwitch: UISwitch! // ... @IBAction func enableToggled(_: Any) { Glean.shared.setUploadEnabled(enableSwitch.isOn) }\n} from glean import Glean Glean.set_upload_enabled(false) use glean; glean::set_upload_enabled(false); import Glean from \"@mozilla/glean/web\"; const uploadSwitch = document.querySelector(\"input[type=checkbox].upload-switch\");\nuploadSwitch.addEventListener(\"change\", event => { if (event.target.checked) { Glean.setUploadEnabled(true); } else { Glean.setUploadEnabled(false); }\n});","breadcrumbs":"General API » Toggling upload status » Glean.setUploadEnabled(boolean)","id":"324","title":"Glean.setUploadEnabled(boolean)"},"325":{"body":"Swift API docs Python API docs Rust API docs JavaScript API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Toggling upload status » Reference","id":"325","title":"Reference"},"326":{"body":"The Glean SDKs support tagging all their pings with experiments annotations. The annotations are useful to report that experiments were active at the time the measurement were collected. The annotations are reported in the optional experiments entry in the ping_info section of all pings. Experiment annotations are not persisted The experiment annotations set through this API are not persisted by the Glean SDKs. The application or consuming library is responsible for setting the relevant experiment annotations at each run. It's not required to define experiment IDs and branches Experiment IDs and branches don't need to be pre-defined in the Glean SDK registry files. Please also note that the extra map is a non-nested arbitrary String to String map. It also has limits on the size of the keys and values defined below.","breadcrumbs":"General API » Annotating experiments » Using the experiments API","id":"326","title":"Using the experiments API"},"327":{"body":"","breadcrumbs":"General API » Annotating experiments » Recording API","id":"327","title":"Recording API"},"328":{"body":"Annotates Glean pings with experiment data. // Annotate Glean pings with experiments data.\nGlean.setExperimentActive( experimentId = \"blue-button-effective\", branch = \"branch-with-blue-button\", extra: mapOf( \"buttonLabel\" to \"test\" )\n) // Annotate Glean pings with experiments data.\nGlean.shared.setExperimentActive( experimentId: \"blue-button-effective\", branch: \"branch-with-blue-button\", extra: [\"buttonLabel\": \"test\"]\n) from glean import Glean Glean.set_experiment_active( experiment_id=\"blue-button-effective\", branch=\"branch-with-blue-button\", extra={ \"buttonLabel\": \"test\" }\n) let mut extra = HashMap::new();\nextra.insert(\"buttonLabel\".to_string(), \"test\".to_string());\nglean::set_experiment_active( \"blue-button-effective\".to_string(), \"branch-with-blue-button\".to_string(), Some(extra),\n); C++ At present there is no dedicated C++ Experiments API for Firefox Desktop If you require one, please file a bug . JavaScript let FOG = Cc[\"@mozilla.org/toolkit/glean;1\"].createInstance(Ci.nsIFOG);\nFOG.setExperimentActive( \"blue-button-effective\", \"branch-with-blue-button\", {\"buttonLabel\": \"test\"}\n); Limits experimentId, branch, and the keys and values of the extra field are fixed at a maximum length of 100 bytes. Longer strings are truncated. (Specifically, length is measured in the number of bytes when the string is encoded in UTF-8.) extra map is limited to 20 entries. If passed a map which contains more elements than this, it is truncated to 20 elements. WARNING Which items are truncated is nondeterministic due to the unordered nature of maps. What's left may not necessarily be the first elements added. Recorded errors invalid_value : If the values of experimentId or branch are truncated for length, if the keys or values in the extra map are truncated for length, or if the extra map is truncated for the number of elements.","breadcrumbs":"General API » Annotating experiments » setExperimentActive","id":"328","title":"setExperimentActive"},"329":{"body":"Removes the experiment annotation. Should be called when the experiment ends. Glean.setExperimentInactive(\"blue-button-effective\") Glean.shared.setExperimentInactive(experimentId: \"blue-button-effective\") from glean import Glean Glean.set_experiment_inactive(\"blue-button-effective\") glean::set_experiment_inactive(\"blue-button-effective\".to_string()); C++ At present there is no dedicated C++ Experiments API for Firefox Desktop If you require one, please file a bug . JavaScript let FOG = Cc[\"@mozilla.org/toolkit/glean;1\"].createInstance(Ci.nsIFOG);\nFOG.setExperimentInactive(\"blue-button-effective\");","breadcrumbs":"General API » Annotating experiments » setExperimentInactive","id":"329","title":"setExperimentInactive"},"33":{"body":"In case of privilege-escalation attack into the context of the web extension using Glean, the malicious scripts would be able to call Glean APIs or use the browser.storage.local APIs directly. That would be a risk to Glean data, but not caused by Glean. Glean-using extensions should be careful not to relax the default Content-Security-Policy that generally prevents these attacks.","breadcrumbs":"Adding Glean to your project » JavaScript » Browser extension security considerations","id":"33","title":"Browser extension security considerations"},"330":{"body":"An experimentation enrollment identifier that is derived and provided by the application can be set through the configuration object passed into the initialize function. See the section on Initializing Glean for more information on how to set this within the Configuration object. This identifier will be set during initialization and sent along with all pings sent by Glean, unless that ping is has opted out of sending the client_id. This identifier is not persisted by Glean and must be persisted by the application if necessary for it to remain consistent between runs. Limits The experimentation ID is subject to the same limitations as a string metric type . Recorded errors The experimentation ID will produce the same errors as a string metric type .","breadcrumbs":"General API » Annotating experiments » Set an experimentation identifier","id":"330","title":"Set an experimentation identifier"},"331":{"body":"","breadcrumbs":"General API » Annotating experiments » Testing API","id":"331","title":"Testing API"},"332":{"body":"Reveals if the experiment is annotated in Glean pings. assertTrue(Glean.testIsExperimentActive(\"blue-button-effective\")) XCTAssertTrue(Glean.shared.testIsExperimentActive(experimentId: \"blue-button-effective\")) from glean import Glean assert Glean.test_is_experiment_active(\"blue-button-effective\") assert!(glean::test_is_experiment_active(\"blue-button-effective\".to_string());","breadcrumbs":"General API » Annotating experiments » testIsExperimentActive","id":"332","title":"testIsExperimentActive"},"333":{"body":"Returns the recorded experiment data including branch and extras. assertEquals( \"branch-with-blue-button\", Glean.testGetExperimentData(\"blue-button-effective\")?.branch\n) XCTAssertEqual( \"branch-with-blue-button\", Glean.testGetExperimentData(experimentId: \"blue-button-effective\")?.branch\n) from glean import Glean assert ( \"branch-with-blue-button\" == Glean.test_get_experiment_data(\"blue-button-effective\").branch\n) assert_eq!( \"branch-with-blue-button\", glean::test_get_experiment_data(\"blue-button-effective\".to_string()).branch,\n); C++ At present there is no dedicated C++ Experiments API for Firefox Desktop If you require one, please file a bug . JavaScript let FOG = Cc[\"@mozilla.org/toolkit/glean;1\"].createInstance(Ci.nsIFOG);\nAssert.equals( \"branch-with-blue-button\", FOG.testGetExperimentData(\"blue-button-effective\").branch\n);","breadcrumbs":"General API » Annotating experiments » testGetExperimentData","id":"333","title":"testGetExperimentData"},"334":{"body":"Returns the current Experimentation ID, if any. assertEquals(\"alpha-beta-gamma-delta\", Glean.testGetExperimentationId()) XCTAssertEqual( \"alpha-beta-gamma-delta\", Glean.shared.testGetExperimentationId()!, \"Experimenatation ids must match\"\n) from glean import Glean assert \"alpha-beta-gamma-delta\" == Glean.test_get_experimentation_id() assert_eq!( \"alpha-beta-gamma-delta\".to_string(), glean_test_get_experimentation_id(), \"Experimentation id must match\"\n);","breadcrumbs":"General API » Annotating experiments » testGetExperimentationId","id":"334","title":"testGetExperimentationId"},"335":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Annotating experiments » Reference","id":"335","title":"Reference"},"336":{"body":"After defining custom pings glean_parser is able to generate code from pings.yaml files in a Pings object, which must be instantiated so Glean can send pings by name.","breadcrumbs":"General API » Registering custom pings » Registering custom pings","id":"336","title":"Registering custom pings"},"337":{"body":"","breadcrumbs":"General API » Registering custom pings » API","id":"337","title":"API"},"338":{"body":"Loads custom ping metadata into your application or library. In Kotlin, this object must be registered from your startup code before calling Glean.initialize (such as in your application's onCreate method or a function called from that method). import org.mozilla.yourApplication.GleanMetrics.Pings override fun onCreate() { Glean.registerPings(Pings) Glean.initialize(applicationContext, uploadEnabled = true)\n} In Swift, this object must be registered from your startup code before calling Glean.shared.initialize (such as in your application's UIApplicationDelegate application(_:didFinishLaunchingWithOptions:) method or a function called from that method). import Glean @UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate { func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { Glean.shared.registerPings(GleanMetrics.Pings) Glean.shared.initialize(uploadEnabled = true) }\n} For Python, the pings.yaml file must be available and loaded at runtime. While the Python SDK does provide a Glean.register_ping_type function, if your project is a script (i.e. just Python files in a directory), you can load the pings.yaml before calling Glean.initialize using: from glean import load_pings pings = load_pings(\"pings.yaml\") Glean.initialize( application_id=\"my-app-id\", application_version=\"0.1.0\", upload_enabled=True,\n) If your project is a distributable Python package, you need to include the pings.yaml file using one of the myriad ways to include data in a Python package and then use pkg_resources.resource_filename() to get the filename at runtime. from glean import load_pings\nfrom pkg_resources import resource_filename pings = load_pings(resource_filename(__name__, \"pings.yaml\")) In Rust custom pings need to be registered individually. This should be done before calling glean::initialize. use your_glean_metrics::pings; glean::register_ping_type(&pings::custom_ping);\nglean::register_ping_type(&pings::search);\nglean::initialize(cfg, client_info); Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Registering custom pings » registerPings","id":"338","title":"registerPings"},"339":{"body":"Provides a way for users to gracefully shut down Glean, by blocking until it is finished performing pending tasks such as recording metrics and uploading pings.","breadcrumbs":"General API » Shut down » Shut down","id":"339","title":"Shut down"},"34":{"body":"\"Cannot find module '@mozilla/glean'\" Glean.js does not have a main package entry point. Instead it relies on a series of entry points depending on the platform you are targeting. In order to import Glean use: import Glean from '@mozilla/glean/{your-platform}' \"Module not found: Error: Can't resolve '@mozilla/glean/webext' in '...'\" Glean.js relies on Node.js' subpath exports feature to define multiple package entry points. Please make sure that you are using a supported Node.js runtime and also make sure the tools you are using support this Node.js feature.","breadcrumbs":"Adding Glean to your project » JavaScript » Common import errors","id":"34","title":"Common import errors"},"340":{"body":"Most calls to Glean APIs are dispatched [1] . This strategy is adopted because most tasks performed by the Glean SDKs involve file system read or write operations, HTTP requests and other time consuming actions. Each Glean SDK has an internal structure called \"Dispatcher\" which makes sure API calls get executed in the order they were called, while not requiring the caller to block on the completion of each of these tasks. Here, this term indicates the tasks are run asynchronously in JavaScript or in a different thread for all other SDKs.","breadcrumbs":"General API » Shut down » How the Glean SDKs execute tasks","id":"340","title":"How the Glean SDKs execute tasks"},"341":{"body":"","breadcrumbs":"General API » Shut down » API","id":"341","title":"API"},"342":{"body":"fn main() { let cfg = Configuration { // ... }; let client_info = /* ... */; glean::initialize(cfg, client_info); // Ensure the dispatcher thread winds down glean::shutdown();\n} import Glean from \"@mozilla/glean/webext\"; async function onUninstall() { // Flips Glean upload status to `false`, // which triggers sending of a `deletion-request` ping. Glean.setUploadEnabled(false); // Block on shut down to guarantee all pending pings // (including the `deletion-request` sent above) // are sent before the extension is uninstalled. await Glean.shutdown(); // Uninstall browser extension without asking for user approval before doing so. await browser.management.uninstallSelf({ showConfirmDialog: false });\n} The shutdown API is available for all JavaScript targets, even though the above example is explicitly using the webext target.","breadcrumbs":"General API » Shut down » shutdown","id":"342","title":"shutdown"},"343":{"body":"Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Shut down » Reference","id":"343","title":"Reference"},"344":{"body":"Note: This API is currently experimental and subject to change or elimination. Please reach out to the Glean Team if you are planning on using this API in its experimental state.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Glean Event Listener","id":"344","title":"Glean Event Listener"},"345":{"body":"Glean provides an API to register a callback by which a consumer can be notified of all event metrics being recorded.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Summary","id":"345","title":"Summary"},"346":{"body":"Consumers can register a callback through this API which will be called with the base identifier of each event metric when it is recorded. The base identifier of the event consists of the category name and the event name with a dot separator: . Glean will execute the registered callbacks on a background thread independent of the thread in which the event is being recorded in order to not interfere with the collection of the event. Glean will ensure that event recordings are reported to listeners in the same order that they are recorded by using the same dispatching mechanisms used to ensure events are recorded in the order they are received.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Usage","id":"346","title":"Usage"},"347":{"body":"class TestEventListener : GleanEventListener { val listenerTag: String = \"TestEventListener\" var lastSeenId: String = \"\" var count: Int = 0 override fun onEventRecorded(id: String) { this.lastSeenId = id this.count += 1 }\n} val listener = TestEventListener()\nGlean.registerEventListener(listener.listenerTag, listener) // If necessary to unregister the listener:\nGlean.unregisterEventListener(listener.listenerTag) class TestEventListener: GleanEventListener { let listenerTag: String = \"TestEventListener\" var lastSeenId: String = \"\" var count: Int64 = 0 func onEventRecorded(_ id: String) { self.lastSeenId = id self.count += 1 }\n} let listener = TestEventListener()\nGlean.shared.registerEventListener(tag: listener.listenerTag, listener: listener) // If necessary to unregister the listener:\nGlean.shared.unregisterEventListener(listener.listenerTag) Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Examples","id":"347","title":"Examples"},"348":{"body":"Different platforms have different ways to enable each debug functionality. They may be enabled through APIs exposed on the Glean singleton, through environment variables set at run time, or through platform specific debug tools.","breadcrumbs":"Debugging » Debugging","id":"348","title":"Debugging"},"349":{"body":"Check out the platform specific guides on how to use Glean's debug functionalities. Debugging applications using the Glean Android SDK Debugging applications using the Glean iOS SDK Debugging applications using the Glean Python SDK Debugging applications using the Glean JavaScript SDK","breadcrumbs":"Debugging » Platform Specific Information","id":"349","title":"Platform Specific Information"},"35":{"body":"In JavaScript, the metrics and pings definitions must be parsed at build time. The @mozilla/glean package exposes glean_parser through the glean script. To parse your YAML registry files using this script, define a new script in your package.json file: { // ... \"scripts\": { // ... \"build:glean\": \"glean translate path/to/metrics.yaml path/to/pings.yaml -f javascript -o path/to/generated\", // Or, if you are building for a Typescript project \"build:glean\": \"glean translate path/to/metrics.yaml path/to/pings.yaml -f typescript -o path/to/generated\" }\n} Then run this script by calling: npm run build:glean","breadcrumbs":"Adding Glean to your project » JavaScript » Setting up metrics and pings code generation","id":"35","title":"Setting up metrics and pings code generation"},"350":{"body":"The Glean SDKs provides four debugging features.","breadcrumbs":"Debugging » Features","id":"350","title":"Features"},"351":{"body":"This is either true or false and will cause all subsequent pings that are submitted, to also be echoed to the device's log.","breadcrumbs":"Debugging » Log Pings","id":"351","title":"Log Pings"},"352":{"body":"This will tag all subsequent outgoing pings with the provided value, in order to identify them in the Glean Debug View .","breadcrumbs":"Debugging » Debug View Tag","id":"352","title":"Debug View Tag"},"353":{"body":"This will tag all subsequent outgoing pings with a maximum of 5 comma-separated tags.","breadcrumbs":"Debugging » Source Tags","id":"353","title":"Source Tags"},"354":{"body":"This feature is only available for the Kotlin and Swift SDKs and in Firefox Desktop via about:glean. This expects the name of a ping and forces its immediate submission. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Send Pings","id":"354","title":"Send Pings"},"355":{"body":"This flag causes all subsequent pings that are submitted to also be echoed to the product's log. Once enabled, the only way to disable this feature is to restart or manually reset the application.","breadcrumbs":"Debugging » Log pings » Log pings","id":"355","title":"Log pings"},"356":{"body":"The Glean SDKs log warnings and errors through platform-specific logging frameworks. See the platform-specific instructions for information on how to view the logs on the platform you are on.","breadcrumbs":"Debugging » Log pings » On how to access logs","id":"356","title":"On how to access logs"},"357":{"body":"The accepted values are true or false. Any other value will be ignored.","breadcrumbs":"Debugging » Log pings » Limits","id":"357","title":"Limits"},"358":{"body":"","breadcrumbs":"Debugging » Log pings » API","id":"358","title":"API"},"359":{"body":"Enables or disables ping logging. This API can safely be called before Glean.initialize. The tag will be applied upon initialization in this case. use glean; glean.set_log_pings(true); import Glean from \"@mozilla/glean/\"; Glean.setLogPings(true);","breadcrumbs":"Debugging » Log pings » setLogPings","id":"359","title":"setLogPings"},"36":{"body":"","breadcrumbs":"Adding Glean to your project » JavaScript » Automation steps","id":"36","title":"Automation steps"},"360":{"body":"Gets the current state of ping logging. val loggingEnabled = Glean.getLogPings() let loggingEnabled = Glean.shared.getLogPings() use glean; let logging_enabled = glean.get_log_pings();","breadcrumbs":"Debugging » Log pings » getLogPings","id":"360","title":"getLogPings"},"361":{"body":"","breadcrumbs":"Debugging » Log pings » Environment variable","id":"361","title":"Environment variable"},"362":{"body":"It is also possible to enable ping logging through the GLEAN_LOG_PINGS environment variable. This variable must be set at runtime, not at compile time. It will be checked upon Glean initialization. Xcode IDE scheme editor popup screenshot To set environment variables to the process running your app in an iOS device or emulator you need to edit the scheme for your app. In the Xcode IDE, use the shortcut Cmd + < to open the scheme editor popup. The environment variables editor is under the Arguments tab on this popup. $ GLEAN_LOG_PINGS=true python my_application.py $ GLEAN_LOG_PINGS=true cargo run $ GLEAN_LOG_PINGS=true ./mach run Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Log pings » GLEAN_LOG_PINGS","id":"362","title":"GLEAN_LOG_PINGS"},"363":{"body":"Tag all subsequent outgoing pings with a given value, in order to redirect them to the Glean Debug View . \"To tag\" a ping with the Debug View Tag means that the ping request will contain the X-Debug-Id header with the given tag. Once enabled, the only way to disable this feature is to restart or manually reset the application.","breadcrumbs":"Debugging » Debug View Tag » Debug View Tag","id":"363","title":"Debug View Tag"},"364":{"body":"Any valid HTTP header value is a valid debug view tag (e.g. any value that matches the regex [a-zA-Z0-9-]{1,20}). Invalid values will be ignored.","breadcrumbs":"Debugging » Debug View Tag » Limits","id":"364","title":"Limits"},"365":{"body":"","breadcrumbs":"Debugging » Debug View Tag » API","id":"365","title":"API"},"366":{"body":"Sets the Debug View Tag to a given value. This API can safely be called before Glean.initialize. The tag will be applied upon initialization in this case. Glean.setDebugViewTag(\"my-tag\") import Glean Glean.shared.setDebugViewTag(\"my-tag\") use glean; glean.set_debug_view_tag(\"my-tag\"); import Glean from \"@mozilla/glean/\"; Glean.setDebugViewTag(\"my-tag\");","breadcrumbs":"Debugging » Debug View Tag » setDebugViewTag","id":"366","title":"setDebugViewTag"},"367":{"body":"Gets the Debug View Tag if set, otherwise returns a language-specific empty/null value. val tag = Glean.getDebugViewTag() ?: \"none\" import Glean if let tag = Glean.shared.getDebugViewTag() { ... } use glean; if let Some(tag) = glean.get_debug_view_tag() { ... };","breadcrumbs":"Debugging » Debug View Tag » getDebugViewTag","id":"367","title":"getDebugViewTag"},"368":{"body":"","breadcrumbs":"Debugging » Debug View Tag » Environment variable","id":"368","title":"Environment variable"},"369":{"body":"It is also possible to set the debug view tag through the GLEAN_DEBUG_VIEW_TAG environment variable. This variable must be set at runtime, not at compile time. It will be checked upon Glean initialization. Xcode IDE scheme editor popup screenshot To set environment variables to the process running your app in an iOS device or emulator you need to edit the scheme for your app. In the Xcode IDE, use the shortcut Cmd + < to open the scheme editor popup. The environment variables editor is under the Arguments tab on this popup. $ GLEAN_DEBUG_VIEW_TAG=\"my-tag\" python my_application.py $ GLEAN_DEBUG_VIEW_TAG=\"my-tag\" cargo run $ GLEAN_DEBUG_VIEW_TAG=\"my-tag\" ./mach run Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Debug View Tag » GLEAN_DEBUG_VIEW_TAG","id":"369","title":"GLEAN_DEBUG_VIEW_TAG"},"37":{"body":"Prefer using the Glean Dictionary While it is still possible to generate Markdown documentation, if working on a public Mozilla project rely on the Glean Dictionary for documentation. Your product will be automatically indexed by the Glean Dictionary after it gets enabled in the pipeline. One of the commands provided by glean_parser allows users to generate Markdown documentation based on the contents of their YAML registry files. To perform that translation, use the translate command with a different output format, as shown below. In your package.json, define the following script: { // ... \"scripts\": { // ... \"docs:glean\": \"glean translate path/to/metrics.yaml path/to/pings.yaml -f markdown -o path/to/docs\", }\n} Then run this script by calling: npm run docs:glean","breadcrumbs":"Adding Glean to your project » JavaScript » Documentation","id":"37","title":"Documentation"},"370":{"body":"Tag all subsequent outgoing pings with a maximum of 5 comma-separated tags. \"To tag\" a ping with Source Tags means that the ping request will contain the X-Source-Tags header with a comma separated list of the given tags. Once enabled, the only way to disable this feature is to restart or manually reset the application.","breadcrumbs":"Debugging » Source Tags » Source Tags","id":"370","title":"Source Tags"},"371":{"body":"Any valid HTTP header value is a valid source tag (e.g. any value that matches the regex [a-zA-Z0-9-]{1,20}) and values starting with the substring glean are reserved for internal Glean usage and thus are also considered invalid. If any value in the list of source tags is invalid, the whole list will be ignored. If the list of tags has more than five members, the whole list will be ignored. The special value automation is meant for tagging pings generated on automation: such pings will be specially handled on the pipeline (i.e. discarded from non-live views ).","breadcrumbs":"Debugging » Source Tags » Limits","id":"371","title":"Limits"},"372":{"body":"","breadcrumbs":"Debugging » Source Tags » API","id":"372","title":"API"},"373":{"body":"Sets the Source Tags to a given value. This API can safely be called before Glean.initialize. The tag will be applied upon initialization in this case. import mozilla.telemetry.glean.Glean Glean.setSourceTags(setOf(\"my-tag\", \"your-tag\", \"our-tag\")) Glean.INSTANCE.setSourceTags(setOf(\"my-tag\", \"your-tag\", \"our-tag\")) import Glean Glean.shared.setSourceTags([\"my-tag\", \"your-tag\", \"our-tag\"]) use glean; glean.set_source_tags([\"my-tag\", \"your-tag\", \"our-tag\"]); import Glean from \"@mozilla/glean/\"; Glean.setSourceTags([\"my-tag\", \"your-tag\", \"our-tag\"]);","breadcrumbs":"Debugging » Source Tags » setSourceTags","id":"373","title":"setSourceTags"},"374":{"body":"","breadcrumbs":"Debugging » Source Tags » Environment variable","id":"374","title":"Environment variable"},"375":{"body":"It is also possible to set the debug view tag through the GLEAN_SOURCE_TAGS environment variable. This variable must be set at runtime, not at compile time. It will be checked upon Glean initialization. Xcode IDE scheme editor popup screenshot To set environment variables to the process running your app in an iOS device or emulator you need to edit the scheme for your app. In the Xcode IDE, use the shortcut Cmd + < to open the scheme editor popup. The environment variables editor is under the Arguments tab on this popup. $ GLEAN_SOURCE_TAGS=my-tag,your-tag,our-tag python my_application.py $ GLEAN_SOURCE_TAGS=my-tag,your-tag,our-tag cargo run $ GLEAN_SOURCE_TAGS=my-tag,your-tag,our-tag ./mach run Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Source Tags » GLEAN_SOURCE_TAGS","id":"375","title":"GLEAN_SOURCE_TAGS"},"376":{"body":"Not sure which metric type to use? These docs contain a series of questions that can help. Reference information about each metric type is linked below. The parameters available that apply to any metric type are in the metric parameters page . There are different metrics to choose from, depending on what you want to achieve: Boolean : Records a single truth value, for example \"is a11y enabled?\" Labeled boolean : Records truth values for a set of labels, for example \"which a11y features are enabled?\" Counter : Used to count how often something happens, for example, how often a certain button was pressed. Labeled counter : Used to count how often something happens, for example which kind of crash occurred (\"uncaught_exception\" or \"native_code_crash\"). String : Records a single Unicode string value, for example the name of the OS. Labeled strings : Records multiple Unicode string values, for example to record which kind of error occurred in different stages of a login process. String List : Records a list of Unicode string values, for example the list of enabled search engines. Timespan : Used to measure how much time is spent in a single task. Timing Distribution : Used to record the distribution of multiple time measurements. Memory Distribution : Used to record the distribution of memory sizes. UUID : Used to record universally unique identifiers (UUIDs), such as a client ID. URL : Used to record URL-like strings. Datetime : Used to record an absolute date and time, such as the time the user first ran the application. Events : Records events e.g. individual occurrences of user actions, say every time a view was open and from where. Custom Distribution : Used to record the distribution of a value that needs fine-grained control of how the histogram buckets are computed. Custom distributions are only available for values that come from Gecko. Quantity : Used to record a single non-negative integer value. For example, the width of the display in pixels. Labeled Quantity : Used to record multiple non-negative integer values. For example, the dimensions of the display in pixels. Rate : Used to record the rate something happens relative to some other thing. For example, the number of HTTP connections that experienced an error relative to the number of total HTTP connections made. Text : Records a single long Unicode text, used when the limits on String are too low. Object : Record structured data.","breadcrumbs":"Metric types » Metrics","id":"376","title":"Metrics"},"377":{"body":"There are two types of metrics listed above - labeled and unlabeled metrics. If a metric is labeled , it means that for a single metric entry you define in metrics.yaml, you can record into multiple metrics under the same name, each of the same type and identified by a different string label. This is useful when you need to break down metrics by a label known at build time or run time. For example: When you want to count a different set of sub-views that users interact with, you could use viewCount[\"view1\"].add() and viewCount[\"view2\"].add(). When you want to count errors that might occur for a feature, you could use errorCount[errorName].add(). Labeled metrics come in two forms: Static labels : The labels are specified at build time in the metrics.yaml file, in the labels parameter. If a label that isn't part of this set is used at run time, it is converted to the special label __other__. The number of static labels is limited to 4096 per metric. Dynamic labels : The labels aren't known at build time, so are set at run time. Only the first 16 labels seen by Glean will be tracked. After that, any additional labels are converted to the special label __other__. Note : Be careful with using arbitrary strings as labels and make sure they can't accidentally contain identifying data (like directory paths or user input).","breadcrumbs":"Metric types » Labeled metrics","id":"377","title":"Labeled metrics"},"378":{"body":"Labels must not exceed 71 characters in length, and may comprise any printable ASCII characters.","breadcrumbs":"Metric types » Label format","id":"378","title":"Label format"},"379":{"body":"Glean has a well-defined process for requesting changes to existing metric types or suggesting the implementation of new metric types: Glean consumers need to file a bug in the Data platforms & tools::Glean Metric Types component, filling in the provided form; The triage owner of the Bugzilla component prioritizes this within 6 business days and kicks off the decision making process . Once the decision process is completed, the bug is closed with a comment outlining the decision that was made.","breadcrumbs":"Metric types » Adding or changing metric types","id":"379","title":"Adding or changing metric types"},"38":{"body":"Glean includes a \"linter\" for the YAML registry files called the glinter that catches a number of common mistakes in these files. To run the linter use the glinter command. In your package.json, define the following script: { // ... \"scripts\": { // ... \"lint:glean\": \"glean glinter path/to/metrics.yaml path/to/pings.yaml\", }\n} Then run this script by calling: npm run lint:glean Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » JavaScript » YAML registry files linting","id":"38","title":"YAML registry files linting"},"380":{"body":"JWE : Deprecated in v37.0.0 Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Deprecated metrics","id":"380","title":"Deprecated metrics"},"381":{"body":"Boolean metrics are used for reporting simple flags.","breadcrumbs":"Metric types » Boolean » Boolean","id":"381","title":"Boolean"},"382":{"body":"","breadcrumbs":"Metric types » Boolean » Recording API","id":"382","title":"Recording API"},"383":{"body":"Sets a boolean metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Flags Flags.a11yEnabled.set(System.isAccesibilityEnabled()) import org.mozilla.yourApplication.GleanMetrics.Flags; Flags.INSTANCE.a11yEnabled().set(System.isAccessibilityEnabled()); Flags.a11yEnabled.set(self.isAccessibilityEnabled) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.flags.a11y_enabled.set(is_accessibility_enabled()) use glean_metrics::flags; flags::a11y_enabled.set(system.is_accessibility_enabled()); import * as flags from \"./path/to/generated/files/flags.js\"; flags.a11yEnabled.set(this.isAccessibilityEnabled()); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::flags::a11y_enabled.Set(false); JavaScript Glean.flags.a11yEnabled.set(false); Recorded errors invalid_type : if a non-boolean value is given (JavaScript only).","breadcrumbs":"Metric types » Boolean » set","id":"383","title":"set"},"384":{"body":"","breadcrumbs":"Metric types » Boolean » Testing API","id":"384","title":"Testing API"},"385":{"body":"Gets the recorded value for a given boolean metric. Returns true or false if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Flags assertTrue(Flags.a11yEnabled.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Flags; assertTrue(Flags.INSTANCE.a11yEnabled().testGetValue()); XCTAssertTrue(Flags.a11yEnabled.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert True is metrics.flags.a11y_enabled.test_get_value() use glean_metrics::flags; assert!(flags::a11y_enabled.test_get_value(None).unwrap()); import * as flags from \"./path/to/generated/files/flags.js\"; assert(await flags.a11yEnabled.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQ(false, mozilla::glean::flags::a11y_enabled.TestGetValue().value()); JavaScript Assert.equal(false, Glean.flags.a11yEnabled.testGetValue());","breadcrumbs":"Metric types » Boolean » testGetValue","id":"385","title":"testGetValue"},"386":{"body":"Gets the number of errors recorded for a given boolean metric. import org.mozilla.yourApplication.GleanMetrics.Flags assertEquals( 0, Flags.a11yEnabled.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Flags; assertEquals( 0, Flags.INSTANCE.a11yEnabled().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Flags.a11yEnabled.testGetNumRecordedErrors(.invalidValue)) assert 0 == metrics.flags.a11y_enabled.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType; use glean_metrics::flags; assert_eq!( 0, flags::a11y_enabled.test_get_num_recorded_errors( ErrorType::InvalidValue )\n);","breadcrumbs":"Metric types » Boolean » testGetNumRecordedErrors","id":"386","title":"testGetNumRecordedErrors"},"387":{"body":"Example boolean metric definition: flags: a11y_enabled: type: boolean description: > Records whether a11y is enabled on the device. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Boolean » Metric parameters","id":"387","title":"Metric parameters"},"388":{"body":"N/A","breadcrumbs":"Metric types » Boolean » Extra metric parameters","id":"388","title":"Extra metric parameters"},"389":{"body":"Is accessibility enabled?","breadcrumbs":"Metric types » Boolean » Data questions","id":"389","title":"Data questions"},"39":{"body":"This page provides a step-by-step guide on how to integrate the Glean.js library into a Qt/QML project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Qt/QML » Adding Glean to your Qt/QML project","id":"39","title":"Adding Glean to your Qt/QML project"},"390":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Boolean » Reference","id":"390","title":"Reference"},"391":{"body":"Labeled booleans are used to record different related boolean flags.","breadcrumbs":"Metric types » Labeled Booleans » Labeled Booleans","id":"391","title":"Labeled Booleans"},"392":{"body":"","breadcrumbs":"Metric types » Labeled Booleans » Recording API","id":"392","title":"Recording API"},"393":{"body":"Sets one of the labels in a labeled boolean metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Accessibility Accessibility.features[\"screen_reader\"].set(isScreenReaderEnabled())\nAccessibility.features[\"high_contrast\"].set(isHighContrastEnabled()) import org.mozilla.yourApplication.GleanMetrics.Accessibility; Acessibility.INSTANCE.features()[\"screen_reader\"].set(isScreenReaderEnabled());\nAcessibility.INSTANCE.features()[\"high_contrast\"].set(isHighContrastEnabled()); Accessibility.features[\"screen_reader\"].set(isScreenReaderEnabled())\nAccessibility.features[\"high_contrast\"].set(isHighContrastEnabled()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.accessibility.features[\"screen_reader\"].set(is_screen_reader_enabled())\nmetrics.accessibility.features[\"high_contrast\"].set(is_high_contrast_enabled()) use glean_metrics::accessibility; accessibility::features.get(\"screen_reader\").set(is_screen_reader_enabled());\naccessibility::features.get(\"high_contrast\").set(is_high_contrast_enabled()); import * as acessibility from \"./path/to/generated/files/acessibility.js\"; acessibility.features[\"screen_reader\"].set(this.isScreenReaderEnabled());\nacessibility.features[\"high_contrast\"].set(this.isHighContrastEnabled()); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::accessibility::features.Get(\"screen_reader\"_ns).Set(true);\nmozilla::glean::accessibility::features.Get(\"high_contrast\"_ns).Set(false); JavaScript Glean.accessibility.features.screen_reader.set(true);\nGlean.accessibility.features[\"high_contrast\"].set(false); Recorded Errors invalid_type : if a non-boolean value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__. Limits Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Booleans » set","id":"393","title":"set"},"394":{"body":"","breadcrumbs":"Metric types » Labeled Booleans » Testing API","id":"394","title":"Testing API"},"395":{"body":"Gets the recorded value for a given label in a labeled boolean metric. Returns the count if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Accessibility // Do the booleans have the expected values?\nassertEquals(True, Accessibility.features[\"screen_reader\"].testGetValue())\nassertEquals(False, Accessibility.features[\"high_contrast\"].testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Accessibility; // Do the booleans have the expected values?\nassertEquals(True, Acessibility.INSTANCE.features()[\"screen_reader\"].testGetValue());\nassertEquals(False, Acessibility.INSTANCE.features()[\"high_contrast\"].testGetValue()); // Do the booleans have the expected values?\nXCTAssertEqual(true, Accessibility.features[\"screen_reader\"].testGetValue())\nXCTAssertEqual(false, Accessibility.features[\"high_contrast\"].testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Do the booleans have the expected values?\nassert metrics.accessibility.features[\"screen_reader\"].test_get_value()\nassert not metrics.accessibility.features[\"high_contrast\"].test_get_value() use glean_metrics::accessibility; // Do the booleans have the expected values?\nassert!(accessibility::features.get(\"screen_reader\").test_get_value(None).unwrap());\nassert!(!accessibility::features.get(\"high_contrast\").test_get_value(None).unwrap()); import * as accessibility from \"./path/to/generated/files/acessibility.js\"; assert(await accessibility.features[\"screen_reader\"].testGetValue());\nassert(!(await accessibility.features[\"high_contrast\"].testGetValue())); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQ( true, mozilla::glean::accessibility::features.Get(\"screen_reader\"_ns).TestGetValue().unwrap().ref());\nASSERT_EQ( false, mozilla::glean::accessibility::features.Get(\"high_contrast\"_ns).TestGetValue().unwrap().ref()); JavaScript Assert.equal(true, Glean.accessibility.features[\"screen_reader\"].testGetValue());\nAssert.equal(false, Glean.accessibility.features.high_contrast.testGetValue());","breadcrumbs":"Metric types » Labeled Booleans » testGetValue","id":"395","title":"testGetValue"},"396":{"body":"Gets the number of errors recorded for a given labeled boolean metric in total. import org.mozilla.yourApplication.GleanMetrics.Accessibility // Did we record any invalid labels?\nassertEquals( 0, Accessibility.features.testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n) import org.mozilla.yourApplication.GleanMetrics.Accessibility; // Did we record any invalid labels?\nassertEquals( 0, Acessibility.INSTANCE.features().testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n); // Were there any invalid labels?\nXCTAssertEqual(0, Accessibility.features.testGetNumRecordedErrors(.invalidLabel)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Did we record any invalid labels?\nassert 0 == metrics.accessibility.features.test_get_num_recorded_errors( ErrorType.INVALID_LABEL\n) use glean::ErrorType;\nuse glean_metrics::accessibility; // Did we record any invalid labels?\nassert_eq!( 1, accessibility::features.test_get_num_recorded_errors( ErrorType::InvalidLabel )\n); import * as accessibility from \"./path/to/generated/files/acessibility.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert( 1, await accessibility.features.testGetNumRecordedErrors(ErrorType.InvalidLabel)\n);","breadcrumbs":"Metric types » Labeled Booleans » testGetNumRecordedErrors","id":"396","title":"testGetNumRecordedErrors"},"397":{"body":"Example labeled boolean metric definition: accessibility: features: type: labeled_boolean description: > a11y features enabled on the device. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 labels: - screen_reader - high_contrast ...","breadcrumbs":"Metric types » Labeled Booleans » Metric parameters","id":"397","title":"Metric parameters"},"398":{"body":"labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Booleans » Extra metric parameters","id":"398","title":"Extra metric parameters"},"399":{"body":"Which accessibility features are enabled?","breadcrumbs":"Metric types » Labeled Booleans » Data questions","id":"399","title":"Data questions"},"4":{"body":"This section contains guides and essays regarding specific usage information and possibilities in each Glean SDK. Check out this section for more information on the SDK you are using.","breadcrumbs":"Glean » SDK Specific Information","id":"4","title":"SDK Specific Information"},"40":{"body":"Python >= 3.7 Qt >= 5.15.2","breadcrumbs":"Adding Glean to your project » Qt/QML » Requirements","id":"40","title":"Requirements"},"400":{"body":"Swift API docs: LabeledMetricType , BooleanMetricType Python API docs: LabeledBooleanMetricType , BooleanMetricType Rust API docs: LabeledMetric , BooleanMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Booleans » Reference","id":"400","title":"Reference"},"401":{"body":"Used to count how often something happens, say how often a certain button was pressed. A counter always starts from 0. Each time you record to a counter, its value is incremented. Unless incremented by a positive value, a counter will not be reported in pings, that means: the value 0 is never sent in a ping. If you find that you need to control the actual value sent in the ping, you may be measuring something, not just counting something, and a Quantity metric may be a better choice.","breadcrumbs":"Metric types » Counter » Counter","id":"401","title":"Counter"},"402":{"body":"When using a counter metric, it is important to let the Glean metric do the counting. Using your own variable for counting and setting the counter yourself could be problematic because it will be difficult to reset the value at the exact moment that the value is sent in a ping. Instead, just use counter.add to increment the value and let Glean handle resetting the counter.","breadcrumbs":"Metric types » Counter » Let the Glean metric do the counting","id":"402","title":"Let the Glean metric do the counting"},"403":{"body":"","breadcrumbs":"Metric types » Counter » Recording API","id":"403","title":"Recording API"},"404":{"body":"Increases the counter by a certain amount. If no amount is passed it defaults to 1. import org.mozilla.yourApplication.GleanMetrics.Controls Controls.refreshPressed.add() // Adds 1 to the counter.\nControls.refreshPressed.add(5) // Adds 5 to the counter. import org.mozilla.yourApplication.GleanMetrics.Controls; Controls.INSTANCE.refreshPressed().add(); // Adds 1 to the counter.\nControls.INSTANCE.refreshPressed().add(5); // Adds 5 to the counter. Controls.refreshPressed.add() // Adds 1 to the counter.\nControls.refreshPressed.add(5) // Adds 5 to the counter. from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.controls.refresh_pressed.add() # Adds 1 to the counter.\nmetrics.controls.refresh_pressed.add(5) # Adds 5 to the counter. use glean_metrics::controls; controls::refresh_pressed.add(1); // Adds 1 to the counter.\ncontrols::refresh_pressed.add(5); // Adds 5 to the counter. import * as controls from \"./path/to/generated/files/controls.js\"; controls.refreshPressed.add(); // Adds 1 to the counter.\ncontrols.refreshPressed.add(5); // Adds 5 to the counter. C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::controls::refresh_pressed.Add(1);\nmozilla::glean::controls::refresh_pressed.Add(5); JavaScript Glean.controls.refreshPressed.add(1);\nGlean.controls.refreshPressed.add(5); Recorded errors invalid_value : If the counter is incremented by a negative value (or, in versions up to and including 54.0.0, 0). invalid_type : If a floating point or non-number value is given. Limits Only increments; Saturates at the largest value that can be represented as a 32-bit signed integer (2147483647).","breadcrumbs":"Metric types » Counter » add","id":"404","title":"add"},"405":{"body":"","breadcrumbs":"Metric types » Counter » Testing API","id":"405","title":"Testing API"},"406":{"body":"Gets the recorded value for a given counter metric. Returns the count if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Controls assertEquals(6, Controls.refreshPressed.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Controls; assertEquals(6, Controls.INSTANCE.refreshPressed().testGetValue()); XCTAssertEqual(6, Controls.refreshPressed.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 6 == metrics.controls.refresh_pressed.test_get_value() use glean_metrics::controls; assert_eq!(6, controls::refresh_pressed.test_get_value(None).unwrap()); import * as controls from \"./path/to/generated/files/controls.js\"; assert.strictEqual(6, await controls.refreshPressed.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_TRUE(mozilla::glean::controls::refresh_pressed.TestGetValue().isOk());\nASSERT_EQ(6, mozilla::glean::controls::refresh_pressed.TestGetValue().unwrap().value()); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(6, Glean.controls.refreshPressed.testGetValue());","breadcrumbs":"Metric types » Counter » testGetValue","id":"406","title":"testGetValue"},"407":{"body":"Gets the number of errors recorded for a given counter metric. import org.mozilla.yourApplication.GleanMetrics.Controls assertEquals( 0, Controls.refreshPressed.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Controls; assertEquals( 0, Controls.INSTANCE.refreshPressed().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Controls.refreshPressed.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") from glean.testing import ErrorType assert 0 == metrics.controls.refresh_pressed.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::controls; assert_eq!( 0, controls::refresh_pressed.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); import * as controls from \"./path/to/generated/files/controls.js\";\nimport { ErrorType } from \"@mozilla/glean/error\";\nassert.strictEqual( 0, await controls.refreshPressed.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Counter » testGetNumRecordedErrors","id":"407","title":"testGetNumRecordedErrors"},"408":{"body":"Example counter metric definition: controls: refresh_pressed: type: counter description: > Counts how often the refresh button is pressed. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Counter » Metric parameters","id":"408","title":"Metric parameters"},"409":{"body":"N/A","breadcrumbs":"Metric types » Counter » Extra metric parameters","id":"409","title":"Extra metric parameters"},"41":{"body":"Glean.js' Qt/QML build is distributed as an asset with every Glean.js release. In order to download the latest version visit https://github.com/mozilla/glean.js/releases/latest . Glean.js is a QML module , so extract the contents of the downloaded file wherever you keep your other modules. Make sure that whichever directory that module is placed in, is part of the QML Import Path . After doing that, import Glean like so: import org.mozilla.Glean ","breadcrumbs":"Adding Glean to your project » Qt/QML » Setting up the dependency","id":"41","title":"Setting up the dependency"},"410":{"body":"How often was a certain button pressed?","breadcrumbs":"Metric types » Counter » Data questions","id":"410","title":"Data questions"},"411":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Counter » Reference","id":"411","title":"Reference"},"412":{"body":"Labeled counters are used to record different related counts that should sum up to a total. Each counter always starts from 0. Each time you record to a labeled counter, its value is incremented. Unless incremented by a positive value, a counter will not be reported in pings, that means: the value 0 is never sent in a ping.","breadcrumbs":"Metric types » Labeled Counters » Labeled Counters","id":"412","title":"Labeled Counters"},"413":{"body":"","breadcrumbs":"Metric types » Labeled Counters » Recording API","id":"413","title":"Recording API"},"414":{"body":"Increases one of the labels in a labeled counter metric by a certain amount. If no amount is passed it defaults to 1. import org.mozilla.yourApplication.GleanMetrics.Stability Stability.crashCount[\"uncaught_exception\"].add() // Adds 1 to the \"uncaught_exception\" counter.\nStability.crashCount[\"native_code_crash\"].add(3) // Adds 3 to the \"native_code_crash\" counter. import org.mozilla.yourApplication.GleanMetrics.Stability; Stability.INSTANCE.crashCount()[\"uncaught_exception\"].add(); // Adds 1 to the \"uncaught_exception\" counter.\nStability.INSTANCE.crashCount()[\"native_code_crash\"].add(3); // Adds 3 to the \"native_code_crash\" counter. Stability.crashCount[\"uncaught_exception\"].add() // Adds 1 to the \"uncaught_exception\" counter.\nStability.crashCount[\"native_code_crash\"].add(3) // Adds 3 to the \"native_code_crash\" counter. from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Adds 1 to the \"uncaught_exception\" counter.\nmetrics.stability.crash_count[\"uncaught_exception\"].add()\n# Adds 3 to the \"native_code_crash\" counter.\nmetrics.stability.crash_count[\"native_code_crash\"].add(3) use glean_metrics::stability; stability::crash_count.get(\"uncaught_exception\").add(1); // Adds 1 to the \"uncaught_exception\" counter.\nstability::crash_count.get(\"native_code_crash\").add(3); // Adds 3 to the \"native_code_crash\" counter. import * as stability from \"./path/to/generated/files/stability.js\"; // Adds 1 to the \"uncaught_exception\" counter.\nstability.crashCount[\"uncaught_exception\"].add();\n// Adds 3 to the \"native_code_crash\" counter.\nstability.crashCount[\"native_code_crash\"].add(3); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::stability::crash_count.Get(\"uncaught_exception\"_ns).Add(1);\nmozilla::glean::stability::crash_count.Get(\"native_code_crash\"_ns).Add(3); JavaScript Glean.stability.crashCount.uncaught_exception.add(1);\nGlean.stability.crashCount[\"native_code_crash\"].add(3); Recorded Errors invalid_value : if the counter is incremented by a negative value (or, in versions up to and including 54.0.0, 0). invalid_type : if a floating point or non-number value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__. Limits Only increments Saturates at the largest value that can be represented as a 32-bit signed integer. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Counters » add","id":"414","title":"add"},"415":{"body":"","breadcrumbs":"Metric types » Labeled Counters » Testing API","id":"415","title":"Testing API"},"416":{"body":"Gets the recorded value for a given label in a labeled counter metric. Returns the count if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Stability // Do the counters have the expected values?\nassertEquals(1, Stability.crashCount[\"uncaught_exception\"].testGetValue())\nassertEquals(3, Stability.crashCount[\"native_code_crash\"].testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Stability; // Do the counters have the expected values?\nassertEquals(1, Stability.INSTANCE.crashCount()[\"uncaught_exception\"].testGetValue());\nassertEquals(3, Stability.INSTANCE.crashCount()[\"native_code_crash\"].testGetValue()); // Do the counters have the expected values?\nXCTAssertEqual(1, Stability.crashCount[\"uncaught_exception\"].testGetValue())\nXCTAssertEqual(3, Stability.crashCount[\"native_code_crash\"].testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Do the counters have the expected values?\nassert 1 == metrics.stability.crash_count[\"uncaught_exception\"].test_get_value()\nassert 3 == metrics.stability.crash_count[\"native_code_crash\"].test_get_value() use glean_metrics::stability; // Do the counters have the expected values?\nassert_eq!(1, stability::crash_count.get(\"uncaught_exception\").test_get_value().unwrap());\nassert_eq!(3, stability::crash_count.get(\"native_code_crash\").test_get_value().unwrap()); import * as stability from \"./path/to/generated/files/stability.js\"; // Do the counters have the expected values?\nassert.strictEqual(1, await stability.crashCount[\"uncaught_exception\"].testGetValue());\nassert.strictEqual(3, await stability.crashCount[\"native_code_crash\"].testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQ( 1, mozilla::glean::stability::crash_count.Get(\"uncaught_exception\"_ns).TestGetValue().unwrap().ref());\nASSERT_EQ( 3, mozilla::glean::stability::crash_count.Get(\"native_code_crash\"_ns).TestGetValue().unwrap().ref()); JavaScript Assert.equal(1, Glean.stability.crashCount[\"uncaught_exception\"].testGetValue());\nAssert.equal(3, Glean.stability.crashCount.native_code_crash.testGetValue());","breadcrumbs":"Metric types » Labeled Counters » testGetValue","id":"416","title":"testGetValue"},"417":{"body":"Gets the number of errors recorded for a given labeled counter metric in total. import org.mozilla.yourApplication.GleanMetrics.Stabilit // Were there any invalid labels?\nassertEquals( 0, Stability.crashCount.testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n) import org.mozilla.yourApplication.GleanMetrics.Stability; // Were there any invalid labels?\nassertEquals( 0, Stability.INSTANCE.crashCount().testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n); // Were there any invalid labels?\nXCTAssertEqual(0, Stability.crashCount.testGetNumRecordedErrors(.invalidLabel)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Were there any invalid labels?\nassert 0 == metrics.stability.crash_count.test_get_num_recorded_errors( ErrorType.INVALID_LABEL\n) use glean::ErrorType; use glean_metrics::stability; // Were there any invalid labels?\nassert_eq!( 0, stability::crash_count.test_get_num_recorded_errors( ErrorType::InvalidLabel )\n); import * as stability from \"./path/to/generated/files/stability.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Were there any invalid labels?\nassert( 0, await stability.crashCount.testGetNumRecordedErrors(ErrorType.InvalidLabel)\n);","breadcrumbs":"Metric types » Labeled Counters » testGetNumRecordedErrors","id":"417","title":"testGetNumRecordedErrors"},"418":{"body":"Example labeled counter metric definition: accessibility: features: type: labeled_counter description: > Counts the number of crashes that occur in the application. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 labels: - uncaught_exception - native_code_crash ...","breadcrumbs":"Metric types » Labeled Counters » Metric parameters","id":"418","title":"Metric parameters"},"419":{"body":"labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Counters » Extra metric parameters","id":"419","title":"Extra metric parameters"},"42":{"body":"The number is the version of the release you downloaded minus its patch version. For example, if you downloaded Glean.js version 0.15.0 your import statement will be: import org.mozilla.Glean 0.15","breadcrumbs":"Adding Glean to your project » Qt/QML » Picking the correct version","id":"42","title":"Picking the correct version"},"420":{"body":"How many times did different types of crashes occur?","breadcrumbs":"Metric types » Labeled Counters » Data questions","id":"420","title":"Data questions"},"421":{"body":"Swift API docs: LabeledMetricType , CounterMetricType Python API docs: LabeledCounterMetricType , CounterMetricType Rust API docs: LabeledMetric , CounterMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Counters » Reference","id":"421","title":"Reference"},"422":{"body":"String metrics allow recording a Unicode string value with arbitrary content. This metric type does not support recording JSON blobs please get in contact with the Glean team if you're missing a type.","breadcrumbs":"Metric types » String » Strings","id":"422","title":"Strings"},"423":{"body":"Be careful using arbitrary strings and make sure they can't accidentally contain identifying data (like directory paths or user input).","breadcrumbs":"Metric types » String » Important","id":"423","title":"Important"},"424":{"body":"","breadcrumbs":"Metric types » String » Recording API","id":"424","title":"Recording API"},"425":{"body":"Set a string metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.SearchDefault // Record a value into the metric.\nSearchDefault.name.set(\"duck duck go\")\n// If it changed later, you can record the new value:\nSearchDefault.name.set(\"wikipedia\") import org.mozilla.yourApplication.GleanMetrics.SearchDefault; // Record a value into the metric.\nSearchDefault.INSTANCE.name().set(\"duck duck go\");\n// If it changed later, you can record the new value:\nSearchDefault.INSTANCE.name().set(\"wikipedia\"); // Record a value into the metric.\nSearchDefault.name.set(\"duck duck go\")\n// If it changed later, you can record the new value:\nSearchDefault.name.set(\"wikipedia\") from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Record a value into the metric.\nmetrics.search_default.name.set(\"duck duck go\")\n# If it changed later, you can record the new value:\nmetrics.search_default.name.set(\"wikipedia\") use glean_metrics::search_default; // Record a value into the metric.\nsearch_default::name.set(\"duck duck go\");\n// If it changed later, you can record the new value:\nsearch_default::name.set(\"wikipedia\"); import * as searchDefault from \"./path/to/generated/files/searchDefault.js\"; // Record a value into the metric.\nsearchDefault.name.set(\"duck duck go\");\n// If it changed later, you can record the new value:\nsearchDefault.name.set(\"wikipedia\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search_default::name.Set(\"wikipedia\"_ns); JavaScript Glean.searchDefault.name.set(\"wikipedia\"); Recorded errors invalid_overflow : if the string is too long. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_type : if a non-string value is given. Limits Fixed maximum string length: 255. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Prior to Glean v60.4.0 the limit was 100 bytes.","breadcrumbs":"Metric types » String » set","id":"425","title":"set"},"426":{"body":"","breadcrumbs":"Metric types » String » Testing API","id":"426","title":"Testing API"},"427":{"body":"Get the recorded value for a given string metric. Returns the string if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. The recorded value may have been truncated. See \"Limits\" section above. import org.mozilla.yourApplication.GleanMetrics.SearchDefault // Does the string metric have the expected value?\nassertEquals(\"wikipedia\", SearchDefault.name.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.SearchDefault; // Does the string metric have the expected value?\nassertEquals(\"wikipedia\", SearchDefault.INSTANCE.name().testGetValue()); // Does the string metric have the expected value?\nXCTAssertEqual(\"wikipedia\", SearchDefault.name.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Does the string metric have the expected value?\nassert \"wikipedia\" == metrics.search_default.name.test_get_value() use glean_metrics::search_default; // Does the string metric have the expected value?\nassert_eq!(6, search_default::name.test_get_value(None).unwrap()); import * as searchDefault from \"./path/to/generated/files/searchDefault.js\"; assert.strictEqual(\"wikipedia\", await searchDefault.name.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" // Is it clear of errors?\nASSERT_TRUE(mozilla::glean::search_default::name.TestGetValue().isOk());\n// Does it have the expected value?\nASSERT_STREQ( \"wikipedia\", mozilla::glean::search_default::name.TestGetValue().unwrap().value().get()\n); JavaScript // Does it have the expected value?\n// testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(\"wikipedia\", Glean.searchDefault.name.testGetValue());","breadcrumbs":"Metric types » String » testGetValue","id":"427","title":"testGetValue"},"428":{"body":"Gets the number of errors recorded for a given string metric. import org.mozilla.yourApplication.GleanMetrics.SearchDefault // Was the string truncated, and an error reported?\nassertEquals( 0, SearchDefault.name.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) import org.mozilla.yourApplication.GleanMetrics.SearchDefault; // Was the string truncated, and an error reported?\nassertEquals( 0, SearchDefault.INSTANCE.name().testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n); // Was the string truncated, and an error reported?\nXCTAssertEqual(0, SearchDefault.name.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Was the string truncated, and an error reported?\nassert 0 == metrics.search_default.name.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse glean_metrics::search_default; // Was the string truncated, and an error reported?\nassert_eq!( 0, search_default::name.test_get_num_recorded_errors( ErrorType::InvalidOverflow )\n); import * as searchDefault from \"./path/to/generated/files/searchDefault.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Was the string truncated, and an error reported?\nassert.strictEqual( 0, await searchDefault.name.testGetNumRecordedErrors(ErrorType.InvalidOverflow)\n);","breadcrumbs":"Metric types » String » testGetNumRecordedErrors","id":"428","title":"testGetNumRecordedErrors"},"429":{"body":"Example string metric definition: controls: refresh_pressed: type: string description: > The name of the default search engine. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » String » Metric parameters","id":"429","title":"Metric parameters"},"43":{"body":"Qt/QML projects need to setup metrics and pings code generation manually. First install the glean_parser CLI tool. pip install glean_parser","breadcrumbs":"Adding Glean to your project » Qt/QML » Consuming YAML registry files","id":"43","title":"Consuming YAML registry files"},"430":{"body":"N/A","breadcrumbs":"Metric types » String » Extra metric parameters","id":"430","title":"Extra metric parameters"},"431":{"body":"Record the operating system name with a value of \"android\". Recording the device model with a value of \"SAMSUNG-SGH-I997\".","breadcrumbs":"Metric types » String » Data questions","id":"431","title":"Data questions"},"432":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » String » Reference","id":"432","title":"Reference"},"433":{"body":"Labeled strings record multiple Unicode string values, each under a different label.","breadcrumbs":"Metric types » Labeled Strings » Labeled Strings","id":"433","title":"Labeled Strings"},"434":{"body":"","breadcrumbs":"Metric types » Labeled Strings » Recording API","id":"434","title":"Recording API"},"435":{"body":"Sets one of the labels in a labeled string metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Login Login.errorsByStage[\"server_auth\"].set(\"Invalid password\") import org.mozilla.yourApplication.GleanMetrics.Login; Login.INSTANCE.errorsByStage()[\"server_auth\"].set(\"Invalid password\"); Login.errorsByStage[\"server_auth\"].set(\"Invalid password\") from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.login.errors_by_stage[\"server_auth\"].set(\"Invalid password\") use glean_metrics::login; login::errors_by_stage.get(\"server_auth\").set(\"Invalid password\"); import * as login from \"./path/to/generated/files/login.js\"; login.errorsByStage[\"server_auth\"].set(\"Invalid password\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::login::errors_by_stage.Get(\"server_auth\"_ns).Set(\"Invalid password\"_ns); JavaScript Glean.login.errorsByStage[\"server_auth\"].set(\"Invalid password\"); Recorded Errors invalid_overflow : if the string is too long, see limits below . invalid_type : if a non-string value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__. Limits Fixed maximum string length: 100. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Strings » set","id":"435","title":"set"},"436":{"body":"","breadcrumbs":"Metric types » Labeled Strings » Testing API","id":"436","title":"Testing API"},"437":{"body":"Gets the recorded value for a given label in a labeled string metric. Returns the string if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Login // Does the metric have the expected value?\nassertTrue(Login.errorsByStage[\"server_auth\"].testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Login; // Does the metric have the expected value?\nassertTrue(Login.INSTANCE.errorsByStage()[\"server_auth\"].testGetValue()); // Does the metric have the expected value?\nXCTAssert(Login.errorsByStage[\"server_auth\"].testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Does the metric have the expected value?\nassert \"Invalid password\" == metrics.login.errors_by_stage[\"server_auth\"].testGetValue()) use glean_metrics::login; // Does the metric have the expected value?\nassert!(login::errors_by_stage.get(\"server_auth\").test_get_value()); import * as login from \"./path/to/generated/files/login.js\"; // Does the metric have the expected value?\nassert.strictEqual(\"Invalid password\", await metrics.login.errorsByStage[\"server_auth\"].testGetValue()) C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_STREQ(\"Invalid password\", mozilla::glean::login::errors_by_stage.Get(\"server_auth\"_ns) .TestGetValue() .unwrap() .ref() .get()); JavaScript Assert.equal(\"Invalid password\", Glean.login.errorsByStage[\"server_auth\"].testGetValue());","breadcrumbs":"Metric types » Labeled Strings » testGetValue","id":"437","title":"testGetValue"},"438":{"body":"Gets the number of errors recorded for a given labeled string metric in total. import org.mozilla.yourApplication.GleanMetrics.Login // Were there any invalid labels?\nassertEquals( 0, Login.errorsByStage.testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n) import org.mozilla.yourApplication.GleanMetrics.Login; // Were there any invalid labels?\nassertEquals( 0, Login.INSTANCE.errorsByStage().testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n); // Were there any invalid labels?\nXCTAssertEqual(0, Login.errorsByStage.testGetNumRecordedErrors(.invalidLabel)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Were there any invalid labels?\nassert 0 == metrics.login.errors_by_stage.test_get_num_recorded_errors( ErrorType.INVALID_LABEL\n) use glean::ErrorType;\nuse glean_metrics::login; // Were there any invalid labels?\nassert_eq!( 0, login::errors_by_stage.test_get_num_recorded_errors( ErrorType::InvalidLabel )\n); import * as login from \"./path/to/generated/files/login.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Were there any invalid labels?\nassert( 0, await login.errorsByStage.testGetNumRecordedErrors(ErrorType.InvalidLabel)\n);","breadcrumbs":"Metric types » Labeled Strings » testGetNumRecordedErrors","id":"438","title":"testGetNumRecordedErrors"},"439":{"body":"Example labeled boolean metric definition: login: errors_by_stage: type: labeled_string description: Records the error type, if any, that occur in different stages of the login process. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 labels: - server_auth - enter_email ...","breadcrumbs":"Metric types » Labeled Strings » Metric parameters","id":"439","title":"Metric parameters"},"44":{"body":"Qt/QML support was added to glean_parser in version 3.5.0 . Then call glean_parser from the command line: glean_parser translate path/to/metrics.yaml path/to/pings.yaml \\ -f javascript \\ -o path/to/generated/files \\ --option platform=qt \\ --option version=0.15 The translate command will takes a list of YAML registry file paths and an output path and parse the given YAML registry files into QML JavaScript files. The generated folder will be a QML module. Make sure wherever the generated module is placed is also part of the QML Import Path . Notice that when building for Qt/QML it is mandatory to give the translate command two extra options. --option platform=qt This option is what changes the output file from standard JavaScript to QML JavaScript. --option version= The version passed to this option will be the version of the generated QML module.","breadcrumbs":"Adding Glean to your project » Qt/QML » Make sure you have the correct glean_parser version!","id":"44","title":"Make sure you have the correct glean_parser version!"},"440":{"body":"labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Strings » Extra metric parameters","id":"440","title":"Extra metric parameters"},"441":{"body":"What kinds of errors occurred at each step in the login process?","breadcrumbs":"Metric types » Labeled Strings » Data questions","id":"441","title":"Data questions"},"442":{"body":"Swift API docs: LabeledMetricType , StringMetricType Python API docs: LabeledStringMetricType , StringMetricType Rust API docs: LabeledMetric , StringMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Strings » Reference","id":"442","title":"Reference"},"443":{"body":"Strings lists are used for recording a list of Unicode string values, such as the names of the enabled search engines. Important Be careful using arbitrary strings and make sure they can't accidentally contain identifying data (like directory paths or user input).","breadcrumbs":"Metric types » String List » String List","id":"443","title":"String List"},"444":{"body":"","breadcrumbs":"Metric types » String List » Recording API","id":"444","title":"Recording API"},"445":{"body":"Add a new string to the list. import org.mozilla.yourApplication.GleanMetrics.Search Search.engines.add(\"wikipedia\")\nSearch.engines.add(\"duck duck go\") import org.mozilla.yourApplication.GleanMetrics.Search; Search.INSTANCE.engines().add(\"wikipedia\");\nSearch.INSTANCE.engines().add(\"duck duck go\"); Search.engines.add(\"wikipedia\")\nSearch.engines.add(\"duck duck go\") from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.search.engines.add(\"wikipedia\")\nmetrics.search.engines.add(\"duck duck go\") use glean_metrics::search; search::engines.add(\"wikipedia\".to_string());\nsearch::engines.add(\"duck duck go\".to_string()); Glean.search.engines.add(\"wikipedia\");\nGlean.search.engines.add(\"duck duck go\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search::engines.Add(\"wikipedia\"_ns);\nmozilla::glean::search::engines.Add(\"duck duck go\"_ns); JavaScript Glean.search.engines.add(\"wikipedia\");\nGlean.search.engines.add(\"duck duck go\"); Recorded errors invalid_overflow : if the string is too long. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_value : if the list is too long. invalid_type : if a non-string value is given. Limits Fixed maximum string length: 100. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Fixed maximum list length: 100 items. Additional strings are dropped.","breadcrumbs":"Metric types » String List » add","id":"445","title":"add"},"446":{"body":"Set the metric to a specific list of strings. An empty list is accepted. import org.mozilla.yourApplication.GleanMetrics.Search Search.engines.set(listOf(\"wikipedia\", \"duck duck go\")) import org.mozilla.yourApplication.GleanMetrics.Search; Search.INSTANCE.engines().set(listOf(\"wikipedia\", \"duck duck go\")); Search.engines.set([\"wikipedia\", \"duck duck go\"]) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.search.engines.set([\"wikipedia\", \"duck duck go\"]) use glean_metrics::search; search::engines.set(vec![\"wikipedia\".to_string(), \"duck duck go\".to_string()]) Glean.search.engines.set([\"wikipedia\", \"duck duck go\"]); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search::engines.Set({\"wikipedia\"_ns, \"duck duck go\"_ns}); JavaScript Glean.search.engines.set([\"wikipedia\", \"duck duck go\"]); Recorded errors invalid_overflow : if any string in the list is too long, see Limits below. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_value : if the list is too long, see Limits below. invalid_type : if a non-string array is given. Limits Fixed maximum string length: 100. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Fixed maximum list length: 100 items. Additional strings are dropped.","breadcrumbs":"Metric types » String List » set","id":"446","title":"set"},"447":{"body":"","breadcrumbs":"Metric types » String List » Testing API","id":"447","title":"Testing API"},"448":{"body":"Gets the recorded value for a given string list metric. Returns the list of strings if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(listOf(\"Google\", \"DuckDuckGo\"), Search.engines.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Search; assertEquals( Arrays.asList(\"Google\", \"DuckDuckGo\"), Search.INSTANCE.engines().testGetValue()\n); XCTAssertEqual([\"Google\", \"DuckDuckGo\"], Search.engines.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert [\"Google\", \"DuckDuckGo\"] == metrics.search.engines.test_get_value() use glean_metrics::search; assert_eq!( vec![\"Google\".to_string(), \"DuckDuckGo\".to_string()], search::engines.test_get_value(None).unwrap()\n); // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nconst engines = Glean.search.engines.testGetValue();\nAssert.ok(engines.includes(\"wikipedia\"));\nAssert.ok(engines.includes(\"duck duck go\")); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQUAL(mozilla::glean::search::engines.TestGetValue().isOk());\nnsTArray list = mozilla::glean::search::engines.TestGetValue().unwrap();\nASSERT_TRUE(list.Contains(\"wikipedia\"_ns));\nASSERT_TRUE(list.Constains(\"duck duck go\"_ns)); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nconst engines = Glean.search.engines.testGetValue();\nAssert.ok(engines.includes(\"wikipedia\"));\nAssert.ok(engines.includes(\"duck duck go\"));","breadcrumbs":"Metric types » String List » testGetValue","id":"448","title":"testGetValue"},"449":{"body":"Gets the number of errors recorded for a given string list metric. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals( 0, Search.engines.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Search; assertEquals( 0, Search.INSTANCE.engines().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Were any of the values too long, and thus an error was recorded?\nXCTAssertEqual(0, Search.engines.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.search.engines.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::search; assert_eq!( 0, search::engines.test_get_num_recorded_errors(ErrorType::InvalidValue)\n);","breadcrumbs":"Metric types » String List » testGetNumRecordedErrors","id":"449","title":"testGetNumRecordedErrors"},"45":{"body":"","breadcrumbs":"Adding Glean to your project » Qt/QML » Automation steps","id":"45","title":"Automation steps"},"450":{"body":"Example string list metric definition: search: engines: type: string_list description: > Records the name of the enabled search engines. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » String List » Metric parameters","id":"450","title":"Metric parameters"},"451":{"body":"N/A","breadcrumbs":"Metric types » String List » Extra metric parameters","id":"451","title":"Extra metric parameters"},"452":{"body":"Which search engines are enabled?","breadcrumbs":"Metric types » String List » Data questions","id":"452","title":"Data questions"},"453":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » String List » Reference","id":"453","title":"Reference"},"454":{"body":"Timespans are used to make a measurement of how much time is spent in a particular task. Irrespective of the timespan's lifetime, both start and stop must occur within the same application session. To measure the distribution of multiple timespans, see Timing Distributions . To record absolute times, see Datetimes . It is not recommended to use timespans in multiple threads, since calling start or stop out of order will be recorded as an invalid_state error.","breadcrumbs":"Metric types » Timespan » Timespan","id":"454","title":"Timespan"},"455":{"body":"","breadcrumbs":"Metric types » Timespan » Recording API","id":"455","title":"Recording API"},"456":{"body":"Starts tracking time. Uses an internal monotonic timer. import org.mozilla.yourApplication.GleanMetrics.Auth fun onShowLogin() { Auth.loginTime.start() // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void onShowLogin() { Auth.INSTANCE.loginTime().start(); // ...\n} func onShowLogin() { Auth.loginTime.start() // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def on_show_login(): metrics.auth.login_time.start() # ... use glean_metrics::auth; fn show_login() { auth::login_time.start(); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onShowLogin() { auth.loginTime.start(); // ...\n} C++ #include \"mozilla/glean/GleanMetrics.h\"\nvoid OnShowLogin() { mozilla::glean::auth::login_time.Start(); // ...\n} JavaScript function onShowLogin() { Glean.auth.loginTime.start(); // ...\n} Recorded errors invalid_state : If the metric is already tracking time (start has already been called and not canceled). Limits The maximum resolution of the elapsed duration is limited by the clock used on each platform. This also determines the behavior of a timespan over sleep: On Android, the SystemClock.elapsedRealtimeNanos() function is used, so it is limited by the accuracy and performance of that timer. The time measurement includes time spent in sleep. On iOS, the mach_absolute_time function is used, so it is limited by the accuracy and performance of that timer. The time measurement does not include time spent in sleep. On Python 3.7 and later, time.monotonic_ns() is used. On earlier versions of Python, time.monotonics() is used, which is not guaranteed to have nanosecond resolution. On other platforms time::precise_time_ns is used, which uses a high-resolution performance counter in nanoseconds provided by the underlying platform.","breadcrumbs":"Metric types » Timespan » start","id":"456","title":"start"},"457":{"body":"Stops tracking time. The metric value is set to the elapsed time. import org.mozilla.yourApplication.GleanMetrics.Auth fun onLogin() { Auth.loginTime.stop() // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void onLogin() { Auth.INSTANCE.loginTime().stop(); // ...\n} func onLogin() { Auth.loginTime.stop() // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def on_login(): metrics.auth.login_time.stop() # ... use glean_metrics::auth;; fn login() { auth::login_time.stop(); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onLogin() { auth.login_time.stop(); // ...\n} C++ #include \"mozilla/glean/GleanMetrics.h\"\nvoid OnLogin() { mozilla::glean::auth::login_time.Stop(); // ...\n} JavaScript function onLogin() { Glean.auth.loginTime.stop(); // ...\n} Recorded errors invalid_state : Calling stop without calling start first, e.g. if the start happened on a previous application run.","breadcrumbs":"Metric types » Timespan » stop","id":"457","title":"stop"},"458":{"body":"Cancels a previous start. No error is recorded if there was no previous start. import org.mozilla.yourApplication.GleanMetrics.Auth fun onLoginCancel() { Auth.loginTime.cancel() // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void onLoginCancel() { Auth.INSTANCE.loginTime().cancel(); // ...\n} func onLoginCancel() { Auth.loginTime.cancel() // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def on_login_cancel(): metrics.auth.login_time.cancel() # ... use glean_metrics::auth; fn login_cancel() { auth::login_time.cancel(); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onLoginCancel() { auth.login_time.cancel(); // ...\n} C++ #include \"mozilla/glean/GleanMetrics.h\"\nvoid OnLoginCancel() { mozilla::glean::auth::login_time.Cancel(); // ...\n} JavaScript function onLoginCancel() { Glean.auth.loginTime.cancel(); // ...\n}","breadcrumbs":"Metric types » Timespan » cancel","id":"458","title":"cancel"},"459":{"body":"Some languages support convenient auto timing of blocks of code. measure is treated as a start and stop pair for the purposes of error recording. Exceptions (if present in the language) are treated as a cancel. import org.mozilla.yourApplication.GleanMetrics.Auth Auth.loginTime.measure { // Process login flow\n} import org.mozilla.yourApplication.GleanMetrics.Auth Auth.INSTANCE.loginTime().measure() -> { // Process login flow return null;\n}); Auth.loginTime.measure { // Process login flow\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") with metrics.auth.login_time.measure(): # ... Do the login ...","breadcrumbs":"Metric types » Timespan » measure","id":"459","title":"measure"},"46":{"body":"Prefer using the Glean Dictionary While it is still possible to generate Markdown documentation, if working on a public Mozilla project rely on the Glean Dictionary for documentation. Your product will be automatically indexed by the Glean Dictionary after it gets enabled in the pipeline. One of the commands provided by glean_parser allows users to generate Markdown documentation based on the contents of their YAML registry files. To perform that translation, use the translate command with a different output format, as shown below. glean_parser translate path/to/metrics.yaml path/to/pings.yaml \\ -f markdown \\ -o path/to/docs","breadcrumbs":"Adding Glean to your project » Qt/QML » Documentation","id":"46","title":"Documentation"},"460":{"body":"Explicitly sets the timespan's value. Regardless of the time unit chosen for the metric, this API expects the raw value to be in nanoseconds .","breadcrumbs":"Metric types » Timespan » setRawNanos","id":"460","title":"setRawNanos"},"461":{"body":"This API should only be used if the code being instrumented cannot make use of start, stop, and cancel or measure. Time is hard, and this API can't help you with it. import org.mozilla.yourApplication.GleanMetrics.Auth fun afterLogin(loginElapsedNs: Long) { Auth.loginTime.setRawNanos(loginElapsedNs) // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void afterLogin(long loginElapsedNs) { Auth.INSTANCE.loginTime().setRawNanos(loginElapsedNs); // ...\n} func afterLogin(_ loginElapsedNs: UInt64) { Auth.loginTime.setRawNanos(loginElapsedNs) // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def after_login(login_elapsed_ns): metrics.auth.login_time.set_raw_nanos(login_elapsed_ns) # ... use std::time::duration;\nuse glean_metrics::auth; fn after_login(login_elapsed: Duration) { auth::login_time.set_raw(login_elapsed); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onAfterLogin(loginElapsedNs) { auth.loginTime.setRawNanos(loginElapsedNs); // ...\n}","breadcrumbs":"Metric types » Timespan » Only use this if you have to","id":"461","title":"Only use this if you have to"},"462":{"body":"Firefox Desktop's setRaw uses the units specified in the metric definition. e.g. if the Timespan's time_unit is millisecond, then the duration parameter is a count of milliseconds. C++ #include \"mozilla/glean/GleanMetrics.h\" void AfterLogin(uint32_t aDuration) { mozilla::glean::auth::login_time.SetRaw(aDuration); // ...\n} JavaScript function afterLogin(aDuration) { Glean.auth.loginTime.setRaw(aDuration); // ...\n} Recorded errors invalid_value : if attempting to record a negative elapsed duration. invalid_state : if this method is called after calling start or this method is called multiple times. invalid_type : if a negative, floating point or non-number value is given.","breadcrumbs":"Metric types » Timespan » These are different","id":"462","title":"These are different"},"463":{"body":"","breadcrumbs":"Metric types » Timespan » Testing API","id":"463","title":"Testing API"},"464":{"body":"Get the currently-stored value. Returns the timespan as a integer in the metric's time unit if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Auth assertTrue(Auth.loginTime.testGetValue() > 0) import org.mozilla.yourApplication.GleanMetrics.Auth; assertTrue(Auth.INSTANCE.loginTime().testGetValue() > 0); XCTAssert(Auth.loginTime.testGetValue() > 0) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert metrics.auth.login_time.test_get_value() > 0 use glean_metrics::auth; assert!(auth::login_time.test_get_value(None).unwrap() > 0); import * as auth from \"./path/to/generated/files/auth.js\"; assert(await auth.loginTime.testGetValue() > 0); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_TRUE(mozilla::glean::auth::login_time.TestGetValue().isOk());\nASSERT_GE(mozilla::glean::auth::login_time.TestGetValue().unwrap().value(), 0); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.ok(Glean.auth.loginTime.testGetValue() > 0);","breadcrumbs":"Metric types » Timespan » testGetValue","id":"464","title":"testGetValue"},"465":{"body":"Gets the number of errors recorded during operations on this metric. import org.mozilla.yourApplication.GleanMetrics.Auth assertEquals( 0, Auth.loginTime.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Auth; assertEquals( 0, Auth.INSTANCE.loginTime().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Auth.loginTime.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.auth.local_time.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean_metrics::auth; assert_eq!(1, auth::login_time.test_get_num_recorded_errors(ErrorType::InvalidValue)); import * as auth from \"./path/to/generated/files/auth.js\";\nimport { ErrorType } from \"@mozilla/glean/error\";; assert.strictEqual( 1, await auth.loginTime.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Timespan » testGetNumRecordedErrors","id":"465","title":"testGetNumRecordedErrors"},"466":{"body":"Example timespan metric definition: auth: login_time: type: timespan description: > Measures the time spent logging in. time_unit: millisecond bugs: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-01-01 data_sensitivity: - interaction For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Timespan » Metric parameters","id":"466","title":"Metric parameters"},"467":{"body":"time_unit Timespans have an optional time_unit parameter to specify the smallest unit of resolution that the timespan will record. The allowed values for time_unit are: nanosecond microsecond millisecond (default) second minute hour day Consider the resolution that is required by your metric, and use the largest possible value that will provide useful information so as to not leak too much fine-grained information from the client.","breadcrumbs":"Metric types » Timespan » Extra metric parameters","id":"467","title":"Extra metric parameters"},"468":{"body":"It is important to note that the value sent in the ping is truncated down to the nearest unit. Therefore, a measurement of 500 nanoseconds will be truncated to 0 microseconds.","breadcrumbs":"Metric types » Timespan » Values are truncated","id":"468","title":"Values are truncated"},"469":{"body":"How long did it take for the user to log in?","breadcrumbs":"Metric types » Timespan » Data questions","id":"469","title":"Data questions"},"47":{"body":"glean_parser includes a \"linter\" for the YAML registry files called the glinter that catches a number of common mistakes in these files. To run the linter use the glinter command. glean_parser glinter path/to/metrics.yaml path/to/pings.yaml","breadcrumbs":"Adding Glean to your project » Qt/QML » YAML registry files linting","id":"47","title":"YAML registry files linting"},"470":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Timespan » Reference","id":"470","title":"Reference"},"471":{"body":"Timing distributions are used to accumulate and store time measurement, for analyzing distributions of the timing data. To measure the distribution of single timespans, see Timespans . To record absolute times, see Datetimes . Timing distributions are recorded in a histogram where the buckets have an exponential distribution, specifically with 8 buckets for every power of 2. That is, the function from a value \\( x \\) to a bucket index is: \\[ \\lfloor 8 \\log_2(x) \\rfloor \\] This makes them suitable for measuring timings on a number of time scales without any configuration. Note Check out how this bucketing algorithm would behave on the Simulator . Timings always span the full length between start and stopAndAccumulate. If the Glean upload is disabled when calling start, the timer is still started. If the Glean upload is disabled at the time stopAndAccumulate is called, nothing is recorded. Multiple concurrent timings in different threads may be measured at the same time. Timings are always stored and sent in the payload as nanoseconds. However, the time_unit parameter controls the minimum and maximum values that will recorded: nanosecond: 1ns <= x <= 10 minutes microsecond: 1μs <= x <= ~6.94 days millisecond: 1ms <= x <= ~19 years Overflowing this range is considered an error and is reported through the error reporting mechanism. Underflowing this range is not an error and the value is silently truncated to the minimum value. Additionally, when a metric comes from GeckoView (the geckoview_datapoint parameter is present), the time_unit parameter specifies the unit that the samples are in when passed to Glean. Glean will convert all of the incoming samples to nanoseconds internally.","breadcrumbs":"Metric types » Timing Distribution » Timing Distribution","id":"471","title":"Timing Distribution"},"472":{"body":"","breadcrumbs":"Metric types » Timing Distribution » Recording API","id":"472","title":"Recording API"},"473":{"body":"Start tracking time for the provided metric. Multiple timers can run simultaneously. Returns a unique TimerId for the new timer. import mozilla.components.service.glean.GleanTimerId\nimport org.mozilla.yourApplication.GleanMetrics.Pages val timerId : GleanTimerId fun onPageStart(e: Event) { timerId = Pages.pageLoad.start()\n} import mozilla.components.service.glean.GleanTimerId;\nimport org.mozilla.yourApplication.GleanMetrics.Pages; GleanTimerId timerId; void onPageStart(Event e) { timerId = Pages.INSTANCE.pageLoad().start();\n} import Glean var timerId : GleanTimerId func onPageStart() { timerId = Pages.pageLoad.start()\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def __init__(self): self.timer_id = None def on_page_start(self, event): self.timer_id = metrics.pages.page_load.start() use glean_metrics::pages; fn on_page_start() { self.timer_id = pages::page_load.start();\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageStart() { // store this ID, you will need it later to stop or cancel your timer const timerId = pages.pageLoad.start();\n} C++ #include \"mozilla/glean/GleanMetrics.h\" auto timerId = mozilla::glean::pages::page_load.Start(); JavaScript let timerId = Glean.pages.pageLoad.start();","breadcrumbs":"Metric types » Timing Distribution » start","id":"473","title":"start"},"474":{"body":"Stops tracking time for the provided metric and associated timer id. Adds a count to the corresponding bucket in the timing distribution. This will record an error if start was not called. import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageLoaded(e: Event) { Pages.pageLoad.stopAndAccumulate(timerId)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; void onPageLoaded(Event e) { Pages.INSTANCE.pageLoad().stopAndAccumulate(timerId);\n} import Glean func onPageLoaded() { Pages.pageLoad.stopAndAccumulate(timerId)\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_loaded(self, event): metrics.pages.page_load.stop_and_accumulate(self.timer_id) use glean_metrics::pages; fn on_page_loaded() { pages::page_load.stop_and_accumulate(self.timer_id);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageLoaded() { pages.pageLoad.stopAndAccumulate(timerId);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.StopAndAccumulate(std::move(timerId)); JavaScript Glean.pages.pageLoad.stopAndAccumulate(timerId);","breadcrumbs":"Metric types » Timing Distribution » stopAndAccumulate","id":"474","title":"stopAndAccumulate"},"475":{"body":"Accumulates the provided signed samples in the metric. This is required so that the platform-specific code can provide us with 64 bit signed integers if no u64 comparable type is available. This will take care of filtering and reporting errors for any provided negative sample. Please note that this assumes that the provided samples are already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then samples are assumed to be in that unit). import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageLoaded(e: Event) { Pages.pageLoad.accumulateSamples(samples)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; void onPageLoaded(Event e) { Pages.INSTANCE.pageLoad().accumulateSamples(samples);\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_loaded(self, event): metrics.pages.page_load.accumulate_samples(samples) use glean_metrics::pages; fn on_page_loaded() { pages::page_load.accumulate_samples(samples);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageLoaded() { pages.pageLoad.accumulateSamples(samples);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.AccumulateRawSamples(samples); JavaScript Glean.pages.pageLoad.accumulateSamples(samples);","breadcrumbs":"Metric types » Timing Distribution » accumulateSamples","id":"475","title":"accumulateSamples"},"476":{"body":"Accumulates a single signed sample and appends it to the metric. Prefer this for the common use case of having a single value to avoid having to pass a collection over a foreign language interface. A signed value is required so that the platform-specific code can provide us with a 64 bit signed integer if no u64 comparable type is available. This will take care of filtering and reporting errors for a negative sample. Please note that this assumes that the provided sample is already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then sample is assumed to be in that unit). import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageLoaded(e: Event) { Pages.pageLoad.accumulateSingleSample(sample)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; void onPageLoaded(Event e) { Pages.INSTANCE.pageLoad().accumulateSingleSample(sample);\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_loaded(self, event): metrics.pages.page_load.accumulate_single_sample(sample) use glean_metrics::pages; fn on_page_loaded() { pages::page_load.accumulate_single_sample(sample);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageLoaded() { pages.pageLoad.accumulateSingleSample(sample);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.AccumulateRawDuration(aDuration); JavaScript Glean.pages.pageLoad.accumulateSingleSample(sample); Limits Samples are limited to the maximum value for the given time unit. Only non-negative values may be recorded (>= 0). Negative values are discarded and an ErrorType::InvalidValue is generated for each instance. Samples that are longer than maximum sample time for the given unit generate an ErrorType::InvalidOverflow error for each instance. Recorded errors invalid_value : If recording a negative timespan. invalid_state : If a non-existing/stopped timer is stopped again. invalid_overflow : If recording a time longer than the maximum for the given unit.","breadcrumbs":"Metric types » Timing Distribution » accumulateSingleSample","id":"476","title":"accumulateSingleSample"},"477":{"body":"For convenience one can measure the time of a function or block of code. import org.mozilla.yourApplication.GleanMetrics.Pages Pages.pageLoad.measure { // Load a page\n} import Glean Pages.pageLoad.measure { // Load a page\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") with metrics.pages.page_load.measure(): # Load a page","breadcrumbs":"Metric types » Timing Distribution » measure","id":"477","title":"measure"},"478":{"body":"Aborts a previous start call. No error is recorded if start was not called. import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageError(e: Event) { Pages.pageLoad.cancel(timerId)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; fun onPageError(e: Event) { Pages.INSTANCE.pageLoad().cancel(timerId);\n} import Glean func onPageError() { Pages.pageLoad.cancel(timerId)\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_error(self, event): metrics.pages.page_load.cancel(self.timer_id) use glean_metrics::pages; fn on_page_error() { pages::page_load.cancel(self.timer_id);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageError() { pages.pageLoad.cancel(timerId);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.Cancel(std::move(timerId)); JavaScript Glean.pages.pageLoad.cancel(timerId);","breadcrumbs":"Metric types » Timing Distribution » cancel","id":"478","title":"cancel"},"479":{"body":"","breadcrumbs":"Metric types » Timing Distribution » Testing API","id":"479","title":"Testing API"},"48":{"body":"By default, the Glean.js QML module uses a minified version of the Glean.js library. It may be useful to use the unminified version of the library in order to get proper line numbers and function names when debugging crashes. The bundle provided contains the unminified version of the library. In order to use it, open the glean.js file inside the included module and change the line: .import \"glean.lib.js\" as Glean to .import \"glean.dev.js\" as Glean","breadcrumbs":"Adding Glean to your project » Qt/QML » Debugging","id":"48","title":"Debugging"},"480":{"body":"Gets the recorded value for a given timing distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Pages // Get snapshot.\nval snapshot = Pages.pageLoad.testGetValue() // Does the sum have the expected value?\nassertEquals(11, snapshot.sum) // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.count) import org.mozilla.yourApplication.GleanMetrics.Pages; // Get snapshot.\nDistributionData snapshot = pages.INSTANCE.pageLoad().testGetValue(); // Does the sum have the expected value?\nassertEquals(11, snapshot.sum); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.getCount()); // Get snapshot.\nlet snapshot = pages.pageLoad.testGetValue() // Does the sum have the expected value?\nXCTAssertEqual(11, snapshot.sum) // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nXCTAssertEqual(2, snapshot.count) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Get snapshot.\nsnapshot = metrics.pages.page_load.test_get_value() # Does the sum have the expected value?\nassert 11 == snapshot.sum # Usually you don't know the exact timing values,\n# but how many should have been recorded.\nassert 2 == snapshot.count use glean::ErrorType;\nuse glean_metrics::pages; // Get snapshot\nlet snapshot = pages::page_load.test_get_value(None).unwrap(); // Does the sum have the expected value?\nassert_eq!(11, snapshot.sum); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassert_eq!(2, snapshot.count); import * as pages from \"./path/to/generated/files/pages.js\"; const snapshot = await pages.pageLoad.testGetValue(); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassert.equal(1, snapshot.count); C++ #include \"mozilla/glean/GleanMetrics.h\" // Does it have an expected values?\nconst data = mozilla::glean::pages::page_load.TestGetValue().value().unwrap();\nASSERT_TRUE(data.sum > 0); JavaScript Assert.ok(Glean.pages.pageLoad.testGetValue().sum > 0);","breadcrumbs":"Metric types » Timing Distribution » testGetValue","id":"480","title":"testGetValue"},"481":{"body":"Gets the number of errors recorded for a given timing distribution metric. import org.mozilla.yourApplication.GleanMetrics.Pages // Assert that no errors were recorded.\nassertEquals( 0, Pages.pageLoad.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Pages; // Assert that no errors were recorded.\nassertEquals( 0, Pages.INSTANCE.pageLoad().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Assert that no errors were recorded.\nXCTAssertEqual(0, Pages.pageLoad.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Assert that no errors were recorded.\nassert 0 == metrics.pages.page_load.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::pages; assert_eq!( 0, pages::page_load.test_get_num_recorded_errors(ErrorType::InvalidValue)\n); import * as pages from \"./path/to/generated/files/pages.js\";\nimport { ErrorType } from \"@mozilla/glean/\"; assert.equal(1, await pages.pageLoad.testGetNumRecordedErrors(ErrorType.InvalidValue));","breadcrumbs":"Metric types » Timing Distribution » testGetNumRecordedErrors","id":"481","title":"testGetNumRecordedErrors"},"482":{"body":"Example timing distribution metric definition: pages: page_load: type: timing_distribution time_unit: millisecond description: > Counts how long each page takes to load bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01","breadcrumbs":"Metric types » Timing Distribution » Metric parameters","id":"482","title":"Metric parameters"},"483":{"body":"time_unit Timing distributions have an optional time_unit parameter to specify the smallest unit of resolution that the timespan will record. The allowed values for time_unit are: nanosecond (default) microsecond millisecond second minute hour day","breadcrumbs":"Metric types » Timing Distribution » Extra metric parameters","id":"483","title":"Extra metric parameters"},"484":{"body":"Timings are recorded in nanoseconds. On Android, the SystemClock.elapsedRealtimeNanos() function is used, so it is limited by the accuracy and performance of that timer. The time measurement includes time spent in sleep. On iOS, the mach_absolute_time function is used, so it is limited by the accuracy and performance of that timer. The time measurement does not include time spent in sleep. On Python 3.7 and later, time.monotonic_ns() is used. On earlier versions of Python, time.monotonics() is used, which is not guaranteed to have nanosecond resolution. In Rust, time::precise_time_ns() is used. The maximum timing value that will be recorded depends on the time_unit parameter: nanosecond: 1ns <= x <= 10 minutes microsecond: 1μs <= x <= ~6.94 days millisecond: 1ms <= x <= ~19 years Longer times will be truncated to the maximum value and an error will be recorded.","breadcrumbs":"Metric types » Timing Distribution » Limits","id":"484","title":"Limits"},"485":{"body":"How long does it take a page to load?","breadcrumbs":"Metric types » Timing Distribution » Data questions","id":"485","title":"Data questions"},"486":{"body":"Swift API docs Python API docs","breadcrumbs":"Metric types » Timing Distribution » Reference","id":"486","title":"Reference"},"487":{"body":"Please, insert your custom data below as a JSON array. Data options Generate normally distributed data Generate log-normally distributed data Generate uniformly distributed data Use custom data Properties Histogram type Functional Log base Buckets per magnitude Maximum value Time unit (time_unit) Nanoseconds Microseconds Milliseconds Note The data provided , is assumed to be in the configured time unit. The data recorded , on the other hand, is always in nanoseconds . This means that, if the configured time unit is not nanoseconds, the data will be transformed before being recorded. Notice this, by using the select field above to change the time unit and see the mean of the data recorded changing. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Timing Distribution » Simulator","id":"487","title":"Simulator"},"488":{"body":"Labeled timing distributions are used to record different related distributions of time measurements. See the Timing Distribution reference for details on bucket distribution, specifics about how Glean records time, and a histogram simulator.","breadcrumbs":"Metric types » Labeled Timing Distributions » Labeled Timing Distributions","id":"488","title":"Labeled Timing Distributions"},"489":{"body":"","breadcrumbs":"Metric types » Labeled Timing Distributions » Recording API","id":"489","title":"Recording API"},"49":{"body":"","breadcrumbs":"Adding Glean to your project » Qt/QML » Troubleshooting","id":"49","title":"Troubleshooting"},"490":{"body":"Start tracking time for the provided metric for the given label. Multiple timers for multiple labels can run simultaneously. Returns a unique TimerId for the new timer. use glean_metrics::devtools; self.start = devtools::cold_toolbox_open_delay .get(toolbox_id) .start(); C++ #include \"mozilla/glean/GleanMetrics.h\" auto timerId = mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .Start(); JavaScript const timerId = Glean.devtools.coldToolboxOpenDelay[toolbox_id].start(); Recorded Errors invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » start","id":"490","title":"start"},"491":{"body":"Stops tracking time for the provided timer from the metric for the given label. Adds a count to the corresponding bucket in the label's timing distribution. Do not use the provided TimerId after passing it to this method. use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .stop_and_accumulate(self.start); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .StopAndAccumulate(std::move(timerId)); JavaScript Glean.devtools.coldToolboxOpenDelay[toolbox_id].stopAndAccumulate(timerId); Recorded errors invalid_state : If a non-existing, cancelled, or already-stopped timer is stopped again. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » stopAndAccumulate","id":"491","title":"stopAndAccumulate"},"492":{"body":"Aborts a previous start call, consuming the supplied timer id. use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .cancel(self.start); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .Cancel(std::move(timerId)); JavaScript Glean.devtools.coldToolboxOpenDelay[toolbox_id].cancel(timerId); Recorded errors invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » cancel","id":"492","title":"cancel"},"493":{"body":"Accumulates the provided, signed samples in the metric for a given label. Where possible, have Glean do the timing for you and don't use methods like this one. If you are doing timing yourself, ensure your time source is monotonic and behaves consistently across platforms. This is required so that the platform-specific code can provide us with 64 bit signed integers if no u64 comparable type is available. This will take care of filtering and reporting errors for any provided negative sample. Please note that this assumes that the provided samples are already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then samples are assumed to be in that unit). use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .accumulate_samples(samples); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .AccumulateRawSamples(samples); JavaScript Glean.devtools.coldToolboxOpenDelay[toolboxId].accumulateSamples(samples); Recorded errors invalid_value : If recording a negative sample. invalid_overflow : If recording a sample longer than the maximum for the given time_unit. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » accumulateSamples","id":"493","title":"accumulateSamples"},"494":{"body":"Accumulates a single signed sample and appends it to the metric for the provided label. Prefer start() and stopAndAccumulate() where possible, but if you must record time externally please prefer this method for individual samples (avoids having to allocate and pass collections). A signed value is required so that the platform-specific code can provide us with a 64 bit signed integer if no u64 comparable type is available. This will take care of filtering and reporting errors for a negative sample. Please note that this assumes that the provided sample is already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then sample is assumed to be in that unit). use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .accumulate_single_sample(sample); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolboxId) .AccumulateRawDuration(aDuration); JavaScript Glean.devtools.coldToolboxOpenDelay[toolboxId].accumulateSamples(sample); Recorded errors invalid_value : If recording a negative sample. invalid_overflow : If recording a sample longer than the maximum for the given time_unit. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » accumulateSingleSample","id":"494","title":"accumulateSingleSample"},"495":{"body":"","breadcrumbs":"Metric types » Labeled Timing Distributions » Testing API","id":"495","title":"Testing API"},"496":{"body":"Gets the recorded value for a given label in a labeled timing distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::devtools; // Get the current snapshot of stored values.\nlet snapshot = devtools::cold_toolbox_open_delay.get(\"webconsole\").test_get_value(None).unwrap(); // Usually you don't know the exact timing values,\n// but you do know how many samples there are:\nassert_eq!(2, snapshot.count);\n// ...and the lower bound of how long they all took:\nassert_ge!(400, snapshot.sum); C++ #include \"mozilla/glean/GleanMetrics.h\" const data = mozilla::glean::devtools::cold_toolbox_open_delay .Get(\"webconsole\"_ns) .TestGetValue().value().unwrap();\nASSERT_TRUE(data.sum > 0); JavaScript Assert.ok(Glean.devtools.coldToolboxOpenDelay[\"webconsole\"].testGetValue().sum > 0);","breadcrumbs":"Metric types » Labeled Timing Distributions » testGetValue","id":"496","title":"testGetValue"},"497":{"body":"Gets the number of errors recorded for a given labeled timing distribution metric in total. use glean::ErrorType;\nuse glean_metrics::network; // Assert there were no negative values instrumented.\nassert_eq!( 0, devtools::cold_toolbox_open_delay.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Timing Distributions » testGetNumRecordedErrors","id":"497","title":"testGetNumRecordedErrors"},"498":{"body":"Example labeled timing distribution metric definition: devtools: cold_toolbox_open_delay: type: labeled_timing_distribution description: > Time taken to open the first DevTools toolbox, per tool being opened. time_unit: millisecond bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 175 labels: - inspector - webconsole - jsdebugger ...","breadcrumbs":"Metric types » Labeled Timing Distributions » Metric parameters","id":"498","title":"Metric parameters"},"499":{"body":"time_unit Labeled timing distributions have an optional time_unit parameter to specify the smallest unit of resolution that it will record. The allowed values for time_unit are: nanosecond (default) microsecond millisecond second minute hour day labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Timing Distributions » Extra metric parameters","id":"499","title":"Extra metric parameters"},"5":{"body":"Glossary In this book we use a lot of Glean specific terminology. In the glossary, we go through many of the terms used throughout this book and describe exactly what we mean when we use them. Changelog This section contains detailed notes about changes in Glean, per release. This Week in Glean “This Week in Glean” is a series of blog posts that the Glean Team at Mozilla is using to try to communicate better about our work. They could be release notes, documentation, hopes, dreams, or whatever: so long as it is inspired by Glean. Contribution Guidelines This section contains detailed information on where and how to include new content to this book.","breadcrumbs":"Glean » Appendix","id":"5","title":"Appendix"},"50":{"body":"The submitPing function hits a known bug in the Qt JavaScript interpreter. This bug is only reproduced in iOS devices, it does not happen in emulators. It also only happens when using the Qt debug library for iOS . There is no way around this bug other than avoiding the Qt debug library for iOS altogether until it is fixed. Refer to the the Qt debugging documentation on how to do that. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Qt/QML » submitPing may cause crashes when debugging iOS devices","id":"50","title":"submitPing may cause crashes when debugging iOS devices"},"500":{"body":"What is the distribution of initial load times of devtools toolboxes, per tool? What is the distribution of how long it takes to load extensions' content scripts, by addon id?","breadcrumbs":"Metric types » Labeled Timing Distributions » Data questions","id":"500","title":"Data questions"},"501":{"body":"Timings are recorded in nanoseconds In Rust, time::precise_time_ns() is used. The maximum timing value that will be recorded depends on the time_unit parameter: nanosecond: 1ns <= x <= 10 minutes microsecond: 1μs <= x <= ~6.94 days millisecond: 1ms <= x <= ~19 years Longer times will be truncated to the maximum value and an error will be recorded. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » Limits","id":"501","title":"Limits"},"502":{"body":"Rust API docs: LabeledMetric , TimingDistributionMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Timing Distributions » Reference","id":"502","title":"Reference"},"503":{"body":"Memory distributions are used to accumulate and store memory sizes. Memory distributions are recorded in a histogram where the buckets have an exponential distribution, specifically with 16 buckets for every power of 2. That is, the function from a value \\( x \\) to a bucket index is: \\[ \\lfloor 16 \\log_2(x) \\rfloor \\] This makes them suitable for measuring memory sizes on a number of different scales without any configuration. Note Check out how this bucketing algorithm would behave on the Simulator .","breadcrumbs":"Metric types » Memory Distribution » Memory Distribution","id":"503","title":"Memory Distribution"},"504":{"body":"","breadcrumbs":"Metric types » Memory Distribution » Recording API","id":"504","title":"Recording API"},"505":{"body":"Accumulates the provided sample in the metric. import org.mozilla.yourApplication.GleanMetrics.Memory fun allocateMemory(nbytes: Int) { // ... Memory.heapAllocated.accumulate(nbytes / 1024)\n} import org.mozilla.yourApplication.GleanMetrics.Memory; fun allocateMemory(nbytes: Int) { // ... Memory.INSTANCE.heapAllocated().accumulate(nbytes / 1024);\n} import Glean func allocateMemory(nbytes: UInt64) { // ... Memory.heapAllocated.accumulate(nbytes / 1024)\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def allocate_memory(nbytes): # ... metrics.memory.heap_allocated.accumulate(nbytes / 1024) use glean_metrics::memory; fn allocate_memory(bytes: u64) { // ... memory::heap_allocated.accumulate(bytes / 1024);\n} import * as memory from \"./path/to/generated/files/memory.js\"; function allocateMemory() { // ... memory.heapAllocated.accumulate(nbytes / 1024);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::memory::heap_allocated.Accumulate(bytes / 1024); JavaScript Glean.memory.heapAllocated.accumulate(bytes / 1024); Recorded errors invalid_value : If recording a negative memory size. invalid_value : If recording a size larger than 1 TB.","breadcrumbs":"Metric types » Memory Distribution » accumulate","id":"505","title":"accumulate"},"506":{"body":"","breadcrumbs":"Metric types » Memory Distribution » Testing API","id":"506","title":"Testing API"},"507":{"body":"Gets the recorded value for a given memory distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Memory // Get snapshot\nval snapshot = Memory.heapAllocated.testGetValue() // Does the sum have the expected value?\nassertEquals(11, snapshot.sum) // Usually you don't know the exact memory values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.count) import org.mozilla.yourApplication.GleanMetrics.Memory; // Get snapshot\nval snapshot = Memory.INSTANCE.heapAllocated().testGetValue(); // Does the sum have the expected value?\nassertEquals(11, snapshot.sum); // Usually you don't know the exact memory values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.getCount()); // Get snapshot\nlet snapshot = try! Memory.heapAllocated.testGetValue() // Does the sum have the expected value?\nXCTAssertEqual(11, snapshot.sum) // Usually you don't know the exact memory values,\n// but how many should have been recorded.\nXCTAssertEqual(2, snapshot.count) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Get snapshot.\nsnapshot = metrics.memory.heap_allocated.test_get_value() # Does the sum have the expected value?\nassert 11 == snapshot.sum # Usually you don't know the exact memory values,\n# but how many should have been recorded.\nassert 2 == snapshot.count use glean::ErrorType;\nuse glean_metrics::memory; // Get snapshot\nlet snapshot = memory::heap_allocated.test_get_value(None).unwrap(); // Does the sum have the expected value?\nassert_eq!(11, snapshot.sum); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassert_eq!(2, snapshot.count); import * as memory from \"./path/to/generated/files/memory.js\"; // Get snapshot\nconst snapshot = await memory.heapAllocated.testGetValue(); // Does the sum have the expected value?\nassert.equal(11, snapshot.sum); // Usually you don't know the exact memory values,\n// but know how many should have been recorded.\nassert.equal(2, snapshot.count); C++ #include \"mozilla/glean/GleanMetrics.h\" // Does it have an expected values?\nconst data = mozilla::glean::memory::heap_allocated.TestGetValue().value().unwrap()\nASSERT_EQ(11 * 1024, data.sum); JavaScript const data = Glean.memory.heapAllocated.testGetValue();\nAssert.equal(11 * 1024, data.sum);","breadcrumbs":"Metric types » Memory Distribution » testGetValue","id":"507","title":"testGetValue"},"508":{"body":"Gets the number of errors recorded for a given memory distribution metric. import org.mozilla.yourApplication.GleanMetrics.Memory // Did this record a negative value?\nassertEquals( 0, Memory.heapAllocated.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Memory; // Assert that no errors were recorded.\nassertEquals( 0, Memory.INSTANCE.heapAllocated().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Did this record a negative value?\nXCTAssertEqual(0, Memory.heapAllocated.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Did this record a negative value?\nassert 0 == metrics.memory.heap_allocated.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::pages; assert_eq!( 0, pages::page_load.test_get_num_recorded_errors(ErrorType::InvalidValue)\n); import * as memory from \"./path/to/generated/files/memory.js\";\nimport { ErrorType } from \"@mozilla/glean/\"; // Did this record a negative value?\nassert.equal( 0, await memory.heapAllocated.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Memory Distribution » testGetNumRecordedErrors","id":"508","title":"testGetNumRecordedErrors"},"509":{"body":"Example memory distribution metric definition: memory: heap_allocated: type: memory_distribution memory_unit: kilobyte description: > The heap memory allocated bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01","breadcrumbs":"Metric types » Memory Distribution » Metric parameters","id":"509","title":"Metric parameters"},"51":{"body":"Glean enables the collection of behavioral metrics through events in server environments. This method does not rely on the Glean SDK but utilizes the Glean parser to generate native code for logging events in a standard format compatible with the ingestion pipeline.","breadcrumbs":"Adding Glean to your project » Server » Adding Glean to your Server Application","id":"51","title":"Adding Glean to your Server Application"},"510":{"body":"memory_unit Memory distributions have an optional memory_unit parameter, which specifies the unit the incoming memory size values are recorded in. The allowed values for memory_unit are: byte (default) kilobyte (= 2^10 = 1,024 bytes) megabyte (= 2^20 = 1,048,576 bytes) gigabyte (= 2^30 = 1,073,741,824 bytes)","breadcrumbs":"Metric types » Memory Distribution » Extra metric parameters","id":"510","title":"Extra metric parameters"},"511":{"body":"The maximum memory size that can be recorded is 1 Terabyte (240 bytes). Larger sizes will be truncated to 1 Terabyte.","breadcrumbs":"Metric types » Memory Distribution » Limits","id":"511","title":"Limits"},"512":{"body":"What is the distribution of the size of heap allocations?","breadcrumbs":"Metric types » Memory Distribution » Data questions","id":"512","title":"Data questions"},"513":{"body":"Swift API docs Python API docs Rust API docs","breadcrumbs":"Metric types » Memory Distribution » Reference","id":"513","title":"Reference"},"514":{"body":"Please, insert your custom data below as a JSON array. Data options Generate normally distributed data Generate log-normally distributed data Generate uniformly distributed data Use custom data Properties Histogram type Functional Log base Buckets per magnitude Maximum value Memory unit (memory_unit) Byte Kilobyte Megabyte Gigabyte Note The data provided , is assumed to be in the configured memory unit. The data recorded , on the other hand, is always in bytes . This means that, if the configured memory unit is not byte, the data will be transformed before being recorded. Notice this, by using the select field above to change the memory unit and see the mean of the data recorded changing. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Memory Distribution » Simulator","id":"514","title":"Simulator"},"515":{"body":"Labeled memory distributions are used to record different related distributions of memory sizes. See the Memory Distribution reference for details on bucket distribution, and a histogram simulator.","breadcrumbs":"Metric types » Labeled Memory Distributions » Labeled Memory Distributions","id":"515","title":"Labeled Memory Distributions"},"516":{"body":"","breadcrumbs":"Metric types » Labeled Memory Distributions » Recording API","id":"516","title":"Recording API"},"517":{"body":"Accumulate the provided sample in the metric. use glean_metrics::network; network::http_upload_bandwidth .get(http_version) .accumulate(self.request_size * 8.0 / 1048576.0 / send_time.as_secs()); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::network::http_upload_bandwidth .Get(httpVersion) .Accumulate(this.mRequestSize * 8.0 / 1048576.0 / sendTime.AsSeconds()); JavaScript Glean.network.httpUploadBandwidth[httpVersion] .accumulate(requestSize * 8.0 / 1048576.0 / sendTime.asSeconds()) Recorded Errors invalid_value : if recording a memory size that is negative or over 1 TB. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Memory Distributions » accumulate","id":"517","title":"accumulate"},"518":{"body":"","breadcrumbs":"Metric types » Labeled Memory Distributions » Testing API","id":"518","title":"Testing API"},"519":{"body":"Gets the recorded value for a given label in a labeled memory distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::network; // Assert the sum of all HTTP2 samples is 42MBps.\nassert_eq!(42, network::http_upload_bandwidth.get(\"h2\").test_get_value(None).unwrap().sum); // Assert there's only the one sample\nassert_eq!(1, network::http_upload_badwidth.get(\"h2\").test_get_value(None).unwrap().count); // Buckets are indexed by their lower bound.\nassert_eq!(1, network::http_upload_bandwidth.get(\"h2\").test_get_value(None).unwrap().values[41]); C++ #include \"mozilla/glean/GleanMetrics.h\" const data = mozilla::glean::network::http_upload_bandwidth .Get(\"h2\") .TestGetValue().value().unwrap()\nASSERT_EQ(42UL, data.sum); JavaScript const data = Glean.network.httpUploadBandwidth[\"h2\"].testGetValue();\nAssert.equal(42, data.sum);","breadcrumbs":"Metric types » Labeled Memory Distributions » testGetValue","id":"519","title":"testGetValue"},"52":{"body":"This implementation of telemetry collection in server environments has some differences compared to using Glean SDK in client applications and Glean.js in the frontend of web applications. Primarily, in server environments the focus is exclusively on event-based metrics, diverging from the broader range of metric types supported by Glean. Additionally, there is no need to incorporate Glean SDK as a dependency in server applications. Instead, the Glean parser is used to generate native code for logging events.","breadcrumbs":"Adding Glean to your project » Server » Differences from using the Glean SDK","id":"52","title":"Differences from using the Glean SDK"},"520":{"body":"Gets the number of errors recorded for a given labeled custom distribution metric in total. use glean::ErrorType;\nuse glean_metrics::network; // Assert there were no negative or overlarge values instrumented.\nassert_eq!( 0, network::http_upload_bandwidth.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Memory Distributions » testGetNumRecordedErrors","id":"520","title":"testGetNumRecordedErrors"},"521":{"body":"Example labeled memory distribution metric definition: network: http_upload_bandwidth: type: labeled_memory_distribution description: > The upload bandwidth for requests larger than 10MB, per HTTP protocol version. memory_unit: megabyte bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 175 labels: - h3 - h2 - http/1.0 - http/1.1","breadcrumbs":"Metric types » Labeled Memory Distributions » Metric parameters","id":"521","title":"Metric parameters"},"522":{"body":"memory_unit Memory distributions have an optional memory_unit parameter, which specifies the unit the incoming memory size values are recorded in. The allowed values for memory_unit are: byte (default) kilobyte (= 2^10 = 1,024 bytes) megabyte (= 2^20 = 1,048,576 bytes) gigabyte (= 2^30 = 1,073,741,824 bytes) labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Memory Distributions » Extra metric parameters","id":"522","title":"Extra metric parameters"},"523":{"body":"What is the distribution of upload bandwidth rates per HTTP protocol version? What is the distribution of bytes received per DOM network API?","breadcrumbs":"Metric types » Labeled Memory Distributions » Data questions","id":"523","title":"Data questions"},"524":{"body":"The maximum memory size that can be recorded is 1 Terabyte (240 bytes). Larger sizes will be truncated to 1 Terabyte. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Memory Distributions » Limits","id":"524","title":"Limits"},"525":{"body":"Rust API docs: LabeledMetric , MemoryDistributionMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Memory Distributions » Reference","id":"525","title":"Reference"},"526":{"body":"UUIDs metrics are used to record values that uniquely identify some entity, such as a client id.","breadcrumbs":"Metric types » UUID » UUID","id":"526","title":"UUID"},"527":{"body":"","breadcrumbs":"Metric types » UUID » Recording API","id":"527","title":"Recording API"},"528":{"body":"Sets a UUID metric to a randomly generated UUID value (UUID v4) . import org.mozilla.yourApplication.GleanMetrics.User // Generate a new UUID and record it\nUser.clientId.generateAndSet() import org.mozilla.yourApplication.GleanMetrics.User; // Generate a new UUID and record it\nUser.INSTANCE.clientId().generateAndSet(); // Generate a new UUID and record it\nUser.clientId.generateAndSet() from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Generate a new UUID and record it\nmetrics.user.client_id.generate_and_set() use uuid::Uuid;\nuse glean_metrics::user; // Generate a new UUID and record it\nuser::client_id.generate_and_set(); import * as user from \"./path/to/generated/files/user.js\"; user.clientId.generateAndSet(); C++ #include \"mozilla/glean/GleanMetrics.h\" // Generate a new UUID and record it.\nmozilla::glean::user::client_id.GenerateAndSet(); JavaScript // Generate a new UUID and record it.\nGlean.user.clientId.generateAndSet();","breadcrumbs":"Metric types » UUID » generateAndSet","id":"528","title":"generateAndSet"},"529":{"body":"Sets a UUID metric to a specific value. Accepts any UUID version. import org.mozilla.yourApplication.GleanMetrics.User // Set a UUID explicitly\nUser.clientId.set(UUID.randomUUID()) // Set a UUID explicitly import org.mozilla.yourApplication.GleanMetrics.User; // Set a UUID explicitly\nUser.INSTANCE.clientId().set(UUID.randomUUID()); User.clientId.set(UUID()) // Set a UUID explicitly import uuid from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Set a UUID explicitly\nmetrics.user.client_id.set(uuid.uuid4()) use uuid::Uuid;\nuse glean_metrics::user; // Set a UUID explicitly\nuser::client_id.set(Uuid::new_v4()); import * as user from \"./path/to/generated/files/user.js\"; const uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\nuser.clientId.set(uuid); C++ #include \"mozilla/glean/GleanMetrics.h\" // Set a specific value.\nnsCString kUuid(\"decafdec-afde-cafd-ecaf-decafdecafde\");\nmozilla::glean::user::client_id.Set(kUuid); JavaScript // Set a specific value.\nconst uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\nGlean.user.clientId.set(uuid); Recorded errors invalid_value : if the value is set to a string that is not a UUID (only applies for dynamically-typed languages, such as Python). invalid_type : if a non-string or non-UUID value is given.","breadcrumbs":"Metric types » UUID » set","id":"529","title":"set"},"53":{"body":"This method is intended for collecting user-level behavioral events in server environments. It is not suitable for collecting system-level metrics or performance data, which should be collected using cloud monitoring tools.","breadcrumbs":"Adding Glean to your project » Server » When to use server-side collection","id":"53","title":"When to use server-side collection"},"530":{"body":"","breadcrumbs":"Metric types » UUID » Testing API","id":"530","title":"Testing API"},"531":{"body":"Gets the recorded value for a given UUID metric. Returns a UUID if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.User // Was it the expected value?\nassertEquals(uuid, User.clientId.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.User; // Was it the expected value?\nassertEquals(uuid, User.INSTANCE.clientId().testGetValue()); // Was it the expected value?\nXCTAssertEqual(uuid, try User.clientId.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Was it the expected value?\nassert uuid == metrics.user.client_id.test_get_value() use uuid::Uuid;\nuse glean_metrics::user; let u = Uuid::new_v4();\n// Does it have the expected value?\nassert_eq!(u, user::client_id.test_get_value(None).unwrap()); import * as user from \"./path/to/generated/files/user.js\"; const uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\nassert(uuid, await user.clientId.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" // Is it clear of errors?\nASSERT_TRUE(mozilla::glean::user::client_id.TestGetValue().isOk());\n// Does it have an expected values?\nASSERT_STREQ(kUuid.get(), mozilla::glean::user::client_id.TestGetValue().unwrap().value().get()); JavaScript const uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\n// testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(Glean.user.clientId.testGetValue(), uuid);","breadcrumbs":"Metric types » UUID » testGetValue","id":"531","title":"testGetValue"},"532":{"body":"Gets the number of errors recorded for a given UUID metric. import org.mozilla.yourApplication.GleanMetrics.User assertEquals( 0, User.clientId.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.User; assertEquals( 0, User.INSTANCE.clientId().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, User.clientId.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") from glean.testing import ErrorType assert 0 == metrics.user.client_id.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::user; assert_eq!( 0, user::client_id.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); import * as user from \"./path/to/generated/files/user.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Was the string truncated, and an error reported?\nassert.strictEqual( 0, await user.clientId.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » UUID » testGetNumRecordedErrors","id":"532","title":"testGetNumRecordedErrors"},"533":{"body":"You first need to add an entry for it to the metrics.yaml file: user: client_id: type: uuid description: > A unique identifier for the client's profile bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » UUID » Metric Parameters","id":"533","title":"Metric Parameters"},"534":{"body":"N/A","breadcrumbs":"Metric types » UUID » Extra metric parameters","id":"534","title":"Extra metric parameters"},"535":{"body":"A unique identifier for the client.","breadcrumbs":"Metric types » UUID » Data questions","id":"535","title":"Data questions"},"536":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » UUID » Reference","id":"536","title":"Reference"},"537":{"body":"URL metrics allow recording URL-like [1] strings. This metric type does not support recording data URLs - please get in contact with the Glean team if you're missing a type.","breadcrumbs":"Metric types » URL » URL","id":"537","title":"URL"},"538":{"body":"Be careful using arbitrary URLs and make sure they can't accidentally contain identifying data (like directory paths, user input or credentials). The Glean SDKs specifically do not validate if a URL is fully spec compliant, all the validations performed are the ones listed in the \"Recorded errors\" section of this page.","breadcrumbs":"Metric types » URL » Important","id":"538","title":"Important"},"539":{"body":"","breadcrumbs":"Metric types » URL » Recording API","id":"539","title":"Recording API"},"54":{"body":"Integrate glean_parser into your build system. Follow instructions for other SDK-enabled platforms, e.g. JavaScript . Use a server outputter to generate logging code. glean_parser currently supports Go , JavaScript/Typescript , Python , and Ruby . Define your metrics in metrics.yaml Request a data review for the collected data Add your product to probe-scraper","breadcrumbs":"Adding Glean to your project » Server » How to add Glean server side collection to your service","id":"54","title":"How to add Glean server side collection to your service"},"540":{"body":"Set a URL metric to a specific string value. import org.mozilla.yourApplication.GleanMetrics.Search Search.template.set(\"https://mysearchengine.com/\") import org.mozilla.yourApplication.GleanMetrics.Search; Search.INSTANCE.template().set(\"https://mysearchengine.com/\"); Search.template.set(\"https://mysearchengine.com\") // Swift's URL type is supported\nlet url = URL(string: \"https://mysearchengine.com\")!\nSearch.template.set(url: url) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.search.template.set(\"https://mysearchengine.com/\") use glean_metrics::search; search::template.set(\"https://mysearchengine.com/\"); import * as search from \"./path/to/generated/files/search.js\"; search.template.set(\"https://mysearchengine.com/\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search::template.Set(\"https://mysearchengine.com/\"_ns); JavaScript Glean.search.template.set(\"https://mysearchengine.com/\");","breadcrumbs":"Metric types » URL » set","id":"540","title":"set"},"541":{"body":"Set a URL metric to a specific URL value. import * as search from \"./path/to/generated/files/search.js\"; search.template.setUrl(new URL(\"https://mysearchengine.com/\")); Recorded errors invalid_value : If the URL passed does not start with a scheme followed by a : character. If the URL passed uses the data: protocol. invalid_overflow : if the URL passed is longer than 8192 characters (before encoding). invalid_type : if a non-string value is given. Limits Fixed maximum URL length: 8192. Longer URLs are truncated and recorded along with an invalid_overflow error.","breadcrumbs":"Metric types » URL » setUrl","id":"541","title":"setUrl"},"542":{"body":"","breadcrumbs":"Metric types » URL » Testing API","id":"542","title":"Testing API"},"543":{"body":"Gets the recorded value for a given URL metric as a (unencoded) string. Returns a URL if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(\"https://mysearchengine.com/\", Search.template.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(\"https://mysearchengine.com/\", Search.INSTANCE.template().testGetValue()); XCTAssertEqual(\"https://mysearchengine.com/\", try Search.template.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert \"https://mysearchengine.com/\" == metrics.search.template.test_get_value() use glean_metrics::search; assert_eq!(\"https://mysearchengine.com/\", search::template.test_get_value(None).unwrap()); import * as search from \"./path/to/generated/files/search.js\"; assert.strictEqual(\"https://mysearchengine.com/\", await search.template.testGetValue());","breadcrumbs":"Metric types » URL » testGetValue","id":"543","title":"testGetValue"},"544":{"body":"Gets the number of errors recorded for a given counter metric. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(0, Search.template.testGetNumRecordedErrors(ErrorType.INVALID_VALUE))\nassertEquals(0, Search.template.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)) import org.mozilla.yourApplication.GleanMetrics.Search; assertEquals( 0, Search.INSTANCE.template().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); assertEquals( 0, Search.INSTANCE.template().testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n); XCTAssertEqual(0, Search.template.testGetNumRecordedErrors(.invalidValue))\nXCTAssertEqual(0, Search.template.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.search.template.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) assert 0 == metrics.search.template.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse glean_metrics::search; assert_eq!( 0, search::template.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); assert_eq!( 0, search::template.test_get_num_recorded_errors( ErrorType::InvalidOverflow )\n); import * as search from \"./path/to/generated/files/search.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await search.template.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);\nassert.strictEqual( 0, await search.template.testGetNumRecordedErrors(ErrorType.InvalidOverflow)\n);","breadcrumbs":"Metric types » URL » testGetNumRecordedErrors","id":"544","title":"testGetNumRecordedErrors"},"545":{"body":"Example URL metric definition: search: template: type: url description: > The base URL used to build the search query for the search engine. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 data_sensitivity: - web_activity For a full reference on metrics parameters common to all metric types, refer to the metrics YAML format reference page.","breadcrumbs":"Metric types » URL » Metric parameters","id":"545","title":"Metric parameters"},"546":{"body":"URL metrics can only either be on categories 3 or 4, namely \"Stored Content & Communications\" or \"Highly sensitive data\" .","breadcrumbs":"Metric types » URL » Note on data_sensitivity of URL metrics","id":"546","title":"Note on data_sensitivity of URL metrics"},"547":{"body":"N/A","breadcrumbs":"Metric types » URL » Extra metric parameters","id":"547","title":"Extra metric parameters"},"548":{"body":"What is the base URL used to build the search query for the search engine? Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » URL » Data questions","id":"548","title":"Data questions"},"549":{"body":"Datetimes are used to record an absolute date and time, for example the date and time that the application was first run. The device's offset from UTC is recorded and sent with the Datetime value in the ping. To record a single elapsed time, see Timespan . To measure the distribution of multiple timespans, see Timing Distributions .","breadcrumbs":"Metric types » Datetime » Datetime","id":"549","title":"Datetime"},"55":{"body":"Follow the standard Glean SDK guide for adding metrics to metrics.yaml file.","breadcrumbs":"Adding Glean to your project » Server » How to add a new event to your server side collection","id":"55","title":"How to add a new event to your server side collection"},"550":{"body":"","breadcrumbs":"Metric types » Datetime » Recording API","id":"550","title":"Recording API"},"551":{"body":"Sets a datetime metric to a specific date value. Defaults to now. import org.mozilla.yourApplication.GleanMetrics.Install Install.firstRun.set() // Records \"now\"\nInstall.firstRun.set(Date(2019, 3, 25)) // Records a custom datetime import org.mozilla.yourApplication.GleanMetrics.Install; Install.INSTANCE.firstRun().set(); // Records \"now\"\nInstall.INSTANCE.firstRun().set(new Date(2019, 3, 25)); // Records a custom datetime Install.firstRun.set() // Records \"now\"\nlet dateComponents = DateComponents( calendar: Calendar.current, year: 2004, month: 12, day: 9, hour: 8, minute: 3, second: 29 )\nInstall.firstRun.set(dateComponents.date!) // Records a custom datetime import datetime from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.install.first_run.set() # Records \"now\"\nmetrics.install.first_run.set(datetime.datetime(2019, 3, 25)) # Records a custom datetime use glean_metrics::install; use chrono::{FixedOffset, TimeZone}; install::first_run.set(None); // Records \"now\"\nlet custom_date = FixedOffset::east(0).ymd(2019, 3, 25).and_hms(0, 0, 0);\ninstall::first_run.set(Some(custom_date)); // Records a custom datetime import * as install from \"./path/to/generated/files/install.js\"; install.firstRun.set(); // Records \"now\"\ninstall.firstRun.set(new Date(\"March 25, 2019 00:00:00\")); // Records a custom datetime C++ #include \"mozilla/glean/GleanMetrics.h\" PRExplodedTime date = {0, 35, 10, 12, 6, 10, 2020, 0, 0, {5 * 60 * 60, 0}};\nmozilla::glean::install::first_run.Set(&date); JavaScript const value = new Date(\"2020-06-11T12:00:00\");\nGlean.install.firstRun.set(value.getTime() * 1000); Recorded errors invalid_value : setting the date time to an invalid value. invalid_type : if a non-Date object is given.","breadcrumbs":"Metric types » Datetime » set","id":"551","title":"set"},"552":{"body":"","breadcrumbs":"Metric types » Datetime » Testing API","id":"552","title":"Testing API"},"553":{"body":"Get the recorded value for a given datetime metric as a language-specific Datetime object. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Install assertEquals(Install.firstRun.testGetValue(), Date(2019, 3, 25)) import org.mozilla.yourApplication.GleanMetrics.Install; assertEquals(Install.INSTANCE.firstRun().testGetValue(), Date(2019, 3, 25)); let expectedDate = DateComponents( calendar: Calendar.current, year: 2004, month: 12, day: 9, hour: 8, minute: 3, second: 29 )\nXCTAssertEqual(expectedDate.date!, try Install.firstRun.testGetValue()) import datetime from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") value = datetime.datetime(1993, 2, 23, 5, 43, tzinfo=datetime.timezone.utc)\nassert value == metrics.install.first_run.test_get_value() use glean_metrics::install; use chrono::{FixedOffset, TimeZone}; let expected_date = FixedOffset::east(0).ymd(2019, 3, 25).and_hms(0, 0, 0);\nassert_eq!(expected_date, metrics.install.first_run.test_get_value(None)); import * as install from \"./path/to/generated/files/install.js\"; const expectedDate = new Date(\"March 25, 2019 00:00:00\");\nassert.deepStrictEqual(expectedDate, await install.firstRun.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" PRExplodedTime date{0, 35, 10, 12, 6, 10, 2020, 0, 0, {5 * 60 * 60, 0}};\nASSERT_TRUE(mozilla::glean::install::first_run.TestGetValue().isOk());\nASSERT_EQ( 0, std::memcmp( &date, mozilla::glean::install::first_run.TestGetValue().unwrap().ptr(), sizeof(date))); JavaScript const value = new Date(\"2020-06-11T12:00:00\");\n// testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(Glean.install.firstRun.testGetValue().getTime(), value.getTime());","breadcrumbs":"Metric types » Datetime » testGetValue","id":"553","title":"testGetValue"},"554":{"body":"Get the recorded value for a given datetime metric as an ISO Date String . Returns a ISO 8601 date string if data is stored. Returns a language-specific empty/null value if no data is stored. The returned string will be truncated to the metric's time unit and will include the timezone offset from UTC, e.g. 2019-03-25-05:00 (in this example, time_unit is day). import org.mozilla.yourApplication.GleanMetrics.Install assertEquals(\"2019-03-25-05:00\", Install.firstRun.testGetValueAsString()) import org.mozilla.yourApplication.GleanMetrics.Install; assertEquals(\"2019-03-25-05:00\", Install.INSTANCE.firstRun().testGetValueAsString()); assertEquals(\"2019-03-25-05:00\", try Install.firstRun.testGetValueAsString()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert \"2019-03-25-05:00\" == metrics.install.first_run.test_get_value_as_str() import * as install from \"./path/to/generated/files/install.js\"; assert.strictEqual(\"2019-03-25-05:00\", await install.firstRun.testGetValueAsString());","breadcrumbs":"Metric types » Datetime » testGetValueAsString","id":"554","title":"testGetValueAsString"},"555":{"body":"Get number of errors recorded for a given datetime metric. import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Install assertEquals(0, Install.firstRun.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)) import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Install; assertEquals( 0, Install.INSTANCE.firstRun().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Install.firstRun.getNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.install.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::install; assert_eq!( 0, install::first_run.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); import * as install from \"./path/to/generated/files/install.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await install.firstRun.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Datetime » testGetNumRecordedErrors","id":"555","title":"testGetNumRecordedErrors"},"556":{"body":"Example datetime metric definition: install: first_run: type: datetime time_unit: day description: > Records the date when the application was first run bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Datetime » Metric parameters","id":"556","title":"Metric parameters"},"557":{"body":"time_unit Datetimes have an optional time_unit parameter to specify the smallest unit of resolution that the metric will record. The allowed values for time_unit are: nanosecond microsecond millisecond (default) second minute hour day Carefully consider the required resolution for recording your metric, and choose the coarsest resolution possible.","breadcrumbs":"Metric types » Datetime » Extra metric parameters","id":"557","title":"Extra metric parameters"},"558":{"body":"When did the user first run the application?","breadcrumbs":"Metric types » Datetime » Data questions","id":"558","title":"Data questions"},"559":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Datetime » Reference","id":"559","title":"Reference"},"56":{"body":"For more technical details on how ingestion works, see the Confluence page . Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Server » Technical details - ingestion","id":"56","title":"Technical details - ingestion"},"560":{"body":"Events allow recording of e.g. individual occurrences of user actions, say every time a view was open and from where. Each event contains the following data: A timestamp, in milliseconds. The first event in any ping always has a value of 0, and subsequent event timestamps are relative to it. If sending events in custom pings, see note on event timestamp calculation throughout restarts. The name of the event. A set of key-value pairs, where the keys are predefined in the extra_keys metric parameter. Values are one of string, boolean, quantity, and are converted to string for transmission.","breadcrumbs":"Metric types » Event » Events","id":"560","title":"Events"},"561":{"body":"In the Glean JavaScript SDK (Glean.js), since version 2.0.2, events are submitted immediately by default. In all the other SDKs, events are batched and sent together by default in the events ping .","breadcrumbs":"Metric types » Event » Immediate submission or batching?","id":"561","title":"Immediate submission or batching?"},"562":{"body":"","breadcrumbs":"Metric types » Event » Recording API","id":"562","title":"Recording API"},"563":{"body":"Record a new event, with optional typed extra values. See Extra metrics parameters . Note that an enum has been generated for handling the extra_keys: it has the same name as the event metric, with Extra added. import org.mozilla.yourApplication.GleanMetrics.Views Views.loginOpened.record(Views.loginOpenedExtra(sourceOfLogin = \"toolbar\")) Note that an enum has been generated for handling the extra_keys: it has the same name as the event metric, with Extra added. Views.loginOpened.record(LoginOpenedExtra(sourceOfLogin: \"toolbar\")) Note that a class has been generated for handling the extra_keys: it has the same name as the event metric, with Extra added. from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.views.login_opened.record(metrics.views.LoginOpenedExtra(sourceOfLogin=\"toolbar\")) Note that an enum has been generated for handling the extra_keys: it has the same name as the event metric, with Keys added. use metrics::views::{self, LoginOpenedExtra}; let extra = LoginOpenedExtra { source_of_login: Some(\"toolbar\".to_string()) };\nviews::login_opened.record(extra); import * as views from \"./path/to/generated/files/views.js\"; views.loginOpened.record({ sourceOfLogin: \"toolbar\" }); C++ #include \"mozilla/glean/GleanMetrics.h\" using mozilla::glean::views::LoginOpenedExtra;\nLoginOpenedExtra extra = { .source_of_login = Some(\"value\"_ns) };\nmozilla::glean::views::login_opened.Record(std::move(extra)) JavaScript const extra = { source_of_login: \"toolbar\" }; // Extra Keys are *NOT* conjugated to camelCase\nGlean.views.loginOpened.record(extra); Recorded errors invalid_overflow : if any of the values in the extras object are greater than 500 bytes in length. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_value : if there is an attempt to record to an extra key which is not allowed i.e. an extra key that has not been listed in the YAML registry file. invalid_type : if the extra value given is not the expected type.","breadcrumbs":"Metric types » Event » record(object)","id":"563","title":"record(object)"},"564":{"body":"","breadcrumbs":"Metric types » Event » Testing API","id":"564","title":"Testing API"},"565":{"body":"Get the list of recorded events. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. Note : By default as of v2.0.2 Glean.js sets maxEvents=1 by default. If you try and call testGetValue() for a recorded event with maxEvents=1, snapshot will not include your event. For your testing instance, you can set maxEvents to a value greater than 1 to test recording events with testGetValue(). import org.mozilla.yourApplication.GleanMetrics.Views val snapshot = Views.loginOpened.testGetValue()\nassertEquals(2, snapshot.size)\nval first = snapshot.single()\nassertEquals(\"login_opened\", first.name)\nassertEquals(\"toolbar\", first.extra?.getValue(\"source_of_login\")) import org.mozilla.yourApplication.GleanMetrics.Views assertEquals(Views.INSTANCE.loginOpened().testGetValue().size) val snapshot = try! Views.loginOpened.testGetValue()\nXCTAssertEqual(2, snapshot.size)\nval first = snapshot[0]\nXCTAssertEqual(\"login_opened\", first.name)\nXCTAssertEqual(\"toolbar\", first.extra?[\"source_of_login\"]) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") snapshot = metrics.views.login_opened.test_get_value()\nassert 2 == len(snapshot)\nfirst = snapshot[0]\nassert \"login_opened\" == first.name\nassert \"toolbar\" == first.extra[\"source_of_login\"] use metrics::views; var snapshot = views::login_opened.test_get_value(None).unwrap();\nassert_eq!(2, snapshot.len());\nlet first = &snapshot[0];\nassert_eq!(\"login_opened\", first.name); let extra = event.extra.unwrap();\nassert_eq!(Some(&\"toolbar\".to_string()), extra.get(\"source_of_login\")); import * as views from \"./path/to/generated/files/views.js\"; const snapshot = await views.loginOpened.testGetValue();\nassert.strictEqual(2, snapshot.length);\nconst first = snapshot[0];\nassert.strictEqual(\"login_opened\", first.name);\nassert.strictEqual(\"toolbar\", first.extra.source_of_login); C++ #include \"mozilla/glean/GleanMetrics.h\" auto optEvents = mozilla::glean::views::login_opened.TestGetValue();\nauto events = optEvents.extract();\nASSERT_EQ(2UL, events.Length());\nASSERT_STREQ(\"login_opened\", events[0].mName.get()); // Note that the list of extra key/value pairs can be in any order.\nASSERT_EQ(1UL, events[0].mExtra.Length());\nauto extra = events[0].mExtra[0]; auto key = std::get<0>(extra);\nauto value = std::get<1>(extra); ASSERT_STREQ(\"source_of_login\"_ns, key.get())\nASSERT_STREQ(\"toolbar\", value.get());\n} JavaScript var events = Glean.views.loginOpened.testGetValue();\nAssert.equal(2, events.length);\nAssert.equal(\"login_opened\", events[0].name); Assert.equal(\"toolbar\", events[0].extra.source_of_login);","breadcrumbs":"Metric types » Event » testGetValue","id":"565","title":"testGetValue"},"566":{"body":"Get the number of errors recorded for a given event metric. import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Views assertEquals( 0, Views.loginOpened.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Views assertEquals( 0, Views.INSTANCE.loginOpened().testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) XCTAssertEqual(0, Views.loginOpened.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nfrom glean.testing import ErrorType\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.views.login_opened.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse metrics::views; assert_eq!( 0, views::login_opened.test_get_num_recorded_errors( ErrorType::InvalidOverflow, None )\n); import * as views from \"./path/to/generated/files/views.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await views.loginOpened.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Event » testGetNumRecordedErrors","id":"566","title":"testGetNumRecordedErrors"},"567":{"body":"Example event metric definition: views: login_opened: type: event description: | Recorded when the login view is opened. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 extra_keys: source_of_login: description: The source from which the login view was opened, e.g. \"toolbar\". type: string For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page. Events require lifetime: ping. Recorded events are always sent in their respective pings and then cleared. They cannot be persisted longer. The glean_parser will reject any other lifetime.","breadcrumbs":"Metric types » Event » Metric parameters","id":"567","title":"Metric parameters"},"568":{"body":"extra_keys The acceptable keys on the \"extra\" object sent with events. A maximum of 50 extra keys is allowed. Each extra key contains additional metadata: description: Required. A description of the key. type: The type of value this extra key can hold. One of string, boolean, quantity. Defaults to string. Recorded value is converted to string for transmission. Note : If not specified only the legacy API on record is available. Extras or string metrics? When designing your metrics, define properties that are slow-changing and common across all events in a given ping as string metrics. Properties specific to a single event or a subset of events should be defined as event extras.","breadcrumbs":"Metric types » Event » Extra metric parameters","id":"568","title":"Extra metric parameters"},"569":{"body":"When and from where was the login view opened?","breadcrumbs":"Metric types » Event » Data questions","id":"569","title":"Data questions"},"57":{"body":"This page provides a step-by-step guide on how to enable data from your product to be ingested by the data platform. This is just one of the required steps for integrating Glean successfully into a product. Check the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Enabling data to be ingested by the data platform","id":"57","title":"Enabling data to be ingested by the data platform"},"570":{"body":"In Glean.js the default value for maxEvents is 1. In all other SDKs it is 500. Once the maxEvents threshold is reached on the client an \"events\" ping is immediately sent. The extra_keys allows for a maximum of 50 keys. The keys in the extra_keys list must be written using printable ASCII characters, with a maximum length of 40 bytes, when encoded as UTF-8. The values in the extras object have a maximum length of 500 bytes when serialized and encoded as UTF-8. Longer values are truncated, and an invalid_overflow error is recorded.","breadcrumbs":"Metric types » Event » Limits","id":"570","title":"Limits"},"571":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Event » Reference","id":"571","title":"Reference"},"572":{"body":"Custom distributions are used to record the distribution of arbitrary values. It should be used only when direct control over how the histogram buckets are computed is required. Otherwise, look at the standard distribution metric types: Timing Distributions Memory Distributions Note : Custom distributions are currently not universally supported. See below for available APIs.","breadcrumbs":"Metric types » Custom Distribution » Custom Distribution","id":"572","title":"Custom Distribution"},"573":{"body":"","breadcrumbs":"Metric types » Custom Distribution » Recording API","id":"573","title":"Recording API"},"574":{"body":"Accumulate the provided samples in the metric. import org.mozilla.yourApplication.GleanMetrics.Graphics Graphics.checkerboardPeak.accumulateSamples([23]) import org.mozilla.yourApplication.GleanMetrics.Graphics; Graphics.INSTANCE.checkerboardPeak().accumulateSamples(listOf(23)); use glean_metrics::graphics; graphics::checkerboard_peak.accumulate_samples_signed(vec![23]); import * as graphics from \"./path/to/generated/files/graphics.js\"; graphics.checkerboardPeak.accumulateSamples([23]); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::graphics::checkerboard_peak.AccumulateSamples({ 23 }); JavaScript Glean.graphics.checkerboardPeak.accumulateSamples([23]);","breadcrumbs":"Metric types » Custom Distribution » accumulateSamples","id":"574","title":"accumulateSamples"},"575":{"body":"Accumulates one sample and appends it to the metric. import org.mozilla.yourApplication.GleanMetrics.Graphics Graphics.checkerboardPeak.accumulateSingleSample(23) import org.mozilla.yourApplication.GleanMetrics.Graphics; Graphics.INSTANCE.checkerboardPeak().accumulateSingleSample(23); use glean_metrics::graphics; graphics::checkerboard_peak.accumulate_single_sample(23); import * as graphics from \"./path/to/generated/files/graphics.js\"; graphics.checkerboardPeak.accumulateSingleSample(23); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::graphics::checkerboard_peak.AccumulateSingleSample(23); JavaScript Glean.graphics.checkerboardPeak.accumulateSingleSample(23); Limits The maximum value of bucket_count is 100. Only non-negative values may be recorded (>= 0). Recorded errors invalid_value: If recording a negative value.","breadcrumbs":"Metric types » Custom Distribution » accumulateSingleSample","id":"575","title":"accumulateSingleSample"},"576":{"body":"","breadcrumbs":"Metric types » Custom Distribution » Testing API","id":"576","title":"Testing API"},"577":{"body":"Gets the recorded value for a given custom distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Graphics // Get snapshot\nval snapshot = Graphics.checkerboardPeak.testGetValue() // Does the sum have the expected value?\nassertEquals(23, snapshot.sum) // Does the count have the expected value?\nassertEquals(1L, snapshot.count) // Buckets are indexed by their lower bound.\nassertEquals(1L, snapshot.values[19]) import org.mozilla.yourApplication.GleanMetrics.Graphics; // Get snapshot\nval snapshot = Graphics.INSTANCE.checkerboardPeak().testGetValue(); // Does the sum have the expected value?\nassertEquals(23, snapshot.sum); // Does the count have the expected value?\nassertEquals(1L, snapshot.count); use glean_metrics::graphics; // Does the sum have the expected value?\nassert_eq!(23, graphics::checkerboard_peak.test_get_value(None).unwrap().sum); // Does the count have the expected value?\nassert_eq!(1, graphics::checkerboard_peak.test_get_value(None).unwrap().count); // Buckets are indexed by their lower bound.\nassert_eq!(1, snapshot.values[19]) import * as graphics from \"./path/to/generated/files/graphics.js\"; // Get snapshot\nconst snapshot = await graphics.checkerboardPeak.testGetValue(); // Does the sum have the expected value?\nassert.equal(23, snapshot.sum); // Buckets are indexed by their lower bound.\nassert.equal(1, snapshot.values[19]); C++ #include \"mozilla/glean/GleanMetrics.h\" auto data = mozilla::glean::graphics::checkerboard_peak.TestGetValue().value();\nASSERT_EQ(23UL, data.sum); JavaScript let data = Glean.graphics.checkerboardPeak.testGetValue();\nAssert.equal(23, data.sum);","breadcrumbs":"Metric types » Custom Distribution » testGetValue","id":"577","title":"testGetValue"},"578":{"body":"Gets the number of errors recorded for a the custom distribution metric. import org.mozilla.yourApplication.GleanMetrics.Graphics /// Did the metric receive a negative value?\nassertEquals( 0, Graphics.checkerboardPeak.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Graphics; /// Did the metric receive a negative value?\nassertEquals( 0, Graphics.INSTANCE.checkerboardPeak().testGetNumRecordedErrors( ErrorType.INVALID_VALUE )\n) use glean::ErrorType;\nuse glean_metrics::graphics; // Were any of the values negative and thus caused an error to be recorded?\nassert_eq!( 0, graphics::checkerboard_peak.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n); import * as graphics from \"./path/to/generated/files/graphics.js\";\nimport { ErrorType } from \"@mozilla/glean/\"; // Did the metric receive a negative value?\nassert.equal( 0, graphics.checkerboardPeak.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Custom Distribution » testGetNumRecordedErrors","id":"578","title":"testGetNumRecordedErrors"},"579":{"body":"Example custom distribution metric definition: graphics: checkerboard_peak: type: custom_distribution description: > Peak number of CSS pixels checkerboarded during a checkerboard event. range_min: 1 range_max: 66355200 bucket_count: 50 histogram_type: exponential unit: pixels gecko_datapoint: CHECKERBOARD_PEAK bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01","breadcrumbs":"Metric types » Custom Distribution » Metric Parameters","id":"579","title":"Metric Parameters"},"58":{"body":"GitHub Workflows","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Requirements","id":"58","title":"Requirements"},"580":{"body":"Custom distributions have the following required parameters: range_min: (Integer) The minimum value of the first bucket range_max: (Integer) The minimum value of the last bucket bucket_count: (Integer) The number of buckets histogram_type: linear: The buckets are evenly spaced exponential: The buckets follow a natural logarithmic distribution Note Check out how these bucketing algorithms would behave on the Custom distribution simulator . Custom distributions have the following optional parameters: unit: (String) The unit of the values in the metric. For documentation purposes only -- does not affect data collection. gecko_datapoint: (String) This is a Gecko-specific property. It is the name of the Gecko metric to accumulate the data from, when using a Glean SDK in a product using GeckoView.","breadcrumbs":"Metric types » Custom Distribution » Extra metric parameters","id":"580","title":"Extra metric parameters"},"581":{"body":"Rust API docs","breadcrumbs":"Metric types » Custom Distribution » Reference","id":"581","title":"Reference"},"582":{"body":"Please, insert your custom data below as a JSON array. Data options Generate normally distributed data Generate log-normally distributed data Generate uniformly distributed data Use custom data Properties Histogram type (histogram_type) Exponential Linear Range minimum (range_min) Range maximum (range_max) Bucket count (bucket_count) Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Custom Distribution » Simulator","id":"582","title":"Simulator"},"583":{"body":"Labeled custom distributions are used to record different related distributions of arbitrary values. If your data is timing or memory based and you don't need direct control over histogram buckets, consider instead: Labeled Timing Distributions Labeled Memory Distributions","breadcrumbs":"Metric types » Labeled Custom Distributions » Labeled Custom Distributions","id":"583","title":"Labeled Custom Distributions"},"584":{"body":"","breadcrumbs":"Metric types » Labeled Custom Distributions » Recording API","id":"584","title":"Recording API"},"585":{"body":"Accumulate the provided samples in the metric. use glean_metrics::network; network::http3_late_ack_ratio .get(\"ack\") .accumulateSamples(vec![(stats.late_ack * 10000) / stats.packets_tx]);\nnetwork::http3_late_ack_ratio .get(\"pto\") .accumulateSamples(vec![(stats.pto_ack * 10000) / stats.packets_tx]); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::network::http3_late_ack_ratio .Get(\"ack\") .AccumulateSamples({(stats.late_ack * 10000) / stats.packets_tx});\nmozilla::glean::network::http3_late_ack_ratio .Get(\"pto\") .AccumulateSamples({(stats.pto_ack * 10000) / stats.packets_tx}); JavaScript Glean.network.http3LateAckRatio[\"ack\"] .accumulateSamples([(stats.late_ack * 10000) / stats.packets_tx]);\nGlean.network.http3LateAckRatio[\"pto\"] .accumulateSamples([(stats.pto_ack * 10000) / stats.packets_tx]); Recorded Errors invalid_value : if recording any negative samples invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Custom Distributions » accumulateSamples","id":"585","title":"accumulateSamples"},"586":{"body":"Accumulates one sample and appends it to the metric. use glean_metrics::network; network::http3_late_ack_ratio .get(\"ack\") .accumulateSingleSample((stats.late_ack * 10000) / stats.packets_tx);\nnetwork::http3_late_ack_ratio .get(\"pto\") .accumulateSingleSample((stats.pto_ack * 10000) / stats.packets_tx); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::network::http3_late_ack_ratio .Get(\"ack\") .AccumulateSingleSample((stats.late_ack * 10000) / stats.packets_tx);\nmozilla::glean::network::http3_late_ack_ratio .Get(\"pto\") .AccumulateSingleSample((stats.pto_ack * 10000) / stats.packets_tx); JavaScript Glean.network.http3LateAckRatio[\"ack\"] .accumulateSingleSample((stats.late_ack * 10000) / stats.packets_tx);\nGlean.network.http3LateAckRatio[\"pto\"] .accumulateSingleSample((stats.pto_ack * 10000) / stats.packets_tx); Recorded Errors invalid_value : if recording a negative sample invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Custom Distributions » accumulateSingleSample","id":"586","title":"accumulateSingleSample"},"587":{"body":"","breadcrumbs":"Metric types » Labeled Custom Distributions » Testing API","id":"587","title":"Testing API"},"588":{"body":"Gets the recorded value for a given label in a labeled custom distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::network; // Assert the sum of all samples is 42.\nassert_eq!(42, network::http3_late_ack_ratio.get(\"ack\").test_get_value(None).unwrap().sum); // Assert there's only the one sample\nassert_eq!(1, network::http3_late_ack_ratio.get(\"ack\").test_get_value(None).unwrap().count); // Buckets are indexed by their lower bound.\nassert_eq!(1, network::http3_late_ack_ratio.get(\"ack\").test_get_value(None).unwrap().values[41]); C++ #include \"mozilla/glean/GleanMetrics.h\" auto data = mozilla::glean::network::http3_late_ack_ratio.Get(\"ack\").TestGetValue().value();\nASSERT_EQ(42UL, data.sum);\nASSERT_EQ(1, data.count);\nASSERT_EQ(1, data.values[41]); JavaScript let data = Glean.network.http3LateAckRatio[\"ack\"].testGetValue();\nAssert.equal(42, data.sum);\nAssert.equal(1, data.count);\nAssert.equal(1, data.values[41]);","breadcrumbs":"Metric types » Labeled Custom Distributions » testGetValue","id":"588","title":"testGetValue"},"589":{"body":"Gets the number of errors recorded for a given labeled custom distribution metric in total. use glean::ErrorType;\nuse glean_metrics::network; // Assert there were no negative values instrumented.\nassert_eq!( 0, network::http3_late_ack_ratio.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Custom Distributions » testGetNumRecordedErrors","id":"589","title":"testGetNumRecordedErrors"},"59":{"body":"At least one week before releasing your product, file a data engineering bug to enable your product's application id. This will result in your product being added to probe scraper 's repositories.yaml .","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Add your product to probe scraper","id":"59","title":"Add your product to probe scraper"},"590":{"body":"Example labeled custom distribution metric definition: network: http3_late_ack_ratio: type: labeled_custom_distribution description: > HTTP3: The ratio of spurious retransmissions per packets sent, represented as an integer permdecimille: `(spurious_retransmission / packet sent * 10000)` range_min: 1 range_max: 2000 bucket_count 100 histogram_type: exponential bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 175 labels: - ack - pto","breadcrumbs":"Metric types » Labeled Custom Distributions » Metric parameters","id":"590","title":"Metric parameters"},"591":{"body":"range_min, range_max, bucket_count, and histogram_type (Required) Labeled custom distributions have the following required parameters: range_min: (Integer) The minimum value of the first bucket range_max: (Integer) The minimum value of the last bucket bucket_count: (Integer) The number of buckets histogram_type: linear: The buckets are evenly spaced exponential: The buckets follow a natural logarithmic distribution labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Custom Distributions » Extra metric parameters","id":"591","title":"Extra metric parameters"},"592":{"body":"What is the distribution of retransmission ratios per connection? What is the distribution of how long it takes to load extensions' content scripts, by addon id?","breadcrumbs":"Metric types » Labeled Custom Distributions » Data questions","id":"592","title":"Data questions"},"593":{"body":"The maximum value of bucket_count is 100. Only non-negative integer values may be recorded (>=0). Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Custom Distributions » Limits","id":"593","title":"Limits"},"594":{"body":"Rust API docs: LabeledMetric , CustomDistributionMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Custom Distributions » Reference","id":"594","title":"Reference"},"595":{"body":"Used to record a single non-negative integer value or 0. For example, the width of the display in pixels.","breadcrumbs":"Metric types » Quantity » Quantity","id":"595","title":"Quantity"},"596":{"body":"If you need to count something (e.g. the number of times a button is pressed) prefer using the Counter metric type, which has a specific API for counting things.","breadcrumbs":"Metric types » Quantity » Do not use Quantity for counting","id":"596","title":"Do not use Quantity for counting"},"597":{"body":"","breadcrumbs":"Metric types » Quantity » Recording API","id":"597","title":"Recording API"},"598":{"body":"Sets a quantity metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Display Display.width.set(width) import org.mozilla.yourApplication.GleanMetrics.Display; Display.INSTANCE.width().set(width); Display.width.set(width) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.display.width.set(width) use glean_metrics::display; display::width.set(width); import * as display from \"./path/to/generated/files/display.js\"; display.width.set(window.innerWidth); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::display::width.Set(innerWidth); JavaScript Glean.display.width.set(innerWidth); Limits Quantities must be non-negative integers or 0. Recorded errors invalid_value : if a negative value is passed in. invalid_type : if a floating point or non-number value is given.","breadcrumbs":"Metric types » Quantity » set","id":"598","title":"set"},"599":{"body":"","breadcrumbs":"Metric types » Quantity » Testing API","id":"599","title":"Testing API"},"6":{"body":"To contact the Glean team you can: Find us in the #glean channel on chat.mozilla.org . To report issues or request changes, file a bug in Bugzilla in Data Platform & Tools :: Glean: SDK . Send an email to glean-team@mozilla.com . The Glean SDKs team is: :janerik , :dexter , :travis , :chutten , :perrymcmanis .","breadcrumbs":"Glean » Contact","id":"6","title":"Contact"},"60":{"body":"After your product has been enabled, you must submit commits to probe scraper to validate and publish metrics. Metrics will only be published from branches defined in probe scraper's repositories.yaml, or the Git default branch if not explicitly configured. This should happen on every CI run to the specified branches. Nightly jobs will then automatically add published metrics to the Glean Dictionary and other data platform tools. Enable the GitHub Workflow by creating a new file .github/workflows/glean-probe-scraper.yml with the following content: ---\nname: Glean probe-scraper\non: [push, pull_request]\njobs: glean-probe-scraper: uses: mozilla/probe-scraper/.github/workflows/glean.yaml@main","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Validate and publish metrics","id":"60","title":"Validate and publish metrics"},"600":{"body":"Gets the recorded value for a given quantity metric. Returns the quantity value if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Display // Does the quantity have the expected value?\nassertEquals(433, Display.width.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Display; // Does the quantity have the expected value?\nassertEquals(433, Display.INSTANCE.width().testGetValue()); // Does the quantity have the expected value?\nXCTAssertEqual(433, try Display.width.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Does the quantity have the expected value?\nassert 433 == metrics.display.width.test_get_value() use glean_metrics::display; // Was anything recorded?\nassert_eq!(433, display::width.test_get_value(None).unwrap()); import * as display from \"./path/to/generated/files/display.js\"; assert.strictEqual(433, await display.width.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_TRUE(mozilla::glean::display::width.TestGetValue().isOk());\nASSERT_EQ(433, mozilla::glean::display::width.TestGetValue().unwrap().value()); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(433, Glean.display.width.testGetValue());","breadcrumbs":"Metric types » Quantity » testGetValue","id":"600","title":"testGetValue"},"601":{"body":"Gets the number of errors recorded for a given quantity metric. import org.mozilla.yourApplication.GleanMetrics.Display // Did it record an error due to a negative value?\nassertEquals(0, Display.width.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)) import org.mozilla.yourApplication.GleanMetrics.Display; // Did the quantity record a negative value?\nassertEquals( 0, Display.INSTANCE.width().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Did the quantity record a negative value?\nXCTAssertEqual(0, Display.width.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Did the quantity record an negative value?\nfrom glean.testing import ErrorType\nassert 0 == metrics.display.width.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::display; assert_eq!( 0, display::width.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n); import * as display from \"./path/to/generated/files/display.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await display.width.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Quantity » testGetNumRecordedErrors","id":"601","title":"testGetNumRecordedErrors"},"602":{"body":"Example quantity metric definition: controls: refresh_pressed: type: quantity description: > The width of the display, in pixels. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 unit: pixels For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Quantity » Metric parameters","id":"602","title":"Metric parameters"},"603":{"body":"unit Quantities have the required unit parameter, which is a free-form string for documentation purposes.","breadcrumbs":"Metric types » Quantity » Extra metric parameters","id":"603","title":"Extra metric parameters"},"604":{"body":"What is the width of the display, in pixels?","breadcrumbs":"Metric types » Quantity » Data questions","id":"604","title":"Data questions"},"605":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Quantity » Reference","id":"605","title":"Reference"},"606":{"body":"Labeled quantity metrics are used to record different related non-negative integer values. For example, the width and height of the display in pixels.","breadcrumbs":"Metric types » Labeled Quantities » Labeled Quantities","id":"606","title":"Labeled Quantities"},"607":{"body":"If you need to count some things (e.g. the number of times buttons are pressed) prefer using the Labeled Counter metric type, which has a specific API for counting things.","breadcrumbs":"Metric types » Labeled Quantities » Do not use Labeled Quantity metrics for counting","id":"607","title":"Do not use Labeled Quantity metrics for counting"},"608":{"body":"","breadcrumbs":"Metric types » Labeled Quantities » Recording API","id":"608","title":"Recording API"},"609":{"body":"Sets a quantity metric to a specific value for the given label. use glean_metrics::gfx; gfx::display.get(\"width\").set(width);\ngfx::display.get(\"height\").set(height); Limits Quantities must be non-negative integers or 0. Recorded errors invalid_value : if a negative value is passed in. invalid_type : if a floating point or non-number value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Quantities » set","id":"609","title":"set"},"61":{"body":"At least one week before releasing your product, file a data engineering bug to add your library to probe scraper and be scraped for metrics as a dependency of another product. This will result in your library being added to probe scraper 's repositories.yaml . Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Add your library to probe scraper","id":"61","title":"Add your library to probe scraper"},"610":{"body":"","breadcrumbs":"Metric types » Labeled Quantities » Testing API","id":"610","title":"Testing API"},"611":{"body":"Gets the recorded value for a given label in a labeled quantity metric. Returns the quantity value if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::gfx; // Was anything recorded?\nassert_eq!(433, gfx::display.get(\"width\").test_get_value(None).unwrap());\nassert_eq!(42, gfx::display.get(\"height\").test_get_value(None).unwrap());","breadcrumbs":"Metric types » Labeled Quantities » testGetValue","id":"611","title":"testGetValue"},"612":{"body":"Gets the number of errors recorded for a given label in a labeled quantity metric. use glean::ErrorType;\nuse glean_metrics::gfx; assert_eq!( 0, gfx::display.get(\"width\").test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);\nassert_eq!( 0, gfx::display.get(\"height\").test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Quantities » testGetNumRecordedErrors","id":"612","title":"testGetNumRecordedErrors"},"613":{"body":"Example quantity metric definition: gfx: display: type: labeled_quantity description: > The dimensions of the display, in pixels. For one-dimensional displays, uses only \"width\". Two-dimensional displays add \"height\". 3D displays gain \"depth\". bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 unit: pixels labels: - width - height - depth For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Labeled Quantities » Metric parameters","id":"613","title":"Metric parameters"},"614":{"body":"unit Labeled Quantities have the required unit parameter, which is a free-form string for documentation purposes. labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Quantities » Extra metric parameters","id":"614","title":"Extra metric parameters"},"615":{"body":"What are the dimensions of the display, in pixels?","breadcrumbs":"Metric types » Labeled Quantities » Data questions","id":"615","title":"Data questions"},"616":{"body":"Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Quantities » Limits","id":"616","title":"Limits"},"617":{"body":"Rust API docs: LabeledMetric , QuantityMetric Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Quantities » Reference","id":"617","title":"Reference"},"618":{"body":"Used to count how often something happens relative to how often something else happens. Like how many documents use a particular CSS Property, or how many HTTP connections had an error. You can think of it like a fraction, with a numerator and a denominator. All rates start without a value. A rate with a numerator of 0 is valid and will be sent to ensure we capture the \"no errors happened\" or \"no use counted\" cases.","breadcrumbs":"Metric types » Rate » Rate","id":"618","title":"Rate"},"619":{"body":"When using a rate metric, it is important to let the Glean metric do the counting. Using your own variable for counting and setting the metric yourself could be problematic: ping scheduling will make it difficult to ensure the metric is at the correct value at the correct time. Instead, count to the numerator and denominator as you go.","breadcrumbs":"Metric types » Rate » Let the Glean metric do the counting","id":"619","title":"Let the Glean metric do the counting"},"62":{"body":"This chapter provides guidance for planning the work involved in integrating Glean into your product, for internal Mozilla customers. For a technical coding perspective, see adding Glean to your project . Glean is the standard telemetry platform required for all new Mozilla products. While there are some upfront costs to integrating Glean in your product, this pays off in easier long-term maintenance and a rich set of self-serve analysis tools. The Glean team is happy to support your telemetry integration and make it successful. Find us in #glean or email glean-team@mozilla.com .","breadcrumbs":"Integrating Glean for project managers » Integrating Glean for product managers","id":"62","title":"Integrating Glean for product managers"},"620":{"body":"","breadcrumbs":"Metric types » Rate » Recording API","id":"620","title":"Recording API"},"621":{"body":"Numerators and denominators need to be counted individually. import org.mozilla.yourApplication.GleanMetrics.Network if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnectionError.addToDenominator(1) External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : import org.mozilla.yourApplication.GleanMetrics.Network if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnections.add(1) import org.mozilla.yourApplication.GleanMetrics.Network; if (connectionHadError) { Network.INSTANCE.httpConnectionError().addToNumerator(1);\n} Network.IMPORTANT.httpConnectionError().addToDenominator(1); External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : import org.mozilla.yourApplication.GleanMetrics.Network; if (connectionHadError) { Network.INSTANCE.httpConnectionError().addToNumerator(1);\n} Network.INSTANCE.httpConnections().add(1) if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnectionError.addToDenominator(1) External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnections.add(1) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") if connection_had_error: metrics.network.http_connection_error.add_to_numerator(1) metrics.network.http_connection_error.add_to_denominator(1) External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") if connection_had_error: metrics.network.http_connection_error.add_to_numerator(1) metrics.network.http_connections.add(1) use glean_metrics::network; if connection_had_error { network::http_connection_error.add_to_numerator(1);\n} network::http_connection_error.add_to_denominator(1); External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : use glean_metrics::network; if connection_had_error { network::http_connection_error.add_to_numerator(1);\n} network::http_connections.add(1); import * as network from \"./path/to/generated/files/network.js\"; if (connectionHadError) { network.httpConnectionError.addToNumerator(1);\n} network.httpConnectionError.addToDenominator(1); C++ #include \"mozilla/glean/GleanMetrics.h\" if (aHadError) {\nmozilla::glean::network::http_connection_error.AddToNumerator(1);\n}\nmozilla::glean::network::http_connection_error.AddToDenominator(1); JavaScript if (aHadError) {\nGlean.network.httpConnectionError.addToNumerator(1);\n}\nGlean.network.httpConnectionError.addToDenominator(1); Recorded errors invalid_value : If either numerator or denominator is incremented by a negative value. invalid_type : If a floating point or non-number value is given. Limits Numerator and Denominator only increment. Numerator and Denominator saturate at the largest value that can be represented as a 32-bit signed integer (2147483647).","breadcrumbs":"Metric types » Rate » addToNumerator / addToDenominator","id":"621","title":"addToNumerator / addToDenominator"},"622":{"body":"","breadcrumbs":"Metric types » Rate » Testing API","id":"622","title":"Testing API"},"623":{"body":"Gets the recorded value for a given rate metric. Returns the numerator/denominator pair if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Network assertEquals(Rate(1, 1), Network.httpConnectionError.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Network; assertEquals(Rate(1, 1), Network.INSTANCE.httpConnectionError().testGetValue()); XCTAssertEqual( Rate(numerator: 1, denominator: 1), Network.httpConnectionError.testGetValue()\n) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert Rate(1, 1) == metrics.network.http_connection_error.test_get_value() use glean_metrics::network; let rate = network::http_connection_error.test_get_value(None).unwrap();\nassert_eq!(1, rate.numerator);\nassert_eq!(1, rate.denominator); import * as network from \"./path/to/generated/files/network.js\"; const { numerator, denominator } = await network.httpConnectionError.testGetValue();\nassert.strictEqual(numerator, 1);\nassert.strictEqual(denominator, 1); C++ #include \"mozilla/glean/GleanMetrics.h\" auto pair = mozilla::glean::network::http_connection_error.TestGetValue().unwrap();\nASSERT_EQ(1, pair.first);\nASSERT_EQ(1, pair.second); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.deepEqual(\n{ numerator: 1, denominator: 1 },\nGlean.network.httpConnectionError.testGetValue()\n);","breadcrumbs":"Metric types » Rate » testGetValue","id":"623","title":"testGetValue"},"624":{"body":"import org.mozilla.yourApplication.GleanMetrics.Network assertEquals( 0, Network.httpConnectionError.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Network; assertEquals( 0, Network.INSTANCE.httpConnectionError().testGetNumRecordedErrors( ErrorType.INVALID_VALUE )\n); XCTAssertEqual( 0, Network.httpConnectionError.testGetNumRecordedErrors(.invalidValue)\n) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") from glean.testing import ErrorType assert 0 == metrics.network.http_connection_error.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::network; assert_eq!( 0, network::http_connection_error.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n); import * as network from \"./path/to/generated/files/network.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 1, await network.httpConnectionError.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Rate » testGetNumRecordedErrors","id":"624","title":"testGetNumRecordedErrors"},"625":{"body":"Example rate metric definition: network: http_connection_error: type: rate description: > How many HTTP connections error out out of the total connections made. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Rate » Metric parameters","id":"625","title":"Metric parameters"},"626":{"body":"If several rates share the same denominator then the denominator should be defined as a counter and shared between rates using the denominator_metric property: network: http_connections: type: counter description: > Total number of http connections made. ... http_connection_error: type: rate description: > How many HTTP connections error out out of the total connections made. denominator_metric: network.http_connections ... http_connection_slow: type: rate description: > How many HTTP connections were slow, out of the total connections made. denominator_metric: network.http_connections ... The Glean JavaScript SDK does not support external denominators for Rate metrics, yet. Follow Bug 1745753 for updates on that features development.","breadcrumbs":"Metric types » Rate » External Denominators","id":"626","title":"External Denominators"},"627":{"body":"How often did an HTTP connection error? How many documents used a given CSS Property?","breadcrumbs":"Metric types » Rate » Data Questions","id":"627","title":"Data Questions"},"628":{"body":"Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Rate » Reference","id":"628","title":"Reference"},"629":{"body":"Records a single long Unicode text, used when the limits on String are too low.","breadcrumbs":"Metric types » Text » Text","id":"629","title":"Text"},"63":{"body":"The Glean SDKs provide support for answering basic product questions out-of-the-box, such as daily active users, product version and platform information. However, it is also a good idea to have a sense of any additional product-specific questions you are trying to answer with telemetry, and, when possible, in collaboration with a data scientist. This of course helps for your own planning, but is also invaluable for the Glean team to support you, since we will understand the ultimate goals of your product's telemetry and ensure the design will meet those goals and we can identify any new features that may be required. It is best to frame this document in the form of questions and use cases rather than as specific data points and schemas.","breadcrumbs":"Integrating Glean for project managers » Building a telemetry plan","id":"63","title":"Building a telemetry plan"},"630":{"body":"This type should only be used in special cases when other metrics don't fit. See limitations below. Reach out to the Glean team before using this.","breadcrumbs":"Metric types » Text » Important","id":"630","title":"Important"},"631":{"body":"","breadcrumbs":"Metric types » Text » Recording API","id":"631","title":"Recording API"},"632":{"body":"Sets a text metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Article Article.content.set(extractedText) import org.mozilla.yourApplication.GleanMetrics.Article; Article.INSTANCE.content().set(extractedText); Article.content.set(extractedText) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.article.content.set(extracted_text) use glean_metrics::article; article::content.set(extracted_text); import * as article from \"./path/to/generated/files/article.js\"; article.content.set(extractedText); Limits Text metrics can only be sent in custom pings . Text metrics are always of data collection category 3 (web_activity) or category 4 (highly_sensitive). Only ping and application lifetimes are allowed. Fixed maximum text length: 200 kilobytes. Longer text is truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Recorded errors invalid_overflow : if the text is too long. invalid_type : if a non-string value is given.","breadcrumbs":"Metric types » Text » set","id":"632","title":"set"},"633":{"body":"","breadcrumbs":"Metric types » Text » Testing API","id":"633","title":"Testing API"},"634":{"body":"Gets the recorded value for a given text metric. Returns the string if data is stored. Returns null if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Article assertEquals(\"some content\", Article.content.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Article; assertEquals(\"some content\", Article.INSTANCE.content().testGetValue()); XCTAssertEqual(\"some content\", Article.content.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert \"some content\" == metrics.article.content.test_get_value() use glean_metrics::article; assert_eq!(\"some content\", article::content.test_get_value(None).unwrap()); import * as article from \"./path/to/generated/files/article.js\"; assert.strictEqual(\"some content\", await article.content.testGetValue());","breadcrumbs":"Metric types » Text » testGetValue","id":"634","title":"testGetValue"},"635":{"body":"Gets the number of errors recorded for a given text metric. import org.mozilla.yourApplication.GleanMetrics.Article // Was the string truncated, and an error reported?\nassertEquals( 0, Article.content.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) import org.mozilla.yourApplication.GleanMetrics.Article; // Was the string truncated, and an error reported?\nassertEquals( 0, Article.content.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n); // Was the string truncated, and an error reported?\nXCTAssertEqual(0, Article.content.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Was the string truncated, and an error reported?\nassert 0 == metrics.article.content.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse glean_metrics::article; // Was the string truncated, and an error reported?\nassert_eq!( 0, article::content.test_get_num_recorded_errors( ErrorType::InvalidOverflow, None )\n); import * as article from \"./path/to/generated/files/article.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await article.content.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Text » testGetNumRecordedErrors","id":"635","title":"testGetNumRecordedErrors"},"636":{"body":"Example text metric definition: article: content: type: text lifetime: ping send_in_pings: - research data_sensitivity: - web_activity description: > The plaintext content of the displayed article. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Text » Metric parameters","id":"636","title":"Metric parameters"},"637":{"body":"What article content was displayed to the user? Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Text » Data questions","id":"637","title":"Data questions"},"638":{"body":"Record structured data.","breadcrumbs":"Metric types » Object » Object","id":"638","title":"Object"},"639":{"body":"","breadcrumbs":"Metric types » Object » Recording API","id":"639","title":"Recording API"},"64":{"body":"The technical steps for integrating Glean in your product are documented in its own chapter for supported platforms. We recommend having a member of the Glean team review this integration to catch any potential pitfalls.","breadcrumbs":"Integrating Glean for project managers » Integrating Glean into your product","id":"64","title":"Integrating Glean into your product"},"640":{"body":"Sets an object metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Party var balloons = Party.BalloonsObject()\nballoons.add(Party.BalloonsObjectItem(colour = \"red\", diameter = 5))\nballoons.add(Party.BalloonsObjectItem(colour = \"green\"))\nParty.balloons.set(balloons) var balloons: Party.BalloonsObject = []\nballoons.append(Party.BalloonsObjectItem(colour: \"red\", diameter: 5))\nballoons.append(Party.BalloonsObjectItem(colour: \"green\"))\nParty.balloons.set(balloons) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") balloons = metrics.BalloonsObject()\nballoons.append(BalloonsObjectItem(colour=\"red\", diameter=5))\nballoons.append(BalloonsObjectItem(colour=\"green\"))\nmetrics.party.balloons.set(balloons) C++ Not yet implemented. JavaScript let balloons = [ { colour: \"red\", diameter: 5 }, { colour: \"blue\", diameter: 7 },\n];\nGlean.party.balloons.set(balloons); Limits Only objects matching the specified structure will be recorded Recorded errors invalid_value : if the passed value doesn't match the predefined structure","breadcrumbs":"Metric types » Object » set","id":"640","title":"set"},"641":{"body":"","breadcrumbs":"Metric types » Object » Testing API","id":"641","title":"Testing API"},"642":{"body":"Gets the recorded value for a given object metric. Returns the data as a JSON object if data is stored. Returns null if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Party val snapshot = metric.testGetValue()!!\nassertEquals(1, snapshot.jsonArray.size) let snapshot = (try! Party.balloons.testGetValue()) as! [Any]\nXCTAssertEqual(1, snapshot.size) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") snapshot = metrics.party.balloons.test_get_value()\nassert 2 == len(snapshot) C++ Not yet implemented. JavaScript // testGetValue will throw a data error on invalid value.\nAssert.equal( [ { colour: \"red\", diameter: 5 }, { colour: \"blue\", diameter: 7 }, ], Glean.party.balloons.testGetValue()\n);","breadcrumbs":"Metric types » Object » testGetValue","id":"642","title":"testGetValue"},"643":{"body":"Gets the number of errors recorded for a given text metric. import org.mozilla.yourApplication.GleanMetrics.Party assertEquals( 0, Party.balloons.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) XCTAssertEqual(0, Party.balloons.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nfrom glean.testing import ErrorType\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.party.balloons.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n)","breadcrumbs":"Metric types » Object » testGetNumRecordedErrors","id":"643","title":"testGetNumRecordedErrors"},"644":{"body":"The definition for an object metric type accepts a structure parameter. This defines the accepted structure of the object using a subset of JSON schema . The allowed types are: string number boolean array object The array type takes an items parameter, that does define the element types it can hold. The object type takes a properties parameter, that defines the nested object structure. array and object metrics can be nested. No other schema parameters are allowed. All fields are optional. Data is validated against this schema at recording time. Missing values will not be serialized into the payload.","breadcrumbs":"Metric types » Object » Metric parameters","id":"644","title":"Metric parameters"},"645":{"body":"party: balloons: type: object description: A collection of balloons bugs: - https://bugzilla.mozilla.org/TODO data_reviews: - http://example.com/reviews notification_emails: - CHANGE-ME@example.com expires: never structure: type: array items: type: object properties: colour: type: string diameter: type: number For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Object » Example object metric definition:","id":"645","title":"Example object metric definition:"},"646":{"body":"What is the crash stack after a Firefox main process crash? Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Object » Data questions","id":"646","title":"Data questions"},"647":{"body":"Glean-owned pings are submitted automatically Products do not need to submit Glean built-in pings, as their scheduling is managed internally. The APIs on this page are only relevant for products defining custom pings .","breadcrumbs":"Pings » Pings","id":"647","title":"Pings"},"648":{"body":"","breadcrumbs":"Pings » Submission API","id":"648","title":"Submission API"},"649":{"body":"Collect and queue a custom ping for eventual uploading. By default, if the ping doesn't currently have any events or metrics set, submit will do nothing. However, if the send_if_empty flag is set to true in the ping definition, it will always be submitted. It is not necessary for the caller to check if Glean is disabled before calling submit. If Glean is disabled submit is a no-op. For example, to submit the custom ping defined in Adding new custom pings : import org.mozilla.yourApplication.GleanMetrics.Pings\nPings.search.submit( Pings.searchReasonCodes.performed\n) import org.mozilla.yourApplication.GleanMetrics.Pings Pings.INSTANCE.search.submit( Pings.INSTANCE.searchReasonCodes.performed\n); import Glean GleanMetrics.Pings.shared.search.submit( reason: .performed\n) from glean import load_pings pings = load_pings(\"pings.yaml\") pings.search.submit(pings.search_reason_codes.PERFORMED) use glean::Pings; pings::search.submit(pings::SearchReasonCodes::Performed); import * as pings from \"./path/to/generated/files/pings.js\"; pings.search.submit(pings.searchReasonCodes.Performed); C++ mozilla::glean_pings::Search.Submit(\"performed\"_ns); JavaScript GleanPings.search.submit(\"performed\");","breadcrumbs":"Pings » submit","id":"649","title":"submit"},"65":{"body":"The Glean SDKs are a collection of cross platform libraries and tools that facilitate collection of Glean conforming telemetry from applications. Consult the list of the currently supported platforms and languages . If your product's tech stack isn't currently supported, please reach out to the Glean team: significant work will be required to create a new integration. In previous efforts, this has ranged from 1 to 3 months FTE of work, so it is important to plan for this work well in advance. While the first phase of this work generally requires the specialized expertise of the Glean team, the second half can benefit from outside developers to move faster.","breadcrumbs":"Integrating Glean for project managers » (Optional) Adapting Glean to your platform","id":"65","title":"(Optional) Adapting Glean to your platform"},"650":{"body":"","breadcrumbs":"Pings » Testing API","id":"650","title":"Testing API"},"651":{"body":"Gets a set of the currently registered ping names. Useful when debugging to know which pings are able to be sent. val knownPings = Glean.getRegisteredPingNames() let knownPings = Glean.shared.getRegisteredPingNames() let known_pings = glean.get_registered_ping_names();","breadcrumbs":"Pings » getRegisteredPingNames","id":"651","title":"getRegisteredPingNames"},"652":{"body":"Runs a validation function before the ping is collected. import org.mozilla.yourApplication.GleanMetrics.Search\nimport org.mozilla.yourApplication.GleanMetrics.Pings // Record some data.\nSearch.defaultEngine.add(5); // Instruct the ping API to validate the ping data.\nvar validatorRun = false\nPings.search.testBeforeNextSubmit { reason -> assertEquals(Pings.searchReasonCodes.performed, reason) assertEquals(5, Search.defaultEngine.testGetValue()) validatorRun = true\n} // Submit the ping.\nPings.search.submit( Pings.searchReasonCodes.performed\n) // Verify that the validator run.\nassertTrue(validatorRun) import org.mozilla.yourApplication.GleanMetrics.Search\nimport org.mozilla.yourApplication.GleanMetrics.Pings // Record some data.\nSearch.INSTANCE.defaultEngine.add(5); // Instruct the ping API to validate the ping data.\nboolean validatorRun = false;\nPings.INSTANCE.search.testBeforeNextSubmit((reason) -> { assertEquals(Pings.searchReasonCodes.performed, reason); assertEquals(5, Search.INSTANCE.defaultEngine.testGetValue()); validatorRun = true;\n}); // Submit the ping.\nPings.INSTANCE.search.submit( Pings.INSTANCE.searchReasonCodes.performed\n); // Verify that the validator run.\nassertTrue(validatorRun); // Record some data.\nSearch.defaultEngine.add(5) // Instruct the ping API to validate the ping data.\nvar validatorRun = false\nGleanMetrics.pings.shared.search.testBeforeNextSubmit { reason in XCTAssertEqual(.performed, reason, \"Unexpected reason for search ping submitted\") XCTAssertEqual(5, try Search.defaultEngine.testGetValue(), \"Unexpected value for default engine in search ping\") validatorRun = true\n} // Submit the ping.\nGleanMetrics.Pings.shared.search.submit( reason: .performed\n) // Verify that the validator run.\nXCTAssert(validatorRun, \"Expected validator to be called by now.\") from glean import load_metrics, load_pings pings = load_pings(\"pings.yaml\")\nmetrics = load_metrics(\"metrics.yaml\") # Record some data.\nmetrics.search.default_engine.add(5) # Need a mutable object and plain booleans are not.\ncallback_was_called = [False] def check_custom_ping(reason): assert reason == pings.search_reason_codes.PERFORMED assert 5 == metrics.search.default_engine.test_get_value() callback_was_called[0] = True # Instruct the ping API to validate the ping data.\npings.search.test_before_next_submit(check_custom_ping) # Submit the ping.\npings.search.submit(pings.search_reason_codes.PERFORMED) # Verify that the validator run.\nassert callback_was_called[0] use glean_metrics::{search, pings}; // Record some data.\nsearch::default_engine.add(5); // Instruct the ping API to validate the ping data.\npings::search.test_before_next_submit(move |reason| { assert_eq!(pings::SearchReasonCodes::Performed, reason); assert_eq!(5, search::default_engine.test_get_value(None).unwrap());\n}); // When the `submit` API is not directly called by the\n// test code, it may be worth checking that the validator\n// function run by using a canary boolean in the closure\n// used in `test_before_next_submit` and asserting on its\n// value after submission. // Submit the ping.\npings::search.submit(pings::SearchReasonCodes::Performed); import * as search from \"./path/to/generated/files/search.js\";\nimport * as pings from \"./path/to/generated/files/pings.js\"; // Record some data.\nsearch.defaultEngine.add(5); // Instruct the ping API to validate the ping data.\nlet validatorRun = false;\nconst p = pings.search.testBeforeNextSubmit(async reason => { assert.strictEqual(reason, \"performed\"); assert.strictEqual(await search.defaultEngine.testGetValue(), 5); validatorRun = true;\n}); // Submit the ping.\npings.search.submit(\"performed\");\n// Wait for the validation to finish.\nassert.doesNotThrow(async () => await p); // Verify that the validator run.\nassert.ok(validatorRun); JavaScript: Glean.search.defaultEngine.add(5);\nlet submitted = false;\nGleanPings.search.testBeforeNextSubmit(reason => { submitted = true; Assert.equal(5, Glean.search.defaultEngine.testGetValue());\n});\nGleanPings.search.submit();\nAssert.ok(submitted); C++: mozilla::glean::search::default_engine.Add(5);\nbool submitted = false;\nmozilla::glean_pings::Search.TestBeforeNextSubmit([&submitted](const nsACString& aReason) { submitted = true; ASSERT_EQ(false, mozilla::glean::search::default_engine.TestGetValue().unwrap().ref());\n});\nmozilla::glean_pings::Search.Submit();\nASSERT_TRUE(submitted); Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » testBeforeNextSubmit","id":"652","title":"testBeforeNextSubmit"},"653":{"body":"The Glean SDKs are available for several programming languages and development environments. Although there are different SDKs, each of them is based off of either a JavaScript core or a Rust core. These cores contain the bulk of the logic of the client libraries. Thin wrappers around them expose APIs for the target platforms. Each SDK may also send a different set of default pings and collect a different set of default metrics . Finally, each SDK may also be [1] accompanied by glean_parser, a Python command line utility that provides a list of useful development tools for developers instrumenting a project using Glean. Some SDKs are not bundled with glean_parser and it is left to the user to install it separately. Rust Core-based SDKs Rust Kotlin Swift Python JavaScript Core-based SDKs JavaScript QML","breadcrumbs":"Overview » Overview","id":"653","title":"Overview"},"654":{"body":"The code for the Rust Core-based SDKs is available on the mozilla/glean repository. These group of SDKs were previously referred to as \"language bindings\" i.e. \"the Kotlin language bindings\" or \"the Python language bindings\".","breadcrumbs":"Overview » Rust Core-based SDKs","id":"654","title":"Rust Core-based SDKs"},"655":{"body":"The Glean Rust SDK can be used with any Rust application. It can serve a wide variety of usage patterns, such as short-lived CLI applications as well as longer-running desktop or server applications. It can optionally send builtin pings at startup. It does not assume an interaction model and the integrating application is responsible to connect the respective hooks. It is available as the glean crate on crates.io.","breadcrumbs":"Overview » Rust","id":"655","title":"Rust"},"656":{"body":"The Glean Kotlin SDK is primarily used for integration with Android applications. It assumes a common interaction model for mobile applications. It sends builtin pings at startup of the integrating application. It is available standalone as org.mozilla.telemetry:glean or via Android Components as org.mozilla.components:service-glean from the Mozilla Maven instance . The Kotlin SDK can also be used from Java. See Android for more on integrating Glean on Android.","breadcrumbs":"Overview » Kotlin","id":"656","title":"Kotlin"},"657":{"body":"The Glean Swift SDK is primarily used for integration with iOS applications. It assumes a common interaction model for mobile applications. It sends builtin pings at startup of the integrating application. It is available as a standalone Xcode framework from the Glean releases page or bundled with the AppServices framework .","breadcrumbs":"Overview » Swift","id":"657","title":"Swift"},"658":{"body":"The Glean Python SDK allows integration with any Python application. It can serve a wide variety of usage patterns, such as short-lived CLI applications as well as longer-running desktop or server applications. It is available as glean-sdk on PyPI .","breadcrumbs":"Overview » Python","id":"658","title":"Python"},"659":{"body":"The code for the JavaScript Core-based SDKs is available on the mozilla/glean.js repository. This collection of SDKs is commonly referred to as Glean.js .","breadcrumbs":"Overview » JavaScript Core-based SDKs","id":"659","title":"JavaScript Core-based SDKs"},"66":{"body":"The Glean SDKs periodically send telemetry to our servers in a bundle known as a \" ping \". For mobile applications with common interaction models, such as web browsers, the Glean SDKs provide basic pings out-of-the-box . For other kinds of products, it may be necessary to carefully design what triggers the submission of a ping. It is important to have a solid telemetry plan (see above) so we can make sure the ping submission will be able to answer the telemetry questions required of the product.","breadcrumbs":"Integrating Glean for project managers » (Optional) Designing ping submission","id":"66","title":"(Optional) Designing ping submission"},"660":{"body":"The Glean JavaScript SDK allows integration with three distint JavaScript environments: websites, web extension and Node.js. It is available as @mozilla/glean on npm . This package has different entry points to access the different SDKs. @mozilla/glean/web gives access to the websites SDK @mozilla/glean/webext gives access to the web extension SDK @mozilla/glean/node gives access to the Node.js SDK","breadcrumbs":"Overview » JavaScript","id":"660","title":"JavaScript"},"661":{"body":"The Glean QML SDK allows integration with Qt/QML applications and libraries. It is available as a compressed file attached to each new Glean.js release and may be downloaded from the project GitHub releases page . Found a bug? Edit this page on GitHub.","breadcrumbs":"Overview » QML","id":"661","title":"QML"},"662":{"body":"The Glean Kotlin SDK can be used in Android applications. The integration into the build system for Android applications can be tuned to your needs. See the following chapters for details. Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Android-specific information","id":"662","title":"Android-specific information"},"663":{"body":"This chapter describes build configuration options that control the behavior of the Glean Kotlin SDK's Gradle plugin. These options are not usually required for normal use. Options can be turned on by setting a variable on the Gradle ext object before applying the Glean Gradle plugin.","breadcrumbs":"Android » Android build configuration options » Android build script configuration options","id":"663","title":"Android build script configuration options"},"664":{"body":"Overwrite the auto-generated build date. If set to 0 a static UNIX epoch time will be used. If set to a ISO8601 datetime string it will use that date. Note that any timezone offset will be ignored and UTC will be used. For other values it will throw an error. ext.gleanBuildDate = \"2022-01-03T17:30:00\"","breadcrumbs":"Android » Android build configuration options » gleanBuildDate","id":"664","title":"gleanBuildDate"},"665":{"body":"Normally, the Glean Kotlin SDK looks for metrics.yaml and pings.yaml files in the root directory of the Glean-using project. However, in some cases, these files may need to ship inside the dependencies of the project. For example, this is used in the engine-gecko component to grab the metrics.yaml from the geckoview AAR. ext.allowMetricsFromAAR = true When this flag is set, every direct dependency of your library will be searched for a metrics.yaml file, and those metrics will be treated as the metrics as if they were defined by your library. That is, API wrappers accessible from your library will be generated for those metrics. The metrics.yaml can be added to the dependency itself by calling this on each relevant build variant: variant.packageLibraryProvider.get().from(\"${topsrcdir}/path/metrics.yaml\")","breadcrumbs":"Android » Android build configuration options » allowMetricsFromAAR","id":"665","title":"allowMetricsFromAAR"},"666":{"body":"The Glean Kotlin SDK can automatically generate Markdown documentation for metrics and pings defined in the registry files, in addition to the metrics API code. ext.gleanGenerateMarkdownDocs = true Flipping the feature to true will generate a metrics.md file in $projectDir/docs at build-time. In general this is not necessary for projects using Mozilla's data ingestion infrastructure: in those cases human-readable documentation will automatically be viewable via the Glean Dictionary .","breadcrumbs":"Android » Android build configuration options » gleanGenerateMarkdownDocs","id":"666","title":"gleanGenerateMarkdownDocs"},"667":{"body":"The gleanDocsDirectory can be used to customize the path of the documentation output directory. If gleanGenerateMarkdownDocs is disabled, it does nothing. Please note that only the metrics.md will be overwritten: any other file available in the target directory will be preserved. ext.gleanDocsDirectory = \"$rootDir/docs/user/telemetry\"","breadcrumbs":"Android » Android build configuration options » gleanDocsDirectory","id":"667","title":"gleanDocsDirectory"},"668":{"body":"By default, the Glean Gradle plugin will look for metrics.yaml and pings.yaml files in the same directory that the plugin is included from in your application or library. To override this, ext.gleanYamlFiles may be set to a list of explicit paths. ext.gleanYamlFiles = [\"$rootDir/glean-core/metrics.yaml\", \"$rootDir/glean-core/pings.yaml\"]","breadcrumbs":"Android » Android build configuration options » gleanYamlFiles","id":"668","title":"gleanYamlFiles"},"669":{"body":"Expire the metrics and pings by version, using the provided major version. If enabled, expiring metrics or pings by date will produce an error. ext.gleanExpireByVersion = 25 Different products have different ways to compute the product version at build-time. For this reason the Glean Gradle plugin cannot provide an automated way to detect the product major version at build time. When using the expiration by version feature in Android, products must provide the major version by themselves.","breadcrumbs":"Android » Android build configuration options » gleanExpireByVersion","id":"669","title":"gleanExpireByVersion"},"67":{"body":"The Glean SDKs have a number of different metric types that it can collect. Metric types provide \"guardrails\" to make sure that telemetry is being collected correctly, and to present the data at analysis time more automatically. Occasionally, products need to collect data that doesn't fit neatly into one of the available metric types. Glean has a process to request and introduce more metric types and we will work with you to design something appropriate. This design and implementation work is at least 4 weeks, though we are working on the foundation to accelerate that. Having a telemetry plan (see above) will help to identify this work early.","breadcrumbs":"Integrating Glean for project managers » (Optional) New metric types","id":"67","title":"(Optional) New metric types"},"670":{"body":"By default, the Glean Gradle plugin will manage its own Python virtualenv in $gradleUserHomeDir/glean to install glean_parser. By specifying a path in ext.gleanPythonEnvDir you can reuse an existing Python virtualenv. ext.gleanPythonEnvDir = \"$buildDir/externallyManagedVenv\" glean_parser must be available in that virtualenv, the Gradle plugin will make no attempt at installing it. Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Android build configuration options » gleanPythonEnvDir","id":"670","title":"gleanPythonEnvDir"},"671":{"body":"The Glean Kotlin SDK has basic support for building Android applications that use Glean in offline mode. The Glean Kotlin SDK uses a Python script, glean_parser to generate code for metrics from the metrics.yaml and pings.yaml files when Glean-using applications are built. When online, the pieces necessary to run this script are installed automatically. For offline builds, the Python environment, and packages of glean_parser and its dependencies must be provided prior to building the Glean-using application. To build a Glean-using application in offline mode, you can either:","breadcrumbs":"Android » Android offline builds » Offline builds of Android applications that use Glean","id":"671","title":"Offline builds of Android applications that use Glean"},"672":{"body":"Set ext.gleanPythonEnvDir to your existing virtualenv before applying the plugin, see gleanPythonEnvDir .","breadcrumbs":"Android » Android offline builds » Provide an externally-managed virtualenv","id":"672","title":"Provide an externally-managed virtualenv"},"673":{"body":"In this mode Glean will setup its own virtualenv in $gradleUserHomeDir/glean, controlled by the GLEAN_PYTHON and GLEAN_PYTHON_WHEELS_DIR environment variables. Install Python 3.8 or later and ensure it's on the PATH. On Linux, installing Python from your Linux distribution's package manager is usually sufficient. On macOS, installing Python from homebrew is known to work, but other package managers may also work. On Windows, we recommend installing one of the official Python installers from python.org . Determine the version of glean_parser required. It can be really difficult to manually determine the version of glean_parser that is required for a given application, since it needs to be tracked through android-components, to glean-core and finally to glean_parser. The required version of glean_parser can be determined by running the following at the top-level of the Glean-using application: $ ./gradlew | grep \"Requires glean_parser\"\nRequires glean_parser==1.28.1 Download packages for glean_parser and its dependencies: In the root directory of the Glean-using project, create a directory called glean-wheels and cd into it. Download packages for glean_parser and its dependencies, replacing X.Y.Z with the correct version of glean_parser: $ python3 -m pip download glean_parser==X.Y.Z Build the Glean-using project using ./gradlew, but passing in the --offline flag. There are a couple of environment variables that control offline building: To override the location of the Python interpreter to use, set the GLEAN_PYTHON environment variable. If unset, the first Python interpreter on the PATH will be used. To override the location of the downloaded Python wheels, set the GLEAN_PYTHON_WHEELS_DIR environment variable. If unset ${projectDir}/glean-wheels will be used. Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Android offline builds » Provide a Python interpreter and the required wheels","id":"673","title":"Provide a Python interpreter and the required wheels"},"674":{"body":"One of the things that might be useful to collect data on in an Android application is crashes. This guide will walk through a basic strategy for instrumenting an Android application with crash telemetry using a custom ping. Note: This is a very simple example of instrumenting crashes using the Glean SDK. There will be challenges to using this approach in a production application that should be considered. For instance, when an app crashes it can be in an unknown state and may not be able to do things like upload data to a server. The recommended way of instrumenting crashes with Android Components is called lib-crash , which takes into consideration things like multiple processes and persistence.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Instrumenting Android crashes with the Glean SDK","id":"674","title":"Instrumenting Android crashes with the Glean SDK"},"675":{"body":"There are a few things that need to be installed in order to proceed, mainly Android Studio . If you include the Android SDK, Android Studio can take a little while to download and get installed. This walk-through assumes some knowledge of Android application development. Knowing where to go to create a new project and how to add dependencies to a Gradle file will be helpful in following this guide.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Before You Start","id":"675","title":"Before You Start"},"676":{"body":"Please follow the instruction in the \"Adding Glean to your project\" chapter in order to set up Glean in an Android project.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Setup Build Configuration","id":"676","title":"Setup Build Configuration"},"677":{"body":"Since crashes will be instrumented with some custom metrics, the next step will be to add a metrics.yaml file to define the metrics used to record the crash information and a pings.yaml file to define a custom ping which will give some control over the scheduling of the uploading. See \"Adding new metrics\" for more information about adding metrics. What metric type should be used to represent the crash data? While this could be implemented several ways, an event is an excellent choice, simply because events capture information in a nice concise way and they have a built-in way of passing additional information using the extras field. If it is necessary to pass along the cause of the exception or a few lines of description, events let us do that easily (with some limitations ). Now that a metric type has been chosen to represent the metric, the next step is creating the metrics.yaml. Inside of the root application folder of the Android Studio project create a new file named metrics.yaml. After adding the schema definition and event metric definition, the metrics.yaml should look like this: # Required to indicate this is a `metrics.yaml` file\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 crash: exception: type: event description: | Event to record crashes caused by unhandled exceptions notification_emails: - crashes@example.com bugs: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 expires: 2021-01-01 send_in_pings: - crash extra_keys: cause: description: The cause of the crash message: description: The exception message As a brief explanation, this creates a metric called exception within a metric category called crash. There is a text description and the required notification_emails, bugs, data_reviews, and expires fields. The send_in_pings field is important to note here that it has a value of - crash. This means that the crash event metric will be sent via a custom ping named crash (which hasn't been created yet). Finally, note the extra_keys field which has two keys defined, cause and message. This allows for sending additional information along with the event to be associated with these keys. Note: For Mozilla applications, a mandatory data review is required in order to collect information with the Glean SDK.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Add A Custom Metric","id":"677","title":"Add A Custom Metric"},"678":{"body":"Define the custom ping that will help control the upload scheduling by creating a pings.yaml file in the same directory as the metrics.yaml file. For more information about adding custom pings, see the section on custom pings . The name of the ping will be crash, so the pings.yaml file should look like this: # Required to indicate this is a `pings.yaml` file\n$schema: moz://mozilla.org/schemas/glean/pings/2-0-0 crash: description: > A ping to transport crash data include_client_id: true notification_emails: - crash@example.com bugs: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 Before the newly defined metric or ping can be used, the application must first be built. This will cause the glean_parser to execute and generate the API files that represent the metric and ping that were newly defined. Note: If changes to the YAML files aren't showing up in the project, try running the clean task on the project before building any time one of the Glean YAML files has been modified. It is recommended that Glean be initialized as early in the application startup as possible, which is why it's good to use a custom Application, like the Glean Sample App GleanApplication.kt . Initializing Glean in the Application.onCreate() is ideal for this purpose. Start by adding the import statement to allow the usage of the custom ping that was created, adding the following to the top of the file: import org.mozilla.gleancrashexample.GleanMetrics.Pings Next, register the custom ping by calling Glean.registerPings(Pings) in the onCreate() function, preferably before calling Glean.initialize(). The completed function should look something like this: override fun onCreate() { super.onCreate() // Register the application's custom pings. Glean.registerPings(Pings) // Initialize the Glean library Glean.initialize(applicationContext)\n} This completes the registration of the custom ping with the Glean Kotlin SDK so that it knows about it and can manage the storage and other important details of it like sending it when send() is called.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Add A Custom Ping","id":"678","title":"Add A Custom Ping"},"679":{"body":"In order to make the custom Application class handle uncaught exceptions, extend the class definition by adding Thread.UncaughtExceptionHandler as an inherited class like this: class MainActivity : AppCompatActivity(), Thread.UncaughtExceptionHandler { ...\n} As part of implementing the Thread.UncaughtExceptionHandler interface, the custom Application needs to implement the override of the uncaughtException() function. An example of this override that records data and sends the ping could look something like this: override fun uncaughtException(thread: Thread, exception: Throwable) { Crash.exception.record( mapOf( Crash.exceptionKeys.cause to exception.cause!!.toString(), Crash.exceptionKeys.message to exception.message!! ) ) Pings.crash.submit()\n} This records data to the Crash.exception metric from the metrics.yaml. The category of the metric is crash and the name is exception so it is accessed it by calling record() on the Crash.exception object. The extra information for the cause and the message is set as well. Finally, calling Pings.crash.submit() forces the crash ping to be scheduled to be sent. The final step is to register the custom Application as the default uncaught exception handler by adding the following to the onCreate() function after Glean.initialize(this): Thread.setDefaultUncaughtExceptionHandler(this)","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Instrument The App To Record The Event","id":"679","title":"Instrument The App To Record The Event"},"68":{"body":"To use GLAM for analysis of your application's data file a ticket in the GLAM repository . A data engineer from the GLAM team will reach out to you if further information is required. Found a bug? Edit this page on GitHub.","breadcrumbs":"Integrating Glean for project managers » Integrating Glean into GLAM","id":"68","title":"Integrating Glean into GLAM"},"680":{"body":"This information didn't really get recorded by anything, as it would be rejected by the telemetry pipeline unless the application was already known. In order to collect telemetry from a new application, there is additional work that is necessary that is beyond the scope of this example. In order for data to be collected from your project, metadata must be added to the probe_scraper. The instructions for accomplishing this can be found in the probe_scraper documentation . Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Next Steps","id":"680","title":"Next Steps"},"681":{"body":"The Glean Swift SDK can be used in iOS applications. The integration into the build system for iOS applications can be tuned to your needs. See the following chapters for details. Found a bug? Edit this page on GitHub.","breadcrumbs":"iOS » iOS-specific information","id":"681","title":"iOS-specific information"},"682":{"body":"This chapter describes build configuration options that control the behavior of the Glean Swift SDK's sdk_generator.sh. These options are not usually required for normal use. Options can be passed as command-line flags.","breadcrumbs":"iOS » iOS build configuration options » iOS build script configuration options","id":"682","title":"iOS build script configuration options"},"683":{"body":"Default: $SOURCE_ROOT/$PROJECT/Generated The folder to place generated code in.","breadcrumbs":"iOS » iOS build configuration options » --output / -o / -o / -b ","id":"684","title":"--build-date / -b "},"685":{"body":"Default: none. Expire the metrics and pings by version, using the provided major version. If enabled, expiring metrics or pings by date will produce an error. bash sdk_generator.sh --expire-by-version 95 Different products have different ways to compute the product version at build-time. For this reason the sdk_generator.sh script cannot provide an automated way to detect the product major version at build time. When using the expiration by version feature in iOS, products must provide the major version by themselves.","breadcrumbs":"iOS » iOS build configuration options » --expire-by-version ","id":"685","title":"--expire-by-version "},"686":{"body":"Default: unset. The Glean Swift SDK can automatically generate Markdown documentation for metrics and pings defined in the registry files, in addition to the metrics API code. If set the documentation will be generated in the provided path. bash sdk_generator.sh --markdown $SOURCE_ROOT/docs In general this is not necessary for projects using Mozilla's data ingestion infrastructure: in those cases human-readable documentation will automatically be viewable via the Glean Dictionary .","breadcrumbs":"iOS » iOS build configuration options » --markdown / -m ","id":"686","title":"--markdown / -m "},"687":{"body":"Default: Glean The Glean namespace to use in generated code. bash sdk_generator.sh --glean-namespace AnotherGlean If you are using the combined release of application-services and the Glean Swift SDK you need to set the namespace to MozillaAppServices, e.g.: bash sdk_generator.sh --glean-namespace MozillaAppServices Found a bug? Edit this page on GitHub.","breadcrumbs":"iOS » iOS build configuration options » --glean-namespace / -g ","id":"687","title":"--glean-namespace / -g "},"688":{"body":"The Glean JavaScript SDK allows integration with three distinct JavaScript environments: websites, web extension and Node.js. It is available as @mozilla/glean on npm . This package has different entry points to access the different SDKs. @mozilla/glean/web gives access to the websites SDK @mozilla/glean/webext gives access to the web extension SDK @mozilla/glean/node gives access to the Node.js SDK Found a bug? Edit this page on GitHub.","breadcrumbs":"JavaScript » Glean JavaScript SDK","id":"688","title":"Glean JavaScript SDK"},"689":{"body":"The @mozilla/glean package exposes the glean CLI. This utility installs glean_parser in a virtual environment and allows users to execute glean_parser command through it. In order to get a list of all commands available run npx glean --help.","breadcrumbs":"JavaScript » Command Line Interface » Command Line Interface","id":"689","title":"Command Line Interface"},"69":{"body":"","breadcrumbs":"Metrics » Adding new metrics","id":"69","title":"Adding new metrics"},"690":{"body":"The glean CLI will look for / create a .venv virtual environment at the directory it is called from and install glean_parser there by default. However, it is possible to customize the directory in which it looks for a virtual environment, by setting the VIRTUAL_ENV environment variable. Example: VIRTUAL_ENV=\"my/venv/path\" npx glean --help By default Glean will try and use specific binaries based on the platform: python.exe on windows and python3 everywhere else. You can customize the Python binary used through environment variables. You are able to define both GLEAN_PYTHON and GLEAN_PIP. Example: Mac: export GLEAN_PYTHON=\nexport GLEAN_PIP= Windows: SET GLEAN_PYTHON=\nSET GLEAN_PIP=","breadcrumbs":"JavaScript » Command Line Interface » Customizing virtual environment","id":"690","title":"Customizing virtual environment"},"691":{"body":"The VIRTUAL_ENV environment variable is automatically set while a virtual environment in active , in which case Glean will not create a new environment, but use the currently active one.","breadcrumbs":"JavaScript » Command Line Interface » What if the glean command is called from inside an active virtual environment?","id":"691","title":"What if the glean command is called from inside an active virtual environment?"},"692":{"body":"In order to prevent the glean CLI from installing glean_parser itself, it must be provided with the path to a virtual environment that already has glean_parser installed. When doing that it is important to keep the separate installation of glean_parser in sync with the version expected by the Glean SDK version in use. The glean CLI exposes the --glean-parser-version command that returns the expected version of glean_parser for such use cases. With this command it is possible to something like: pip install -U glean_parser==$(npx glean --glean-parser-version) Found a bug? Edit this page on GitHub.","breadcrumbs":"JavaScript » Command Line Interface » Preventing automatic installation of glean_parser","id":"692","title":"Preventing automatic installation of glean_parser"},"693":{"body":"The Glean JavaScript SDK accepts a plugin array as an initialization parameter. import Glean from \"@mozilla/glean/webext\"\n// This is not a real available plugin,\n// it is a hypothetical one for illustration purposes.\nimport HypotheticalPlugin from \"@mozilla/glean/plugins/hypothetical\" Glean.initialize( \"my.fancy.modified.app\", uploadStatus, { plugins: [ new HypotheticalPlugin(\"with\", \"hypothetical\", \"arguments\") ] }\n); Plugins attach to specific internal events on the SDK and can modify its behavior. A big advantage of plugins is that they can address very specific use cases of Glean without bloating the final size of the SDK or overloading Glean's configuration object.","breadcrumbs":"JavaScript » Plugins » Plugins","id":"693","title":"Plugins"},"694":{"body":"It is not currently possible for users to write their own plugins, as this feature is still in its infancy.","breadcrumbs":"JavaScript » Plugins » On writing your own plugins","id":"694","title":"On writing your own plugins"},"695":{"body":"","breadcrumbs":"JavaScript » Plugins » Available plugins","id":"695","title":"Available plugins"},"696":{"body":"The PingEncryptionPlugin encrypts the pings payloads before pings are sent. Found a bug? Edit this page on GitHub.","breadcrumbs":"JavaScript » Plugins » PingEncryptionPlugin","id":"696","title":"PingEncryptionPlugin"},"697":{"body":"The PingEncryptionPlugin encrypts the pings payloads before pings are sent. The encryption happens after a ping is collected and before it is sent, the scope of this plugin does not include data encryption before collection. In other words, Glean will still store plain data on the user's machine and the data will only be encrypted during transit. Encrypted pings will not be compliant with the usual Glean ping schema . Instead they will follow a specific encrypted ping schema that looks like this: { \"payload\": \"eyJhbGciOiJFQ0RILUVTI...\"\n} The schema has one field, payload, which is an unbounded string containing the output of the encryption of the common Glean payload. Since JSON is the supported transport for our data ingestion platform, the encrypted payload will be in the JWE Compact Serialization format and must include a key id (kid) header identifying the public key used for encryption. A matching key is derived from the document namespace that uniquely identifies the application instead of the key id derived from the public key.","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » PingEncryptionPlugin","id":"697","title":"PingEncryptionPlugin"},"698":{"body":"The encryption key is provisioned by Data SRE and must be generated before new pings can be successfully ingested into a data store. Without a valid encryption key, the Glean pipeline will not be able to parse the pings and they will be thrown into the error stream. The encryption key should be requested as part of the process of adding a Glean application id to the ingestion pipeline (see this checklist ).","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » Requesting an encryption key","id":"698","title":"Requesting an encryption key"},"699":{"body":"","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » Usage","id":"699","title":"Usage"},"7":{"body":"The Glean SDKs Source Code is subject to the terms of the Mozilla Public License v2.0. You can obtain a copy of the MPL at https://mozilla.org/MPL/2.0/ .","breadcrumbs":"Glean » License","id":"7","title":"License"},"70":{"body":"Process overview Choosing a metric type Is it a single measurement? Are you measuring user behavior? Are you counting things? Are you measuring time? For how long do you need to collect this data? When should the Glean SDK automatically clear the measurement? A lifetime example What if none of these lifetimes are appropriate? What should this new metric be called? Reuse names from other applications Make names unique within an application Be as specific as possible What if none of these metric types is the right fit? How do I make sure my metric is working? Adding the metric to the metrics.yaml file Using the metric from your code Capitalization","breadcrumbs":"Metrics » Table of Contents","id":"70","title":"Table of Contents"},"700":{"body":"//esm\nimport PingEncryptionPlugin from \"@mozilla/glean/plugins/encryption\"\n// cjs\nconst { default: PingEncryptionPlugin } = require(\"@mozilla/glean/plugins/encryption\");","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » Entry point","id":"700","title":"Entry point"},"701":{"body":"The PingEncryptionPlugin constructor expects a JWK as a parameter. This JWK is the key provided by Data SRE during the \"Requesting an encryption key\" step. Glean.initialize({ \"my.fancy.encrypted.app\", uploadStatus, { plugins: [ new PingEncryptionPlugin({ \"crv\": \"P-256\", \"kid\": \"fancy\", \"kty\": \"EC\", \"x\": \"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\", \"y\": \"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\" }) ] }\n}); Note on logPings The logPings debug feature can still be used if ping encryption is turned on. Pings will be logged in their plain format, right before encryption happens. Found a bug? Edit this page on GitHub.","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » Instantiating","id":"701","title":"Instantiating"},"702":{"body":"A glossary with explanations and background for wording used in the Glean project.","breadcrumbs":"Glossary » Glossary","id":"702","title":"Glossary"},"703":{"body":"According to the dictionary the word “glean” means: to gather information or material bit by bit Glean is the combination of the Glean SDK, the Glean pipeline & Glean tools. See also: Glean - product analytics & telemetry .","breadcrumbs":"Glossary » Glean","id":"703","title":"Glean"},"704":{"body":"The general data pipeline is the infrastructure that collects, stores, and analyzes telemetry data from our products and logs from various services. See An overview of Mozilla’s Data Pipeline . The Glean pipeline additionally consists of the Probe Info Service , the schema generator , the JSON Schema transpiler , the ping schemas .","breadcrumbs":"Glossary » Glean Pipeline","id":"704","title":"Glean Pipeline"},"705":{"body":"The Glean SDKs are a bundle of libraries with support for different platforms. The source code is available at https://github.com/mozilla/glean and https://github.com/mozilla/glean.js .","breadcrumbs":"Glossary » Glean SDKs","id":"705","title":"Glean SDKs"},"706":{"body":"This documentation.","breadcrumbs":"Glossary » Glean SDKs book","id":"706","title":"Glean SDKs book"},"707":{"body":"Glean provides additional tools for its usage: Glean parser (Source code: https://github.com/mozilla/glean_parser/ )","breadcrumbs":"Glossary » Glean tools","id":"707","title":"Glean tools"},"708":{"body":"Metrics are the individual things being measured using Glean. They are defined in metrics.yaml files, also known as registry files . Glean itself provides some metrics out of the box .","breadcrumbs":"Glossary » Metric","id":"708","title":"Metric"},"709":{"body":"A ping is a bundle of related metrics, gathered in a payload to be transmitted. The Glean SDKs provide default pings and allows for custom pings, see Glean Pings .","breadcrumbs":"Glossary » Ping","id":"709","title":"Ping"},"71":{"body":"When adding a new metric, the process is: Consider the question you are trying to answer with this data, and choose the metric type and parameters to use. Add a new entry to metrics.yaml . Add code to your project to record into the metric by calling the Glean SDK. Important : Any new data collection requires documentation and data-review . This is also required for any new metric automatically collected by the Glean SDK.","breadcrumbs":"Metrics » Process overview","id":"71","title":"Process overview"},"710":{"body":"\"To submit\" means to collect & to enqueue a ping for uploading. The Glean SDKs store locally all the metrics set by it or by its clients. Each ping has its own schedule to gather all its locally saved metrics and create a JSON payload with them. This is called \"collection\". Upon successful collection, the payload is queued for upload, which may not happen immediately or at all (in case network connectivity is not available). Unless the user has defined their own custom pings, they don’t need to worry too much about submitting pings. All the default pings have their scheduling and submission handled by the SDK.","breadcrumbs":"Glossary » Submission","id":"710","title":"Submission"},"711":{"body":"The measurement window of a ping is the time frame in which metrics are being actively gathered for it. The measurement window start time is the moment the previous ping is submitted. In the absence of a previous ping, this time will be the time the application process started. The measurement window end time is the moment the current ping gets submitted. Any new metric recorded after submission will be part of the next ping, so this pings measurement window is over.","breadcrumbs":"Glossary » Measurement window","id":"711","title":"Measurement window"},"712":{"body":"This Week in Glean is a series of blog posts that the Glean Team at Mozilla is using to try to communicate better about our work. Found a bug? Edit this page on GitHub.","breadcrumbs":"Glossary » This Week in Glean (TWiG)","id":"712","title":"This Week in Glean (TWiG)"},"713":{"body":"mozilla/glean mozilla/glean.js Found a bug? Edit this page on GitHub.","breadcrumbs":"Changelog » Changelog","id":"713","title":"Changelog"},"714":{"body":"Full changelog","breadcrumbs":"Changelog » mozilla/glean » Unreleased changes","id":"714","title":"Unreleased changes"},"715":{"body":"Full changelog General Add methods to access current Glean debugging settings and the list of currently registered pings( Bug 1921976 ). Require glean_parser v16.1.0 ( #3006 ) BREAKING CHANGE: Add new collection-enabled mode (and follows_collection_enabled setting for pings). This allows to control a subset of pings independently from the Glean-wide upload-enabled flag. This deprecates the setUploadEnabled API in favor of setCollectionEnabled. ( #3006 ) Rust Permit Glean shutdown to interrupt UploadManager Wait tasks ( bug 1928288 )","breadcrumbs":"Changelog » mozilla/glean » v63.0.0 (2024-11-28)","id":"715","title":"v63.0.0 (2024-11-28)"},"716":{"body":"Full changelog General BREAKING : Remove LMDB-to-safe-mode migration. Safe-mode became the default in Glean v51. ( bug 1780370 ) BREAKING : Stop sending buckets with 0 counts in memory_distribution and timing_distribution metric payloads ( bug 1898336 ) Require glean_parser v15.2.0 ( bug 1925346 ) Disabled the glean.database.write_time metric as the instrumented behavior was triggering metrics pings to be sent containing only that metric ( Bug 1928168 ) Rust New Metric Type: labeled_quantity ( bug 1925346 )","breadcrumbs":"Changelog » mozilla/glean » v62.0.0 (2024-11-05)","id":"716","title":"v62.0.0 (2024-11-05)"},"717":{"body":"Full changelog Kotlin Accept a ping schedule map on initialize ( #2967 ) Swift Accept a ping schedule map on initialize ( #2967 )","breadcrumbs":"Changelog » mozilla/glean » v61.2.0 (2024-10-07)","id":"717","title":"v61.2.0 (2024-10-07)"},"718":{"body":"Full changelog Kotlin Change Metrics Ping Scheduler to use daemon threads ( #2930 ) Dispatch metric recording for event, object and timing distribution on the task queue ( #2942 ) Rust Experimental : Buffered API for timing, memory and custom distribution ( #2948 )","breadcrumbs":"Changelog » mozilla/glean » v61.1.0 (2024-09-24)","id":"718","title":"v61.1.0 (2024-09-24)"},"719":{"body":"Full changelog General BREAKING CHANGE: Updated to UniFFI 0.28.0 ( #2920 ) BREAKING CHANGE: Update to glean_parser v15.0.0 ( release notes ) Kotlin BREAKING CHANGE: Remove now obsolete type alias ( #2935 )","breadcrumbs":"Changelog » mozilla/glean » v61.0.0 (2024-08-21)","id":"719","title":"v61.0.0 (2024-08-21)"},"72":{"body":"The following is a set of questions to ask about the data being collected to help better determine which metric type to use.","breadcrumbs":"Metrics » Choosing a metric type","id":"72","title":"Choosing a metric type"},"720":{"body":"Full changelog General Make auto-flush behavior configurable and time-based ( #2871 ) Require glean_parser v14.5.0 ( #2916 ) Android Update to Gradle v8.9 ( #2909 ) Fixed GleanTestLocalServer test rule to prevent leaking between tests( Bug 1787234 ) Rust Remove cargo feature preinit_million_queue and set the default pre-init queue size to 10^6 for all consumers ( Bug 1909246 )","breadcrumbs":"Changelog » mozilla/glean » v60.5.0 (2024-08-06)","id":"720","title":"v60.5.0 (2024-08-06)"},"721":{"body":"Full changelog General Bump the string length limit to 255 characters ( #2857 ) New metric glean.database.write_time to measure database writes ( #2845 ) Require glean_parser v14.3.0 ( bug 1909244 ) Android Delay log init until Glean is getting initialized ( #2858 ) Update to Gradle v8.8 ( #2860 ) Updated Kotlin to version 1.9.24 ( #2861 ) Default-enable delayPingLifetimeIo ( #2863 ) Preparing Glean to be able to remove service-glean from Android Components ( #2891 ) Gradle Plugin: Support for using an external Python environment ( #2889 ) Rust New Metric Types: labeled_custom_distribution, labeled_memory_distribution, and labeled_timing_distribution ( bug 1657947 )","breadcrumbs":"Changelog » mozilla/glean » v60.4.0 (2024-07-23)","id":"721","title":"v60.4.0 (2024-07-23)"},"722":{"body":"Full changelog Android Allow configuring delayPingLifetimeIo in Kotlin and auto-flush this data after 1000 writes. It is also auto-flushed on background. ( #2851 )","breadcrumbs":"Changelog » mozilla/glean » v60.3.0 (2024-05-31)","id":"722","title":"v60.3.0 (2024-05-31)"},"723":{"body":"Full changelog Rust Accept a ping schedule map on initialize ( #2839 )","breadcrumbs":"Changelog » mozilla/glean » v60.2.0 (2024-05-23)","id":"723","title":"v60.2.0 (2024-05-23)"},"724":{"body":"Full changelog Android Allow configuring delayPingLifetimeIo in Kotlin and auto-flush this data after 1000 writes. It is also auto-flushed on background. ( #2851 ) (Backported changes)","breadcrumbs":"Changelog » mozilla/glean » v60.1.1 (2024-05-31)","id":"724","title":"v60.1.1 (2024-05-31)"},"725":{"body":"Full changelog Rust New TimingDistribution API for no-allocation single-duration accumulation. ( bug 1892097 ) Python Replace use of deprecated functionality (and make installs work on Python 3.12) ( #2820 )","breadcrumbs":"Changelog » mozilla/glean » v60.1.0 (2024-05-06)","id":"725","title":"v60.1.0 (2024-05-06)"},"726":{"body":"Full changelog Android Allow configuring delayPingLifetimeIo in Kotlin and auto-flush this data after 1000 writes. It is also auto-flushed on background. ( #2851 ) (Backported changes)","breadcrumbs":"Changelog » mozilla/glean » v60.0.1 (2024-05-31)","id":"726","title":"v60.0.1 (2024-05-31)"},"727":{"body":"Full changelog General BREAKING CHANGE: Server Knobs API changes requiring changes to consuming applications which make use of Server Knobs ( Bug 1889114 ) BREAKING CHANGE: Deprecated Server Knobs API setMetricsDisabled has been removed from all bindings. ( #2792 ) Added support for ping_schedule metadata property so that pings can be scheduled to be sent when other pings are sent. ( #2791 ) Android Updated Kotlin to version 1.9.23 ( #2737 ) New metric type: Object ( #2796 ) iOS New metric type: Object ( #2796 ) Python New metric type: Object ( #2796 )","breadcrumbs":"Changelog » mozilla/glean » v60.0.0 (2024-04-22)","id":"727","title":"v60.0.0 (2024-04-22)"},"728":{"body":"Full changelog General Hide glean_timestamp from event extras in tests ( #2776 ) Timing Distribution's timer ids now begin at 1, rather than 0, to make some multi-language use cases easier. ( 2777 ) Add a configuration option to disable internal pings ( #2786 ) Updated to UniFFI 0.27.0 ( #2762 )","breadcrumbs":"Changelog » mozilla/glean » v59.0.0 (2024-03-28)","id":"728","title":"v59.0.0 (2024-03-28)"},"729":{"body":"Full changelog General Enable wall clock timestamp on all events by default ( #2767 ) Rust Timing distribution and Custom distributions now expose accumulate_single_sample. This includes their traits and consumers that make use of them will need to implement the new functions ( Bug 1881297 ) Android Timing and Custom Distributions now have a accumulate_single_sample API that don't require use of a collection ( Bug 1881297 ) Python Timing Distributions now have both a accumulate_samples and accumulate_single_sample ( Bug 1881297 )","breadcrumbs":"Changelog » mozilla/glean » v58.1.0 (2024-03-12)","id":"729","title":"v58.1.0 (2024-03-12)"},"73":{"body":"If the value is true or false, use a boolean metric . If the value is a string, use a string metric . For example, to record the name of the default search engine. Beware: string metrics are exceedingly general, and you are probably best served by selecting the most specific metric for the job, since you'll get better error checking and richer analysis tools for free. For example, avoid storing a number in a string metric --- you probably want a counter metric instead. If you need to store multiple string values in a metric, use a string list metric . For example, you may want to record the list of other Mozilla products installed on the device. For all of the metric types in this section that measure single values, it is especially important to consider how the lifetime of the value relates to the ping it is being sent in. Since these metrics don't perform any aggregation on the client side, when a ping containing the metric is submitted, it will contain only the \"last known\" value for the metric, potentially resulting in data loss . There is further discussion of metric lifetimes below.","breadcrumbs":"Metrics » Is it a single measurement?","id":"73","title":"Is it a single measurement?"},"730":{"body":"Full changelog General Update glean_parser to v13.0.0 ( release notes ) Rust New metric type: Object ( #2489 ) BREAKING CHANGE: Support pings without {client|ping}_info sections ( #2756 ) Android Upgrade Android NDK to r26c ( #2745 )","breadcrumbs":"Changelog » mozilla/glean » v58.0.0 (2024-02-29)","id":"730","title":"v58.0.0 (2024-02-29)"},"731":{"body":"Full changelog General Added an experimental event listener API ( #2719 ) Android BREAKING CHANGE: Update JNA to version 5.14.0. Projects using older JNA releases may encounter errors until they update. ( #2727 ) Set the target Android SDK to version 34 ( #2709 ) Fixed an incorrectly named method. The method is now correctly named setExperimentationId. Update to Gradle v8.6 ( #2721 / #2731 )","breadcrumbs":"Changelog » mozilla/glean » v57.0.0 (2024-02-12)","id":"731","title":"v57.0.0 (2024-02-12)"},"732":{"body":"Full changelog General Errors are now recorded in cases where we had to create a new data store for Glean due to a failure ( bug 1815253 ) Update glean_parser to v11.0.0 ( release notes ) Event metrics can now record a maximum of 50 keys in the event extra object ( Bug 1869429 ) iOS Glean for iOS is now being built with Xcode 15.1 ( #2669 ) Android Replaced whenTaskAdded with configureEach in GleanGradlePlugin to avoid unnecessary configuration. ( #2697 )","breadcrumbs":"Changelog » mozilla/glean » v56.1.0 (2024-01-16)","id":"732","title":"v56.1.0 (2024-01-16)"},"733":{"body":"Full changelog General Updated to UniFFI 0.25.2 ( #2678 ) iOS Dropped support for iOS < 15 ( #2681 )","breadcrumbs":"Changelog » mozilla/glean » v56.0.0 (2023-11-30)","id":"733","title":"v56.0.0 (2023-11-30)"},"734":{"body":"Python BREAKING CHANGE: Dropped support for Python 3.7 ( # ) Full changelog General BREAKING CHANGE: Adding 0 to a counter or labeled_counter metric will be silently ignored instead of raising an invalid_value error ( bug 1762859 ) Trigger the uploader thread after scanning the pending pings directory ( bug 1847950 ) Extend start/stop time of a ping to millisecond precision. Custom pings can opt-out using precise_timestamps: false ( #2456 ) Update glean_parser to v10.0.0. Disallow unit field for anything but quantity, disallows ping lifetime metrics on the events ping, allows to configure precise timestamps in pings ( release notes ) Add an API to set an Experimentation ID that will be annotated to all pings ( Bug 1848201 )","breadcrumbs":"Changelog » mozilla/glean » v55.0.0 (2023-10-23)","id":"734","title":"v55.0.0 (2023-10-23)"},"735":{"body":"Full changelog General Experimental: Add configuration to add a wall clock timestamp to all events ( #2513 ) Python Switched the build system to maturin. This should not have any effect on consumers. ( #2345 ) BREAKING CHANGE: Dropped support for Python 3.6 ( #2345 ) Kotlin Update to Gradle v8.2.1 ( #2516 ) Increase Android compile SDK to version 34 ( #2614 )","breadcrumbs":"Changelog » mozilla/glean » v54.0.0 (2023-09-12)","id":"735","title":"v54.0.0 (2023-09-12)"},"736":{"body":"Full changelog General Update glean_parser to v8.1.0. Subsequently, metric names now have a larger limit of 70 characters ( release notes ) Rust The Ping Rate Limit type is now accessible in the Rust Language Binding ( #2528 ) Gracefully handle a failure when starting the upload thread. Glean no longer crashes in that case. ( #2545 ) locale now exposed through the RLB so it can be set by consumers ( #2531 ) Python Added the shutdown API for Python to ensure orderly shutdown and waiting for uploader processes ( #2538 ) Kotlin Move running of upload task when Glean is running in a background service to use the internal Glean Dispatchers rather than WorkManager. Bug 1844533","breadcrumbs":"Changelog » mozilla/glean » v53.2.0 (2023-08-02)","id":"736","title":"v53.2.0 (2023-08-02)"},"737":{"body":"Full changelog General Gracefully handle the waiting thread going away during shutdown ( #2503 ) Updated to UniFFI 0.24.1 ( #2510 ) Try blocking shutdown 10s for init to complete ( #2518 ) Android Update minimum supported Java byte code generation to 17 ( #2498 )","breadcrumbs":"Changelog » mozilla/glean » v53.1.0 (2023-06-28)","id":"737","title":"v53.1.0 (2023-06-28)"},"738":{"body":"Full changelog General Adds the capability to merge remote metric configurations, enabling multiple Nimbus Features or components to share this functionality ( Bug 1833381 ) StringList metric type limits have been increased. The length of strings allowed has been increased from 50 to 100 to match the String metric type, and the list length has been increased from 20 to 100 ( Bug 1833870 ) Make ping rate limiting configurable on Glean init. ( bug 1647630 ) Rust Timing distribution traits now expose accumulate_samples and accumulate_raw_samples_nanos. This is a breaking change for consumers that make use of the trait as they will need to implement the new functions ( Bug 1829745 ) iOS Make debugging APIs available on Swift ( #2470 ) Added a shutdown API for Swift. This should only be necessary for when Glean is running in a process other than the main process (like in the VPN daemon, for instance)( Bug 1832324 ) Glean for iOS is now being built with Xcode 14.3 ( #2253 )","breadcrumbs":"Changelog » mozilla/glean » v53.0.0 (2023-06-07)","id":"738","title":"v53.0.0 (2023-06-07)"},"739":{"body":"Full changelog General Allow user to configure how verbose the internal logging is ( #2459 ) Added a timeout waiting for the dispatcher at shutdown ( #2461 ) Added a new Glean metric glean.validation.shutdown_dispatcher_wait measuring the wait time at shutdown ( #2461 ) Kotlin Update Kotlin to version 1.8.21 ( #2462 ) Make debugging APIs available on Android ( Bug 1830937 )","breadcrumbs":"Changelog » mozilla/glean » v52.7.0 (2023-05-10)","id":"739","title":"v52.7.0 (2023-05-10)"},"74":{"body":"For tracking user behavior, it is usually meaningful to know the over of events that lead to the use of a feature. Therefore, for user behavior, an event metric is usually the best choice. Be aware, however, that events can be particularly expensive to transmit, store and analyze, so should not be used for higher-frequency measurements - though this is less of a concern in server environments .","breadcrumbs":"Metrics » Are you measuring user behavior?","id":"74","title":"Are you measuring user behavior?"},"740":{"body":"Full changelog Rust The Text metric type is now available in the Rust language bindings ( #2451 )","breadcrumbs":"Changelog » mozilla/glean » v52.6.0 (2023-04-20)","id":"740","title":"v52.6.0 (2023-04-20)"},"741":{"body":"Full changelog General On Rkv detecting a corrupted database delete the old RKV, create a new one and log the error ( #2425 ) Add the Date header as late as possible before the uploader acts ( #2436 ) The logic of the Server Knobs API has been flipped. Instead of applying a list of metrics and their disabled state, the API now accepts a list of metrics and their enabled state ( bug 1811253 ) Kotlin Adds the ability to record metrics on a non-main process. This is enabled by setting a dataPath in the Glean configuration ( bug 1815233 ) iOS Adds the ability to record metrics on a non-main process. This is enabled by setting a dataPath in the Glean configuration ( bug 1815233 )","breadcrumbs":"Changelog » mozilla/glean » v52.5.0 (2023-04-11)","id":"741","title":"v52.5.0 (2023-04-11)"},"742":{"body":"Full changelog General Expose Server Knobs functionality via UniFFI for use on mobile iOS BUGFIX: Prevent another test-only issue: The storage going away when the uploader reports back its status ( #2430 )","breadcrumbs":"Changelog » mozilla/glean » v52.4.3 (2023-03-24)","id":"742","title":"v52.4.3 (2023-03-24)"},"743":{"body":"Full changelog Rust Revert to libstd's remove_dir_all instead of external crate ( #2415 ) Python BUGFIX: Implement an empty shutdown function ( #2417 )","breadcrumbs":"Changelog » mozilla/glean » v52.4.2 (2023-03-15)","id":"743","title":"v52.4.2 (2023-03-15)"},"744":{"body":"Full changelog General Update tempfile crate to remove dependency on potentially vulnerable version of remove_dir_all@0.5.3","breadcrumbs":"Changelog » mozilla/glean » v52.4.1 (2023-03-10)","id":"744","title":"v52.4.1 (2023-03-10)"},"745":{"body":"Full changelog General Update glean_parser to v7.1.0 ( release notes ) Kotlin Upgrade Android NDK to r25c ( #2399 ) iOS BUGFIX: Reworking the HTTP uploader to avoid background uploading issues ( Bug 1819161 )","breadcrumbs":"Changelog » mozilla/glean » v52.4.0 (2023-03-09)","id":"745","title":"v52.4.0 (2023-03-09)"},"746":{"body":"Full changelog General No functional change from v52.3.0, just CI updates.","breadcrumbs":"Changelog » mozilla/glean » v52.3.1 (2023-03-01)","id":"746","title":"v52.3.1 (2023-03-01)"},"747":{"body":"Full changelog General Loosen label restrictions to \"at most 71 characters of printable ASCII\" ( bug 1672273 ) Introduced 2 new Glean health metrics: glean.upload.send_failure and glean.upload.send_success to measure the time for sending a ping ( #2365 ) Introduced a new Glean metric: glean.validation.shutdown_wait to measure the time Glean waits for the uploader on shutdown ( #2365 ) Rust On shutdown wait up to 30s on the uploader to finish work ( #2232 ) iOS BUGFIX: Avoid an invalid state (double-starting) for baseline.duration when Glean is first initialized ( #2368 )","breadcrumbs":"Changelog » mozilla/glean » v52.3.0 (2023-02-23)","id":"747","title":"v52.3.0 (2023-02-23)"},"748":{"body":"Full changelog General Update to UniFFI 0.23 ( #2338 )","breadcrumbs":"Changelog » mozilla/glean » v52.2.0 (2023-01-30)","id":"748","title":"v52.2.0 (2023-01-30)"},"749":{"body":"Full changelog General BUGFIX: Properly invoke the windows build number function from whatsys ( bug 1812672 )","breadcrumbs":"Changelog » mozilla/glean » v52.1.1 (2023-01-26)","id":"749","title":"v52.1.1 (2023-01-26)"},"75":{"body":"If you want to know how many times something happened, use a counter metric . If you are counting a group of related things, or you don't know what all of the things to count are at build time, use a labeled counter metric . If you need to know how many times something happened relative to the number of times something else happened, use a rate metric . If you need to know when the things being counted happened relative to other things, consider using an event .","breadcrumbs":"Metrics » Are you counting things?","id":"75","title":"Are you counting things?"},"750":{"body":"Full changelog General BUGFIX: Custom Pings with events should no longer erroneously post InvalidState errors ( bug 1811872 ) Upgrade to glean_parser v7.0.0 ( #2346 ) Kotlin Update to Gradle v7.6 ( #2317 ) Rust Added a new client_info field windows_build_number (Windows only) ( #2325 ) A new ConfigurationBuilder allows to create the Glean configuration before initialization ( #2313 ) Drop dependency on env_logger for regular builds ( #2312 )","breadcrumbs":"Changelog » mozilla/glean » v52.1.0 (2023-01-26)","id":"750","title":"v52.1.0 (2023-01-26)"},"751":{"body":"Full changelog Android The GleanDebugActivity can run without Glean being initialized ( #2336 ) Python Ship universal2 (aarch64 + x86_64 in one) wheels ( #2340 )","breadcrumbs":"Changelog » mozilla/glean » v52.0.1 (2023-01-19)","id":"751","title":"v52.0.1 (2023-01-19)"},"752":{"body":"Full changelog General Remove the metric glean.validation.first_run_hour. Note that this will mean no reason=upgrade metrics pings from freshly installed clients anymore. ( #2271 ) BEHAVIOUR CHANGE: Events in Custom Pings no longer trigger their submission. ( bug 1716725 ) Custom Pings with unsent events will no longer be sent at startup with reason startup. glean.restarted events will be included in Custom Pings with other events to rationalize event timestamps across restarts. test_reset_glean will remove all previous data if asked to clear stores, even if Glean never has been initialized ( #2294 ) Upgrade to glean_parser v6.5.0, with support for Cow in Rust code ( #2300 ) API REMOVED: The deprecated-since-v38 event metric record(map) API has been removed ( bug 1802550 ) BEHAVIOUR CHANGE: \"events\" pings will no longer be sent if they have metrics but no events ( bug 1803513 ) Experimental: Add functionality necessary to remotely configure the metric disabled property ( bug 1798919 ) This change has no effect when the API is not used and is transparent to consumers. The API is currently experimental because it is not stable and may change. Rust Static labels for labeled metrics are now Cow<'static, str> to reduce heap allocations ( #2272 ) NEW INTERNAL CONFIGURATION OPTION: trim_data_to_registered_pings will trim event storage to just the registered pings. Consult with the Glean Team before using. ( bug 1804915 )","breadcrumbs":"Changelog » mozilla/glean » v52.0.0 (2022-12-13)","id":"752","title":"v52.0.0 (2022-12-13)"},"753":{"body":"Full changelog General Upgrade to rkv 0.18.3. This comes with a bug fix that ensures that interrupted database writes don't corrupt/truncate the database file ( #2288 ) iOS Avoid building a dynamic library ( #2285 ). Note: v51.8.1 and 51.8.2 are not working on iOS and will break the build due to accidentally including a link to a dynamic library.","breadcrumbs":"Changelog » mozilla/glean » v51.8.3 (2022-11-25)","id":"753","title":"v51.8.3 (2022-11-25)"},"754":{"body":"Full changelog General BUGFIX: Reliably clear pending pings and events on Windows using remove_dir_all crate ( bug 1801128 ) Update to rkv v0.18.2 ( #2270 )","breadcrumbs":"Changelog » mozilla/glean » v51.8.2 (2022-11-17)","id":"754","title":"v51.8.2 (2022-11-17)"},"755":{"body":"Full changelog General Do not serialize count field in distribution payload ( #2267 ) BUGFIX: The glean-core \"metrics\" ping scheduler will now schedule and send \"upgrade\"-reason pings. ( bug 1800646 )","breadcrumbs":"Changelog » mozilla/glean » v51.8.1 (2022-11-15)","id":"755","title":"v51.8.1 (2022-11-15)"},"756":{"body":"Full changelog General Upgrade to glean_parser v6.3.0, increases the event extra limit to 15 ( #2255 ) Increase event extras value limit to 500 bytes ( #2255 ) Kotlin Increase to Android target/compile SDK version 33 ( #2246 ) iOS Try to avoid a crash by not invalidating upload sessions ( #2254 )","breadcrumbs":"Changelog » mozilla/glean » v51.8.0 (2022-11-03)","id":"756","title":"v51.8.0 (2022-11-03)"},"757":{"body":"Full changelog iOS Glean for iOS is now being built with Xcode 13.4 again ( #2242 ) Rust Add cargo feature preinit_million_queue to up the preinit queue length from 10^3 to 10^6 ( bug 1796258 )","breadcrumbs":"Changelog » mozilla/glean » v51.7.0 (2022-10-25)","id":"757","title":"v51.7.0 (2022-10-25)"},"758":{"body":"Full changelog General The internal glean-core dispatch queue changed from bounded to unbounded, while still behaving as a bounded queue. iOS BUGFIX: Additional work to address an iOS crash due to an invalidated session ( #2235 )","breadcrumbs":"Changelog » mozilla/glean » v51.6.0 (2022-10-24)","id":"758","title":"v51.6.0 (2022-10-24)"},"759":{"body":"Full changelog General Add count to DistributionData payload ( #2196 ) Update to UniFFI 0.21.0 ( #2229 ) Android Synchronize AndroidX dependencies with AC ( #2219 ) Bump jna to 5.12.1 #2221 ( #2221 ) iOS Glean for iOS is now being built with Xcode 14.0 ( #2188 )","breadcrumbs":"Changelog » mozilla/glean » v51.5.0 (2022-10-18)","id":"759","title":"v51.5.0 (2022-10-18)"},"76":{"body":"If you need to record an absolute time, use a datetime metric . Datetimes are recorded in the user's local time, according to their device's real time clock, along with a timezone offset from UTC. Datetime metrics allow specifying the resolution they are collected at, and to stay lean , they should only be collected at the minimum resolution required to answer your question. If you need to record how long something takes you have a few options. If you need to measure the total time spent doing a particular task, look to the timespan metric . Timespan metrics allow specifying the resolution they are collected at, and to stay lean , they should only be collected at the minimum resolution required to answer your question. Note that this metric should only be used to measure time on a single thread. If multiple overlapping timespans are measured for the same metric, an invalid state error is recorded. If you need to measure the relative occurrences of many timings, use a timing distribution . It builds a histogram of timing measurements, and is safe to record multiple concurrent timespans on different threads. If you need to know the time between multiple distinct actions that aren't a simple \"begin\" and \"end\" pair, consider using an event .","breadcrumbs":"Metrics » Are you measuring time?","id":"76","title":"Are you measuring time?"},"760":{"body":"Full changelog Kotlin Update Kotlin and Android Gradle Plugin to the latest releases ( #2211 ) Swift Fix for iOS startup crash caused by Glean ( #2206 )","breadcrumbs":"Changelog » mozilla/glean » v51.4.0 (2022-10-04)","id":"760","title":"v51.4.0 (2022-10-04)"},"761":{"body":"Full changelog General Update URL metric character limit to 8k to support longer URLs. URLs that are too long now are truncated to MAX_URL_LENGTH and still recorded along with an Overflow error. ( #2199 ) Kotlin Gradle plugin: Fix quoting issue in Python wrapper code ( #2193 ) Bumped the required Android NDK to version 25.1.8937393 ( #2195 )","breadcrumbs":"Changelog » mozilla/glean » v51.3.0 (2022-09-28)","id":"761","title":"v51.3.0 (2022-09-28)"},"762":{"body":"Full changelog General Relax glean_parser version requirement. All \"compatible releases\" are now allowed ( #2086 ) Uploaders can now signal that they can't upload anymore ( #2136 ) Update UniFFI to version 0.19.6 ( #2175 ) Kotlin BUGFIX: Re-enable correctly collecting glean.validation.foreground_count again ( #2153 ) BUGFIX: Gradle plugin: Correctly remove the version conflict check. Now the consuming module need to ensure it uses a single version across all dependencies ( #2155 ) Upgrade dependencies and increase to Android target/compile SDK version 32 ( #2150 ) Upgrade Android NDK to r25 ( #2159 ) BUGFIX: Correctly set os_version and architecture again ( #2174 ) iOS BUGFIX: Correctly set os_version and architecture again ( #2174 ) Python BUGFIX: Correctly handle every string that represents a UUID, including non-hyphenated random 32-character strings ( #2182 )","breadcrumbs":"Changelog » mozilla/glean » v51.2.0 (2022-09-08)","id":"762","title":"v51.2.0 (2022-09-08)"},"763":{"body":"Full changelog General BUGFIX: Handle that Glean might be uninitialized when an upload task is requested ( #2131 ) Updated the glean_parser to version 6.1.2 Kotlin BUGFIX: When setting a local endpoint in testing check for testing mode, not initialization ( #2145 ) Gradle plugin: Remove the version conflict check. Now the consuming module need to ensure it uses a single version across all dependencies ( #2143 )","breadcrumbs":"Changelog » mozilla/glean » v51.1.0 (2022-08-08)","id":"763","title":"v51.1.0 (2022-08-08)"},"764":{"body":"Full changelog General BUGFIX: Set the following client_info fields correctly again: android_sdk_version, device_manufacturer, device_model, locale. These were never set in Glean v50.0.0 to v51.0.0 ( #2131 )","breadcrumbs":"Changelog » mozilla/glean » v51.0.1 (2022-07-26)","id":"764","title":"v51.0.1 (2022-07-26)"},"765":{"body":"Full changelog General Remove testHasValue from all implementations. testGetValue always returns a null value (null, nil, None depending on the language) and does not throw an exception ( #2087 ). BREAKING CHANGE: Dropped ping_name argument from all test_get_num_recorded_errors methods ( #2088 ) Errors default to the metrics ping, so that's what is queried internally. BREAKING: Disable safe-mode everywhere. This causes all clients to migrate from LMDB to safe-mode storage ( #2123 ) Kotlin Fix the Glean Gradle Plugin to work with Android Gradle Plugin v7.2.1 ( #2114 ) Rust Add a method to construct an Event with runtime-known allowed extra keys. ( bug 1767037 )","breadcrumbs":"Changelog » mozilla/glean » v51.0.0 (2022-07-22)","id":"765","title":"v51.0.0 (2022-07-22)"},"766":{"body":"Full changelog General BUGFIX: Handle that Glean might be uninitialized when an upload task is requested ( #2131 )","breadcrumbs":"Changelog » mozilla/glean » v50.1.4 (2022-08-01)","id":"766","title":"v50.1.4 (2022-08-01)"},"767":{"body":"Full changelog General BUGFIX: Set the following client_info fields correctly again: android_sdk_version, device_manufacturer, device_model, locale. These were never set in Glean v50.0.0 to v51.0.0 ( #2131 )","breadcrumbs":"Changelog » mozilla/glean » v50.1.3 (2022-07-26)","id":"767","title":"v50.1.3 (2022-07-26)"},"768":{"body":"Full changelog General Update UniFFI to version 0.19.3 Fix rust-beta-tests linting","breadcrumbs":"Changelog » mozilla/glean » v50.1.2 (2022-07-08)","id":"768","title":"v50.1.2 (2022-07-08)"},"769":{"body":"Full changelog Kotlin Fix bug in Glean Gradle plugin by using correct quoting in embedded Python script ( #2097 ) Fix bug in Glean Gradle plugin by removing references to Linux paths ( #2098 )","breadcrumbs":"Changelog » mozilla/glean » v50.1.1 (2022-06-17)","id":"769","title":"v50.1.1 (2022-06-17)"},"77":{"body":"Think carefully about how long the metric will be needed, and set the expires parameter to disable the metric at the earliest possible time. This is an important component of Mozilla's lean data practices . When the metric passes its expiration date (determined at build time), it will automatically stop collecting data. When a metric's expiration is within in 14 days, emails will be sent from telemetry-alerts@mozilla.com to the notification_emails addresses associated with the metric. At that time, the metric should be removed, which involves removing it from the metrics.yaml file and removing uses of it in the source code. Removing a metric does not affect the availability of data already collected by the pipeline. If the metric is still needed after its expiration date, it should go back for another round of data review to have its expiration date extended. Important: Ensure that telemetry alerts are received and are reviewed in a timely manner. Expired metrics don't record any data, extending or removing a metric should be done in time. Consider adding both a group email address and an individual who is responsible for this metric to the notification_emails list.","breadcrumbs":"Metrics » For how long do you need to collect this data?","id":"77","title":"For how long do you need to collect this data?"},"770":{"body":"Full changelog General Updated to glean_parser v6.1.1 ( #2092 ) Swift Dropped usage of Carthage for internal dependencies ( #2089 ) Implement the text metric ( #2073 ) Kotlin Implement the text metric ( #2073 ) Rust Derive serde::{Deserialize, Serialize} on Lifetime and CommonMetricData ( bug 1772156 )","breadcrumbs":"Changelog » mozilla/glean » v50.1.0 (2022-06-15)","id":"770","title":"v50.1.0 (2022-06-15)"},"771":{"body":"Full changelog General Updated to glean_parser v6.0.1 Python Remove duplicate log initialization and prevent crash ( #2064 )","breadcrumbs":"Changelog » mozilla/glean » v50.0.1 (2022-05-25)","id":"771","title":"v50.0.1 (2022-05-25)"},"772":{"body":"Full changelog This release is a major refactoring of the internals and contains several breaking changes to exposed APIs. Exposed functionality should be unaffected. See below for details. General Switch to UniFFI-defined and -generated APIs for all 3 foreign-language SDKs The task dispatcher has been moved to Rust for all foreign-language SDKs Updated to glean_parser v6.0.0 Swift testGetValue on all metric types now returns nil when no data is recorded instead of throwing an exception. testGetValue on metrics with more complex data now return new objects for inspection. See the respective documentation for details. testHasValue on all metric types is deprecated. It is currently still available as extension methods. Use testGetValue with not-null checks. Kotlin testGetValue on all metric types now returns null when no data is recorded instead of throwing an exception. testGetValue on metrics with more complex data now return new objects for inspection. See the respective documentation for details. testHasValue on all metric types is deprecated. It is currently still available as extension methods and thus require an additional import. Use testGetValue with not-null checks. On TimingDistributionMetric, CustomDistributionMetric, MemoryDistributionMetric the accumulateSamples method now takes a List instead of LongArray. Use listOf instead of longArrayOf or call .toList TimingDistributionMetricType.start now always returns a valid TimerId, TimingDistributionMetricType.stopAndAccumulate always requires a TimerId. Python test_get_value on all metric types now returns None when no data is recorded instead of throwing an exception. test_has_value on all metric types was removed. Use test_get_value with not-null checks.","breadcrumbs":"Changelog » mozilla/glean » v50.0.0 (2022-05-20)","id":"772","title":"v50.0.0 (2022-05-20)"},"773":{"body":"Full changelog General The glean.error.preinit_tasks_overflow metric now reports only the number of overflowing tasks. It is marked as version 1 in the definition now. ( #2026 ) Kotlin (Development only) Allow to override the used glean_parser in the Glean Gradle Plugin ( #2029 ) setSourceTags is now a public API ( #2035 )) iOS setSourceTags is now a public API ( #2035 ) Rust Implemented try_get_num_recorded_errors for Boolean in Rust Language Bindings ( #2049 )","breadcrumbs":"Changelog » mozilla/glean » v44.2.0 (2022-05-16)","id":"773","title":"v44.2.0 (2022-05-16)"},"774":{"body":"Full changelog Rust Raise the global dispatcher queue limit from 100 to 1000 tasks. ( bug 1764549 ) iOS Enable expiry by version in the sdk_generator.sh script ( #2013 )","breadcrumbs":"Changelog » mozilla/glean » v44.1.1 (2022-04-14)","id":"774","title":"v44.1.1 (2022-04-14)"},"775":{"body":"Full changelog Android The glean-native-forUnitTests now ships with separate libraries for macOS x86_64 and macOS aarch64 ( #1967 ) Rust Glean will no longer overwrite the User-Agent header, but instead send that information as X-Telemetry-Agent ( bug 1711928 )","breadcrumbs":"Changelog » mozilla/glean » v44.1.0 (2022-04-06)","id":"775","title":"v44.1.0 (2022-04-06)"},"776":{"body":"General BREAKING CHANGE: Updated glean_parser version to 5.0.1 ( #1852 ). This update drops support for generating C# specific metrics API. Rust Ensure test-only destroy_glean() handles initialize() having started but not completed ( bug 1750235 ) Swift Dropping support of the Carthage-compatible framework archive ( #1943 ). The Swift Package (https://github.com/mozilla/glean-swift) is the recommended way of consuming Glean iOS. Python BUGFIX: Datetime metrics now correctly record the local timezone ( #1953 ). Full changelog","breadcrumbs":"Changelog » mozilla/glean » v44.0.0 (2022-02-09)","id":"776","title":"v44.0.0 (2022-02-09)"},"777":{"body":"Full changelog General Fix artifact publishing properly ( #1930 )","breadcrumbs":"Changelog » mozilla/glean » v43.0.2 (2022-01-17)","id":"777","title":"v43.0.2 (2022-01-17)"},"778":{"body":"Full changelog General Fix artifact publishing ( #1930 )","breadcrumbs":"Changelog » mozilla/glean » v43.0.1 (2022-01-17)","id":"778","title":"v43.0.1 (2022-01-17)"},"779":{"body":"Full changelog General Removed invalid_timezone_offset metric ( #1923 ) Python It is now possible to emit log messages from the networking subprocess by using the new log_level parameter to Glean.initialize. ( #1918 ) Kotlin Automatically pass build date as part of the build info ( #1917 ) iOS BREAKING CHANGE: Pass build info into initialize, which contains the build date ( #1917 ). A suitable instance is generated by glean_parser in GleanMetrics.GleanBuild.info.","breadcrumbs":"Changelog » mozilla/glean » v43.0.0 (2022-01-17)","id":"779","title":"v43.0.0 (2022-01-17)"},"78":{"body":"The lifetime parameter of a metric defines when its value will be cleared. There are three lifetime options available: ping (default) The metric is cleared each time it is submitted in the ping. This is the most common case, and should be used for metrics that are highly dynamic, such as things computed in response to the user's interaction with the application. application The metric is related to an application run, and is cleared after the application restarts and any Glean-owned ping, due at startup, is submitted. This should be used for things that are constant during the run of an application, such as the operating system version. In practice, these metrics are generally set during application startup. A common mistake--- using the ping lifetime for these type of metrics---means that they will only be included in the first ping sent during a particular run of the application. user NOTE: Reach out to the Glean team before using this. The metric is part of the user's profile and will live as long as the profile lives. This is often not the best choice unless the metric records a value that really needs to be persisted for the full lifetime of the user profile, e.g. an identifier like the client_id, the day the product was first executed. It is rare to use this lifetime outside of some metrics that are built in to the Glean SDK. While lifetimes are important to understand for all metric types, they are particularly important for the metric types that record single values and don't aggregate on the client (boolean, string, labeled_string, string_list, datetime and uuid), since these metrics will send the \"last known\" value and missing the earlier values could be a form of unintended data loss.","breadcrumbs":"Metrics » When should the Glean SDK automatically clear the measurement?","id":"78","title":"When should the Glean SDK automatically clear the measurement?"},"780":{"body":"Full changelog Python Reuse existing environment when launching subprocess ( #1908 )","breadcrumbs":"Changelog » mozilla/glean » v42.3.2 (2021-12-15)","id":"780","title":"v42.3.2 (2021-12-15)"},"781":{"body":"Full changelog iOS Fix Carthage archive release ( #1891 )","breadcrumbs":"Changelog » mozilla/glean » v42.3.1 (2021-12-07)","id":"781","title":"v42.3.1 (2021-12-07)"},"782":{"body":"Full changelog Rust BUGFIX: Correct category & name for preinit_tasks_overflow metric. Previously it would have been wrongly recorded as preinit_tasks_overflow.glean.error ( #1887 ) BUGFIX: Fix to name given to the events ping when instantiated ( #1885 ) iOS BUGFIX: Make fields of RecordedEventData publicly accessible ( #1867 ) Skip code generation in indexbuild build ( #1889 ) Python Don't let environment affect subprocess module search path ( #1542 )","breadcrumbs":"Changelog » mozilla/glean » v42.3.0 (2021-12-07)","id":"782","title":"v42.3.0 (2021-12-07)"},"783":{"body":"Full changelog General Updated glean_parser version to 4.3.1 ( #1852 ) Android Automatic detection of tags.yaml files ( #1852 )","breadcrumbs":"Changelog » mozilla/glean » v42.2.0 (2021-11-03)","id":"783","title":"v42.2.0 (2021-11-03)"},"784":{"body":"Full changelog Rust Backwards-compatible API Change: Make experiment test APIs public. ( #1834 )","breadcrumbs":"Changelog » mozilla/glean » v42.1.0 (2021-10-18)","id":"784","title":"v42.1.0 (2021-10-18)"},"785":{"body":"Full changelog General BUGFIX: Avoid a crash when accessing labeled metrics by caching created objects ( #1823 ). Python Glean now officially supports Python 3.10 ( #1818 )","breadcrumbs":"Changelog » mozilla/glean » v42.0.1 (2021-10-11)","id":"785","title":"v42.0.1 (2021-10-11)"},"786":{"body":"Full changelog Android Updated to Gradle 7, Android Gradle Plugin 7 and Rust Android Plugin 0.9 as well as building with Java 11 ( #1801 ) iOS Add support for the URL metric type ( #1791 ) Remove reliance on Operation for uploading and instead use the background capabilities of URLSession ( #1783 ) Glean for iOS is now being built with Xcode 13.0.0 ( #1802 ). Rust BUGFIX: No panic if trying to flush ping-lifetime data after shutdown ( #1800 ) BREAKING CHANGE: glean::persist_ping_lifetime_data is now async ( #1812 )","breadcrumbs":"Changelog » mozilla/glean » v42.0.0 (2021-10-06)","id":"786","title":"v42.0.0 (2021-10-06)"},"787":{"body":"Full changelog Android BUGFIX: Limit logging to Glean crates ( #1808 )","breadcrumbs":"Changelog » mozilla/glean » v41.1.1 (2021-09-29)","id":"787","title":"v41.1.1 (2021-09-29)"},"788":{"body":"Full changelog Rust BUGFIX: Ensure RLB persists ping lifetime data on shutdown ( #1793 ) Expose persist_ping_lifetime_data in the RLB. Consumers can call this to persist data at convenient times, data is also persisted on shutdown ( #1793 )","breadcrumbs":"Changelog » mozilla/glean » v41.1.0 (2021-09-16)","id":"788","title":"v41.1.0 (2021-09-16)"},"789":{"body":"Full changelog General BUGFIX: Only clear specified storage in delayed ping io mode ( #1782 ) Require Rust >= 1.53.0 ( #1782 ) Android Glean.initialize now requires a buildInfo parameter to pass in build time version information. A suitable instance is generated by glean_parser in ${PACKAGE_ROOT}.GleanMetrics.GleanBuildInfo.buildInfo. Support for not passing in a buildInfo object has been removed. ( #1752 )","breadcrumbs":"Changelog » mozilla/glean » v41.0.0 (2021-09-13)","id":"789","title":"v41.0.0 (2021-09-13)"},"79":{"body":"Let's work through an example to see how these lifetimes play out in practice. Let's suppose we have a user preference, \"turbo mode\", which defaults to false, but the user can turn it to true at any time. We want to know when this flag is true so we can measure its affect on other metrics in the same ping. In the following diagram, we look at a time period that sends 4 pings across two separate runs of the application. We assume here, that like the Glean SDK's built-in metrics ping , the developer writing the metric isn't in control of when the ping is submitted. In this diagram, the ping measurement windows are represented as rectangles, but the moment the ping is \"submitted\" is represented by its right edge. The user changes the \"turbo mode\" setting from false to true in the first run, and then toggles it again twice in the second run. Metric lifetime timeline A. Ping lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. It is included in the first ping after being recorded (Ping 2), which causes it to be cleared. B. Ping lifetime, set on init and change : The default value is included in Ping 1, and the changed value is included in Ping 2, which causes it to be cleared. It therefore misses Ping 3, but when the application is started, it is recorded again and it is included in Ping 4. However, this causes it to be cleared again and it is not in Ping 5. C. Application lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. After the value is changed, it is included in Pings 2 and 3, but then due to application restart it is cleared, so it is not included until the value is manually toggled again. D. Application, set on init and change : The default value is included in Ping 1, and the changed value is included in Pings 2 and 3. Even though the application startup causes it to be cleared, it is set again, and all subsequent pings also have the value. E. User, set on change : The default value is missing from Ping 1, but since user lifetime metrics aren't cleared unless the user profile is reset (e.g. on Android, when the product is uninstalled), it is included in all subsequent pings. F. User, set on init and change : Since user lifetime metrics aren't cleared unless the user profile is reset, it is included in all subsequent pings. This would be true even if the \"turbo mode\" preference were never changed again. Note that for all of the metric configurations, the toggle of the preference off and on during Ping 4 is completely missed. If you need to create a ping containing one, and only one, value for this metric, consider using a custom ping to create a ping whose lifetime matches the lifetime of the value.","breadcrumbs":"Metrics » A lifetime example","id":"79","title":"A lifetime example"},"790":{"body":"Full changelog General Updated glean_parser version to 4.0.0 Android Add support for the URL metric type ( #1778 ) Rust Add support for the URL metric type ( #1778 ) Python Add support for the URL metric type ( #1778 )","breadcrumbs":"Changelog » mozilla/glean » v40.2.0 (2021-09-08)","id":"790","title":"v40.2.0 (2021-09-08)"},"791":{"body":"Full changelog iOS Use 'Unknown' value if system data can't be decoded as UTF-8 ( #1769 ) BUGFIX: Add quantity metric type to the build ( #1774 ). Previous builds are unable to use quantity metrics","breadcrumbs":"Changelog » mozilla/glean » v40.1.1 (2021-09-02)","id":"791","title":"v40.1.1 (2021-09-02)"},"792":{"body":"Full changelog Android Updated to Kotlin 1.5, Android Gradle Plugin 4.2.2 and Gradle 6.7.1 ( #1747 ) The glean-gradle-plugin now forces a compile failure when multiple Glean versions are detected in the build ( #1756 ) The glean-gradle-plugin does not enable a glean-native capability on GeckoView anymore. That will be done by GeckoView directly ( #1759 )","breadcrumbs":"Changelog » mozilla/glean » v40.1.0 (2021-08-25)","id":"792","title":"v40.1.0 (2021-08-25)"},"793":{"body":"Full changelog Android Breaking Change : Split the Glean Kotlin SDK into two packages: glean and glean-native ( #1595 ). Consumers will need to switch to org.mozilla.telemetry:glean-native-forUnitTests. Old code in build.gradle: testImplementation \"org.mozilla.telemetry:glean-forUnitTests:${project.ext.glean_version}\" New code in build.gradle: testImplementation \"org.mozilla.telemetry:glean-native-forUnitTests:${project.ext.glean_version}\" The glean-gradle-plugin now automatically excludes the glean-native dependency if geckoview-omni is also part of the build. Glean native functionality will be provided by the geckoview-omni package. Rust The glean-ffi is no longer compiled as a cdylib. Other language SDKs consume glean-bundle instead as a cdylib. This doesn't affect consumers.","breadcrumbs":"Changelog » mozilla/glean » v40.0.0 (2021-07-28)","id":"793","title":"v40.0.0 (2021-07-28)"},"794":{"body":"Full changelog General Updated glean_parser version to 3.6.0 Allow Custom Distribution metric type on all platforms ( #1679 )","breadcrumbs":"Changelog » mozilla/glean » v39.1.0 (2021-07-26)","id":"794","title":"v39.1.0 (2021-07-26)"},"795":{"body":"Full changelog General Extend invalid_timezone_offset metric until the end of the year ( #1697 )","breadcrumbs":"Changelog » mozilla/glean » v39.0.4 (2021-07-26)","id":"795","title":"v39.0.4 (2021-07-26)"},"796":{"body":"Full changelog Android Unbreak Event#record API by accepting null on the deprecated API. The previous 39.0.0 release introduced the new API, but accidentally broke certain callers that just forward arguments. This restores passing null (or nothing) when using the old API. It remains deprecated.","breadcrumbs":"Changelog » mozilla/glean » v39.0.3 (2021-06-09)","id":"796","title":"v39.0.3 (2021-06-09)"},"797":{"body":"Full changelog iOS Fix iOS release build ( #1668 , #1669 )","breadcrumbs":"Changelog » mozilla/glean » v39.0.2 (2021-06-07)","id":"797","title":"v39.0.2 (2021-06-07)"},"798":{"body":"Full changelog iOS Build and release Glean as an xcframework ( #1663 ) This will now also auto-update the Glean package at https://github.com/mozilla/glean-swift.","breadcrumbs":"Changelog » mozilla/glean » v39.0.1 (2021-06-04)","id":"798","title":"v39.0.1 (2021-06-04)"},"799":{"body":"Full changelog General Add new event extras API to all implementations. See below for details ( #1603 ) Updated glean_parser version to 3.4.0 ( #1603 ) Rust Breaking Change : Allow event extras to be passed as an object. This replaces the old HashMap-based API. Values default to string. See the event documentation for details. ( #1603 ) Old code: let mut extra = HashMap::new();\nextra.insert(SomeExtra::Key1, \"1\".into());\nextra.insert(SomeExtra::Key2, \"2\".into());\nmetric.record(extra); New code: let extra = SomeExtra { key1: Some(\"1\".into()), key2: Some(\"2\".into()),\n};\nmetric.record(extra); Android Deprecation : The old event recording API is replaced by a new one, accepting a typed object ( #1603 ). See the event documentation for details. Skip build info generation for libraries ( #1654 ) Python Deprecation : The old event recording API is replaced by a new one, accepting a typed object ( #1603 ). See the event documentation for details. Swift Deprecation : The old event recording API is replaced by a new one, accepting a typed object ( #1603 ). See the event documentation for details.","breadcrumbs":"Changelog » mozilla/glean » v39.0.0 (2021-05-31)","id":"799","title":"v39.0.0 (2021-05-31)"},"8":{"body":"This page describes the steps for adding Glean to a project. This does not include the steps for adding a new metrics or pings to an existing Glean integration. If that is what your are looking for, refer to the Adding new metrics or the Adding new pings guide.","breadcrumbs":"Adding Glean to your project » Adding Glean to your project","id":"8","title":"Adding Glean to your project"},"80":{"body":"If the timing at which the metric is sent in the ping needs to closely match the timing of the metrics value, the best option is to use a custom ping to manually control when pings are sent. This is especially useful when metrics need to be tightly related to one another, for example when you need to measure the distribution of frame paint times when a particular rendering backend is in use. If these metrics were in different pings, with different measurement windows, it is much harder to do that kind of reasoning with much certainty.","breadcrumbs":"Metrics » What if none of these lifetimes are appropriate?","id":"80","title":"What if none of these lifetimes are appropriate?"},"800":{"body":"Full changelog General BUGFIX: Invert the lock order in glean-core's metrics ping scheduler ( #1637 )","breadcrumbs":"Changelog » mozilla/glean » v38.0.1 (2021-05-17)","id":"800","title":"v38.0.1 (2021-05-17)"},"801":{"body":"Full changelog General Update documentation to recommend using Glean Dictionary instead of metrics.md ( #1604 ) Rust Breaking Change : Don't return a result from submit_ping. The boolean return value indicates whether a ping was submitted ( #1613 ) Breaking Change : Glean now schedules \"metrics\" pings, accepting a new Configuration parameter. ( #1599 ) Dispatch setting the source tag to avoid a potential crash ( #1614 ) Testing mode will wait for init & upload tasks to finish ( #1628 ) Android Set required fields for client_info before optional ones ( #1633 ) Provide forward-compatibility with Gradle 6.8 ( #1616 )","breadcrumbs":"Changelog » mozilla/glean » v38.0.0 (2021-05-12)","id":"801","title":"v38.0.0 (2021-05-12)"},"802":{"body":"Full changelog General Breaking Change : \"deletion-request\" pings now include the reason upload was disabled: at_init (Glean detected a change between runs) or set_upload_enabled (Glean was told of a change as it happened). ( #1593 ). Attempt to upload a ping even in the face of IO Errors ( #1576 ). Implement an additional check to avoid crash due to faulty timezone offset ( #1581 ) This now records a new metric glean.time.invalid_timezone_offset, counting how often we failed to get a valid timezone offset. Use proper paths throughout to hopefully handle non-UTF-8 paths more gracefully ( #1596 ) Updated glean_parser version to 3.2.0 ( #1609 ) iOS Code generator: Ensure at least pip 20.3 is available in iOS build ( #1590 )","breadcrumbs":"Changelog » mozilla/glean » v37.0.0 (2021-04-30)","id":"802","title":"v37.0.0 (2021-04-30)"},"803":{"body":"Full changelog RLB Provide an internal-use-only API to pass in raw samples for timing distributions ( #1561 ). Expose Timespan's set_raw to Rust ( #1578 ). Android BUGFIX: TimespanMetricType.measure and TimingDistributionMetricType.measure won't get inlined anymore ( #1560 ). This avoids a potential bug where a return used inside the closure would end up not measuring the time. Use return@measure for early returns. Python The Glean Python bindings now use rkv's safe mode backend. This should avoid intermittent segfaults in the LMDB backend.","breadcrumbs":"Changelog » mozilla/glean » v36.0.1 (2021-04-09)","id":"803","title":"v36.0.1 (2021-04-09)"},"804":{"body":"Full changelog General Introduce a new API Ping#test_before_next_submit to run a callback right before a custom ping is submitted ( #1507 ). The new API exists for all language bindings (Kotlin, Swift, Rust, Python). Updated glean_parser version to 2.5.0 Change the fmt- and lint- make commands for consistency ( #1526 ) The Glean SDK can now produce testing coverage reports for your metrics ( #1482 ). Python Update minimal required version of cffi dependency to 1.13.0 ( #1520 ). Ship wheels for arm64 macOS ( #1534 ). RLB Added rate metric type ( #1516 ). Set internal_metrics::os_version for MacOS, Windows and Linux ( #1538 ) Expose a function get_timestamp_ms to get a timestamp from a monotonic clock on all supported operating systems, to be used for event timestamps ( #1546 ). Expose a function to record events with an externally provided timestamp. iOS Breaking Change : Event timestamps are now correctly recorded in milliseconds ( #1546 ). Since the first release event timestamps were erroneously recorded with nanosecond precision ( #1549 ). This is now fixed and event timestamps are in milliseconds. This is equivalent to how it works in all other language bindings.","breadcrumbs":"Changelog » mozilla/glean » v36.0.0 (2021-03-16)","id":"804","title":"v36.0.0 (2021-03-16)"},"805":{"body":"Full changelog Android Glean.initialize can now take a buildInfo parameter to pass in build time version information, and avoid calling out to the Android package manager at runtime. A suitable instance is generated by glean_parser in ${PACKAGE_ROOT}.GleanMetrics.GleanBuildInfo.buildInfo ( #1495 ). Not passing in a buildInfo object is still supported, but is deprecated. The testGetValue APIs now include a message on the NullPointerException thrown when the value is missing. Breaking change: LEGACY_TAG_PINGS is removed from GleanDebugActivity ( #1510 ) RLB Breaking change: Configuration.data_path is now a std::path::PathBuf( #1493 ).","breadcrumbs":"Changelog » mozilla/glean » v35.0.0 (2021-02-22)","id":"805","title":"v35.0.0 (2021-02-22)"},"806":{"body":"Full changelog General A new metric glean.validation.pings_submitted tracks the number of pings sent. It is included in both the metrics and baseline pings. iOS The metric glean.validation.foreground_count is now sent in the metrics ping ( #1472 ). BUGFIX: baseline pings with reason dirty_startup are no longer sent if Glean did not full initialize in the previous run ( #1476 ). Python Expose the client activity API ( #1481 ). BUGFIX: Publish a macOS wheel again. The previous release failed to build a Python wheel for macOS platforms ( #1471 ). RLB BUGFIX: baseline pings with reason dirty_startup are no longer sent if Glean did shutdown cleanly ( #1483 ).","breadcrumbs":"Changelog » mozilla/glean » v34.1.0 (2021-02-04)","id":"806","title":"v34.1.0 (2021-02-04)"},"807":{"body":"Full changelog General Other bindings detect when RLB is used and try to flush the RLB dispatcher to unblock the Rust API ( #1442 ). This is detected automatically, no changes needed for consuming code. Add support for the client activity API ( #1455 ). This API is either automatically used or exposed by the language bindings. Rename the reason background to inactive for both the baseline and events ping. Rename the reason foreground to active for the baseline ping. RLB When the pre-init task queue overruns, this is now recorded in the metric glean.error.preinit_tasks_overflow ( #1438 ). Expose the client activity API ( #1455 ). Send the baseline ping with reason dirty_startup, if needed, at startup. Expose all required types directly ( #1452 ). Rust consumers will not need to depend on glean-core anymore. Android BUGFIX: Don't crash the ping uploader when throttled due to reading too large wait time values ( #1454 ). Use the client activity API ( #1455 ). Update AndroidX dependencies ( #1441 ). iOS Use the client activity API ( #1465 ). Note: this now introduces a baseline ping with reason active on startup.","breadcrumbs":"Changelog » mozilla/glean » v34.0.0 (2021-01-29)","id":"807","title":"v34.0.0 (2021-01-29)"},"808":{"body":"Full changelog Rust Upgrade rkv to 0.17 ( #1434 )","breadcrumbs":"Changelog » mozilla/glean » v33.10.3 (2021-01-18)","id":"808","title":"v33.10.3 (2021-01-18)"},"809":{"body":"Full changelog General: A new metric glean.error.io has been added, counting the times an IO error happens when writing a pending ping to disk ( #1428 ) Android A new metric glean.validation.foreground_count was added to the metrics ping ( #1418 ). Rust BUGFIX: Fix lock order inversion in RLB Timing Distribution ( #1431 ). Use RLB types instead of glean-core ones for RLB core metrics. ( #1432 ).","breadcrumbs":"Changelog » mozilla/glean » v33.10.2 (2021-01-15)","id":"809","title":"v33.10.2 (2021-01-15)"},"81":{"body":"Metric names have a maximum length of 30 characters.","breadcrumbs":"Metrics » What should this new metric be called?","id":"81","title":"What should this new metric be called?"},"810":{"body":"Full changelog No functional changes. v33.10.0 failed to generated iOS artifacts due to broken tests ( #1421 ).","breadcrumbs":"Changelog » mozilla/glean » v33.10.1 (2021-01-06)","id":"810","title":"v33.10.1 (2021-01-06)"},"811":{"body":"Full changelog General A new metric glean.validation.first_run_hour, analogous to the existing first_run_date but with hour resolution, has been added. Only clients running the app for the first time after this change will report this metric ( #1403 ). Rust BUGFIX: Don't require mutable references in RLB traits ( #1417 ). Python Building the Python package from source now works on musl-based Linux distributions, such as Alpine Linux ( #1416 ).","breadcrumbs":"Changelog » mozilla/glean » v33.10.0 (2021-01-06)","id":"811","title":"v33.10.0 (2021-01-06)"},"812":{"body":"Full changelog Rust BUGFIX: Don't panic on shutdown and avoid running tasks if uninitialized ( #1398 ). BUGFIX: Don't fail on empty database files ( #1398 ). BUGFIX: Support ping registration before Glean initializes ( #1393 ).","breadcrumbs":"Changelog » mozilla/glean » v33.9.1 (2020-12-17)","id":"812","title":"v33.9.1 (2020-12-17)"},"813":{"body":"Full changelog Rust Introduce the String List metric type in the RLB. ( #1380 ). Introduce the Datetime metric type in the RLB ( #1384 ). Introduce the CustomDistribution and TimingDistribution metric type in the RLB ( #1394 ).","breadcrumbs":"Changelog » mozilla/glean » v33.9.0 (2020-12-15)","id":"813","title":"v33.9.0 (2020-12-15)"},"814":{"body":"Full changelog Rust Introduce the Memory Distribution metric type in the RLB. ( #1376 ). Shut down Glean in tests before resetting to make sure they don't mistakenly init Glean twice in parallel ( #1375 ). BUGFIX: Fixing 2 lock-order-inversion bugs found by TSan ( #1378 ). TSan runs on mozilla-central tests, which found two (potential) bugs where 2 different locks were acquired in opposite order in different code paths, which could lead to deadlocks in multi-threaded code. As RLB uses multiple threads (e.g. for init and the dispatcher) by default, this can easily become an actual issue. Python All log messages from the Glean SDK are now on the glean logger, obtainable through logging.getLogger(\"glean\"). (Prior to this, each module had its own logger, for example glean.net.ping_upload_worker).","breadcrumbs":"Changelog » mozilla/glean » v33.8.0 (2020-12-10)","id":"814","title":"v33.8.0 (2020-12-10)"},"815":{"body":"Full changelog Rust Upgrade rkv to 0.16.0 (no functional changes) ( #1355 ). Introduce the Event metric type in the RLB ( #1361 ). Python Python Linux wheels no longer work on Linux distributions released before 2014 (they now use the manylinux2014 ABI) ( #1353 ). Unbreak Python on non-Linux ELF platforms (BSD, Solaris/illumos) ( #1363 ).","breadcrumbs":"Changelog » mozilla/glean » v33.7.0 (2020-12-07)","id":"815","title":"v33.7.0 (2020-12-07)"},"816":{"body":"Full changelog Rust BUGFIX: Negative timespans for the timespan metric now correctly record an InvalidValue error ( #1347 ). Introduce the Timespan metric type in the RLB ( #1347 ). Python BUGFIX: Network slowness or errors will no longer block the main dispatcher thread, leaving work undone on shutdown ( #1350 ). BUGFIX: Lower sleep time on upload waits to avoid being stuck when the main process ends ( #1349 ).","breadcrumbs":"Changelog » mozilla/glean » v33.6.0 (2020-12-02)","id":"816","title":"v33.6.0 (2020-12-02)"},"817":{"body":"Full changelog Rust Introduce the UUID metric type in the RLB. Introduce the Labeled metric type in the RLB ( #1327 ). Introduce the Quantity metric type in the RLB. Introduce the shutdown API. Add Glean debugging APIs. Python BUGFIX: Setting a UUID metric to a value that is not in the expected UUID format will now record an error with the Glean error reporting system.","breadcrumbs":"Changelog » mozilla/glean » v33.5.0 (2020-12-01)","id":"817","title":"v33.5.0 (2020-12-01)"},"818":{"body":"Full changelog General When Rkv's safe mode is enabled (features = [\"rkv-safe-mode\"] on the glean-core crate) LMDB data is migrated at first start ( #1322 ). Rust Introduce the Counter metric type in the RLB. Introduce the String metric type in the RLB. BUGFIX: Track the size of the database directory at startup ( #1304 ). Python BUGFIX: Fix too-long sleep time in uploader due to unit mismatch ( #1325 ). Swift BUGFIX: Fix too-long sleep time in uploader due to unit mismatch ( #1325 ).","breadcrumbs":"Changelog » mozilla/glean » v33.4.0 (2020-11-17)","id":"818","title":"v33.4.0 (2020-11-17)"},"819":{"body":"Full changelog General Do not require default-features on rkv and downgrade bincode ( #1317 ) Do not require default-features on rkv and downgrade bincode ( #1317 ) Rust Implement the experiments API ( #1314 )","breadcrumbs":"Changelog » mozilla/glean » v33.3.0 (2020-11-12)","id":"819","title":"v33.3.0 (2020-11-12)"},"82":{"body":"There's a lot of value using the same name for analogous metrics collected across different products. For example, BigQuery makes it simple to join columns with the same name across multiple tables. Therefore, we encourage you to investigate if a similar metric is already being collected by another product. If it is, there may be an opportunity for code reuse across these products, and if all the projects are using the Glean SDK, it's easy for libraries to send their own metrics. If sharing the code doesn't make sense, at a minimum we recommend using the same metric name for similar actions and concepts whenever possible.","breadcrumbs":"Metrics » Reuse names from other applications","id":"82","title":"Reuse names from other applications"},"820":{"body":"Full changelog Python Fix building of Linux wheels ( #1303 ) Python Linux wheels no longer work on Linux distributions released before 2010. (They now use the manylinux2010 ABI, rather than the manylinux1 ABI.) Rust Introduce the RLB net module ( #1292 )","breadcrumbs":"Changelog » mozilla/glean » v33.2.0 (2020-11-10)","id":"820","title":"v33.2.0 (2020-11-10)"},"821":{"body":"Full changelog No changes. v33.1.1 was tagged incorrectly.","breadcrumbs":"Changelog » mozilla/glean » v33.1.2 (2020-11-04)","id":"821","title":"v33.1.2 (2020-11-04)"},"822":{"body":"Full changelog No changes. v33.1.0 was tagged incorrectly.","breadcrumbs":"Changelog » mozilla/glean » v33.1.1 (2020-11-04)","id":"822","title":"v33.1.1 (2020-11-04)"},"823":{"body":"Full changelog General Standardize throttle backoff time throughout all bindings. ( #1240 ) Update glean_parser to 1.29.0 Generated code now includes a comment next to each metric containing the name of the metric in its original snake_case form. Expose the description of the metric types in glean_core using traits. Rust Add the BooleanMetric type. Add the dispatcher module (copied over from mozilla-central ). Allow consumers to specify a custom uploader. Android Update the JNA dependency from 5.2.0 to 5.6.0 The glean-gradle-plugin now makes sure that only a single Miniconda installation will happen at the same time to avoid a race condition when multiple components within the same project are using Glean.","breadcrumbs":"Changelog » mozilla/glean » v33.1.0 (2020-11-04)","id":"823","title":"v33.1.0 (2020-11-04)"},"824":{"body":"Full changelog Note: Previous 33.0.z releases were broken. This release now includes all changes from 33.0.0 to 33.0.3. General Update glean_parser to 1.28.6 BUGFIX: Ensure Kotlin arguments are deterministically ordered Android Breaking change: Updated to the Android Gradle Plugin v4.0.1 and Gradle 6.5.1. Projects using older versions of these components will need to update in order to use newer versions of the Glean SDK. Update the Kotlin Gradle Plugin to version 1.4.10. Fixed the building of .aar releases on Android so they include the Rust shared objects.","breadcrumbs":"Changelog » mozilla/glean » v33.0.4 (2020-09-28)","id":"824","title":"v33.0.4 (2020-09-28)"},"825":{"body":"Full changelog General v33.0.2 was tagged incorrectly. This release is just to correct that mistake.","breadcrumbs":"Changelog » mozilla/glean » v33.0.3 (2020-09-25)","id":"825","title":"v33.0.3 (2020-09-25)"},"826":{"body":"Full changelog Android Fixed the building of .aar releases on Android so they include the Rust shared objects.","breadcrumbs":"Changelog » mozilla/glean » v33.0.2 (2020-09-25)","id":"826","title":"v33.0.2 (2020-09-25)"},"827":{"body":"Full changelog General Update glean_parser to 1.28.6 BUGFIX: Ensure Kotlin arguments are deterministically ordered Android Update the Kotlin Gradle Plugin to version 1.4.10.","breadcrumbs":"Changelog » mozilla/glean » v33.0.1 (2020-09-24)","id":"827","title":"v33.0.1 (2020-09-24)"},"828":{"body":"Full changelog Android Breaking change: Updated to the Android Gradle Plugin v4.0.1 and Gradle 6.5.1. Projects using older versions of these components will need to update in order to use newer versions of the Glean SDK.","breadcrumbs":"Changelog » mozilla/glean » v33.0.0 (2020-09-22)","id":"828","title":"v33.0.0 (2020-09-22)"},"829":{"body":"Full changelog General Update glean_parser to 1.28.6 BUGFIX: Ensure Kotlin arguments are deterministically ordered BUGFIX: Transform ping directory size from bytes to kilobytes before accumulating to glean.upload.pending_pings_directory_size ( #1236 ).","breadcrumbs":"Changelog » mozilla/glean » v32.4.1 (2020-10-01)","id":"829","title":"v32.4.1 (2020-10-01)"},"83":{"body":"Metric identifiers (the combination of a metric's category and name) must be unique across all metrics that are sent by a single application. This includes not only the metrics defined in the app's metrics.yaml, but the metrics.yaml of any Glean SDK-using library that the application uses, including the Glean SDK itself. Therefore, care should be taken to name things specifically enough so as to avoid namespace collisions. In practice, this generally involves thinking carefully about the category of the metric, more than the name. Note: Duplicate metric identifiers are not currently detected at build time. See bug 1578383 for progress on that. However, the probe_scraper process, which runs nightly, will detect duplicate metrics and e-mail the notification_emails associated with the given metrics.","breadcrumbs":"Metrics » Make names unique within an application","id":"83","title":"Make names unique within an application"},"830":{"body":"Full changelog General Allow using quantity metric type outside of Gecko ( #1198 ) Update glean_parser to 1.28.5 The SUPERFLUOUS_NO_LINT warning has been removed from the glinter. It likely did more harm than good, and makes it hard to make metrics.yaml files that pass across different versions of glean_parser. Expired metrics will now produce a linter warning, EXPIRED_METRIC. Expiry dates that are more than 730 days (~2 years) in the future will produce a linter warning, EXPIRATION_DATE_TOO_FAR. Allow using the Quantity metric type outside of Gecko. New parser configs custom_is_expired and custom_validate_expires added. These are both functions that take the expires value of the metric and return a bool. (See Metric.is_expired and Metric.validate_expires). These will allow FOG to provide custom validation for its version-based expires values. Add a limit of 250 pending ping files. ( #1217 ). Android Don't retry the ping uploader when waiting, sleep instead. This avoids a never-ending increase of the backoff time ( #1217 ).","breadcrumbs":"Changelog » mozilla/glean » v32.4.0 (2020-09-18)","id":"830","title":"v32.4.0 (2020-09-18)"},"831":{"body":"Full changelog General Track the size of the database file at startup ( #1141 ). Submitting a ping with upload disabled no longer shows an error message ( #1201 ). BUGFIX: scan the pending pings directories after dealing with upload status on initialization. This is important, because in case upload is disabled we delete any outstanding non-deletion ping file, and if we scan the pending pings folder before doing that we may end up sending pings that should have been discarded. ( #1205 ) iOS Disabled code coverage in release builds ( #1195 ). Python Glean now ships a source package to pip install on platforms where wheels aren't provided.","breadcrumbs":"Changelog » mozilla/glean » v32.3.2 (2020-09-11)","id":"831","title":"v32.3.2 (2020-09-11)"},"832":{"body":"Full changelog Python Fixed the release process to generate all wheels ( #1193 ).","breadcrumbs":"Changelog » mozilla/glean » v32.3.1 (2020-09-09)","id":"832","title":"v32.3.1 (2020-09-09)"},"833":{"body":"Full changelog Android Handle ping registration off the main thread. This removes a potential blocking call ( #1132 ). iOS Handle ping registration off the main thread. This removes a potential blocking call ( #1132 ). Glean for iOS is now being built with Xcode 12.0.0 (Beta 5) ( #1170 ).","breadcrumbs":"Changelog » mozilla/glean » v32.3.0 (2020-08-27)","id":"833","title":"v32.3.0 (2020-08-27)"},"834":{"body":"Full changelog General Move logic to limit the number of retries on ping uploading \"recoverable failures\" to glean-core. ( #1120 ) The functionality to limit the number of retries in these cases was introduced to the Glean SDK in v31.1.0. The work done now was to move that logic to the glean-core in order to avoid code duplication throughout the language bindings. Update glean_parser to v1.28.3 BUGFIX: Generate valid C# code when using Labeled metric types. BUGFIX: Support HashSet and Dictionary in the C# generated code. Add a 10MB quota to the pending pings storage. ( #1100 ) C# Add support for the String List metric type ( #1108 ). Enable generating the C# APIs using the glean_parser ( #1092 ). Add support for the EventMetricType in C# ( #1129 ). Add support for the TimingDistributionMetricType in C# ( #1131 ). Implement the experiments API in C# ( #1145 ). This is the last release with C# language bindings changes. Reach out to the Glean SDK team if you want to use the C# bindings in a new product and require additional features. Python BUGFIX: Limit the number of retries for 5xx server errors on ping uploads ( #1120 ). This kinds of failures yield a \"recoverable error\", which means the ping gets re-enqueued. That can cause infinite loops on the ping upload worker. For python we were incorrectly only limiting the number of retries for I/O errors, another type of \"recoverable error\". kebab-case ping names are now converted to snake_case so they are available on the object returned by load_pings ( #1122 ). For performance reasons, the glinter is no longer run as part of glean.load_metrics(). We recommend running glinter as part of your project's continuous integration instead ( #1124 ). A measure context manager for conveniently measuring runtimes has been added to TimespanMetricType and TimingDistributionMetricType ( #1126 ). Networking errors have changed from ERROR level to DEBUG level so they aren't displayed by default ( #1166 ). iOS Changed logging to use OSLog rather than a mix of NSLog and print. ( #1133 )","breadcrumbs":"Changelog » mozilla/glean » v32.2.0 (2020-08-25)","id":"834","title":"v32.2.0 (2020-08-25)"},"835":{"body":"Full changelog Android Support installing glean_parser in offline mode ( #1065 ). Fix a startup crash on some Android 8 (SDK=25) devices, due to a bug in the Java compiler ( #1135 ).","breadcrumbs":"Changelog » mozilla/glean » v32.1.1 (2020-08-24)","id":"835","title":"v32.1.1 (2020-08-24)"},"836":{"body":"Full changelog General The upload rate limiter has been changed from 10 pings per minute to 15 pings per minute.","breadcrumbs":"Changelog » mozilla/glean » v32.1.0 (2020-08-17)","id":"836","title":"v32.1.0 (2020-08-17)"},"837":{"body":"Full changelog General Limit ping request body size to 1MB. ( #1098 ) iOS Implement ping tagging (i.e. the X-Source-Tags header) through custom URL ( #1100 ). C# Add support for Labeled Strings and Labeled Booleans. Add support for the Counter metric type and Labeled Counter. Add support for the MemoryDistributionMetricType. Python Breaking change: data_dir must always be passed to Glean.initialize. Prior to this, a missing value would store Glean data in a temporary directory. Logging messages from the Rust core are now sent through Python's standard library logging module. Therefore all logging in a Python application can be controlled through the logging module interface. Android BUGFIX: Require activities executed via GleanDebugView to be exported.","breadcrumbs":"Changelog » mozilla/glean » v32.0.0 (2020-08-03)","id":"837","title":"v32.0.0 (2020-08-03)"},"838":{"body":"Full changelog General Implement JWE metric type ( #1073 , #1062 ). DEPRECATION: getUploadEnabled is deprecated (respectively get_upload_enabled in Python) ( #1046 ) Due to Glean's asynchronous initialization the return value can be incorrect. Applications should not rely on Glean's internal state. Upload enabled status should be tracked by the application and communicated to Glean if it changes. Note: The method was removed from the C# and Python implementation. Update glean_parser to v1.28.1 The glean_parser linting was leading consumers astray by incorrectly suggesting that deletion-request be instead deletion_request when used for send_in_pings. This was causing metrics intended for the deletion-request ping to not be included when it was collected and submitted. Consumers that are sending metrics in the deletion-request ping will need to update the send_in_pings value in their metrics.yaml to correct this. Fixes a bug in doc rendering.","breadcrumbs":"Changelog » mozilla/glean » v31.6.0 (2020-07-24)","id":"838","title":"v31.6.0 (2020-07-24)"},"839":{"body":"Full changelog General Implement ping tagging (i.e. the X-Source-Tags header) ( #1074 ). Note that this is not yet implemented for iOS. String values that are too long now record invalid_overflow rather than invalid_value through the Glean error reporting mechanism. This affects the string, event and string list metrics. metrics.yaml files now support a data_sensitivity field to all metrics for specifying the type of data collected in the field. Python The Python unit tests no longer send telemetry to the production telemetry endpoint. BUGFIX: If an application_version isn't provided to Glean.initialize, the client_info.app_display_version metric is set to \"Unknown\", rather than resulting in invalid pings. Android Allow defining which Activity to run next when using the GleanDebugActivity. iOS BUGFIX: The memory unit is now correctly set on the MemoryDistribution metric type in Swift in generated metrics code. C# Metrics can now be generated from the metrics.yaml files.","breadcrumbs":"Changelog » mozilla/glean » v31.5.0 (2020-07-22)","id":"839","title":"v31.5.0 (2020-07-22)"},"84":{"body":"More broadly, you should choose the names of metrics to be as specific as possible. It is not necessary to put the type of the metric in the category or name, since this information is retained in other ways through the entire end-to-end system. For example, if defining a set of events related to search, put them in a category called search, rather than just events or search_events. The events word here would be redundant.","breadcrumbs":"Metrics » Be as specific as possible","id":"84","title":"Be as specific as possible"},"840":{"body":"Full changelog General BUGFIX: fix int32 to ErrorType mapping. The InvalidOverflow had a value mismatch between glean-core and the bindings. This would only be a problem in unit tests. ( #1063 ) Android Enable propagating options to the main product Activity when using the GleanDebugActivity. BUGFIX: Fix the metrics ping collection for startup pings such as reason=upgrade to occur in the same thread/task as Glean initialize. Otherwise, it gets collected after the application lifetime metrics are cleared such as experiments that should be in the ping. ( #1069 )","breadcrumbs":"Changelog » mozilla/glean » v31.4.1 (2020-07-20)","id":"840","title":"v31.4.1 (2020-07-20)"},"841":{"body":"Full changelog General Enable debugging features through environment variables. ( #1058 )","breadcrumbs":"Changelog » mozilla/glean » v31.4.0 (2020-07-16)","id":"841","title":"v31.4.0 (2020-07-16)"},"842":{"body":"Full changelog General Remove locale from baseline ping. ( 1609968 , #1016 ) Persist X-Debug-ID header on store ping. ( 1605097 , #1042 ) BUGFIX: raise an error if Glean is initialized with an empty string as the application_id ( #1043 ). Python BUGFIX: correctly set the app_build metric to the newly provided application_build_id initialization option ( #1031 ). The Python bindings now report networking errors in the glean.upload.ping_upload_failure metric (like all the other bindings) ( #1039 ). Python default upgraded to Python 3.8 ( #995 ) iOS BUGFIX: Make LabeledMetric subscript public, so consuming applications can actually access it ( #1027 )","breadcrumbs":"Changelog » mozilla/glean » v31.3.0 (2020-07-10)","id":"842","title":"v31.3.0 (2020-07-10)"},"843":{"body":"Full changelog General Move debug view tag management to the Rust core. ( 1640575 , #998 ) BUGFIX: Fix mismatch in events keys and values by using glean_parser version 1.23.0.","breadcrumbs":"Changelog » mozilla/glean » v31.2.3 (2020-06-29)","id":"843","title":"v31.2.3 (2020-06-29)"},"844":{"body":"Full changelog Android BUGFIX: Compile dependencies with NDEBUG to avoid linking unavailable symbols. This fixes a crash due to a missing stderr symbol on older Android ( #1020 )","breadcrumbs":"Changelog » mozilla/glean » v31.2.2 (2020-06-26)","id":"844","title":"v31.2.2 (2020-06-26)"},"845":{"body":"Full changelog Python BUGFIX: Core metrics are now present in every ping, even if submit is called before initialize has a chance to complete. ( #1012 )","breadcrumbs":"Changelog » mozilla/glean » v31.2.1 (2020-06-25)","id":"845","title":"v31.2.1 (2020-06-25)"},"846":{"body":"Full changelog General Add rate limiting capabilities to the upload manager. ( 1543612 , #974 ) Android BUGFIX: baseline pings with reason \"dirty startup\" are no longer sent if Glean did not full initialize in the previous run ( #996 ). Python Support for Python 3.5 was dropped ( #987 ). Python wheels are now shipped with Glean release builds, resulting in much smaller libraries ( #1002 ) The Python bindings now use locale.getdefaultlocale() rather than locale.getlocale() to determine the locale ( #1004 ).","breadcrumbs":"Changelog » mozilla/glean » v31.2.0 (2020-06-24)","id":"846","title":"v31.2.0 (2020-06-24)"},"847":{"body":"Full changelog General BUGFIX: Correctly format the date and time in the Date header ( #993 ). Python BUGFIX: Additional time is taken at shutdown to make sure pings are sent and telemetry is recorded. ( 1646173 , #983 ) BUGFIX: Glean will run on the main thread when running in a multiprocessing subprocess ( #986 ).","breadcrumbs":"Changelog » mozilla/glean » v31.1.2 (2020-06-23)","id":"847","title":"v31.1.2 (2020-06-23)"},"848":{"body":"Full changelog Android Dropping the version requirement for lifecycle extensions down again. Upping the required version caused problems in A-C.","breadcrumbs":"Changelog » mozilla/glean » v31.1.1 (2020-06-12)","id":"848","title":"v31.1.1 (2020-06-12)"},"849":{"body":"Full changelog General: The regex crate is no longer required, making the Glean binary smaller ( #949 ) Record upload failures into a new metric ( #967 ) Log FFI errors as actual errors ( #935 ) Limit the number of upload retries in all implementations ( #953 , #968 ) Python Additional safety guarantees for applications that use Python threading ( #962 )","breadcrumbs":"Changelog » mozilla/glean » v31.1.0 (2020-06-11)","id":"849","title":"v31.1.0 (2020-06-11)"},"85":{"body":"The current set of metrics the Glean SDKs support is based on known common use cases, but new use cases are discovered all the time. Please reach out to us on #glean:mozilla.org . If you think you need a new metric type, we have a process for that .","breadcrumbs":"Metrics » What if none of these metric types is the right fit?","id":"85","title":"What if none of these metric types is the right fit?"},"850":{"body":"Full changelog Rust Fix list of included files in published crates","breadcrumbs":"Changelog » mozilla/glean » v31.0.2 (2020-05-29)","id":"850","title":"v31.0.2 (2020-05-29)"},"851":{"body":"Full changelog Rust Relax version requirement for flate2 for compatibility reasons","breadcrumbs":"Changelog » mozilla/glean » v31.0.1 (2020-05-29)","id":"851","title":"v31.0.1 (2020-05-29)"},"852":{"body":"Full changelog General: The version of glean_parser has been upgraded to v1.22.0 A maximum of 10 extra_keys is now enforced for event metric types. Breaking change : (Swift only) Combine all metrics and pings into a single generated file Metrics.swift. For Swift users this requires to change the list of output files for the sdk_generator.sh script. It now only needs to include the single file Generated/Metrics.swift. Python: BUGFIX: lifetime: application metrics are no longer recorded as lifetime: user. BUGFIX: glean-core is no longer crashing when calling uuid.set with invalid UUIDs. Refactor the ping uploader to use the new upload mechanism and add gzip compression. Most of the work in Glean.initialize happens on a worker thread and no longer blocks the main thread. Rust: Expose Datetime types to Rust consumers.","breadcrumbs":"Changelog » mozilla/glean » v31.0.0 (2020-05-28)","id":"852","title":"v31.0.0 (2020-05-28)"},"853":{"body":"Full changelog Android & iOS Ping payloads are now compressed using gzip. iOS Glean.initialize is now a no-op if called from an embedded extension. This means that Glean will only run in the base application process in order to prevent extensions from behaving like separate applications with different client ids from the base application. Applications are responsible for ensuring that extension metrics are only collected within the base application. Python lifetime: application metrics are now cleared after the Glean-owned pings are sent, after the product starts. Glean Python bindings now build in a native Windows environment. BUGFIX: MemoryDistributionMetric now parses correctly in metrics.yaml files. BUGFIX: Glean will no longer crash if run as part of another library's coverage testing.","breadcrumbs":"Changelog » mozilla/glean » v30.1.0 (2020-05-22)","id":"853","title":"v30.1.0 (2020-05-22)"},"854":{"body":"Full changelog General: We completely replaced how the upload mechanism works. glean-core (the Rust part) now controls all upload and coordinates the platform side with its own internals. All language bindings implement ping uploading around a common API and protocol. There is no change for users of Glean, the language bindings for Android and iOS have been adopted to the new mechanism already. Expose RecordedEvent and DistributionData types to Rust consumers ( #876 ) Log crate version at initialize ( #873 ) Android: Refactor the ping uploader to use the new upload mechanism. iOS: Refactor the ping uploader to use the new upload mechanism.","breadcrumbs":"Changelog » mozilla/glean » v30.0.0 (2020-05-13)","id":"854","title":"v30.0.0 (2020-05-13)"},"855":{"body":"Full changelog This is an iOS release only, built with Xcode 11.7 Otherwise no functional changes. iOS Build with Xcode 11.7 ( #1457 )","breadcrumbs":"Changelog » mozilla/glean » v29.1.2 (2021-01-26)","id":"855","title":"v29.1.2 (2021-01-26)"},"856":{"body":"Full changelog Android BUGFIX: Fix a race condition that leads to a ConcurrentModificationException. Bug 1635865","breadcrumbs":"Changelog » mozilla/glean » v29.1.1 (2020-05-22)","id":"856","title":"v29.1.1 (2020-05-22)"},"857":{"body":"Full changelog General: The version of glean_parser has been upgraded to v1.20.4 BUGFIX: yamllint errors are now reported using the correct file name. The minimum and maximum values of a timing distribution can now be controlled by the time_unit parameter. See bug 1630997 for more details.","breadcrumbs":"Changelog » mozilla/glean » v29.1.0 (2020-05-11)","id":"857","title":"v29.1.0 (2020-05-11)"},"858":{"body":"Full changelog General: The version of glean_parser has been upgraded to v1.20.2 ( #827 ): Breaking change: glinter errors found during code generation will now return an error code. glean_parser now produces a linter warning when user lifetime metrics are set to expire. See bug 1604854 for additional context. Android: The PingType.submit() can now be called without a null by Java consumers ( #853 ). Python: BUGFIX: Fixed a race condition in the atexit handler, that would have resulted in the message \"No database found\" ( #854 ). The Glean FFI header is now parsed at build time rather than runtime. Relevant for packaging in PyInstaller, the wheel no longer includes glean.h and adds _glean_ffi.py ( #852 ). The minimum versions of many secondary dependencies have been lowered to make the Glean SDK compatible with more environments. Dependencies that depend on the version of Python being used are now specified using the Declaring platform specific dependencies syntax in setuptools . This means that more recent versions of dependencies are likely to be installed on Python 3.6 and later, and unnecessary backport libraries won't be installed on more recent Python versions. iOS: Glean for iOS is now being built with Xcode 11.4.1 ( #856 )","breadcrumbs":"Changelog » mozilla/glean » v29.0.0 (2020-05-05)","id":"858","title":"v29.0.0 (2020-05-05)"},"859":{"body":"Full changelog General: The baseline ping is now sent when the application goes to foreground, in addition to background and dirty-startup. Python: BUGFIX: The ping uploader will no longer display a trace back when the upload fails due to a failed DNS lookup, network outage, or related issues that prevent communication with the telemetry endpoint. The dependency on inflection has been removed. The Python bindings now use subprocess rather than multiprocessing to perform ping uploading in a separate process. This should be more compatible on all of the platforms Glean supports.","breadcrumbs":"Changelog » mozilla/glean » v28.0.0 (2020-04-23)","id":"859","title":"v28.0.0 (2020-04-23)"},"86":{"body":"The Glean SDK has rich support for writing unit tests involving metrics. Writing a good unit test is a large topic, but in general, you should write unit tests for all new telemetry that does the following: Performs the operation being measured. Asserts that metrics contain the expected data, using the testGetValue API on the metric. Where applicable, asserts that no errors are recorded, such as when values are out of range, using the testGetNumRecordedErrors API. In addition to unit tests, it is good practice to validate the incoming data for the new metric on a pre-release channel to make sure things are working as expected.","breadcrumbs":"Metrics » How do I make sure my metric is working?","id":"86","title":"How do I make sure my metric is working?"},"860":{"body":"Full changelog General: BUGFIX: baseline pings sent at startup with the dirty_startup reason will now include application lifetime metrics ( #810 ) iOS: Breaking change: Change Glean iOS to use Application Support directory #815 . No migration code is included. This will reset collected data if integrated without migration. Please contact the Glean SDK team if this affects you. Python BUGFIX: Fixed a race condition between uploading pings and deleting the temporary directory on shutdown of the process.","breadcrumbs":"Changelog » mozilla/glean » v27.1.0 (2020-04-09)","id":"860","title":"v27.1.0 (2020-04-09)"},"861":{"body":"Full changelog General Glean will now detect when the upload enabled flag changes outside of the application, for example due to a change in a config file. This means that if upload is disabled while the application wasn't running (e.g. between the runs of a Python command using the Glean SDK), the database is correctly cleared and a deletion request ping is sent. See #791 . The events ping now includes a reason code: startup, background or max_capacity. iOS: BUGFIX: A bug where the metrics ping is sent immediately at startup on the last day of the month has been fixed. Glean for iOS is now being built with Xcode 11.4.0 The measure convenience function on timing distributions and time spans will now cancel the timing if the measured function throws, then rethrow the exception ( #808 ) Broken doc generation has been fixed ( #805 ). Kotlin The measure convenience function on timing distributions and time spans will now cancel the timing if the measured function throws, then rethrow the exception ( #808 ) Python: Glean will now wait at application exit for up to one second to let its worker thread complete. Ping uploading now happens in a separate child process by default. This can be disabled with the allow_multiprocessing configuration option.","breadcrumbs":"Changelog » mozilla/glean » v27.0.0 (2020-04-08)","id":"861","title":"v27.0.0 (2020-04-08)"},"862":{"body":"Full changelog General: The version of glean_parser has been updated to 1.19.0: Breaking change: The regular expression used to validate labels is stricter and more correct. Add more information about pings to markdown documentation: State whether the ping includes client id; Add list of data review links; Add list of related bugs links. glean_parser now makes it easier to write external translation functions for different language targets. BUGFIX: glean_parser now works on 32-bit Windows. Android: gradlew clean will no longer remove the Miniconda installation in ~/.gradle/glean. Therefore clean can be used without reinstalling Miniconda afterward every time. Python: Breaking Change : The glean.util and glean.hardware modules, which were unintentionally public, have been made private. Most Glean work and I/O is now done on its own worker thread. This brings the parallelism Python in line with the other platforms. The timing distribution, memory distribution, string list, labeled boolean and labeled string metric types are now supported in Python ( #762 , #763 , #765 , #766 )","breadcrumbs":"Changelog » mozilla/glean » v26.0.0 (2020-03-27)","id":"862","title":"v26.0.0 (2020-03-27)"},"863":{"body":"Full changelog Python: The Boolean, Datetime and Timespan metric types are now supported in Python ( #731 , #732 , #737 ) Make public, document and test the debugging features ( #733 )","breadcrumbs":"Changelog » mozilla/glean » v25.1.0 (2020-02-26)","id":"863","title":"v25.1.0 (2020-02-26)"},"864":{"body":"Full changelog General: ping_type is not included in the ping_info any more ( #653 ), the pipeline takes the value from the submission URL. The version of glean_parser has been upgraded to 1.18.2: Breaking Change (Java API) Have the metrics names in Java match the names in Kotlin. See Bug 1588060 . The reasons a ping are sent are now included in the generated markdown documentation. Android: The Glean.initialize method runs mostly off the main thread ( #672 ). Labels in labeled metrics now have a correct, and slightly stricter, regular expression. See label format for more information. iOS: The baseline ping will now include reason codes that indicate why it was submitted. If an unclean shutdown is detected (e.g. due to force-close), this ping will be sent at startup with reason: dirty_startup. Per Bug 1614785 , the clearing of application lifetime metrics now occurs after the metrics ping is sent in order to preserve values meant to be included in the startup metrics ping. initialize() now performs most of its work in a background thread. Python: When the pre-init task queue overruns, this is now recorded in the metric glean.error.preinit_tasks_overflow. glinter warnings are printed to stderr when loading metrics.yaml and pings.yaml files.","breadcrumbs":"Changelog » mozilla/glean » v25.0.0 (2020-02-17)","id":"864","title":"v25.0.0 (2020-02-17)"},"865":{"body":"Full changelog General: Add locale to client_info section. Deprecation Warning Since locale is now in the client_info section, the one in the baseline ping ( glean.baseline.locale ) is redundant and will be removed by the end of the quarter. Drop the Glean handle and move state into glean-core ( #664 ) If an experiment includes no extra fields, it will no longer include {\"extra\": null} in the JSON payload. Support for ping reason codes was added. The metrics ping will now include reason codes that indicate why it was submitted. The version of glean_parser has been upgraded to 1.17.3 Android: Collections performed before initialization (preinit tasks) are now dispatched off the main thread during initialization. The baseline ping will now include reason codes that indicate why it was submitted. If an unclean shutdown is detected (e.g. due to force-close), this ping will be sent at startup with reason: dirty_startup. iOS: Collections performed before initialization (preinit tasks) are now dispatched off the main thread and not awaited during initialization. Added recording of glean.error.preinit_tasks_overflow to report when the preinit task queue overruns, leading to data loss. See bug 1609734","breadcrumbs":"Changelog » mozilla/glean » v24.2.0 (2020-02-11)","id":"865","title":"v24.2.0 (2020-02-11)"},"866":{"body":"Full changelog General: Stopping a non started measurement in a timing distribution will now be reported as an invalid_state error. Android: A new metric glean.error.preinit_tasks_overflow was added to report when the preinit task queue overruns, leading to data loss. See bug 1609482","breadcrumbs":"Changelog » mozilla/glean » v24.1.0 (2020-01-16)","id":"866","title":"v24.1.0 (2020-01-16)"},"867":{"body":"Full changelog General: Breaking Change An enableUpload parameter has been added to the initialize() function. This removes the requirement to call setUploadEnabled() prior to calling the initialize() function. Android: The metrics ping scheduler will now only send metrics pings while the application is running. The application will no longer \"wake up\" at 4am using the Work Manager. The code for migrating data from Glean SDK before version 19 was removed. When using the GleanTestLocalServer rule in instrumented tests, pings are immediately flushed by the WorkManager and will reach the test endpoint as soon as possible. Python: The Python bindings now support Python 3.5 - 3.7. The Python bindings are now distributed as a wheel on Linux, macOS and Windows.","breadcrumbs":"Changelog » mozilla/glean » v24.0.0 (2020-01-14)","id":"867","title":"v24.0.0 (2020-01-14)"},"868":{"body":"Full changelog Android: BUGFIX: The Glean Gradle plugin will now work if an app or library doesn't have a metrics.yaml or pings.yaml file. iOS: The released iOS binaries are now built with Xcode 11.3.","breadcrumbs":"Changelog » mozilla/glean » v23.0.1 (2020-01-08)","id":"868","title":"v23.0.1 (2020-01-08)"},"869":{"body":"Full changelog Python bindings: Support for events and UUID metrics was added. Android: The Glean Gradle Plugin correctly triggers docs and API updates when registry files change, without requiring them to be deleted. parseISOTimeString has been made 4x faster. This had an impact on Glean migration and initialization. Metrics with lifetime: application are now cleared when the application is started, after startup Glean SDK pings are generated. All platforms: The public method PingType.send() (in all platforms) have been deprecated and renamed to PingType.submit(). Rename deletion_request ping to deletion-request ping after glean_parser update","breadcrumbs":"Changelog » mozilla/glean » v23.0.0 (2020-01-07)","id":"869","title":"v23.0.0 (2020-01-07)"},"87":{"body":"The metrics.yaml file defines the metrics your application or library will send. They are organized into categories. The overall organization is: # Required to indicate this is a `metrics.yaml` file\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 toolbar: click: type: event description: | Event to record toolbar clicks. metadata: tags: - Interaction notification_emails: - CHANGE-ME@example.com bugs: - https://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review expires: 2019-06-01 # <-- Update to a date in the future double_click: ... Refer to the metrics YAML registry format for a full reference on the metrics.yaml file structure.","breadcrumbs":"Metrics » Adding the metric to the metrics.yaml file","id":"87","title":"Adding the metric to the metrics.yaml file"},"870":{"body":"Full changelog Add InvalidOverflow error to TimingDistributions ( #583 )","breadcrumbs":"Changelog » mozilla/glean » v22.1.0 (2019-12-17)","id":"870","title":"v22.1.0 (2019-12-17)"},"871":{"body":"Full changelog Add option to defer ping lifetime metric persistence ( #530 ) Add a crate for the nice control API ( #542 ) Pending deletion_request pings are resent on start ( #545 )","breadcrumbs":"Changelog » mozilla/glean » v22.0.0 (2019-12-05)","id":"871","title":"v22.0.0 (2019-12-05)"},"872":{"body":"Full changelog Timers are reset when disabled. That avoids recording timespans across disabled/enabled toggling ( #495 ). Add a new flag to pings: send_if_empty ( #528 ) Upgrade glean_parser to v1.12.0 Implement the deletion request ping in Glean ( #526 )","breadcrumbs":"Changelog » mozilla/glean » v21.3.0 (2019-12-03)","id":"872","title":"v21.3.0 (2019-12-03)"},"873":{"body":"Full changelog All platforms The experiments API is no longer ignored before the Glean SDK initialized. Calls are recorded and played back once the Glean SDK is initialized. String list items were being truncated to 20, rather than 50, bytes when using .set() (rather than .add()). This has been corrected, but it may result in changes in the sent data if using string list items longer than 20 bytes.","breadcrumbs":"Changelog » mozilla/glean » v21.2.0 (2019-11-21)","id":"873","title":"v21.2.0 (2019-11-21)"},"874":{"body":"Full changelog Android: Use the LifecycleEventObserver interface, rather than the DefaultLifecycleObserver interface, since the latter isn't compatible with old SDK targets.","breadcrumbs":"Changelog » mozilla/glean » v21.1.1 (2019-11-20)","id":"874","title":"v21.1.1 (2019-11-20)"},"875":{"body":"Full changelog Android: Two new metrics were added to investigate sending of metrics and baseline pings. See bug 1597980 for more information. Glean's two lifecycle observers were refactored to avoid the use of reflection. All platforms: Timespans will now not record an error if stopping after setting upload enabled to false.","breadcrumbs":"Changelog » mozilla/glean » v21.1.0 (2019-11-20)","id":"875","title":"v21.1.0 (2019-11-20)"},"876":{"body":"Full changelog Android: The GleanTimerId can now be accessed in Java and is no longer a typealias. Fixed a bug where the metrics ping was getting scheduled twice on startup. All platforms Bumped glean_parser to version 1.11.0.","breadcrumbs":"Changelog » mozilla/glean » v21.0.0 (2019-11-18)","id":"876","title":"v21.0.0 (2019-11-18)"},"877":{"body":"Full changelog In earlier 20.x.x releases, the version of glean-ffi was incorrectly built against the wrong version of glean-core.","breadcrumbs":"Changelog » mozilla/glean » v20.2.0 (2019-11-11)","id":"877","title":"v20.2.0 (2019-11-11)"},"878":{"body":"Full changelog The version of Glean is included in the Glean Gradle plugin. When constructing a ping, events are now sorted by their timestamp. In practice, it rarely happens that event timestamps are unsorted to begin with, but this guards against a potential race condition and incorrect usage of the lower-level API.","breadcrumbs":"Changelog » mozilla/glean » v20.1.0 (2019-11-11)","id":"878","title":"v20.1.0 (2019-11-11)"},"879":{"body":"Full changelog Glean users should now use a Gradle plugin rather than a Gradle script. (#421) See integrating with the build system docs for more information. In Kotlin, metrics that can record errors now have a new testing method, testGetNumRecordedErrors. (#401)","breadcrumbs":"Changelog » mozilla/glean » v20.0.0 (2019-11-11)","id":"879","title":"v20.0.0 (2019-11-11)"},"88":{"body":"The reference documentation for each metric type goes into detail about using each metric type from your code. Note that all Glean metrics are write-only. Outside of unit tests, it is impossible to retrieve a value from the Glean SDK's database. While this may seem limiting, this is required to: enforce the semantics of certain metric types (e.g. that Counters can only be incremented). ensure the lifetime of the metric (when it is cleared or reset) is correctly handled.","breadcrumbs":"Metrics » Using the metric from your code","id":"88","title":"Using the metric from your code"},"880":{"body":"Full changelog Fixed a crash calling start on a timing distribution metric before Glean is initialized. Timings are always measured, but only recorded when upload is enabled ( #400 ) BUGFIX: When the Debug Activity is used to log pings, each ping is now logged only once ( #407 ) New invalid state error, used in timespan recording ( #230 ) Add an Android crash instrumentation walk-through ( #399 ) Fix crashing bug by avoiding assert-printing in LMDB ( #422 ) Upgrade dependencies, including rkv ( #416 )","breadcrumbs":"Changelog » mozilla/glean » v19.1.0 (2019-10-29)","id":"880","title":"v19.1.0 (2019-10-29)"},"881":{"body":"Full changelog First stable release of Glean in Rust (aka glean-core). This is a major milestone in using a cross-platform implementation of Glean on the Android platform. Fix round-tripping of timezone offsets in dates ( #392 ) Handle dynamic labels in coroutine tasks ( #394 )","breadcrumbs":"Changelog » mozilla/glean » v19.0.0 (2019-10-22)","id":"881","title":"v19.0.0 (2019-10-22)"},"882":{"body":"Full changelog Ignore dynamically stored labels if Glean is not initialized ( #374 ) Make sure ProGuard doesn't remove Glean classes from the app ( #380 ) Keep track of pings in all modes ( #378 ) Add jnaTest dependencies to the forUnitTest JAR ( #382 )","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING6 (2019-10-18)","id":"882","title":"v0.0.1-TESTING6 (2019-10-18)"},"883":{"body":"Full changelog Upgrade to NDK r20 ( #365 )","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING5 (2019-10-10)","id":"883","title":"v0.0.1-TESTING5 (2019-10-10)"},"884":{"body":"Full changelog Take DST into account when converting a calendar into its items ( #359 ) Include a macOS library in the forUnitTests builds ( #358 ) Keep track of all registered pings in test mode ( #363 )","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING4 (2019-10-09)","id":"884","title":"v0.0.1-TESTING4 (2019-10-09)"},"885":{"body":"Full changelog Allow configuration of Glean through the GleanTestRule Bump glean_parser version to 1.9.2","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING3 (2019-10-08)","id":"885","title":"v0.0.1-TESTING3 (2019-10-08)"},"886":{"body":"Full changelog Include a Windows library in the forUnitTests builds","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING2 (2019-10-07)","id":"886","title":"v0.0.1-TESTING2 (2019-10-07)"},"887":{"body":"Full changelog","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING1 (2019-10-02)","id":"887","title":"v0.0.1-TESTING1 (2019-10-02)"},"888":{"body":"First testing release. Found a bug? Edit this page on GitHub.","breadcrumbs":"Changelog » mozilla/glean » General","id":"888","title":"General"},"889":{"body":"Full changelog","breadcrumbs":"Changelog » mozilla/glean.js » Unreleased changes","id":"889","title":"Unreleased changes"},"89":{"body":"One thing to note is that we try to adhere to the coding conventions of each language wherever possible, so the metric name and category in the metrics.yaml (which is in snake_case) may be changed to some other case convention, such as camelCase, when used from code. Event extras and labels are never capitalized, no matter the target language. Category and metric names in the metrics.yaml are in snake_case, but given the Kotlin coding standards defined by ktlint , these identifiers must be camelCase in Kotlin. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: import org.mozilla.yourApplication.GleanMetrics.Views\nGleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, but given the Swift coding standards defined by swiftlint , these identifiers must be camelCase in Swift. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: GleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, which matches the PEP8 standard, so no translation is needed for Python. Given the Rust coding standards defined by clippy , identifiers should all be snake_case. This includes category names which in the metrics.yaml are dotted.snake_case: compound.category: metric_name: ... In Rust this becomes: use firefox_on_glean::metrics; metrics::compound_category::metric_name... JavaScript identifiers are customarily camelCase. This requires transforming a metric defined in the metrics.yaml as: compound.category: metric_name: ... to a form useful in JS as: import * as compoundCategory from \"./path/to/generated/files/compoundCategory.js\"; compoundCategory.metricName... Firefox Desktop has Coding Style Guidelines for both C++ and JS. This results in, for a metric defined in the metrics.yaml as: compound.category: metric_name: ... an identifier that looks like: C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::compound_category::metric_name... JavaScript Glean.compoundCategory.metricName... Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Capitalization","id":"89","title":"Capitalization"},"890":{"body":"Full changelog #1971 : Bumped glean_parser version to 14.5.0. #1970 : Add window.Glean.debugSession API for automatically opening a link to the Debug Ping Viewer with your current session selected.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.3 (2024-08-02)","id":"890","title":"v5.0.3 (2024-08-02)"},"891":{"body":"Full changelog #1935 : BREAKING CHANGE : Remove migrateFromLegacyStorage capability and configuration option. If your project currently sets the migrateFromLegacyStorage value, this will no longer work. #1942 : Bumped glean_parser version to 14.1.2.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.2 (2024-05-23)","id":"891","title":"v5.0.2 (2024-05-23)"},"892":{"body":"Full changelog #1923 : Bumped glean_parser version to 14.0.1. #1921 : BUGFIX: Fix issue causing glean.client.annotation.experimentation_id metric to not get added in certain pings. #1919 : Add glean.page_id to Glean automatic events.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.1 (2024-04-30)","id":"892","title":"v5.0.1 (2024-04-30)"},"893":{"body":"Full changelog This is the official release based on the v5.0.0-pre.0 release.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.0 (2024-03-25)","id":"893","title":"v5.0.0 (2024-03-25)"},"894":{"body":"Full changelog #1895 : Improve automatic click events for nested elements. #1899 : Bug 1886113 - Add wall-clock timestamps to all events. #1900 : Bug 1886443 - automatic click events in web sample project.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.0-pre.0 (2024-03-21)","id":"894","title":"v5.0.0-pre.0 (2024-03-21)"},"895":{"body":"Full changelog #1866 : Added a new uploader that falls back to fetch if navigator.sendBeacon fails. #1876 : BREAKING CHANGE : navigator.sendBeacon with fallback to fetch (see #1866) is now the default uploader. This can be changed manually. #1850 : Automatically record basic session information (session_id & session_count) for web properties.","breadcrumbs":"Changelog » mozilla/glean.js » v4.1.0-pre.0 (2024-03-05)","id":"895","title":"v4.1.0-pre.0 (2024-03-05)"},"896":{"body":"Full changelog This is the official release based on the v4.0.0-pre.x releases.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0 (2024-01-24)","id":"896","title":"v4.0.0 (2024-01-24)"},"897":{"body":"Full changelog #1848 : Support for automatically collecting element click events (first version) #1849 : Truncate event extra strings to 500 bytes. This also updates other string-based metrics to truncate based on max bytes rather than a set number of characters.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0-pre.3 (2023-12-22)","id":"897","title":"v4.0.0-pre.3 (2023-12-22)"},"898":{"body":"Full changelog #1835 : Added support for automatic page load instrumentation. #1846 : Add logging messages when using the debugging APIs from the browser console.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0-pre.2 (2023-12-06)","id":"898","title":"v4.0.0-pre.2 (2023-12-06)"},"899":{"body":"Full changelog #1834 : Added support for navigator.sendBeacon. This is not turned on by default and needs to be enabled manually.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0-pre.1 (2023-12-01)","id":"899","title":"v4.0.0-pre.1 (2023-12-01)"},"9":{"body":"The Glean integration checklist can help to ensure your Glean SDK-using product is meeting all of the recommended guidelines. Products (applications or libraries) using a Glean SDK to collect telemetry must : Integrate the Glean SDK into the build system . Since the Glean SDK does some code generation for your metrics at build time, this requires a few more steps than just adding a library. Go through data review process for all newly collected data. Ensure that telemetry coming from automated testing or continuous integration is either not sent to the telemetry server or tagged with the automation tag using the sourceTag feature . At least one week before releasing your product, enable your product's application id and metrics to be ingested by the data platform (and, as a consequence, indexed by the Glean Dictionary ). Important consideration for libraries: For libraries that are adding Glean, you will need to indicate which applications use the library as a dependency so that the library metrics get correctly indexed and added to the products that consume the library. If the library is added to a new product later, then it is necessary to file a new [bug][dataeng-bug] to add it as a dependency to that product in order for the library metrics to be collected along with the data from the new product. Additionally, applications (but not libraries) must : Request a data review to add Glean to your application (since it can send data out of the box). Initialize Glean as early as possible at application startup. Provide a way for users to turn data collection off (e.g. providing settings to control Glean.setUploadEnabled()). The exact method used is application-specific. Looking for an integration guide? Step-by-step tutorials for each supported language/platform, can be found on the specific integration guides: JavaScript Kotlin Python Rust Swift Qt/QML Server Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Glean integration checklist","id":"9","title":"Glean integration checklist"},"90":{"body":"","breadcrumbs":"Metrics » Adding new metrics » Adding new metrics","id":"90","title":"Adding new metrics"},"900":{"body":"Full changelog #1808 : BREAKING CHANGE : Make glean.js fully synchronous. #1835 : Automatic instrumentation of page load events for simple web properties.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0-pre.0 (2023-11-27)","id":"900","title":"v4.0.0-pre.0 (2023-11-27)"},"901":{"body":"Full changelog This is the official release based on v3.0.0-pre.1.","breadcrumbs":"Changelog » mozilla/glean.js » v3.0.0 (2023-11-16)","id":"901","title":"v3.0.0 (2023-11-16)"},"902":{"body":"Full changelog #1814 : BREAKING CHANGE : Temporarily drop support for web extensions. This platform will be added again once we complete the Glean.js platform refactoring.","breadcrumbs":"Changelog » mozilla/glean.js » v3.0.0-pre.1 (2023-11-15)","id":"902","title":"v3.0.0-pre.1 (2023-11-15)"},"903":{"body":"Full changelog #1810 : BREAKING CHANGE : Drop support for QT. #1811 : Update glean_parser to v10.0.3.","breadcrumbs":"Changelog » mozilla/glean.js » v3.0.0-pre.0 (2023-11-10)","id":"903","title":"v3.0.0-pre.0 (2023-11-10)"},"904":{"body":"Full changelog #1788 : Fix window is undefined error when setting up browser debugging.","breadcrumbs":"Changelog » mozilla/glean.js » v2.0.5 (2023-10-16)","id":"904","title":"v2.0.5 (2023-10-16)"},"905":{"body":"Full changelog #1772 : Fix bug where window.Glean functions were getting set on non-browser properties. #1784 : Store window.Glean debugging values in sessionStorage. This will set debug options on page init while the current session is still active.","breadcrumbs":"Changelog » mozilla/glean.js » v2.0.4 (2023-10-10)","id":"905","title":"v2.0.4 (2023-10-10)"},"906":{"body":"Full changelog #1770 : Allow debugging in browser console via window.Glean.","breadcrumbs":"Changelog » mozilla/glean.js » v2.0.3 (2023-09-27)","id":"906","title":"v2.0.3 (2023-09-27)"},"907":{"body":"Full changelog #1768 : Add support for GLEAN_PYTHON and GLEAN_PIP environment variables. #1755 : Add sync check to set function for the URL metric. #1766 : Update default maxEvents count to 1. This means an events ping will be sent after each recorded event unless the maxEvents count is explicitly set to a larger number.","breadcrumbs":"Changelog » mozilla/glean.js » v2.0.2 (2023-09-14)","id":"907","title":"v2.0.2 (2023-09-14)"},"908":{"body":"Full changelog #1751 : Add a migration flag to initialize. If not explicitly set in the config object the migration from IndexedDB to LocalStorage will not occur. The only projects that should ever set this flag are those that have used Glean.js in production with a version /uploader entry point. #580 : Limit size of pings database to 250 pings or 10MB. #580 : BUGFIX: Pending pings at startup up are uploaded from oldest to newest. #607 : Record an error when incoherent timestamps are calculated for events after a restart. #630 : Accept booleans and numbers as event extras. #647 : Implement the Text metric type. #658 : Implement rate limiting for ping upload. Only up to 15 ping submissions every 60 seconds are now allowed. #658 : BUGFIX: Unblock ping uploading jobs after the maximum of upload failures are hit for a given uploading window. #661 : Include unminified version of library on Qt/QML builds. #681 : BUGFIX: Fix error in scanning events database upon initialization on Qt/QML. This bug prevents the changes introduced in #526 from working properly in Qt/QML. #692 : BUGFIX: Ensure events database is initialized at a time Glean is already able to record metrics. This bug also prevents the changes introduced in #526 from working properly in all platforms.","breadcrumbs":"Changelog » mozilla/glean.js » v0.19.0 (2021-09-03)","id":"929","title":"v0.19.0 (2021-09-03)"},"93":{"body":"The following is a set of questions to ask about the data being collected to help better determine which metric type to use.","breadcrumbs":"Metrics » Adding new metrics » Choosing a metric type","id":"93","title":"Choosing a metric type"},"930":{"body":"Full changelog #552 : BUGFIX: Do not clear deletion-request ping from upload queue when disabling upload.","breadcrumbs":"Changelog » mozilla/glean.js » v0.18.1 (2021-07-22)","id":"930","title":"v0.18.1 (2021-07-22)"},"931":{"body":"Full changelog #542 : Implement shutdown API.","breadcrumbs":"Changelog » mozilla/glean.js » v0.18.0 (2021-07-20)","id":"931","title":"v0.18.0 (2021-07-20)"},"932":{"body":"Full changelog #529 : Implement the URL metric type. #526 : Implement new events sorting logic, which allows for reliable sorting of events throughout restarts.","breadcrumbs":"Changelog » mozilla/glean.js » v0.17.0 (2021-07-16)","id":"932","title":"v0.17.0 (2021-07-16)"},"933":{"body":"Full changelog #346 : Provide default HTTP client for Qt/QML platform. #399 : Check if there are ping data before attempting to delete it. This change lowers the amount of log messages related to attempting to delete nonexistent data. #411 : Tag all messages logged by Glean with the component they are coming from. #415 , #430 : Gzip ping payload before upload This changes the signature of Uploader.post to accept string | Uint8Array for the body parameter, instead of only string. #431 : BUGFIX: Record the timestamp for events before dispatching to the internal task queue. #462 : Implement persistent storage for Qt/QML platform. #466 : Expose ErrorType enum, for using with the testGetNumRecordedErrors API. #497 : Implement limit of 1MB for ping request payload. Limit is calculated after gzip compression.","breadcrumbs":"Changelog » mozilla/glean.js » v0.16.0 (2021-07-06)","id":"933","title":"v0.16.0 (2021-07-06)"},"934":{"body":"Full changelog #389 : BUGFIX: Make sure to submit a deletion-request ping before clearing data when toggling upload. #375 : Release Glean.js for Qt as a QML module.","breadcrumbs":"Changelog » mozilla/glean.js » v0.15.0 (2021-06-03)","id":"934","title":"v0.15.0 (2021-06-03)"},"935":{"body":"Full changelog #342 : BUGFIX: Fix timespan payload representation to match exactly the payload expected according to the Glean schema. #343 : BUGFIX: Report the correct failure exit code when the Glean command line tool fails.","breadcrumbs":"Changelog » mozilla/glean.js » v0.14.1 (2021-05-21)","id":"935","title":"v0.14.1 (2021-05-21)"},"936":{"body":"Full changelog #313 : Send Glean.js version and platform information on X-Telemetry-Agent header instead of User-Agent header.","breadcrumbs":"Changelog » mozilla/glean.js » v0.14.0 (2021-05-19)","id":"936","title":"v0.14.0 (2021-05-19)"},"937":{"body":"Full changelog #313 : Implement error recording mechanism and error checking testing API. #319 : BUGFIX: Do not allow recording floats with the quantity and counter metric types.","breadcrumbs":"Changelog » mozilla/glean.js » v0.13.0 (2021-05-18)","id":"937","title":"v0.13.0 (2021-05-18)"},"938":{"body":"Full changelog #279 : BUGFIX: Ensure only empty pings triggers logging of \"empty ping\" messages. #288 : Support collecting PlatformInfo from Qt applications. Only OS name and locale are supported. #281 : Add the QuantityMetricType. #303 : Implement setRawNanos API for the TimespanMetricType.","breadcrumbs":"Changelog » mozilla/glean.js » v0.12.0 (2021-05-11)","id":"938","title":"v0.12.0 (2021-05-11)"},"939":{"body":"Full changelog #260 : Set minimum node (>= 12.0.0) and npm (>= 7.0.0) versions. #202 : Add a testing API for the ping type. #253 : Implement the timespan metric type. BUGFIX: Report event timestamps in milliseconds. #261 : Show a spinner while setting up python virtual environment #273 : BUGFIX: Expose the missing LabeledMetricType and TimespanMetricType in Qt.","breadcrumbs":"Changelog » mozilla/glean.js » v0.11.0 (2021-05-03)","id":"939","title":"v0.11.0 (2021-05-03)"},"94":{"body":"If the value is true or false, use a boolean metric . If the value is a string, use a string metric . For example, to record the name of the default search engine. Beware: string metrics are exceedingly general, and you are probably best served by selecting the most specific metric for the job, since you'll get better error checking and richer analysis tools for free. For example, avoid storing a number in a string metric --- you probably want a counter metric instead. If you need to store multiple string values in a metric, use a string list metric . For example, you may want to record the list of other Mozilla products installed on the device. For all of the metric types in this section that measure single values, it is especially important to consider how the lifetime of the value relates to the ping it is being sent in. Since these metrics don't perform any aggregation on the client side, when a ping containing the metric is submitted, it will contain only the \"last known\" value for the metric, potentially resulting in data loss . There is further discussion of metric lifetimes below.","breadcrumbs":"Metrics » Adding new metrics » Is it a single measurement?","id":"94","title":"Is it a single measurement?"},"940":{"body":"Full changelog #256 : BUGFIX: Add the missing js extension to the dispatcher.","breadcrumbs":"Changelog » mozilla/glean.js » v0.10.2 (2021-04-26)","id":"940","title":"v0.10.2 (2021-04-26)"},"941":{"body":"Full changelog #254 : BUGFIX: Allow the usage of the Glean specific metrics API before Glean is initialized.","breadcrumbs":"Changelog » mozilla/glean.js » v0.10.1 (2021-04-26)","id":"941","title":"v0.10.1 (2021-04-26)"},"942":{"body":"Full changelog #228 : Provide a Qt build with every new release. #227 : BUGFIX: Fix a bug that prevented using labeled_string and labeled_boolean. #226 : BUGFIX: Fix Qt build configuration to target ES5.","breadcrumbs":"Changelog » mozilla/glean.js » v0.10.0 (2021-04-20)","id":"942","title":"v0.10.0 (2021-04-20)"},"943":{"body":"Full changelog #220 : Update glean_parser to version 3.1.1.","breadcrumbs":"Changelog » mozilla/glean.js » v0.9.2 (2021-04-19)","id":"943","title":"v0.9.2 (2021-04-19)"},"944":{"body":"Full changelog #219 : BUGFIX: Fix path to ping entry point in package.json.","breadcrumbs":"Changelog » mozilla/glean.js » v0.9.1 (2021-04-19)","id":"944","title":"v0.9.1 (2021-04-19)"},"945":{"body":"Full changelog #201 : BUGFIX: Do not let the platform be changed after Glean is initialized. #215 : Update the glean-parser to version 3.1.0. #214 : Improve error reporting of the Glean command.","breadcrumbs":"Changelog » mozilla/glean.js » v0.9.0 (2021-04-19)","id":"945","title":"v0.9.0 (2021-04-19)"},"946":{"body":"Full changelog #206 : BUGFIX: Fix ping URL path. Application ID was being reporting as undefined.","breadcrumbs":"Changelog » mozilla/glean.js » v0.8.1 (2021-04-14)","id":"946","title":"v0.8.1 (2021-04-14)"},"947":{"body":"Full changelog #173 : Drop Node.js support from webext entry points #155 : Allow to define custom uploaders in the configuration. #184 : Correctly report appBuild and appDisplayVersion if provided by the user. #198 , #192 , #184 , #180 , #174 , #165 : BUGFIX: Remove all circular dependencies.","breadcrumbs":"Changelog » mozilla/glean.js » v0.8.0 (2021-04-13)","id":"947","title":"v0.8.0 (2021-04-13)"},"948":{"body":"Full changelog #143 : Provide a way to initialize and reset Glean.js in tests.","breadcrumbs":"Changelog » mozilla/glean.js » v0.7.0 (2021-03-26)","id":"948","title":"v0.7.0 (2021-03-26)"},"949":{"body":"Full changelog #130 : BUGFIX: Fix destination path of CommonJS' build package.json.","breadcrumbs":"Changelog » mozilla/glean.js » v0.6.1 (2021-03-22)","id":"949","title":"v0.6.1 (2021-03-22)"},"95":{"body":"For tracking user behavior, it is usually meaningful to know the over of events that lead to the use of a feature. Therefore, for user behavior, an event metric is usually the best choice. Be aware, however, that events can be particularly expensive to transmit, store and analyze, so should not be used for higher-frequency measurements - though this is less of a concern in server environments .","breadcrumbs":"Metrics » Adding new metrics » Are you measuring user behavior?","id":"95","title":"Are you measuring user behavior?"},"950":{"body":"Full changelog #123 : BUGFIX: Fix support for ES6 environments. Include .js extensions in all local import statements. ES6' module resolution algorithm does not currently support automatic resolution of file extensions and does not have the ability to import directories that have an index file. The extension and the name of the file being import need to always be specified. See: https://nodejs.org/api/esm.html#esm_customizing_esm_specifier_resolution_algorithm Add a type: module declaration to the main package.json. Without this statement, ES6 support is disabled. See: https://nodejs.org/docs/latest-v13.x/api/esm.html#esm_enabling.: To keep support for CommonJS, in our CommonJS build we include a package.json that overrides the type: module of the main package.json with a type: commonjs.","breadcrumbs":"Changelog » mozilla/glean.js » v0.6.0 (2021-03-22)","id":"950","title":"v0.6.0 (2021-03-22)"},"951":{"body":"Full changelog #96 : Provide a ping encryption plugin. This plugin listens to the afterPingCollection event. It receives the collected payload of a ping and returns an encrypted version of it using a JWK provided upon instantiation. #95 : Add a plugins property to the configuration options and create an event abstraction for triggering internal Glean events. The only internal event triggered at this point is the afterPingCollection event, which is triggered after ping collection and logging, and before ping storing. Plugins are built to listen to a specific Glean event. Each plugin must define an action, which is executed every time the event they are listening to is triggered. #101 : BUGFIX: Only validate Debug View Tag and Source Tags when they are present. #102 : BUGFIX: Include a Glean User-Agent header in all pings. #97 : Add support for labeled metric types (string, boolean and counter). #105 : Introduce and publish the glean command for using the glean-parser in a virtual environment.","breadcrumbs":"Changelog » mozilla/glean.js » v0.5.0 (2021-03-18)","id":"951","title":"v0.5.0 (2021-03-18)"},"952":{"body":"Full changelog #92 : Remove web-ext-types from peerDependencies list. #98 : Add external APIs for setting the Debug View Tag and Source Tags. #99 : BUGFIX: Add a default ping value in the testing APIs.","breadcrumbs":"Changelog » mozilla/glean.js » v0.4.0 (2021-03-10)","id":"952","title":"v0.4.0 (2021-03-10)"},"953":{"body":"Full changelog #90 : Provide exports for CommonJS and browser environments. #90 : BUGFIX: Accept lifetimes as strings when instantiating metric types. #90 : BUGFIX: Fix type declaration paths. #90 : BUGFIX: Make web-ext-types a peer dependency. This is quick fix until Bug 1694701 is fixed.","breadcrumbs":"Changelog » mozilla/glean.js » v0.3.0 (2021-02-24)","id":"953","title":"v0.3.0 (2021-02-24)"},"954":{"body":"#85 : Include type declarations in @mozilla/glean webext package bundle. Full changelog","breadcrumbs":"Changelog » mozilla/glean.js » v0.2.0 (2021-02-23)","id":"954","title":"v0.2.0 (2021-02-23)"},"955":{"body":"Full changelog #77 : Include README.md file in @mozilla/glean package bundle.","breadcrumbs":"Changelog » mozilla/glean.js » v0.1.1 (2021-02-17)","id":"955","title":"v0.1.1 (2021-02-17)"},"956":{"body":"Full changelog #73 : Add this changelog file. #42 : Implement the deletion-request ping. #41 : Implement the logPings debug tool. When logPings is enabled, pings are logged upon collection. #40 : Use the dispatcher in all Glean external API functions. Namely: Metric recording functions; Ping submission; initialize and setUploadEnabled. #36 : Implement the event metric type. #31 : Implement a task Dispatcher to help in executing Promises in a deterministic order. #26 : Implement the setUploadEnabled API. #25 : Implement an adapter that leverages browser APIs to upload pings. #24 : Implement a ping upload manager. #23 : Implement the initialize API and glean internal metrics. #22 : Implement the PingType structure and a ping maker. #20 : Implement the datetime metric type. #17 : Implement the UUID metric type. #14 : Implement the counter metric type. #13 : Implement the string metric type. #11 : Implement the boolean metric type. #9 : Implement a metrics database module. #8 : Implement a web extension version of the underlying storage module. #6 : Implement an abstract underlying storage module. Found a bug? Edit this page on GitHub.","breadcrumbs":"Changelog » mozilla/glean.js » v0.1.0 (2021-02-17)","id":"956","title":"v0.1.0 (2021-02-17)"},"957":{"body":"“This Week in Glean” is a series of blog posts that the Glean Team at Mozilla is using to try to communicate better about our work. They could be release notes, documentation, hopes, dreams, or whatever: so long as it is inspired by Glean.","breadcrumbs":"This Week in Glean » This Week in Glean (TWiG)","id":"957","title":"This Week in Glean (TWiG)"},"958":{"body":"2019-10-17: Glean on Desktop (Project FOG) 2019-10-24: A Release 2019-11-01: A detective story 2019-11-08: Instrumenting Android Crashes with Glean 2019-11-19: GeckoView + Glean = Fenix performance metrics 2019-11-21: What is the Glean logo about? 2019-11-22: Glean in Private 2019-11-29: Differences 2019-12-06: Migrations 2020-01-10: Glossary 2020-02-03: Cargo features - an investigation 2020-02-14: Extending Glean: build re-usable types for new use-cases 2020-02-21: A Distributed Team Echoes Distributed Workflow 2020-02-28: mozregression telemetry (part 1) 2020-03-09: Metric lifetimes 2020-03-13: Adding support for GLAM on Glean 2020-03-25: Comparing Apples to Oranges 2020-04-15: How Much Does That Data Cost 2020-04-27: Glean for Python on Windows 2020-05-04: Bytes in Memory (on Android) 2020-05-08: mozregression telemetry (part 2) 2020-05-26: How does the Glean SDK send gzipped pings 2020-06-03: The Glean SDK and iOS Application Extensions, or a Tale of Two Sandboxes 2020-06-12: Project FOG Update, end of H12020 2020-07-16: Mozilla Telemetry in 2020: From “Just Firefox” to a “Galaxy of Data” 2020-07-24: Automated end-to-end tests for Glean 2020-08-06: Experimental integration Glean with Unity applications 2020-09-01: Leveraging Rust to build cross-platform mobile libraries 2020-09-25: glean-core to Wasm experiment 2020-10-06: FOG Progress report 2020-10-21: Cross-Platform Language Binding Generation with Rust and “uniffi” 2020-11-02: Glean.js 2020-11-19: Fantastic Facts and Where To Find Them 2020-12-01: Glean is Frictionless Data Collection 2020-12-18: Glean in 2021 2021-01-15: Proposals for Asynchronous Design 2021-01-28: The Glean Dictionary 2021-02-24: Boring Monitoring 2021-03-16: Reducing Release Friction 2021-04-07: Publishing Glean.js or “How I configured an npm package that has multiple entry points” 2021-04-16: rustc, iOS and an M1 2021-05-03: Glean Dictionary updates 2021-06-14: ⚠️Danger zone⚠️: handling sensitive data in Glean 2021-06-25: Funday! 2021-07-22: Firefox Telemetry is to Glean as C++ is to Rust 2021-07-26: Shipping Glean with GeckoView 2021-08-05: Building a Mobile Acquisition Dashboard in Looker 2021-08-23: Why choosing the right data type for your metric matters 2021-09-07: Data Reviews are Important, Glean Parser makes them Easy 2021-09-17: Glean & GeckoView 2021-09-30: Glean.js v0.19.0 Supports Node.js 2021-10-18: Designing a telemetry collection with Glean 2021-10-22: The Three Roles of Data Engagements 2021-11-01: Crashes & a buggy Glean 2021-12-14: How Long Must I Wait Before I Can See My Data? 2021-12-17: Looking back at Glean in 2021 2022-01-31: Building and Deploying a Rust library on iOS 2022-02-09: Migrating Legacy Telemetry Collections to Glean 2022-02-16: What If I Want To Collect All The Data? 2022-02-25: Your personal Glean data pipeline 2022-10-27: Page Load Data, Three Ways (Or, How Expensive Are Events?) 2023-05-25: Reading “The Manager’s Path” by Camille Fournier 2024-06-27: Cosmic Rays From Outer Space! (What Comes Next?) Found a bug? Edit this page on GitHub.","breadcrumbs":"This Week in Glean » Blog posts","id":"958","title":"Blog posts"},"959":{"body":"There are two important questions to answer before adding new content to this book: Where to include this content? In which format to present it? This guide aims to provide context for answering both questions.","breadcrumbs":"Contribution Guidelines » Contribution Guidelines","id":"959","title":"Contribution Guidelines"},"96":{"body":"If you want to know how many times something happened, use a counter metric . If you are counting a group of related things, or you don't know what all of the things to count are at build time, use a labeled counter metric . If you need to know how many times something happened relative to the number of times something else happened, use a rate metric . If you need to know when the things being counted happened relative to other things, consider using an event .","breadcrumbs":"Metrics » Adding new metrics » Are you counting things?","id":"96","title":"Are you counting things?"},"960":{"body":"Where to add new content? Overview User Guides API Reference SDK Specific Information Appendix In which format to present content? General guidelines Link to other internal pages and sections whenever that is possible Prefer using headers whenever a new topic is introduced Favor creating new pages, instead of adding unrelated content to an already existing page Custom elements Tabs Tab tooltips Custom block quotes","breadcrumbs":"Contribution Guidelines » Table of contents","id":"960","title":"Table of contents"},"961":{"body":"This book is divided in five different sections. Each section contains pages that are of a specific type. New content will fit in one of these section. Following is an explanation on what kind of content fits in each section.","breadcrumbs":"Contribution Guidelines » Where to add new content?","id":"961","title":"Where to add new content?"},"962":{"body":"Is the content you want to add an essay or high level explanation on some aspect of Glean? The overview section is the place to provide important higher level context for users of Glean. This section may include essays about Glean’s views, principles, data practices, etc. It also contains primers on information such as what are the Glean SDKs","breadcrumbs":"Contribution Guidelines » Overview","id":"962","title":"Overview"},"963":{"body":"Is the content you want to add a general purpose guide on a Glean aspect or feature? This section is the place for Glean SDK user guides. Pages under this section contain prose format guides on how to include Glean in a project, how to add metrics, how to create pings, and so on. Pages on this section may link to the API Reference pages, but should not themselves be API References. Guides can be quite long, thus we should favor having one page per SDK instead of using tabs.","breadcrumbs":"Contribution Guidelines » User Guides","id":"963","title":"User Guides"},"964":{"body":"Is the content you want to add a developer reference on a specific Glean API? This section of the book contains reference for all of Glean’s user APIs. Its pages follow a strict structure. Each API description contains: A title with the name of the API. It’s important to use titles, because they automatically generate links to that API. A brief description of what the API does. Tabs with examples for using that API in each SDK. Even if a certain SDK does not contain a given API, the tab will be included in the tabs bar in the disabled state. The API Reference pages should not contain any guides in prose format, they should all be linked from the User’s Guide when convenient.","breadcrumbs":"Contribution Guidelines » API Reference","id":"964","title":"API Reference"},"965":{"body":"Is the content you want to add a SDK specific guide on a Glean feature? Different SDKs may require some dedicated pages, these section contains these pages. Each SDK has a top level section under this section, specific pages live under these titles.","breadcrumbs":"Contribution Guidelines » SDK Specific Information","id":"965","title":"SDK Specific Information"},"966":{"body":"Is the content you want to add support content for the rest of the content on book? The appendix contains support information related to the Glean SDKs or the content of this book.","breadcrumbs":"Contribution Guidelines » Appendix","id":"966","title":"Appendix"},"967":{"body":"","breadcrumbs":"Contribution Guidelines » In which format to present content?","id":"967","title":"In which format to present content?"},"968":{"body":"Link to other internal pages and sections whenever that is possible Each page of the book should be written as if it were the first page a user is visiting ever. There should be links to other pages of the book wherever there is missing context in the current page. This is important, because documentations are first and foremost reference books, manuals. They should not be expected to be read in order. Prefer using headers whenever a new topic is introduced mdbook (the tool used to build this book) turns all headers into links. Which is useful to refer to specific documentation sections. Favor creating new pages, instead of adding unrelated content to an already existing page This makes it easier to find content through the Summary.","breadcrumbs":"Contribution Guidelines » General guidelines","id":"968","title":"General guidelines"},"969":{"body":"Tabs Tabs are useful for providing small code examples of Glean's APIs for each SDK. A tabs section starts with the tab_header include and ends with the tab_footer include . Each tab is declared in between these include statements. Each tab content is placed inside an html div tag with the data-lang and class=\"tab\" attributes. The data-lang attribute contains the title of the tab. Titles must match for different tabs on the same SDK. Whenever a user clicks in a tab with a specific title, all tabs with that same title will be opened by default, until the user clicks in a tab with a different title. Every tab section should contain tabs for all Glean SDKs, even if an SDK does not provide the API in question. In this case, the tab div should still be there without any inner HTML. When that is the case that tab will be rendered in a disabled state. These are the tabs every tab section is expected to contain, in order: Kotlin Java Swift Python Rust JavaScript Firefox Desktop Finally, here is an example code for a tabs sections: {{#include ../../shared/tab_header.md}}\n Kotlin information...\n\n Java information...\n\n Swift information...\n\n Python information...`\n\n Rust information...\n\n\n\n\n{{#include ../../shared/tab_footer.md}} And this is how those tabs will look like: Kotlin information... Java information... Swift information... Python information...` Rust information... Tab tooltips Tabs in a disabled i.e. tabs that do not have any content, will show a tooltip when hovered. By default, this tooltip will show the message doe not provide this API. The following data-* attributes can be used to modify this message. data-bug This attribute expects a Bugzilla bug number. When this attribute is added a link to the provided bug will be added to the tooltip text. data-info This attribute expects free form text or valid HTML. Be careful when adding long texts here. If a text needs to be too long, consider adding it as an actual section / paragraph to the page instead of as a tooltip. This is how you can use the above attributes. {{#include ../../shared/tab_header.md}}\n... \n\n\n\n\n\n{{#include ../../shared/tab_footer.md}} And this is how each tool tip is rendered. Custom block quotes Sometimes it is necessary to bring attention to a special piece of information, or simply to provide extra context related to the a given text. In order to do that, there are three custom block quote formats available. Info quote An information block quote format, to provide useful extra context for a given text. Warning quote A warning block quote format, to provide useful warning related to a given text. Stop quote A stronger warning block quote format, to provide useful warning related to a given text in a more emphatic format. Use these sparingly. To include such quotes, again you can use mdbook include statements. For the above quotes, this is the corresponding code. {{#include ../../shared/blockquote-info.html}} ##### Info quote > An information blockquote format, to provide useful extra context for a given text. {{#include ../../shared/blockquote-warning.html}} ##### Warning quote > A warning blockquote format, to provide useful warning related to a given text. {{#include ../../shared/blockquote-stop.html}} ##### Stop quote > A stronger warning blockquote format, to provide useful warning related to a given text in a\n> more emphatic format. Use these sparingly. It is possible to use any level header with these special block quotes and also no header at all. Found a bug? Edit this page on GitHub.","breadcrumbs":"Contribution Guidelines » Custom elements","id":"969","title":"Custom elements"},"97":{"body":"If you need to record an absolute time, use a datetime metric . Datetimes are recorded in the user's local time, according to their device's real time clock, along with a timezone offset from UTC. Datetime metrics allow specifying the resolution they are collected at, and to stay lean , they should only be collected at the minimum resolution required to answer your question. If you need to record how long something takes you have a few options. If you need to measure the total time spent doing a particular task, look to the timespan metric . Timespan metrics allow specifying the resolution they are collected at, and to stay lean , they should only be collected at the minimum resolution required to answer your question. Note that this metric should only be used to measure time on a single thread. If multiple overlapping timespans are measured for the same metric, an invalid state error is recorded. If you need to measure the relative occurrences of many timings, use a timing distribution . It builds a histogram of timing measurements, and is safe to record multiple concurrent timespans on different threads. If you need to know the time between multiple distinct actions that aren't a simple \"begin\" and \"end\" pair, consider using an event .","breadcrumbs":"Metrics » Adding new metrics » Are you measuring time?","id":"97","title":"Are you measuring time?"},"98":{"body":"Think carefully about how long the metric will be needed, and set the expires parameter to disable the metric at the earliest possible time. This is an important component of Mozilla's lean data practices . When the metric passes its expiration date (determined at build time), it will automatically stop collecting data. When a metric's expiration is within in 14 days, emails will be sent from telemetry-alerts@mozilla.com to the notification_emails addresses associated with the metric. At that time, the metric should be removed, which involves removing it from the metrics.yaml file and removing uses of it in the source code. Removing a metric does not affect the availability of data already collected by the pipeline. If the metric is still needed after its expiration date, it should go back for another round of data review to have its expiration date extended. Important: Ensure that telemetry alerts are received and are reviewed in a timely manner. Expired metrics don't record any data, extending or removing a metric should be done in time. Consider adding both a group email address and an individual who is responsible for this metric to the notification_emails list.","breadcrumbs":"Metrics » Adding new metrics » For how long do you need to collect this data?","id":"98","title":"For how long do you need to collect this data?"},"99":{"body":"The lifetime parameter of a metric defines when its value will be cleared. There are three lifetime options available: ping (default) The metric is cleared each time it is submitted in the ping. This is the most common case, and should be used for metrics that are highly dynamic, such as things computed in response to the user's interaction with the application. application The metric is related to an application run, and is cleared after the application restarts and any Glean-owned ping, due at startup, is submitted. This should be used for things that are constant during the run of an application, such as the operating system version. In practice, these metrics are generally set during application startup. A common mistake--- using the ping lifetime for these type of metrics---means that they will only be included in the first ping sent during a particular run of the application. user NOTE: Reach out to the Glean team before using this. The metric is part of the user's profile and will live as long as the profile lives. This is often not the best choice unless the metric records a value that really needs to be persisted for the full lifetime of the user profile, e.g. an identifier like the client_id, the day the product was first executed. It is rare to use this lifetime outside of some metrics that are built in to the Glean SDK. While lifetimes are important to understand for all metric types, they are particularly important for the metric types that record single values and don't aggregate on the client (boolean, string, labeled_string, string_list, datetime and uuid), since these metrics will send the \"last known\" value and missing the earlier values could be a form of unintended data loss.","breadcrumbs":"Metrics » Adding new metrics » When should the Glean SDK automatically clear the measurement?","id":"99","title":"When should the Glean SDK automatically clear the measurement?"}},"length":970,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"2":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"6":{".":{"0":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"808":{"tf":1.0}}},"8":{".":{"3":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"768":{"tf":1.0}}},"6":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{".":{"0":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"748":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"2":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{".":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":54,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.4142135623730951},"482":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"664":{"tf":1.0},"677":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"732":{"tf":1.0},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"766":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"817":{"tf":1.0},"829":{"tf":1.0},"855":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"896":{"tf":1.0},"899":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0},"958":{"tf":2.8284271247461903}}},"2":{"df":19,"docs":{"730":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"791":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"816":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":3.0}}},"3":{"df":33,"docs":{"158":{"tf":1.7320508075688772},"164":{"tf":1.0},"171":{"tf":1.7320508075688772},"288":{"tf":1.0},"554":{"tf":2.449489742783178},"728":{"tf":1.0},"729":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.0},"804":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"872":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"909":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.0},"934":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"958":{"tf":2.6457513110645907}},"t":{"1":{"7":{":":{"3":{"0":{":":{"0":{"0":{"df":2,"docs":{"664":{"tf":1.0},"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":{}},"df":0,"docs":{}}},"4":{":":{"0":{"0":{"df":11,"docs":{"158":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"175":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"727":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"760":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"798":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"892":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"958":{"tf":2.23606797749979}}},"5":{":":{"0":{"0":{"df":2,"docs":{"183":{"tf":1.0},"554":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"716":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"871":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.0},"910":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"958":{"tf":2.449489742783178}}},"6":{"df":30,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"720":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"775":{"tf":1.0},"786":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"87":{"tf":1.0},"898":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"958":{"tf":2.8284271247461903}},"t":{"0":{"9":{":":{"5":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"717":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"869":{"tf":1.0},"886":{"tf":1.0},"913":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"958":{"tf":2.449489742783178}}},"8":{"df":22,"docs":{"719":{"tf":1.0},"720":{"tf":1.0},"736":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"766":{"tf":1.0},"768":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":2.23606797749979}}},"9":{"df":31,"docs":{"718":{"tf":1.0},"735":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"796":{"tf":1.0},"803":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"860":{"tf":1.0},"884":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"958":{"tf":2.6457513110645907}}},"df":64,"docs":{"108":{"tf":1.4142135623730951},"127":{"tf":1.0},"138":{"tf":1.4142135623730951},"142":{"tf":2.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"271":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"386":{"tf":2.0},"396":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":2.23606797749979},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":2.23606797749979},"428":{"tf":2.23606797749979},"438":{"tf":2.23606797749979},"449":{"tf":2.0},"464":{"tf":2.8284271247461903},"465":{"tf":1.7320508075688772},"468":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"508":{"tf":2.23606797749979},"520":{"tf":1.0},"532":{"tf":2.23606797749979},"544":{"tf":2.8284271247461903},"551":{"tf":2.449489742783178},"553":{"tf":2.449489742783178},"555":{"tf":2.0},"560":{"tf":1.0},"566":{"tf":2.23606797749979},"575":{"tf":1.0},"578":{"tf":2.0},"589":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":2.0},"609":{"tf":1.0},"612":{"tf":1.4142135623730951},"618":{"tf":1.0},"624":{"tf":2.23606797749979},"635":{"tf":2.23606797749979},"643":{"tf":1.4142135623730951},"664":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"716":{"tf":1.0},"728":{"tf":1.0},"734":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"1":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},",":{"0":{"2":{"4":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{",":{"5":{"7":{"6":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{",":{"7":{"4":{"1":{",":{"8":{"2":{"4":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"0":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"3":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"1":{"1":{".":{"0":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"3":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"2":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"5":{"df":1,"docs":{"830":{"tf":1.0}}},"6":{"df":3,"docs":{"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"0":{"df":2,"docs":{"824":{"tf":1.0},"827":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{".":{"0":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"792":{"tf":1.0}}},"8":{".":{"2":{"1":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"2":{"3":{"df":1,"docs":{"727":{"tf":1.0}}},"4":{"df":1,"docs":{"721":{"tf":1.0}}},"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"8":{".":{"0":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":3,"docs":{"585":{"tf":2.449489742783178},"586":{"tf":2.449489742783178},"590":{"tf":1.0}}},"df":8,"docs":{"142":{"tf":1.7320508075688772},"171":{"tf":1.0},"315":{"tf":1.0},"551":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"774":{"tf":1.0}}},"1":{"df":1,"docs":{"142":{"tf":1.0}}},"2":{"df":1,"docs":{"846":{"tf":1.0}}},"4":{"df":1,"docs":{"846":{"tf":1.0}}},"6":{"df":1,"docs":{"918":{"tf":1.0}}},"df":15,"docs":{"328":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"524":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.4142135623730951},"616":{"tf":1.0},"738":{"tf":1.4142135623730951},"774":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"845":{"tf":1.0}}},"5":{"df":1,"docs":{"919":{"tf":1.0}}},"6":{"df":2,"docs":{"842":{"tf":1.0},"919":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"844":{"tf":1.0}}},"4":{"df":2,"docs":{"505":{"tf":2.8284271247461903},"507":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"842":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"842":{"tf":1.0}}},"9":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"842":{"tf":1.0}}},"3":{"df":1,"docs":{"842":{"tf":1.0}}},"5":{"df":1,"docs":{"917":{"tf":1.0}}},"6":{"df":2,"docs":{"838":{"tf":1.0},"916":{"tf":1.0}}},"8":{"5":{"7":{"6":{".":{"0":{"df":1,"docs":{"517":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"df":1,"docs":{"841":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"838":{"tf":1.0}}},"3":{"df":1,"docs":{"840":{"tf":1.0}}},"5":{"df":2,"docs":{"835":{"tf":1.0},"916":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"918":{"tf":1.0}}},"9":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"916":{"tf":1.0}}},"3":{"df":1,"docs":{"838":{"tf":1.0}}},"4":{"df":1,"docs":{"839":{"tf":1.0}}},"7":{"df":1,"docs":{"917":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"834":{"tf":1.0}}},"8":{"df":1,"docs":{"837":{"tf":1.0}}},"df":0,"docs":{}},":":{"1":{"0":{":":{"1":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"3":{"df":1,"docs":{"757":{"tf":1.0}}},"6":{"df":2,"docs":{"720":{"tf":1.0},"757":{"tf":1.0}}},"df":0,"docs":{}},"df":64,"docs":{"127":{"tf":1.0},"183":{"tf":2.23606797749979},"218":{"tf":1.0},"258":{"tf":1.0},"275":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"717":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"744":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.0},"842":{"tf":1.0},"852":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"917":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"952":{"tf":1.0},"958":{"tf":2.8284271247461903}},"m":{"b":{"df":4,"docs":{"135":{"tf":1.0},"521":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}}},"1":{".":{"3":{"df":1,"docs":{"868":{"tf":1.0}}},"4":{".":{"0":{"df":1,"docs":{"861":{"tf":1.0}}},"1":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"855":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"834":{"tf":1.0},"837":{"tf":1.0}}},"8":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"834":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"834":{"tf":1.0}}},"4":{"df":1,"docs":{"834":{"tf":1.0}}},"6":{"df":1,"docs":{"834":{"tf":1.0}}},"9":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"1":{"df":1,"docs":{"834":{"tf":1.0}}},"2":{"df":2,"docs":{"833":{"tf":1.4142135623730951},"915":{"tf":1.0}}},"3":{"df":1,"docs":{"834":{"tf":1.0}}},"5":{"df":1,"docs":{"835":{"tf":1.0}}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"831":{"tf":1.0}}},"5":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"833":{"tf":1.0},"915":{"tf":1.0}}},"8":{"df":1,"docs":{"915":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"832":{"tf":1.0}}},"5":{"df":1,"docs":{"831":{"tf":1.0}}},"8":{"df":1,"docs":{"830":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"258":{"tf":1.0},"288":{"tf":1.0},"480":{"tf":1.0},"507":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"733":{"tf":1.0},"741":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"831":{"tf":1.0},"849":{"tf":1.0},"857":{"tf":1.0},"865":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"938":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":3.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"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":{".":{"0":{".":{"0":{"df":2,"docs":{"833":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":1,"docs":{"831":{"tf":1.0}}},"5":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"7":{"df":2,"docs":{"830":{"tf":1.4142135623730951},"914":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"3":{"df":1,"docs":{"915":{"tf":1.0}}},"8":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"914":{"tf":1.4142135623730951}}},"4":{"/":{"a":{"df":2,"docs":{"132":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"829":{"tf":1.0}}},"df":1,"docs":{"950":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"820":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"164":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"729":{"tf":1.0},"731":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"801":{"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},"819":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"958":{"tf":2.449489742783178}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"0":{"3":{"df":1,"docs":{"820":{"tf":1.0}}},"4":{"df":1,"docs":{"818":{"tf":1.0}}},"df":1,"docs":{"949":{"tf":1.0}}},"1":{"4":{"df":1,"docs":{"819":{"tf":1.0}}},"7":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"818":{"tf":1.0}}},"5":{"df":1,"docs":{"818":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}},"3":{"5":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"df":1,"docs":{"816":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"816":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"816":{"tf":1.0}}},"3":{"df":1,"docs":{"815":{"tf":1.0}}},"5":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"815":{"tf":1.0}}},"3":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"814":{"tf":1.0}}},"6":{"df":1,"docs":{"814":{"tf":1.0}}},"8":{"df":1,"docs":{"814":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"813":{"tf":1.0}}},"4":{"df":1,"docs":{"813":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"812":{"tf":1.0}}},"4":{"df":1,"docs":{"813":{"tf":1.0}}},"8":{"df":1,"docs":{"812":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":8,"docs":{"151":{"tf":1.0},"288":{"tf":1.0},"752":{"tf":1.0},"789":{"tf":1.0},"854":{"tf":1.0},"947":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0}}},"4":{".":{"0":{".":{"1":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"759":{"tf":1.0}}},"1":{".":{"2":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"738":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"3":{"df":1,"docs":{"811":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"913":{"tf":1.0}}},"6":{"df":1,"docs":{"811":{"tf":1.0}}},"7":{"df":1,"docs":{"811":{"tf":1.0}}},"8":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"810":{"tf":1.0}}},"8":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"809":{"tf":1.0}}},"2":{"df":1,"docs":{"809":{"tf":1.0}}},"4":{"df":1,"docs":{"808":{"tf":1.0}}},"8":{"df":1,"docs":{"807":{"tf":1.0}}},"df":1,"docs":{"948":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"807":{"tf":1.0}}},"2":{"df":1,"docs":{"807":{"tf":1.0}}},"9":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"2":{"df":2,"docs":{"807":{"tf":1.0},"912":{"tf":1.0}}},"4":{"df":1,"docs":{"807":{"tf":1.0}}},"5":{"df":1,"docs":{"807":{"tf":1.7320508075688772}}},"7":{"df":2,"docs":{"855":{"tf":1.0},"912":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"806":{"tf":1.0}}},"2":{"df":1,"docs":{"806":{"tf":1.0}}},"5":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"806":{"tf":1.0}}},"2":{"df":1,"docs":{"804":{"tf":1.0}}},"3":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"805":{"tf":1.0}}},"5":{"df":1,"docs":{"805":{"tf":1.0}}},"9":{"7":{"6":{"1":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"288":{"tf":1.0},"77":{"tf":1.0},"774":{"tf":1.0},"867":{"tf":1.0},"907":{"tf":1.0},"946":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"5":{".":{"1":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"7":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"805":{"tf":1.0}}},"2":{"9":{"3":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"912":{"tf":1.0}}},"4":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":2,"docs":{"804":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"6":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"3":{"4":{"df":1,"docs":{"804":{"tf":1.0}}},"8":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"782":{"tf":1.0}}},"3":{"6":{"1":{"2":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"947":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"803":{"tf":1.0}}},"1":{"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"802":{"tf":1.0}}},"8":{"3":{"8":{"3":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"802":{"tf":1.0}}},"6":{"7":{"6":{"4":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"6":{"0":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"4":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"1":{"9":{"1":{"2":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"802":{"tf":1.0}}},"5":{"df":1,"docs":{"793":{"tf":1.0}}},"6":{"df":1,"docs":{"802":{"tf":1.0}}},"7":{"7":{"6":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"0":{"df":1,"docs":{"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"5":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"135":{"tf":1.0},"315":{"tf":1.0},"733":{"tf":1.0},"743":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"770":{"tf":1.0},"780":{"tf":1.0},"809":{"tf":1.0},"813":{"tf":1.0},"836":{"tf":1.0},"902":{"tf":1.0},"920":{"tf":1.0},"922":{"tf":1.0},"929":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"6":{"0":{"1":{"5":{"5":{"0":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"799":{"tf":2.449489742783178}}},"4":{"8":{"5":{"4":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"801":{"tf":1.0}}},"5":{"0":{"9":{"7":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"8":{"2":{"df":2,"docs":{"127":{"tf":1.0},"866":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"4":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"8":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"801":{"tf":1.0}}},"4":{"7":{"8":{"5":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"801":{"tf":1.0}}},"6":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},"2":{"8":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"9":{"9":{"7":{"df":1,"docs":{"857":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"801":{"tf":1.0}}},"5":{"8":{"6":{"5":{"df":1,"docs":{"856":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"5":{"7":{"5":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"7":{"3":{"df":1,"docs":{"847":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"3":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"799":{"tf":1.0}}},"6":{"5":{"8":{"9":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"4":{"7":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"947":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"798":{"tf":1.0}}},"5":{"0":{"4":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"797":{"tf":1.0}}},"9":{"df":1,"docs":{"797":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"910":{"tf":1.0}}},"2":{"2":{"7":{"3":{"df":1,"docs":{"747":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"910":{"tf":1.0}}},"9":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"8":{"3":{"7":{"0":{"7":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"7":{"0":{"1":{"df":1,"docs":{"953":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"3":{"6":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"909":{"tf":1.0}}},"7":{"df":1,"docs":{"795":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"732":{"tf":1.0},"773":{"tf":1.0},"788":{"tf":1.0},"804":{"tf":1.0},"841":{"tf":1.0},"866":{"tf":1.0},"901":{"tf":1.0},"904":{"tf":1.0},"932":{"tf":1.0},"958":{"tf":2.0}}},"7":{"1":{"1":{"9":{"2":{"8":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{"2":{"5":{"df":2,"docs":{"124":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"8":{"0":{"7":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"909":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"909":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"4":{"3":{"1":{"4":{"0":{"df":1,"docs":{"919":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"5":{"3":{"df":1,"docs":{"626":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"792":{"tf":1.0}}},"8":{"df":1,"docs":{"909":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"5":{"0":{"2":{"3":{"5":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"908":{"tf":1.0}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"5":{"df":1,"docs":{"907":{"tf":1.0}}},"6":{"df":1,"docs":{"792":{"tf":1.0}}},"9":{"df":1,"docs":{"792":{"tf":1.0}}},"df":3,"docs":{"498":{"tf":1.0},"521":{"tf":1.0},"590":{"tf":1.0}}},"6":{"2":{"8":{"5":{"9":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"4":{"9":{"df":1,"docs":{"774":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"907":{"tf":1.0}}},"7":{"0":{"3":{"7":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"907":{"tf":1.0}}},"9":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"906":{"tf":1.0}}},"2":{"1":{"5":{"6":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"905":{"tf":1.0}}},"4":{"df":1,"docs":{"791":{"tf":1.0}}},"5":{"4":{"2":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"790":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"0":{"3":{"7":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"789":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"786":{"tf":1.0}}},"4":{"df":1,"docs":{"905":{"tf":1.0}}},"7":{"2":{"3":{"4":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"904":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"786":{"tf":1.0}}},"3":{"df":1,"docs":{"788":{"tf":1.4142135623730951}}},"6":{"2":{"5":{"8":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"1":{"9":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"0":{"0":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"737":{"tf":1.0},"754":{"tf":1.0},"769":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"800":{"tf":1.0},"812":{"tf":1.0},"818":{"tf":1.0},"836":{"tf":1.0},"864":{"tf":1.0},"870":{"tf":1.0},"914":{"tf":1.0},"928":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"8":{"0":{"0":{"6":{"4":{"6":{"df":1,"docs":{"755":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"1":{"1":{"2":{"8":{"df":1,"docs":{"754":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"2":{"5":{"5":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"3":{"5":{"1":{"3":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{"1":{"5":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":2,"docs":{"787":{"tf":1.0},"900":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"903":{"tf":1.0}}},"1":{"2":{"5":{"3":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"2":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"903":{"tf":1.0}}},"2":{"6":{"7":{"2":{"df":1,"docs":{"749":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"4":{"5":{"9":{"2":{"df":1,"docs":{"127":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"902":{"tf":1.0}}},"5":{"2":{"3":{"3":{"df":1,"docs":{"741":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"0":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"785":{"tf":1.0}}},"9":{"1":{"6":{"1":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"785":{"tf":1.0}}},"8":{"0":{"6":{"6":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"4":{"5":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"9":{"3":{"7":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"2":{"4":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"8":{"1":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"784":{"tf":1.0},"899":{"tf":1.0}}},"5":{"df":2,"docs":{"898":{"tf":1.0},"900":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"5":{"3":{"3":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"898":{"tf":1.0}}},"7":{"9":{"5":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"0":{"1":{"df":2,"docs":{"124":{"tf":1.0},"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}},"9":{"df":1,"docs":{"897":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"895":{"tf":1.0}}},"2":{"df":2,"docs":{"776":{"tf":1.0},"783":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"895":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"782":{"tf":1.0}}},"9":{"4":{"2":{"9":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"2":{"9":{"7":{"df":1,"docs":{"729":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"782":{"tf":1.0}}},"6":{"1":{"1":{"3":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"782":{"tf":1.0}}},"9":{"1":{"1":{"4":{"df":1,"docs":{"727":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"781":{"tf":1.0}}},"2":{"0":{"9":{"7":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"894":{"tf":1.0}}},"8":{"3":{"3":{"6":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"759":{"tf":1.0},"784":{"tf":1.0},"808":{"tf":1.0},"830":{"tf":1.0},"876":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"9":{"0":{"0":{"df":1,"docs":{"894":{"tf":1.0}}},"8":{"df":1,"docs":{"780":{"tf":1.0}}},"9":{"2":{"4":{"4":{"df":1,"docs":{"721":{"tf":1.0}}},"6":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"779":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"9":{"7":{"6":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}}},"3":{"df":2,"docs":{"779":{"tf":1.0},"892":{"tf":1.0}}},"5":{"3":{"4":{"6":{"df":1,"docs":{"716":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"8":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"8":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"947":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"777":{"tf":1.0},"778":{"tf":1.0}}},"5":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"891":{"tf":1.0}}},"3":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"890":{"tf":1.0}}},"1":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"947":{"tf":1.0}}},"df":12,"docs":{"258":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"751":{"tf":1.0},"867":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}}},">":{"&":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"100":{"tf":2.23606797749979},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"127":{"tf":4.0},"146":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.7320508075688772},"264":{"tf":1.0},"266":{"tf":1.0},"289":{"tf":1.4142135623730951},"310":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"404":{"tf":2.6457513110645907},"414":{"tf":2.6457513110645907},"416":{"tf":1.4142135623730951},"465":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"517":{"tf":1.0},"524":{"tf":1.4142135623730951},"537":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":3.0},"624":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"728":{"tf":1.0},"773":{"tf":1.0},"79":{"tf":2.23606797749979},"907":{"tf":1.0},"958":{"tf":1.0}},"m":{"b":{"df":3,"docs":{"135":{"tf":1.0},"837":{"tf":1.0},"933":{"tf":1.0}}},"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"n":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"μ":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}}},"2":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"0":{".":{"2":{"df":1,"docs":{"561":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"3":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"877":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"590":{"tf":1.0}}},"4":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":1,"docs":{"632":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"3":{"df":1,"docs":{"774":{"tf":1.0}}},"4":{"df":1,"docs":{"815":{"tf":1.0}}},"5":{"df":1,"docs":{"927":{"tf":1.0}}},"6":{"df":1,"docs":{"927":{"tf":1.0}}},"9":{"df":30,"docs":{"108":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"87":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"958":{"tf":3.0}}},"df":1,"docs":{"945":{"tf":1.0}}},"2":{"0":{"df":79,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"958":{"tf":5.196152422706632}}},"1":{"df":73,"docs":{"677":{"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"855":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0},"958":{"tf":4.795831523312719}}},"2":{"df":39,"docs":{"664":{"tf":1.0},"684":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.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},"765":{"tf":1.0},"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},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0},"958":{"tf":2.23606797749979}}},"3":{"df":34,"docs":{"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},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"958":{"tf":1.0}}},"4":{"df":27,"docs":{"258":{"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},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.0},"958":{"tf":1.0}}},"6":{"df":1,"docs":{"773":{"tf":1.0}}},"9":{"df":1,"docs":{"773":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"3":{"5":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"9":{"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"771":{"tf":1.0}}},"df":1,"docs":{"946":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"770":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"762":{"tf":1.0}}},"7":{"df":1,"docs":{"765":{"tf":1.0}}},"8":{"df":1,"docs":{"765":{"tf":1.0}}},"9":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"770":{"tf":1.0}}},"7":{"df":1,"docs":{"769":{"tf":1.0}}},"8":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"258":{"tf":1.0},"328":{"tf":1.4142135623730951},"738":{"tf":1.0},"740":{"tf":1.0},"772":{"tf":1.0},"840":{"tf":1.0},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"931":{"tf":1.0},"942":{"tf":1.0},"956":{"tf":1.0}}},"1":{"1":{"4":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":4,"docs":{"763":{"tf":1.0},"764":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}},"6":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"763":{"tf":1.0}}},"5":{"df":1,"docs":{"763":{"tf":1.0}}},"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"404":{"tf":1.0},"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"945":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"762":{"tf":1.0}}},"3":{"df":1,"docs":{"762":{"tf":1.0}}},"5":{"df":1,"docs":{"762":{"tf":1.0}}},"9":{"df":1,"docs":{"762":{"tf":1.0}}},"df":1,"docs":{"945":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"762":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"8":{"2":{"df":1,"docs":{"762":{"tf":1.0}}},"8":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"761":{"tf":1.0}}},"5":{"df":1,"docs":{"761":{"tf":1.0}}},"6":{"df":1,"docs":{"759":{"tf":1.0}}},"9":{"df":1,"docs":{"761":{"tf":1.0}}},"df":1,"docs":{"944":{"tf":1.0}}},"df":7,"docs":{"258":{"tf":1.0},"719":{"tf":1.0},"873":{"tf":1.0},"894":{"tf":1.0},"912":{"tf":1.0},"935":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"760":{"tf":1.0}}},"df":1,"docs":{"943":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"760":{"tf":1.0}}},"9":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"759":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"747":{"tf":1.0}}},"5":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"757":{"tf":1.0}}},"6":{"df":1,"docs":{"756":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"738":{"tf":1.0}}},"4":{"df":1,"docs":{"756":{"tf":1.0}}},"5":{"df":1,"docs":{"756":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"755":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"7":{"0":{"df":1,"docs":{"754":{"tf":1.0}}},"1":{"df":1,"docs":{"752":{"tf":1.0}}},"2":{"df":1,"docs":{"752":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"753":{"tf":1.0}}},"8":{"df":1,"docs":{"753":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"9":{"4":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"727":{"tf":1.0},"765":{"tf":1.0},"805":{"tf":1.0},"828":{"tf":1.0},"839":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.0},"920":{"tf":1.0},"930":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"3":{"0":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":1,"docs":{"880":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"750":{"tf":1.0}}},"3":{"df":1,"docs":{"750":{"tf":1.0}}},"7":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"751":{"tf":1.0}}},"8":{"df":1,"docs":{"748":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"751":{"tf":1.0}}},"5":{"df":1,"docs":{"735":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"747":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"747":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"553":{"tf":1.0},"574":{"tf":1.0},"721":{"tf":1.0},"723":{"tf":1.0},"734":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"859":{"tf":1.0},"891":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"511":{"tf":1.0},"524":{"tf":1.0}}},"1":{"5":{"df":1,"docs":{"743":{"tf":1.0}}},"7":{"df":1,"docs":{"743":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"742":{"tf":1.0}}},"6":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"740":{"tf":1.0}}},"6":{"df":1,"docs":{"734":{"tf":1.0}}},"9":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"739":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"173":{"tf":1.0},"718":{"tf":1.0},"742":{"tf":1.0},"758":{"tf":1.0},"827":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"846":{"tf":1.0},"896":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"5":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{".":{"8":{"9":{"3":{"7":{"3":{"9":{"3":{"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":{}},"0":{"3":{"df":1,"docs":{"737":{"tf":1.0}}},"df":3,"docs":{"135":{"tf":1.0},"830":{"tf":1.0},"929":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"737":{"tf":1.0}}},"3":{"df":1,"docs":{"735":{"tf":1.0}}},"6":{"df":1,"docs":{"735":{"tf":1.0}}},"8":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"2":{"8":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"736":{"tf":1.0}}},"8":{"df":1,"docs":{"736":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"4":{"5":{"df":1,"docs":{"736":{"tf":1.0}}},"df":1,"docs":{"941":{"tf":1.0}}},"5":{"df":2,"docs":{"425":{"tf":1.0},"721":{"tf":1.0}}},"6":{"df":2,"docs":{"701":{"tf":1.0},"940":{"tf":1.0}}},"df":16,"docs":{"551":{"tf":2.0},"553":{"tf":1.7320508075688772},"554":{"tf":2.449489742783178},"669":{"tf":1.0},"753":{"tf":1.0},"757":{"tf":1.0},"771":{"tf":1.0},"792":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"834":{"tf":1.0},"845":{"tf":1.0},"893":{"tf":1.0},"916":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":2.23606797749979}}},"6":{"0":{"df":1,"docs":{"939":{"tf":1.0}}},"1":{"4":{"df":1,"docs":{"735":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"6":{"9":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"9":{"7":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":15,"docs":{"258":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"844":{"tf":1.0},"855":{"tf":1.0},"863":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"948":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"7":{"0":{"9":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"1":{"9":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"731":{"tf":1.0}}},"7":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"731":{"tf":1.0}}},"7":{"df":1,"docs":{"727":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"4":{"5":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"728":{"tf":1.0}}},"7":{"df":1,"docs":{"729":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"728":{"tf":1.0}}},"7":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"727":{"tf":1.0}}},"2":{"df":1,"docs":{"727":{"tf":1.0}}},"6":{"df":1,"docs":{"727":{"tf":1.7320508075688772}}},"df":1,"docs":{"938":{"tf":1.0}}},"df":7,"docs":{"158":{"tf":1.0},"171":{"tf":1.0},"833":{"tf":1.0},"862":{"tf":1.0},"900":{"tf":1.0},"906":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"8":{"1":{"df":1,"docs":{"938":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":3,"docs":{"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0}}},"7":{"df":1,"docs":{"721":{"tf":1.0}}},"8":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"1":{"df":1,"docs":{"721":{"tf":1.0}}},"3":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"721":{"tf":1.0}}},"df":1,"docs":{"938":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"164":{"tf":1.0},"715":{"tf":1.0},"728":{"tf":1.0},"737":{"tf":1.0},"761":{"tf":1.0},"793":{"tf":1.0},"824":{"tf":1.0},"852":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"718":{"tf":1.0}}},"5":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"718":{"tf":1.0}}},"8":{"df":1,"docs":{"718":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"717":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":13,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"730":{"tf":1.0},"787":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"880":{"tf":1.0},"958":{"tf":1.0}},"t":{"0":{"9":{":":{"5":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"3":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"2":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},">":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"1":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":30,"docs":{"100":{"tf":2.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"146":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"259":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"642":{"tf":1.0},"747":{"tf":1.0},"79":{"tf":2.0},"814":{"tf":1.4142135623730951},"830":{"tf":1.0},"958":{"tf":1.0}}},"3":{".":{"1":{".":{"0":{"df":1,"docs":{"945":{"tf":1.0}}},"1":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"785":{"tf":1.0}}},"2":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"799":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"846":{"tf":1.0},"867":{"tf":1.0}}},"6":{".":{"0":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"735":{"tf":1.0},"858":{"tf":1.0}}},"7":{"df":5,"docs":{"40":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0}}},"8":{"df":4,"docs":{"15":{"tf":1.0},"30":{"tf":1.0},"673":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"6":{"df":1,"docs":{"715":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"938":{"tf":1.0}}},"5":{"df":1,"docs":{"258":{"tf":1.0}}},"df":14,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"22":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"802":{"tf":1.0},"81":{"tf":1.0},"892":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"958":{"tf":1.0}}},"1":{".":{"5":{".":{"0":{"df":4,"docs":{"425":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"563":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":2,"docs":{"936":{"tf":1.0},"937":{"tf":1.0}}},"9":{"df":1,"docs":{"937":{"tf":1.0}}},"df":6,"docs":{"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"799":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0}}},"2":{"df":6,"docs":{"258":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"621":{"tf":1.0},"762":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"3":{".":{"0":{".":{"0":{"df":2,"docs":{"11":{"tf":1.0},"824":{"tf":1.0}}},"3":{"df":1,"docs":{"824":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"824":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"756":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"2":{"df":1,"docs":{"935":{"tf":1.0}}},"3":{"df":1,"docs":{"935":{"tf":1.0}}},"6":{"df":1,"docs":{"933":{"tf":1.0}}},"df":2,"docs":{"731":{"tf":1.0},"735":{"tf":1.0}}},"5":{"8":{"df":1,"docs":{"884":{"tf":1.0}}},"9":{"df":1,"docs":{"884":{"tf":1.0}}},"d":{"a":{"b":{"8":{"5":{"2":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"884":{"tf":1.0}}},"5":{"df":1,"docs":{"883":{"tf":1.0}}},"df":2,"docs":{"258":{"tf":1.0},"956":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"882":{"tf":1.0}}},"5":{"df":1,"docs":{"934":{"tf":1.0}}},"8":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"882":{"tf":1.0}}},"2":{"df":1,"docs":{"882":{"tf":1.0}}},"9":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"881":{"tf":1.0}}},"4":{"df":1,"docs":{"881":{"tf":1.0}}},"9":{"df":2,"docs":{"880":{"tf":1.0},"933":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"169":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":1.0},"289":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"416":{"tf":1.4142135623730951},"546":{"tf":1.0},"551":{"tf":2.23606797749979},"553":{"tf":2.0},"632":{"tf":1.0},"65":{"tf":1.0},"772":{"tf":1.0},"79":{"tf":1.7320508075688772},"915":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"318":{"tf":1.0}}},"2":{".":{"2":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"783":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"3":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"880":{"tf":1.0}}},"1":{"df":1,"docs":{"879":{"tf":1.0}}},"7":{"df":1,"docs":{"880":{"tf":1.0}}},"9":{"6":{"df":8,"docs":{"377":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.0},"170":{"tf":1.0},"285":{"tf":1.0},"570":{"tf":1.0},"920":{"tf":1.0},"956":{"tf":1.0}},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"1":{"1":{"df":1,"docs":{"933":{"tf":1.0}}},"5":{"df":1,"docs":{"933":{"tf":1.0}}},"6":{"df":1,"docs":{"880":{"tf":1.0}}},"df":1,"docs":{"956":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"879":{"tf":1.0}}},"2":{"df":1,"docs":{"880":{"tf":1.0}}},"df":2,"docs":{"588":{"tf":1.0},"956":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}}},"3":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"1":{"df":1,"docs":{"933":{"tf":1.0}}},"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":1,"docs":{"553":{"tf":1.0}},"f":{"4":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{"df":1,"docs":{"933":{"tf":1.0}}},"6":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"9":{"5":{"df":1,"docs":{"872":{"tf":1.0}}},"7":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":2.23606797749979},"867":{"tf":1.0}}}},"d":{"2":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"184":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"546":{"tf":1.0},"632":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.7320508075688772}},"k":{"b":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"869":{"tf":1.0}}}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"1":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":11,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"315":{"tf":1.0},"468":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"756":{"tf":1.0},"897":{"tf":1.0}}},"df":6,"docs":{"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"873":{"tf":1.0}}},"1":{".":{"8":{".":{"2":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"df":3,"docs":{"872":{"tf":1.0},"929":{"tf":1.7320508075688772},"932":{"tf":1.0}}},"8":{"df":1,"docs":{"872":{"tf":1.0}}},"9":{"df":1,"docs":{"932":{"tf":1.0}}},"df":1,"docs":{"158":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"871":{"tf":1.0}}},"4":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":2,"docs":{"404":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"871":{"tf":1.0},"931":{"tf":1.0}}},"5":{"df":1,"docs":{"871":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"930":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"929":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"870":{"tf":1.0}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":2.449489742783178},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"642":{"tf":1.0},"652":{"tf":1.4142135623730951},"79":{"tf":1.0},"833":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"6":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"834":{"tf":1.0}}}}},"6":{".":{"1":{".":{"2":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":2,"docs":{"824":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"1":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"801":{"tf":1.0}}},"9":{"4":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"929":{"tf":1.0}}},"df":5,"docs":{"135":{"tf":1.4142135623730951},"315":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"929":{"tf":1.0}}},"1":{"4":{"7":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"df":1,"docs":{"929":{"tf":1.0}}},"df":4,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"864":{"tf":1.0}}},"8":{"df":1,"docs":{"929":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"929":{"tf":1.0}}},"3":{"5":{"5":{"2":{"0":{"0":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"864":{"tf":1.0}}},"df":1,"docs":{"258":{"tf":1.0}}},"8":{"1":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"929":{"tf":1.0}}},"5":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.0},"379":{"tf":1.0},"406":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"956":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{"df":2,"docs":{"30":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"910":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":1,"docs":{"736":{"tf":1.0}}},"1":{"df":16,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"830":{"tf":1.0}}},"1":{"df":1,"docs":{"863":{"tf":1.0}}},"2":{"df":1,"docs":{"863":{"tf":1.0}}},"3":{"df":1,"docs":{"863":{"tf":1.0}}},"7":{"df":1,"docs":{"863":{"tf":1.0}}},"df":1,"docs":{"956":{"tf":1.0}}},"4":{"d":{"b":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"927":{"tf":1.0}}},"5":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"862":{"tf":1.0}}},"3":{"df":1,"docs":{"862":{"tf":1.0}}},"5":{"df":1,"docs":{"862":{"tf":1.0}}},"6":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"927":{"tf":1.0}}},"9":{"df":1,"docs":{"927":{"tf":1.0}}},"df":1,"docs":{"955":{"tf":1.0}}},"8":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"861":{"tf":1.0}}},"6":{"df":1,"docs":{"925":{"tf":1.0}}},"9":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"272":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"786":{"tf":1.4142135623730951}}},"8":{".":{"0":{"df":1,"docs":{"517":{"tf":1.7320508075688772}}},"1":{".":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"df":1,"docs":{"861":{"tf":1.0}}},"8":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}},"df":2,"docs":{"288":{"tf":1.4142135623730951},"303":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"860":{"tf":1.0}}},"1":{"df":1,"docs":{"924":{"tf":1.0}}},"5":{"df":1,"docs":{"860":{"tf":1.0}}},"9":{"2":{"df":1,"docs":{"541":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"924":{"tf":1.0}}},"5":{"df":1,"docs":{"924":{"tf":1.0}}},"7":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"858":{"tf":1.0}}},"3":{"df":1,"docs":{"858":{"tf":1.0}}},"4":{"df":1,"docs":{"858":{"tf":1.0}}},"6":{"df":2,"docs":{"858":{"tf":1.0},"923":{"tf":1.7320508075688772}}},"df":1,"docs":{"954":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}}},"6":{",":{"4":{"0":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":1,"docs":{"554":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"854":{"tf":1.0}}},"6":{"df":1,"docs":{"854":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"8":{"4":{"2":{"1":{"1":{"df":0,"docs":{},"e":{"5":{"4":{"5":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"a":{"a":{"0":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"136":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"273":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"471":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"791":{"tf":1.0},"802":{"tf":1.0},"835":{"tf":1.0},"956":{"tf":1.0}},"k":{"df":2,"docs":{"761":{"tf":1.0},"912":{"tf":1.0}}}},"9":{"0":{"8":{"df":1,"docs":{"923":{"tf":1.0}}},"df":1,"docs":{"953":{"tf":2.0}}},"2":{"4":{"df":1,"docs":{"922":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"3":{"5":{"df":1,"docs":{"849":{"tf":1.0}}},"df":0,"docs":{}},"4":{"9":{"df":1,"docs":{"849":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"922":{"tf":1.0}}},"3":{"df":1,"docs":{"849":{"tf":1.0}}},"df":2,"docs":{"685":{"tf":1.0},"951":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}}},"6":{"2":{"df":1,"docs":{"849":{"tf":1.0}}},"5":{"df":1,"docs":{"921":{"tf":1.0}}},"7":{"df":2,"docs":{"849":{"tf":1.0},"920":{"tf":1.0}}},"8":{"df":2,"docs":{"849":{"tf":1.0},"921":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"7":{"0":{"df":1,"docs":{"921":{"tf":1.0}}},"4":{"df":1,"docs":{"846":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"8":{"1":{"df":1,"docs":{"920":{"tf":1.0}}},"3":{"df":1,"docs":{"847":{"tf":1.0}}},"4":{"df":1,"docs":{"919":{"tf":1.0}}},"6":{"df":1,"docs":{"847":{"tf":1.0}}},"7":{"df":1,"docs":{"846":{"tf":1.0}}},"8":{"df":1,"docs":{"919":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"9":{"3":{"df":1,"docs":{"847":{"tf":1.0}}},"4":{"df":1,"docs":{"919":{"tf":1.0}}},"5":{"df":1,"docs":{"842":{"tf":1.0}}},"6":{"df":1,"docs":{"846":{"tf":1.0}}},"8":{"df":1,"docs":{"843":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"df":9,"docs":{"164":{"tf":1.0},"183":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"274":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"956":{"tf":1.0}}},"_":{"_":{"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":1,"docs":{"473":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"_":{"df":24,"docs":{"377":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.4142135623730951},"414":{"tf":2.0},"419":{"tf":1.4142135623730951},"435":{"tf":2.0},"440":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"858":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":3.4641016151377544}}}},"k":{".":{"a":{"df":2,"docs":{"187":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"1":{"df":0,"docs":{},"i":{"df":3,"docs":{"376":{"tf":1.4142135623730951},"387":{"tf":1.0},"397":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"751":{"tf":1.0},"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"665":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.4142135623730951}},"l":{"df":6,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"741":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"478":{"tf":1.0},"492":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"223":{"tf":1.0},"354":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.4142135623730951},"377":{"tf":1.0},"427":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"711":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"376":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"549":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":18,"docs":{"135":{"tf":1.0},"313":{"tf":1.0},"357":{"tf":1.0},"446":{"tf":1.0},"529":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.4142135623730951},"693":{"tf":1.0},"717":{"tf":1.4142135623730951},"723":{"tf":1.0},"741":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":1.7320508075688772},"801":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"953":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":31,"docs":{"110":{"tf":1.4142135623730951},"177":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"32":{"tf":2.0},"356":{"tf":1.0},"389":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"418":{"tf":1.0},"660":{"tf":2.0},"665":{"tf":1.0},"679":{"tf":1.0},"688":{"tf":2.0},"715":{"tf":1.0},"736":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"842":{"tf":1.0},"876":{"tf":1.0},"89":{"tf":1.4142135623730951},"917":{"tf":1.0},"924":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.7320508075688772}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.4142135623730951}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"396":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"297":{"tf":1.4142135623730951},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"753":{"tf":1.0},"796":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"653":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"680":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"703":{"tf":1.0},"76":{"tf":1.0},"935":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":2.0},"884":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":1,"docs":{"517":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"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":1,"docs":{"517":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"738":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"729":{"tf":1.0},"738":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"729":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"494":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"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":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"475":{"tf":1.0},"493":{"tf":1.0},"574":{"tf":1.0},"585":{"tf":1.0},"772":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"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":{"c":{"!":{"[":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"476":{"tf":1.0},"494":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"586":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"586":{"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":15,"docs":{"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"725":{"tf":1.0},"829":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"456":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"759":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"257":{"tf":1.0},"376":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"590":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"814":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"741":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"340":{"tf":1.0},"376":{"tf":1.0},"560":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"909":{"tf":1.0},"951":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":28,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"195":{"tf":1.0},"224":{"tf":2.6457513110645907},"233":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.4142135623730951},"318":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0},"691":{"tf":1.7320508075688772},"711":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.449489742783178},"837":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"880":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{},"n":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"233":{"tf":1.4142135623730951},"315":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.0},"814":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"956":{"tf":1.0}}}}},"b":{"df":2,"docs":{"224":{"tf":2.0},"227":{"tf":1.7320508075688772}}},"d":{"df":100,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":2.449489742783178},"195":{"tf":1.0},"198":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":2.449489742783178},"24":{"tf":1.0},"254":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"315":{"tf":1.0},"318":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":3.605551275463989},"414":{"tf":3.605551275463989},"419":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"474":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"71":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"728":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.7320508075688772},"752":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"799":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"823":{"tf":1.4142135623730951},"830":{"tf":1.0},"834":{"tf":2.0},"837":{"tf":1.7320508075688772},"846":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"882":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"898":{"tf":1.0},"9":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"927":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"956":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":50,"docs":{"107":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"289":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"568":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"63":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"707":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":1.0},"802":{"tf":1.0},"834":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"120":{"tf":1.0},"136":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.0},"471":{"tf":1.0},"52":{"tf":1.0},"704":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"500":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"134":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"288":{"tf":2.0},"289":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"693":{"tf":1.0},"758":{"tf":1.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}}},"df":91,"docs":{"0":{"tf":2.8284271247461903},"10":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.4142135623730951},"306":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"379":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"563":{"tf":2.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"621":{"tf":2.23606797749979},"649":{"tf":1.0},"665":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"69":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.4142135623730951},"750":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.23606797749979},"804":{"tf":1.0},"809":{"tf":1.4142135623730951},"811":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.0},"902":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"98":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"340":{"tf":1.0},"854":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"693":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"308":{"tf":1.0},"318":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"580":{"tf":1.0},"77":{"tf":1.0},"782":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"_":{"df":1,"docs":{"461":{"tf":1.0}}},"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"951":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"132":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"862":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"100":{"tf":2.449489742783178},"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"757":{"tf":1.0},"762":{"tf":1.7320508075688772},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":2.449489742783178},"806":{"tf":1.0},"848":{"tf":1.0},"902":{"tf":1.0},"919":{"tf":1.0},"969":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"119":{"tf":1.0},"288":{"tf":1.0},"644":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"775":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"951":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"175":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}}}}},"h":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"252":{"tf":1.0},"959":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}},"s":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"288":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":4,"docs":{"471":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"950":{"tf":1.0}}}}}}}}},"i":{"a":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"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":{},"y":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":5,"docs":{"494":{"tf":1.0},"509":{"tf":1.0},"512":{"tf":1.0},"725":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":2,"docs":{"22":{"tf":1.0},"861":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":82,"docs":{"12":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"306":{"tf":1.0},"320":{"tf":1.0},"37":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"510":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"537":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0},"632":{"tf":1.0},"644":{"tf":1.4142135623730951},"658":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"709":{"tf":1.0},"715":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"734":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"750":{"tf":1.0},"76":{"tf":1.4142135623730951},"762":{"tf":1.0},"765":{"tf":1.0},"773":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"823":{"tf":1.0},"830":{"tf":1.7320508075688772},"839":{"tf":1.0},"885":{"tf":1.0},"906":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0},"947":{"tf":1.0},"97":{"tf":1.4142135623730951}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0}},"g":{"df":15,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"330":{"tf":1.0},"541":{"tf":1.0},"677":{"tf":1.4142135623730951},"76":{"tf":1.0},"761":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"df":1,"docs":{"334":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"285":{"tf":1.0},"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"811":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":29,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"456":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"680":{"tf":1.0},"692":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"98":{"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":{"27":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"223":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"653":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":24,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"401":{"tf":1.0},"412":{"tf":1.0},"471":{"tf":1.4142135623730951},"487":{"tf":1.0},"514":{"tf":1.0},"560":{"tf":1.0},"567":{"tf":1.0},"632":{"tf":1.0},"649":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0},"880":{"tf":1.0},"916":{"tf":1.0},"923":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"132":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.0},"404":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"916":{"tf":1.0},"933":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"103":{"tf":1.0},"811":{"tf":1.0},"82":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"261":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":8,"docs":{"288":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}}},"t":{"df":1,"docs":{"703":{"tf":1.0}}},"z":{"df":5,"docs":{"267":{"tf":1.0},"471":{"tf":1.0},"704":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"252":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"'":{"df":1,"docs":{"315":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":102,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":2.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"271":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"349":{"tf":1.0},"431":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"656":{"tf":2.0},"662":{"tf":1.7320508075688772},"663":{"tf":1.0},"669":{"tf":1.0},"671":{"tf":1.4142135623730951},"673":{"tf":1.0},"674":{"tf":2.0},"675":{"tf":2.0},"676":{"tf":1.0},"677":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"732":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"745":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"765":{"tf":1.0},"775":{"tf":1.0},"783":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.4142135623730951},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"826":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"830":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.4142135623730951},"837":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.4142135623730951}},"x":{"df":2,"docs":{"759":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":10,"docs":{"118":{"tf":1.0},"131":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"288":{"tf":1.0},"326":{"tf":2.449489742783178},"328":{"tf":1.7320508075688772},"329":{"tf":1.0},"332":{"tf":1.0},"734":{"tf":1.0}}},"y":{"df":1,"docs":{"923":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"118":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":17,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"61":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"687":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0},"959":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"752":{"tf":1.0},"762":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.0},"919":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"600":{"tf":1.0},"611":{"tf":1.0},"680":{"tf":1.0},"734":{"tf":1.0},"925":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":203,"docs":{"0":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.0},"13":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"26":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.7320508075688772},"306":{"tf":2.0},"307":{"tf":2.23606797749979},"31":{"tf":1.7320508075688772},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":2.0},"320":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":2.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.7320508075688772},"337":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"390":{"tf":1.7320508075688772},"392":{"tf":1.0},"394":{"tf":1.0},"400":{"tf":1.7320508075688772},"403":{"tf":1.0},"405":{"tf":1.0},"411":{"tf":1.7320508075688772},"413":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"426":{"tf":1.0},"432":{"tf":1.7320508075688772},"434":{"tf":1.0},"436":{"tf":1.0},"442":{"tf":1.7320508075688772},"444":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.7320508075688772},"455":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.0},"470":{"tf":1.7320508075688772},"472":{"tf":1.0},"479":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"495":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"513":{"tf":1.7320508075688772},"516":{"tf":1.0},"518":{"tf":1.0},"523":{"tf":1.0},"525":{"tf":1.0},"527":{"tf":1.0},"530":{"tf":1.0},"536":{"tf":1.7320508075688772},"539":{"tf":1.0},"542":{"tf":1.0},"550":{"tf":1.0},"552":{"tf":1.0},"559":{"tf":1.7320508075688772},"562":{"tf":1.0},"564":{"tf":1.0},"568":{"tf":1.0},"571":{"tf":1.7320508075688772},"572":{"tf":1.0},"573":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"584":{"tf":1.0},"587":{"tf":1.0},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.7320508075688772},"607":{"tf":1.0},"608":{"tf":1.0},"610":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":2.23606797749979},"622":{"tf":1.0},"628":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"650":{"tf":1.0},"652":{"tf":2.6457513110645907},"653":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"678":{"tf":1.0},"686":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.4142135623730951},"729":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"752":{"tf":2.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"784":{"tf":1.4142135623730951},"796":{"tf":2.0},"799":{"tf":2.23606797749979},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.449489742783178},"817":{"tf":1.4142135623730951},"819":{"tf":1.0},"834":{"tf":1.4142135623730951},"854":{"tf":1.0},"86":{"tf":1.4142135623730951},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"878":{"tf":1.0},"890":{"tf":1.0},"898":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.7320508075688772},"919":{"tf":1.7320508075688772},"920":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.7320508075688772},"927":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"952":{"tf":1.4142135623730951},"956":{"tf":2.0},"960":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":3.1622776601683795},"969":{"tf":1.7320508075688772}}},"k":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"p":{"'":{"df":3,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"83":{"tf":1.0}}},"/":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"?":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"&":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"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":{}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"315":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"315":{"tf":1.0},"947":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"947":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"169":{"tf":1.0},"175":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":2.8284271247461903},"234":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"338":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"674":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"811":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"476":{"tf":1.0},"494":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"5":{"tf":1.0},"960":{"tf":1.0},"966":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"958":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":11,"docs":{"137":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":2.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0}}},"(":{"_":{":":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"232":{"tf":1.0},"316":{"tf":1.4142135623730951},"338":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"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":{"136":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"316":{"tf":1.0},"318":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"839":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"0":{".":{"1":{".":{"0":{"df":3,"docs":{"316":{"tf":1.0},"318":{"tf":1.0},"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":{}}}}}}}}},"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":1,"docs":{"315":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"151":{"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"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":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":144,"docs":{"0":{"tf":2.0},"100":{"tf":2.449489742783178},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"132":{"tf":4.358898943540674},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.8284271247461903},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":2.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"173":{"tf":2.0},"175":{"tf":2.6457513110645907},"179":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.23606797749979},"184":{"tf":3.1622776601683795},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.7320508075688772},"22":{"tf":2.23606797749979},"222":{"tf":2.0},"224":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":2.449489742783178},"259":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.6457513110645907},"290":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":3.3166247903554},"316":{"tf":2.6457513110645907},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.4142135623730951},"338":{"tf":1.0},"349":{"tf":2.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"418":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"549":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"59":{"tf":1.0},"632":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":2.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.7320508075688772},"658":{"tf":1.7320508075688772},"66":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.4142135623730951},"668":{"tf":1.0},"671":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"679":{"tf":1.7320508075688772},"680":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"687":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.4142135623730951},"711":{"tf":1.0},"727":{"tf":1.0},"78":{"tf":2.6457513110645907},"79":{"tf":2.449489742783178},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"840":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":2.449489742783178},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.7320508075688772},"864":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":2.6457513110645907},"91":{"tf":1.4142135623730951},"938":{"tf":1.0},"946":{"tf":1.0},"958":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}},"df":26,"docs":{"13":{"tf":1.7320508075688772},"169":{"tf":1.0},"195":{"tf":2.0},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"267":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"529":{"tf":1.0},"663":{"tf":1.0},"672":{"tf":1.0},"741":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"674":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"202":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0}}}}},"v":{"df":1,"docs":{"342":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"145":{"tf":1.0},"258":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"326":{"tf":1.0},"377":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"572":{"tf":1.0},"583":{"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":8,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"762":{"tf":1.4142135623730951},"923":{"tf":1.0},"924":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"776":{"tf":1.0},"781":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"17":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"22":{"tf":1.0},"321":{"tf":1.0},"377":{"tf":1.0},"678":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}},"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":36,"docs":{"318":{"tf":1.7320508075688772},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"565":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"796":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"921":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"268":{"tf":1.0}}}},"m":{"6":{"4":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"184":{"tf":1.0},"227":{"tf":1.0},"259":{"tf":1.0},"50":{"tf":1.0},"653":{"tf":1.0},"854":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"170":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.0},"446":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0},"644":{"tf":1.7320508075688772},"645":{"tf":1.0},"693":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"254":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":6,"docs":{"226":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.4142135623730951},"637":{"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"tf":1.7320508075688772}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"635":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"635":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"635":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":{".":{"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"635":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"634":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"777":{"tf":1.0},"778":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":17,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"188":{"tf":1.0},"205":{"tf":1.0},"233":{"tf":1.4142135623730951},"342":{"tf":1.0},"72":{"tf":1.0},"752":{"tf":1.0},"93":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"962":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"385":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"385":{"tf":1.0},"395":{"tf":1.0},"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"553":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"652":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"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":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"1":{"df":1,"docs":{"507":{"tf":1.4142135623730951}}},"df":5,"docs":{"416":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}},"df":2,"docs":{"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"2":{"df":2,"docs":{"519":{"tf":1.0},"588":{"tf":1.0}}},"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"385":{"tf":1.0},"395":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"553":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"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":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"333":{"tf":1.0},"508":{"tf":1.0},"578":{"tf":1.0},"642":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"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":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"496":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"480":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"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":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"2":{"0":{"1":{"9":{"df":1,"docs":{"554":{"tf":1.0}}},"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":{},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"416":{"tf":1.0}}},"2":{"df":1,"docs":{"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"407":{"tf":1.0},"428":{"tf":1.0},"465":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}},"df":6,"docs":{"416":{"tf":1.0},"465":{"tf":1.0},"519":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.0}}},"df":4,"docs":{"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"2":{"df":3,"docs":{"519":{"tf":1.0},"588":{"tf":1.0},"611":{"tf":1.0}}},"3":{"3":{"df":2,"docs":{"600":{"tf":1.0},"611":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":2,"docs":{"406":{"tf":1.0},"427":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"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":{"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"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":{"565":{"tf":1.0}}}}}},"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":1,"docs":{"531":{"tf":1.0}}}},"df":0,"docs":{}},"(":{"1":{"1":{"df":1,"docs":{"507":{"tf":1.0}}},"df":2,"docs":{"588":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}},"2":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}},"4":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"519":{"tf":1.0},"588":{"tf":1.0}}}}},"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"385":{"tf":1.0},"652":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":27,"docs":{"333":{"tf":1.0},"334":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.4142135623730951},"624":{"tf":1.0},"635":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"!":{"(":{"4":{"0":{"0":{"df":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"\"":{"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":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"427":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"480":{"tf":1.0},"496":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"600":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"553":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"531":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"107":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"497":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"565":{"tf":1.7320508075688772},"566":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"tf":2.0},"86":{"tf":1.4142135623730951},"880":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"\"":{"2":{"0":{"1":{"9":{"df":1,"docs":{"554":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"tf":1.4142135623730951}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"0":{"df":3,"docs":{"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"601":{"tf":1.0}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951}}},"df":2,"docs":{"416":{"tf":1.4142135623730951},"642":{"tf":1.0}},"l":{"df":1,"docs":{"577":{"tf":1.7320508075688772}}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}},"df":1,"docs":{"565":{"tf":1.0}},"l":{"df":2,"docs":{"480":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951}}}},"3":{"df":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.4142135623730951}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"652":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"623":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"333":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"601":{"tf":1.0},"624":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"643":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"272":{"tf":1.0}}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"203":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.0},"297":{"tf":1.4142135623730951},"474":{"tf":1.0},"677":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":16,"docs":{"100":{"tf":1.0},"252":{"tf":1.4142135623730951},"258":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"514":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"675":{"tf":1.0},"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"838":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"342":{"tf":1.0},"786":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"312":{"tf":1.0},"340":{"tf":1.0},"838":{"tf":1.0},"958":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"802":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"858":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"150":{"tf":1.0},"259":{"tf":1.0},"661":{"tf":1.0},"693":{"tf":1.0}}},"k":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"160":{"tf":1.0},"233":{"tf":1.0},"462":{"tf":1.0},"563":{"tf":1.0},"670":{"tf":1.0},"802":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0},"252":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"218":{"tf":1.0}}}}},"o":{"df":14,"docs":{"459":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"565":{"tf":2.23606797749979},"577":{"tf":1.0},"588":{"tf":1.0},"623":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.4142135623730951},"720":{"tf":1.0},"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"798":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":48,"docs":{"12":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"162":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":2.0},"218":{"tf":1.4142135623730951},"288":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"647":{"tf":1.0},"666":{"tf":1.4142135623730951},"67":{"tf":1.0},"671":{"tf":1.0},"686":{"tf":1.4142135623730951},"691":{"tf":1.0},"692":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"783":{"tf":1.0},"793":{"tf":1.0},"807":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"91":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":14,"docs":{"117":{"tf":1.0},"136":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"289":{"tf":1.0},"36":{"tf":1.0},"371":{"tf":1.4142135623730951},"45":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"9":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":73,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"306":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.0},"376":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"568":{"tf":1.0},"572":{"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.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"693":{"tf":1.0},"695":{"tf":1.0},"705":{"tf":1.0},"710":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.4142135623730951},"78":{"tf":1.0},"802":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"969":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":36,"docs":{"104":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"310":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"785":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"844":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"318":{"tf":1.0},"342":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"577":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"652":{"tf":1.0},"865":{"tf":1.0}}}},"r":{"df":3,"docs":{"223":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":4,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":3.1622776601683795}}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"120":{"tf":1.0},"127":{"tf":1.4142135623730951},"135":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"267":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"859":{"tf":1.0},"873":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"125":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"245":{"tf":1.0},"271":{"tf":1.0},"315":{"tf":1.0},"346":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"786":{"tf":1.0},"807":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"823":{"tf":1.0},"830":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"724":{"tf":1.0},"726":{"tf":1.0},"858":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"289":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"640":{"tf":2.0},"645":{"tf":1.4142135623730951}},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"640":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"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":{}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"521":{"tf":1.0},"523":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"226":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0},"964":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":37,"docs":{"106":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":2.0},"275":{"tf":1.0},"276":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"52":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"583":{"tf":1.0},"653":{"tf":1.7320508075688772},"654":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"690":{"tf":1.0},"720":{"tf":1.0},"799":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.7320508075688772},"893":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":30,"docs":{"123":{"tf":1.0},"125":{"tf":2.449489742783178},"127":{"tf":2.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":2.6457513110645907},"210":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"275":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":2.0},"842":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"875":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"747":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"df":6,"docs":{"116":{"tf":1.0},"17":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951}}},"i":{"c":{"df":6,"docs":{"294":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"671":{"tf":1.0},"674":{"tf":1.0},"895":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"561":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"297":{"tf":1.0},"684":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.7320508075688772},"168":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"814":{"tf":1.0},"89":{"tf":1.0}}}}},"df":52,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"461":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"514":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"708":{"tf":1.0},"711":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":1.0},"816":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"858":{"tf":1.4142135623730951},"86":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":71,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"150":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"338":{"tf":2.0},"342":{"tf":1.4142135623730951},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"541":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"630":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"663":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.7320508075688772},"696":{"tf":1.0},"697":{"tf":1.7320508075688772},"698":{"tf":1.0},"701":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"801":{"tf":1.0},"804":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"845":{"tf":1.0},"865":{"tf":1.4142135623730951},"867":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"941":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"184":{"tf":1.4142135623730951},"231":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.4142135623730951},"728":{"tf":1.0},"76":{"tf":1.0},"878":{"tf":1.0},"97":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":7,"docs":{"117":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"758":{"tf":1.0},"853":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":25,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"456":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"693":{"tf":1.0},"70":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"74":{"tf":1.7320508075688772},"91":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"923":{"tf":1.0},"95":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"752":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":29,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"435":{"tf":1.0},"446":{"tf":1.4142135623730951},"46":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"630":{"tf":1.0},"73":{"tf":1.0},"772":{"tf":1.0},"799":{"tf":1.0},"915":{"tf":1.0},"94":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"132":{"tf":1.0},"254":{"tf":1.0},"26":{"tf":1.4142135623730951},"334":{"tf":2.0},"768":{"tf":1.0},"833":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"288":{"tf":1.0},"401":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"126":{"tf":1.4142135623730951},"142":{"tf":2.0},"173":{"tf":1.0},"192":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"626":{"tf":1.0},"720":{"tf":1.0},"76":{"tf":1.0},"802":{"tf":1.0},"840":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"693":{"tf":1.0},"919":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"11":{"tf":1.0},"690":{"tf":1.4142135623730951},"849":{"tf":1.0},"868":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"df":20,"docs":{"26":{"tf":1.0},"654":{"tf":1.7320508075688772},"727":{"tf":1.0},"736":{"tf":1.0},"740":{"tf":1.0},"773":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"834":{"tf":1.7320508075688772},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"846":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"859":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"t":{"df":11,"docs":{"144":{"tf":1.0},"254":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"621":{"tf":1.0},"703":{"tf":1.4142135623730951},"862":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"693":{"tf":1.0}}}},"b":{"df":1,"docs":{"422":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"459":{"tf":1.0},"477":{"tf":1.0},"737":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.4142135623730951},"852":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":2.449489742783178}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"5":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"328":{"tf":3.0},"329":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.449489742783178},"640":{"tf":1.0},"642":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"129":{"tf":1.0},"135":{"tf":1.4142135623730951},"317":{"tf":1.0},"837":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":13,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.7320508075688772},"706":{"tf":1.0},"959":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.4142135623730951},"968":{"tf":2.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":5,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.0},"652":{"tf":1.0},"830":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":35,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"376":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"393":{"tf":1.4142135623730951},"395":{"tf":2.449489742783178},"396":{"tf":1.0},"397":{"tf":1.0},"439":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":1.7320508075688772},"73":{"tf":1.0},"773":{"tf":1.0},"78":{"tf":1.0},"801":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"823":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}},"t":{"df":2,"docs":{"266":{"tf":1.0},"267":{"tf":1.0}},"h":{"df":22,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"272":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"729":{"tf":1.0},"77":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"830":{"tf":1.0},"89":{"tf":1.0},"959":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"310":{"tf":1.0},"496":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"758":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":13,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":2.449489742783178},"63":{"tf":1.0},"66":{"tf":1.0},"708":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"=":{"\"":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"131":{"tf":2.0},"158":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":2.6457513110645907},"326":{"tf":1.4142135623730951},"328":{"tf":2.8284271247461903},"333":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":39,"docs":{"175":{"tf":1.0},"377":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.4142135623730951},"719":{"tf":1.7320508075688772},"727":{"tf":1.4142135623730951},"730":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"738":{"tf":1.0},"753":{"tf":1.0},"765":{"tf":1.4142135623730951},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"786":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.4142135623730951},"824":{"tf":1.0},"828":{"tf":1.0},"837":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.4142135623730951},"677":{"tf":1.0},"964":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"254":{"tf":1.0},"862":{"tf":1.0},"969":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"796":{"tf":1.0}},"n":{"df":8,"docs":{"191":{"tf":1.0},"224":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"810":{"tf":1.0},"824":{"tf":1.0},"861":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"289":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"342":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"136":{"tf":1.4142135623730951},"190":{"tf":1.0},"233":{"tf":2.449489742783178},"241":{"tf":1.7320508075688772},"245":{"tf":1.0},"31":{"tf":2.449489742783178},"316":{"tf":1.0},"33":{"tf":1.0},"342":{"tf":1.0},"66":{"tf":1.0},"898":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"909":{"tf":1.0},"915":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"112":{"tf":2.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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"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":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"d":{"df":2,"docs":{"19":{"tf":1.0},"815":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"575":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"376":{"tf":1.0},"471":{"tf":2.0},"474":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"503":{"tf":2.0},"507":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"519":{"tf":1.4142135623730951},"572":{"tf":1.0},"577":{"tf":2.0},"580":{"tf":2.449489742783178},"582":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.4142135623730951},"591":{"tf":2.23606797749979},"716":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"718":{"tf":1.0}}}}}},"g":{"=":{"\"":{"0":{"0":{"0":{"0":{"0":{"0":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":201,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":4.242640687119285},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"390":{"tf":1.0},"397":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":2.0},"502":{"tf":1.0},"509":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"567":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"594":{"tf":1.0},"6":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"613":{"tf":1.0},"617":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"628":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"715":{"tf":1.4142135623730951},"716":{"tf":2.23606797749979},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"725":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.7320508075688772},"732":{"tf":1.4142135623730951},"734":{"tf":1.7320508075688772},"736":{"tf":1.0},"738":{"tf":2.23606797749979},"739":{"tf":1.0},"741":{"tf":1.7320508075688772},"745":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":2.23606797749979},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"814":{"tf":1.4142135623730951},"83":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"880":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"905":{"tf":1.0},"913":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.0},"929":{"tf":1.4142135623730951},"942":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":88,"docs":{"742":{"tf":1.0},"743":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"758":{"tf":1.0},"762":{"tf":2.23606797749979},"763":{"tf":1.4142135623730951},"764":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.7320508075688772},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.7320508075688772},"814":{"tf":1.0},"816":{"tf":1.7320508075688772},"817":{"tf":1.0},"818":{"tf":1.7320508075688772},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":1.7320508075688772},"837":{"tf":1.0},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"868":{"tf":1.0},"880":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.7320508075688772},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":2.0},"921":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":2.0},"930":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0},"953":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"958":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":5,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"379":{"tf":1.0},"6":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"793":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"914":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"670":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":94,"docs":{"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":1.4142135623730951},"17":{"tf":2.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"224":{"tf":2.0},"227":{"tf":1.7320508075688772},"254":{"tf":1.0},"26":{"tf":2.6457513110645907},"268":{"tf":2.23606797749979},"27":{"tf":1.0},"280":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"377":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"63":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.4142135623730951},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.4142135623730951},"684":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"735":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"753":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"811":{"tf":1.0},"820":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"83":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"853":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"879":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"9":{"tf":1.4142135623730951},"910":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"942":{"tf":1.4142135623730951},"949":{"tf":1.0},"950":{"tf":1.0},"958":{"tf":2.0},"96":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":37,"docs":{"100":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"647":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"78":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":1.0},"833":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"877":{"tf":1.0},"951":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"208":{"tf":1.0},"312":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"653":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"289":{"tf":1.0},"721":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":14,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"48":{"tf":1.0},"653":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"793":{"tf":1.0},"916":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"379":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"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":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"254":{"tf":2.6457513110645907},"328":{"tf":3.0},"329":{"tf":2.23606797749979},"332":{"tf":2.0},"333":{"tf":3.1622776601683795},"376":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":21,"docs":{"170":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"510":{"tf":2.0},"511":{"tf":1.0},"514":{"tf":1.7320508075688772},"522":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"737":{"tf":1.0},"756":{"tf":1.0},"829":{"tf":1.0},"873":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":3.1622776601683795}}}}}}}},"1":{"d":{"b":{"d":{"6":{"df":0,"docs":{},"e":{"0":{"6":{"1":{"7":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"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":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"234":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"785":{"tf":1.0}}}},"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"127":{"tf":1.0},"142":{"tf":1.7320508075688772},"560":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":7,"docs":{"127":{"tf":2.449489742783178},"175":{"tf":2.8284271247461903},"224":{"tf":1.0},"231":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"884":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"652":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"[":{"0":{"df":1,"docs":{"652":{"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":7,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"804":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"26":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":2.0},"346":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"565":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.4142135623730951},"665":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"710":{"tf":1.0},"772":{"tf":1.0},"788":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":1.0},"833":{"tf":1.4142135623730951},"84":{"tf":1.0},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"867":{"tf":1.4142135623730951},"873":{"tf":1.0},"880":{"tf":1.0},"91":{"tf":1.0},"919":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"340":{"tf":1.0},"649":{"tf":1.0},"796":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":2.0},"563":{"tf":1.0},"89":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"958":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"34":{"tf":1.0},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"461":{"tf":1.0},"538":{"tf":1.0},"762":{"tf":1.0},"791":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"652":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"492":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"492":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"321":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"861":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"738":{"tf":1.0},"786":{"tf":1.0},"792":{"tf":1.0},"846":{"tf":1.0},"891":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"110":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"259":{"tf":1.0},"289":{"tf":1.0},"618":{"tf":1.0},"677":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":21,"docs":{"104":{"tf":1.0},"17":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"83":{"tf":1.0},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"557":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"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":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}},"df":8,"docs":{"114":{"tf":1.0},"19":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"720":{"tf":1.0},"757":{"tf":1.0},"958":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"770":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":48,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"142":{"tf":2.0},"169":{"tf":1.4142135623730951},"175":{"tf":2.0},"184":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"203":{"tf":1.0},"22":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"476":{"tf":1.0},"618":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"710":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"78":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"919":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":26,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":2.23606797749979},"120":{"tf":1.4142135623730951},"127":{"tf":1.0},"142":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"176":{"tf":1.0},"234":{"tf":1.0},"265":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":2.8284271247461903},"289":{"tf":3.3166247903554},"346":{"tf":1.0},"546":{"tf":1.0},"632":{"tf":1.4142135623730951},"677":{"tf":1.0},"679":{"tf":1.0},"782":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"124":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"s":{"df":21,"docs":{"100":{"tf":2.0},"120":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"50":{"tf":1.0},"578":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"679":{"tf":1.0},"760":{"tf":1.0},"765":{"tf":1.0},"79":{"tf":2.0},"834":{"tf":1.0},"838":{"tf":1.0},"848":{"tf":1.0},"892":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"[":{"\"":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{";":{"1":{"\"":{"]":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"(":{"c":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":1,"docs":{"673":{"tf":1.0}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":76,"docs":{"100":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"203":{"tf":3.0},"297":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"834":{"tf":3.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"89":{"tf":1.4142135623730951},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"814":{"tf":1.0},"823":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"109":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"796":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"964":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"316":{"tf":1.0},"342":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"674":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"125":{"tf":1.0},"845":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":122,"docs":{"100":{"tf":3.3166247903554},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"324":{"tf":1.0},"344":{"tf":1.0},"379":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"425":{"tf":2.449489742783178},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"568":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.0},"614":{"tf":1.4142135623730951},"645":{"tf":1.0},"678":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.7320508075688772},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":2.0},"730":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"738":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":2.0},"758":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"784":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":3.3166247903554},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"807":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.4142135623730951},"828":{"tf":1.0},"834":{"tf":1.7320508075688772},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"873":{"tf":1.0},"889":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.4142135623730951},"900":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"909":{"tf":1.0},"916":{"tf":1.4142135623730951},"919":{"tf":1.7320508075688772},"920":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"945":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":244,"docs":{"5":{"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},"746":{"tf":1.0},"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},"755":{"tf":1.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},"765":{"tf":1.0},"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"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.0},"895":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"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.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"107":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"205":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"246":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":42,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"231":{"tf":1.0},"285":{"tf":1.7320508075688772},"286":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"303":{"tf":1.0},"378":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.4142135623730951},"414":{"tf":2.0},"419":{"tf":1.4142135623730951},"435":{"tf":2.0},"440":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"570":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"721":{"tf":1.0},"736":{"tf":1.0},"747":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"81":{"tf":1.0},"897":{"tf":1.0},"912":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":38,"docs":{"10":{"tf":1.0},"112":{"tf":2.449489742783178},"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"18":{"tf":1.0},"218":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"57":{"tf":1.0},"580":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"73":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"772":{"tf":1.7320508075688772},"802":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"579":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"579":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"698":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"22":{"tf":1.0},"861":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"289":{"tf":1.4142135623730951},"401":{"tf":1.0},"677":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"376":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"958":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"128":{"tf":1.0},"28":{"tf":1.0},"460":{"tf":1.0},"677":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"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":{"245":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"915":{"tf":1.0}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"245":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"i":{"df":6,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0},"746":{"tf":1.0},"912":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"912":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"947":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"j":{"df":2,"docs":{"32":{"tf":1.7320508075688772},"700":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"969":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"315":{"tf":1.7320508075688772},"316":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"338":{"tf":1.0},"347":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"563":{"tf":1.0},"679":{"tf":2.0},"882":{"tf":1.0},"929":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"267":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"318":{"tf":1.0},"678":{"tf":1.0},"862":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"806":{"tf":1.0}}}}},"r":{"df":26,"docs":{"100":{"tf":2.6457513110645907},"109":{"tf":1.0},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":2.23606797749979},"321":{"tf":1.0},"427":{"tf":1.0},"531":{"tf":1.0},"567":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"78":{"tf":2.0},"789":{"tf":1.0},"79":{"tf":2.6457513110645907},"840":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"917":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"17":{"tf":1.0},"226":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"289":{"tf":1.0},"87":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"897":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":8,"docs":{"43":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.4142135623730951},"912":{"tf":1.0},"915":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"184":{"tf":1.0},"533":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"330":{"tf":1.0},"533":{"tf":1.0},"78":{"tf":1.0},"909":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"268":{"tf":1.0},"839":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"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":{},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":23,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"338":{"tf":1.0},"342":{"tf":1.4142135623730951},"750":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"801":{"tf":1.0},"865":{"tf":1.4142135623730951}}}}}}},"df":43,"docs":{"0":{"tf":1.0},"111":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.7320508075688772},"17":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.7320508075688772},"258":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"376":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"526":{"tf":1.0},"535":{"tf":1.0},"570":{"tf":1.0},"653":{"tf":1.0},"710":{"tf":1.0},"73":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.0},"811":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"916":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}},"|":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{"730":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"254":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"142":{"tf":1.4142135623730951},"184":{"tf":1.0},"315":{"tf":1.0},"456":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"76":{"tf":1.0},"804":{"tf":1.0},"894":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"224":{"tf":1.0},"241":{"tf":1.0},"379":{"tf":1.0},"80":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"803":{"tf":1.0}}}}},"u":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"m":{"d":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"557":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":2.0},"116":{"tf":1.0}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}},"df":87,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":2.449489742783178},"111":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"175":{"tf":2.6457513110645907},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"317":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.0},"683":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"71":{"tf":1.0},"737":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.0},"782":{"tf":1.0},"793":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"802":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"823":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.7320508075688772},"839":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.7320508075688772},"867":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.449489742783178},"9":{"tf":1.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"969":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"498":{"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":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"268":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":88,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"175":{"tf":2.8284271247461903},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":2.23606797749979},"297":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"346":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"580":{"tf":1.0},"632":{"tf":1.0},"645":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"652":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.0},"67":{"tf":1.7320508075688772},"674":{"tf":1.0},"677":{"tf":1.0},"680":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"70":{"tf":1.0},"704":{"tf":1.0},"71":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"715":{"tf":1.0},"72":{"tf":1.0},"729":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"853":{"tf":1.0},"860":{"tf":1.0},"865":{"tf":1.4142135623730951},"897":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"938":{"tf":1.0},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":2.0},"97":{"tf":2.0},"98":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"645":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"288":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"289":{"tf":1.7320508075688772},"687":{"tf":1.0},"703":{"tf":1.0},"83":{"tf":1.0},"852":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"117":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"471":{"tf":1.0},"753":{"tf":1.0},"9":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"958":{"tf":1.0}}},"m":{"a":{"df":6,"docs":{"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"353":{"tf":1.0},"370":{"tf":1.4142135623730951}},"n":{"d":{">":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"115":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":2.23606797749979},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":3.7416573867739413},"232":{"tf":1.0},"233":{"tf":3.4641016151377544},"234":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"653":{"tf":1.0},"682":{"tf":1.0},"689":{"tf":1.7320508075688772},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"804":{"tf":1.0},"861":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":2.6457513110645907},"935":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":2,"docs":{"379":{"tf":1.0},"823":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":35,"docs":{"106":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.0},"21":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"34":{"tf":1.0},"38":{"tf":1.0},"387":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"854":{"tf":1.0},"99":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"949":{"tf":1.0},"950":{"tf":1.7320508075688772},"953":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"659":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":8,"docs":{"160":{"tf":1.0},"289":{"tf":1.7320508075688772},"5":{"tf":1.0},"546":{"tf":1.0},"712":{"tf":1.0},"838":{"tf":1.0},"859":{"tf":1.0},"957":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":6,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"52":{"tf":1.0},"958":{"tf":1.0}}},"t":{"df":10,"docs":{"289":{"tf":1.0},"51":{"tf":1.0},"762":{"tf":1.0},"776":{"tf":1.0},"784":{"tf":1.0},"801":{"tf":1.0},"851":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"735":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"835":{"tf":1.0},"844":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":16,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.4142135623730951},"340":{"tf":1.0},"379":{"tf":1.0},"678":{"tf":1.4142135623730951},"737":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"845":{"tf":1.0},"854":{"tf":1.0},"861":{"tf":1.0},"902":{"tf":1.0}}},"x":{"df":3,"docs":{"144":{"tf":1.0},"22":{"tf":1.0},"772":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"538":{"tf":1.0},"697":{"tf":1.0}}}}},"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"11":{"tf":2.0},"13":{"tf":2.0},"193":{"tf":1.0},"316":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"656":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0},"77":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"933":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{".":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"915":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"135":{"tf":1.0},"661":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"913":{"tf":1.0},"933":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"378":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"572":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"169":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"677":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"823":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"878":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":8,"docs":{"203":{"tf":4.123105625617661},"205":{"tf":1.0},"254":{"tf":1.0},"316":{"tf":1.4142135623730951},"830":{"tf":1.0},"861":{"tf":1.0},"908":{"tf":1.0},"912":{"tf":1.0}},"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":{},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"805":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":71,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"168":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":4.358898943540674},"197":{"tf":2.449489742783178},"198":{"tf":3.4641016151377544},"199":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":2.6457513110645907},"203":{"tf":4.358898943540674},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.0},"210":{"tf":1.0},"214":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":4.898979485566356},"258":{"tf":2.0},"261":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"307":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":3.0},"316":{"tf":2.8284271247461903},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"342":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"503":{"tf":1.0},"514":{"tf":1.4142135623730951},"60":{"tf":1.0},"663":{"tf":1.4142135623730951},"676":{"tf":1.0},"682":{"tf":1.4142135623730951},"693":{"tf":1.0},"720":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.4142135623730951},"79":{"tf":1.0},"801":{"tf":1.0},"861":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"732":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"563":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"289":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"592":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":2.23606797749979},"627":{"tf":1.0},"655":{"tf":1.0},"710":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"d":{"df":28,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"190":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"371":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.0},"674":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"258":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.0},"674":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"330":{"tf":1.0},"346":{"tf":1.0},"493":{"tf":1.0},"704":{"tf":1.0},"804":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"898":{"tf":1.0},"906":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":19,"docs":{"32":{"tf":1.7320508075688772},"324":{"tf":1.0},"448":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"490":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"577":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"700":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"175":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"765":{"tf":1.0},"878":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"65":{"tf":1.0},"752":{"tf":1.0}}}},"m":{"df":34,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"230":{"tf":1.0},"276":{"tf":1.4142135623730951},"307":{"tf":1.0},"316":{"tf":1.4142135623730951},"326":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"379":{"tf":1.0},"43":{"tf":1.0},"492":{"tf":1.0},"720":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"788":{"tf":1.0},"793":{"tf":1.7320508075688772},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"838":{"tf":1.4142135623730951},"842":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"858":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"422":{"tf":1.0},"537":{"tf":1.0},"6":{"tf":1.4142135623730951},"860":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":88,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"234":{"tf":1.0},"246":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.7320508075688772},"328":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"423":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"443":{"tf":1.0},"48":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"501":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"538":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"609":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"653":{"tf":1.0},"697":{"tf":1.0},"716":{"tf":1.0},"73":{"tf":1.4142135623730951},"772":{"tf":1.0},"779":{"tf":1.0},"79":{"tf":1.0},"823":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.4142135623730951},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"129":{"tf":1.4142135623730951},"136":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"163":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"186":{"tf":1.0},"188":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"289":{"tf":2.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"422":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"546":{"tf":1.0},"592":{"tf":1.0},"60":{"tf":1.0},"634":{"tf":2.449489742783178},"636":{"tf":1.4142135623730951},"637":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"959":{"tf":1.4142135623730951},"960":{"tf":2.0},"961":{"tf":1.7320508075688772},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":2.0},"967":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{".":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"111":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.7320508075688772},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"834":{"tf":1.0},"858":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"959":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":43,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":2.449489742783178},"191":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.449489742783178},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"471":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"602":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"682":{"tf":1.0},"715":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"837":{"tf":1.0},"854":{"tf":1.0},"857":{"tf":1.0},"871":{"tf":1.0},"9":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"407":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"406":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"459":{"tf":1.0},"477":{"tf":1.0},"788":{"tf":1.0},"834":{"tf":1.0},"861":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"t":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}},"t":{"df":7,"docs":{"115":{"tf":1.0},"377":{"tf":1.4142135623730951},"471":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"834":{"tf":1.0},"884":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"854":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"254":{"tf":2.8284271247461903},"7":{"tf":1.0},"823":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"800":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"130":{"tf":1.0},"322":{"tf":1.4142135623730951},"653":{"tf":2.23606797749979},"654":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"673":{"tf":1.0},"755":{"tf":1.0},"758":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.4142135623730951},"818":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"881":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"11":{"tf":1.0},"117":{"tf":1.0},"17":{"tf":1.0},"315":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"619":{"tf":1.4142135623730951},"673":{"tf":1.0},"769":{"tf":1.0},"782":{"tf":1.0},"825":{"tf":1.0},"838":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"873":{"tf":1.0},"919":{"tf":1.0},"935":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":21,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"315":{"tf":1.0},"67":{"tf":1.0},"731":{"tf":1.0},"762":{"tf":2.23606797749979},"764":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"804":{"tf":1.0},"816":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"847":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"926":{"tf":1.0},"947":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"138":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"741":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"958":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"190":{"tf":1.0},"62":{"tf":1.0},"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":40,"docs":{"124":{"tf":2.0},"125":{"tf":1.7320508075688772},"127":{"tf":2.23606797749979},"347":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"406":{"tf":1.0},"408":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":2.0},"582":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.7320508075688772},"607":{"tf":1.7320508075688772},"618":{"tf":1.4142135623730951},"619":{"tf":2.0},"621":{"tf":1.0},"70":{"tf":1.0},"716":{"tf":1.0},"75":{"tf":2.0},"755":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"907":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":34,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"127":{"tf":2.6457513110645907},"131":{"tf":1.4142135623730951},"288":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":2.0},"402":{"tf":1.7320508075688772},"404":{"tf":3.7416573867739413},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.4142135623730951},"412":{"tf":2.23606797749979},"414":{"tf":3.7416573867739413},"416":{"tf":2.6457513110645907},"417":{"tf":1.0},"418":{"tf":1.0},"456":{"tf":1.0},"544":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"621":{"tf":2.23606797749979},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"734":{"tf":1.0},"75":{"tf":1.4142135623730951},"818":{"tf":1.0},"837":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"421":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"266":{"tf":1.0},"267":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"673":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"804":{"tf":1.0},"831":{"tf":1.0},"853":{"tf":1.0}}}},"df":1,"docs":{"261":{"tf":1.0}}}}},"w":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"752":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"679":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"679":{"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":{"679":{"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":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":31,"docs":{"166":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.7320508075688772},"289":{"tf":1.0},"376":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"646":{"tf":1.4142135623730951},"674":{"tf":2.6457513110645907},"677":{"tf":3.3166247903554},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"736":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"771":{"tf":1.0},"785":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"835":{"tf":1.0},"844":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"880":{"tf":1.7320508075688772},"958":{"tf":1.4142135623730951}},"e":{"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":{"df":1,"docs":{"677":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"26":{"tf":1.4142135623730951},"315":{"tf":1.0},"655":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"754":{"tf":1.0},"787":{"tf":1.0},"818":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"854":{"tf":1.0},"871":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"655":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.7320508075688772},"259":{"tf":1.0},"27":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"710":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"785":{"tf":1.0},"79":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.0},"925":{"tf":1.0},"951":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"538":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"31":{"tf":1.0},"65":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"701":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"579":{"tf":1.0},"618":{"tf":1.0},"627":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":1,"docs":{"254":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":50,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":2.0},"14":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.0},"283":{"tf":1.0},"293":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"334":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.0},"54":{"tf":1.0},"572":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.0},"691":{"tf":1.0},"694":{"tf":1.0},"711":{"tf":1.0},"715":{"tf":1.4142135623730951},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"950":{"tf":1.0},"968":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":1,"docs":{"551":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"579":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"813":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"594":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":83,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"223":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"259":{"tf":2.23606797749979},"261":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":2.0},"317":{"tf":3.0},"336":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"520":{"tf":1.0},"551":{"tf":2.449489742783178},"560":{"tf":1.0},"572":{"tf":1.7320508075688772},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.7320508075688772},"582":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"647":{"tf":1.0},"649":{"tf":1.7320508075688772},"667":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":3.0},"679":{"tf":1.7320508075688772},"690":{"tf":1.7320508075688772},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"729":{"tf":1.4142135623730951},"734":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.7320508075688772},"79":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"804":{"tf":1.0},"823":{"tf":1.0},"830":{"tf":1.0},"837":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"922":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.4142135623730951},"969":{"tf":1.7320508075688772}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"718":{"tf":1.0},"738":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"145":{"tf":1.0},"173":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"4":{"1":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"837":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"316":{"tf":1.0},"318":{"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":32,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"466":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"636":{"tf":1.0},"839":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":18,"docs":{"109":{"tf":1.0},"127":{"tf":1.0},"264":{"tf":1.4142135623730951},"721":{"tf":1.0},"741":{"tf":1.0},"753":{"tf":1.4142135623730951},"812":{"tf":1.0},"818":{"tf":1.0},"831":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"88":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.4142135623730951},"917":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":203,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":3.872983346207417},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"160":{"tf":2.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"185":{"tf":2.6457513110645907},"187":{"tf":2.6457513110645907},"190":{"tf":2.23606797749979},"191":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.6457513110645907},"218":{"tf":2.23606797749979},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":4.69041575982343},"292":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"33":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"385":{"tf":1.7320508075688772},"389":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"406":{"tf":1.7320508075688772},"410":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.7320508075688772},"452":{"tf":1.0},"464":{"tf":1.7320508075688772},"469":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":2.0},"485":{"tf":1.0},"487":{"tf":3.1622776601683795},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"496":{"tf":2.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":2.23606797749979},"512":{"tf":1.0},"514":{"tf":3.1622776601683795},"517":{"tf":1.4142135623730951},"519":{"tf":2.23606797749979},"522":{"tf":1.4142135623730951},"523":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.7320508075688772},"535":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"54":{"tf":1.4142135623730951},"541":{"tf":1.0},"543":{"tf":1.7320508075688772},"546":{"tf":1.0},"548":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"558":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"569":{"tf":1.0},"57":{"tf":2.0},"577":{"tf":2.23606797749979},"580":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"588":{"tf":2.23606797749979},"59":{"tf":1.0},"591":{"tf":1.4142135623730951},"592":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.7320508075688772},"604":{"tf":1.0},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"611":{"tf":1.7320508075688772},"614":{"tf":1.4142135623730951},"615":{"tf":1.0},"623":{"tf":1.7320508075688772},"627":{"tf":1.0},"63":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"637":{"tf":1.0},"638":{"tf":1.0},"642":{"tf":2.23606797749979},"644":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":3.4641016151377544},"666":{"tf":1.0},"67":{"tf":1.4142135623730951},"674":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"697":{"tf":2.0},"698":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"704":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":2.449489742783178},"772":{"tf":2.23606797749979},"78":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"791":{"tf":1.0},"818":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"86":{"tf":1.4142135623730951},"860":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"873":{"tf":1.0},"9":{"tf":2.6457513110645907},"91":{"tf":1.0},"916":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":3.3166247903554},"962":{"tf":1.0},"969":{"tf":4.358898943540674},"98":{"tf":2.449489742783178},"99":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"315":{"tf":2.23606797749979},"316":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"\"":{"2":{"0":{"2":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"915":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"551":{"tf":1.4142135623730951},"553":{"tf":1.0}}}}}}}},"df":25,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.0},"288":{"tf":2.0},"376":{"tf":1.0},"549":{"tf":1.4142135623730951},"551":{"tf":2.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"556":{"tf":1.0},"664":{"tf":1.4142135623730951},"669":{"tf":1.0},"684":{"tf":2.0},"685":{"tf":1.0},"741":{"tf":1.0},"77":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951},"830":{"tf":1.0},"847":{"tf":1.4142135623730951},"87":{"tf":1.0},"881":{"tf":1.0},"914":{"tf":1.0},"98":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":23,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"376":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"549":{"tf":1.7320508075688772},"551":{"tf":2.8284271247461903},"553":{"tf":1.7320508075688772},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.7320508075688772},"776":{"tf":1.0},"78":{"tf":1.0},"813":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"956":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{".":{"d":{"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":{"(":{"1":{"9":{"9":{"3":{"df":1,"docs":{"553":{"tf":1.0}}},"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":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":27,"docs":{"117":{"tf":1.7320508075688772},"127":{"tf":2.449489742783178},"132":{"tf":1.0},"175":{"tf":2.8284271247461903},"224":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":1.0},"379":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"830":{"tf":1.0},"861":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"814":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"831":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":59,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":2.449489742783178},"2":{"tf":1.0},"215":{"tf":1.7320508075688772},"218":{"tf":2.23606797749979},"221":{"tf":2.6457513110645907},"222":{"tf":2.0},"223":{"tf":1.7320508075688772},"224":{"tf":2.6457513110645907},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.449489742783178},"234":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"239":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":2.0},"315":{"tf":1.0},"348":{"tf":1.7320508075688772},"349":{"tf":2.23606797749979},"350":{"tf":1.0},"352":{"tf":1.4142135623730951},"363":{"tf":2.0},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":2.0},"651":{"tf":1.0},"701":{"tf":1.0},"715":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"817":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"863":{"tf":1.0},"880":{"tf":1.0},"890":{"tf":1.0},"898":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"906":{"tf":1.0},"915":{"tf":1.0},"920":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"379":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"276":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"858":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"965":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":107,"docs":{"100":{"tf":2.0},"116":{"tf":1.0},"131":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":3.3166247903554},"205":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.4142135623730951},"289":{"tf":3.3166247903554},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.4142135623730951},"565":{"tf":1.7320508075688772},"568":{"tf":1.0},"570":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.4142135623730951},"668":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"690":{"tf":1.4142135623730951},"700":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"799":{"tf":1.0},"814":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"842":{"tf":1.0},"861":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"952":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"874":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":12,"docs":{"318":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0},"652":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"871":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":77,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":2.6457513110645907},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"326":{"tf":1.7320508075688772},"336":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"38":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"568":{"tf":1.4142135623730951},"593":{"tf":1.0},"60":{"tf":1.0},"616":{"tf":1.0},"626":{"tf":1.0},"644":{"tf":1.7320508075688772},"647":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.7320508075688772},"686":{"tf":1.0},"690":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.6457513110645907},"947":{"tf":1.0},"951":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":49,"docs":{"190":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"35":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"649":{"tf":1.0},"677":{"tf":1.4142135623730951},"679":{"tf":1.0},"773":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"22":{"tf":1.0},"272":{"tf":1.4142135623730951},"315":{"tf":1.0},"721":{"tf":1.0},"789":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"315":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":33,"docs":{"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"135":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"254":{"tf":1.4142135623730951},"295":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"342":{"tf":1.4142135623730951},"741":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.4142135623730951},"838":{"tf":1.7320508075688772},"860":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.7320508075688772},"917":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"956":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"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":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"838":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0}}}}}}}}}},"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":{"334":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"334":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"621":{"tf":2.23606797749979}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"626":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":4.358898943540674},"623":{"tf":1.7320508075688772},"626":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":45,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.7320508075688772},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"270":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"376":{"tf":1.0},"41":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"665":{"tf":1.7320508075688772},"671":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"744":{"tf":1.0},"750":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"844":{"tf":1.0},"858":{"tf":2.23606797749979},"859":{"tf":1.0},"880":{"tf":1.0},"882":{"tf":1.0},"9":{"tf":1.4142135623730951},"947":{"tf":1.0},"953":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"234":{"tf":1.0},"252":{"tf":1.0},"958":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":16,"docs":{"129":{"tf":1.0},"136":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"380":{"tf":1.4142135623730951},"715":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"805":{"tf":1.0},"838":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"315":{"tf":1.0},"330":{"tf":1.0},"697":{"tf":1.4142135623730951},"770":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":9,"docs":{"136":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":61,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"224":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":2.449489742783178},"292":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"315":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"579":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"823":{"tf":1.0},"87":{"tf":1.0},"964":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"568":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"175":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"462":{"tf":1.0}}},"df":20,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"354":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":2.0}},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"949":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":32,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":2.0},"318":{"tf":1.0},"488":{"tf":1.0},"5":{"tf":1.4142135623730951},"515":{"tf":1.0},"56":{"tf":1.4142135623730951},"662":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"772":{"tf":1.7320508075688772},"799":{"tf":2.23606797749979},"857":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"104":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"22":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"741":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"11":{"tf":1.0},"132":{"tf":1.7320508075688772},"205":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"456":{"tf":1.0},"673":{"tf":1.7320508075688772},"72":{"tf":1.0},"77":{"tf":1.0},"846":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"956":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":13,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"223":{"tf":1.0},"626":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.7320508075688772},"675":{"tf":1.0},"773":{"tf":1.0},"79":{"tf":1.0},"964":{"tf":1.0}}}}}},"i":{"c":{"df":21,"docs":{"132":{"tf":2.449489742783178},"184":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"289":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"431":{"tf":1.0},"50":{"tf":1.4142135623730951},"73":{"tf":1.0},"835":{"tf":1.0},"94":{"tf":1.0}},"e":{"'":{"df":5,"docs":{"231":{"tf":1.0},"351":{"tf":1.0},"549":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"498":{"tf":1.4142135623730951},"500":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"497":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"254":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"640":{"tf":2.0},"642":{"tf":1.4142135623730951},"645":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"5":{"df":1,"docs":{"640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"21":{"tf":1.0},"254":{"tf":2.6457513110645907},"276":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"37":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"60":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"703":{"tf":1.0},"801":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":70,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.0},"248":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":1.4142135623730951},"340":{"tf":1.0},"348":{"tf":1.4142135623730951},"37":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"488":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"515":{"tf":1.0},"52":{"tf":1.4142135623730951},"522":{"tf":1.0},"524":{"tf":1.0},"583":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"606":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"653":{"tf":1.7320508075688772},"660":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"685":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"705":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"82":{"tf":1.0},"830":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"912":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"402":{"tf":1.0},"619":{"tf":1.0},"673":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"376":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"613":{"tf":1.4142135623730951}}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":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":{"318":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"289":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"665":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"191":{"tf":1.0},"289":{"tf":1.4142135623730951},"33":{"tf":1.0},"652":{"tf":1.0},"792":{"tf":1.0},"807":{"tf":1.0},"916":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"114":{"tf":1.0},"127":{"tf":2.23606797749979},"135":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"338":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"665":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"690":{"tf":1.4142135623730951},"734":{"tf":1.0},"818":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"860":{"tf":1.4142135623730951},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"846":{"tf":1.0},"859":{"tf":1.0}}},"y":{"_":{"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":8,"docs":{"125":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"126":{"tf":1.4142135623730951},"145":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.23606797749979},"195":{"tf":1.0},"203":{"tf":3.1622776601683795},"206":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":2.0},"321":{"tf":1.7320508075688772},"324":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":1.4142135623730951},"649":{"tf":1.4142135623730951},"667":{"tf":1.0},"716":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951},"872":{"tf":1.0},"930":{"tf":1.0},"950":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"872":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"734":{"tf":1.4142135623730951},"927":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"224":{"tf":1.0},"371":{"tf":1.0},"476":{"tf":1.0},"831":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"168":{"tf":1.0},"22":{"tf":1.0},"809":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":19,"docs":{"127":{"tf":1.0},"340":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0},"718":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":1.0},"774":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"865":{"tf":1.4142135623730951},"933":{"tf":1.0},"940":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"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":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"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":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"601":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"600":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":18,"docs":{"226":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"288":{"tf":1.0},"376":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":2.23606797749979},"615":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"119":{"tf":1.0},"184":{"tf":1.4142135623730951},"29":{"tf":1.0},"688":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"660":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":73,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"137":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":2.6457513110645907},"41":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":2.449489742783178},"474":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.7320508075688772},"488":{"tf":2.23606797749979},"491":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":2.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"512":{"tf":1.0},"514":{"tf":1.7320508075688772},"515":{"tf":2.23606797749979},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"572":{"tf":2.6457513110645907},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":2.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.23606797749979},"588":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951},"729":{"tf":2.0},"738":{"tf":1.0},"755":{"tf":1.0},"76":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"880":{"tf":1.0},"911":{"tf":1.7320508075688772},"958":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"673":{"tf":1.0},"728":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"480":{"tf":1.0},"759":{"tf":1.0},"854":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"969":{"tf":4.123105625617661}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"961":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":1,"docs":{"859":{"tf":1.0}}},"o":{"c":{"df":36,"docs":{"134":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.4142135623730951},"315":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":2.0},"335":{"tf":1.7320508075688772},"343":{"tf":1.0},"376":{"tf":1.0},"390":{"tf":1.7320508075688772},"400":{"tf":1.7320508075688772},"411":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"432":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"502":{"tf":1.0},"513":{"tf":1.7320508075688772},"525":{"tf":1.0},"536":{"tf":1.7320508075688772},"559":{"tf":1.7320508075688772},"571":{"tf":1.7320508075688772},"581":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.7320508075688772},"617":{"tf":1.0},"628":{"tf":1.0},"838":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.0},"912":{"tf":1.0},"924":{"tf":1.0}},"s":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"]":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":71,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.6457513110645907},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.7320508075688772},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"37":{"tf":2.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":2.0},"499":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.7320508075688772},"697":{"tf":1.0},"706":{"tf":1.0},"71":{"tf":1.0},"772":{"tf":1.4142135623730951},"799":{"tf":2.0},"801":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}}}}}}}},"df":14,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"342":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"493":{"tf":1.0},"57":{"tf":1.0},"692":{"tf":1.0},"76":{"tf":1.0},"831":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":1,"docs":{"969":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"640":{"tf":1.0},"649":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.4142135623730951},"793":{"tf":1.0},"82":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":2,"docs":{"289":{"tf":1.0},"523":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":31,"docs":{"135":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"480":{"tf":2.449489742783178},"493":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"583":{"tf":1.0},"630":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"753":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"782":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"814":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"338":{"tf":1.0},"621":{"tf":2.23606797749979},"77":{"tf":1.0},"792":{"tf":1.0},"834":{"tf":1.0},"862":{"tf":1.0},"98":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"710":{"tf":1.0}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"346":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"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":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"747":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":16,"docs":{"144":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"339":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"377":{"tf":1.0},"468":{"tf":1.0},"814":{"tf":1.0},"848":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"17":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"661":{"tf":1.0},"673":{"tf":2.0},"675":{"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":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":18,"docs":{"127":{"tf":1.0},"232":{"tf":1.0},"310":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"750":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"947":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"884":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"448":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"425":{"tf":2.449489742783178},"445":{"tf":2.8284271247461903},"446":{"tf":4.0},"448":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"135":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"328":{"tf":1.0},"601":{"tf":1.0},"732":{"tf":1.0},"753":{"tf":1.0},"758":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"818":{"tf":1.4142135623730951},"835":{"tf":1.0},"838":{"tf":1.0},"844":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"921":{"tf":1.0},"99":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"289":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"771":{"tf":1.0},"83":{"tf":1.4142135623730951},"834":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"125":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"271":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"725":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"208":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":2.0},"330":{"tf":1.0},"465":{"tf":1.0},"579":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"737":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"858":{"tf":1.0},"865":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"289":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"529":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"753":{"tf":1.4142135623730951},"78":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":44,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":3.4641016151377544},"136":{"tf":1.7320508075688772},"155":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"54":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"567":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":74,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"221":{"tf":1.0},"258":{"tf":1.4142135623730951},"281":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.23606797749979},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"346":{"tf":1.0},"348":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"456":{"tf":1.0},"476":{"tf":1.4142135623730951},"482":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"560":{"tf":1.0},"568":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"653":{"tf":1.7320508075688772},"661":{"tf":1.0},"665":{"tf":1.0},"710":{"tf":1.0},"78":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"456":{"tf":1.0},"484":{"tf":1.0},"78":{"tf":1.0},"877":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"82":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"62":{"tf":1.0},"728":{"tf":1.0},"862":{"tf":1.0},"968":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"218":{"tf":1.0},"677":{"tf":1.0},"814":{"tf":1.0},"924":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}}},"df":1,"docs":{"701":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"231":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"958":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"927":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"288":{"tf":1.0},"79":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":103,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"571":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772}}}}}}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"191":{"tf":1.0},"242":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":2.0},"332":{"tf":1.7320508075688772},"735":{"tf":1.0},"752":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"?":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{")":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"65":{"tf":1.0},"916":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"549":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"328":{"tf":2.0},"644":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.0}}}}}}},"f":{"df":1,"docs":{"815":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"344":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"132":{"tf":1.0},"17":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"769":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"779":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"446":{"tf":1.0},"743":{"tf":1.0},"812":{"tf":1.0},"842":{"tf":1.0},"938":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":23,"docs":{"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"50":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":86,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"221":{"tf":2.0},"224":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"348":{"tf":1.4142135623730951},"355":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.7320508075688772},"387":{"tf":1.0},"389":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"443":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"669":{"tf":1.0},"685":{"tf":1.0},"715":{"tf":1.4142135623730951},"721":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.7320508075688772},"762":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"818":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"861":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.4142135623730951},"956":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"_":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":11,"docs":{"128":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"541":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"731":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"696":{"tf":1.0},"697":{"tf":3.0},"698":{"tf":2.0},"701":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"1":{"6":{"/":{"1":{"7":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"/":{"0":{"4":{":":{"3":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"1":{"9":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":1.0},"184":{"tf":2.0},"203":{"tf":1.4142135623730951},"329":{"tf":1.0},"711":{"tf":1.0},"76":{"tf":1.0},"795":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.4142135623730951},"865":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.7320508075688772},"969":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"263":{"tf":1.4142135623730951},"31":{"tf":1.0},"763":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"867":{"tf":1.0},"922":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"135":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"289":{"tf":1.4142135623730951},"958":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"140":{"tf":1.4142135623730951},"316":{"tf":1.0},"376":{"tf":1.0},"429":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"452":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"652":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"927":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"183":{"tf":1.0},"83":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"127":{"tf":1.0},"710":{"tf":1.0},"834":{"tf":1.0},"913":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.7320508075688772},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"493":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"63":{"tf":1.0},"673":{"tf":1.0},"736":{"tf":1.0},"753":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"776":{"tf":1.0},"788":{"tf":1.0},"802":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"853":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"929":{"tf":1.0},"938":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"439":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"105":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"526":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":29,"docs":{"138":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"32":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"34":{"tf":1.7320508075688772},"377":{"tf":1.0},"533":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"700":{"tf":1.0},"71":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"958":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"563":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"750":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":49,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"19":{"tf":1.7320508075688772},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"229":{"tf":1.7320508075688772},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"348":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"368":{"tf":1.0},"369":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"653":{"tf":1.0},"660":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":2.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":2.23606797749979},"691":{"tf":2.0},"692":{"tf":1.0},"721":{"tf":1.0},"74":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"841":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"907":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"921":{"tf":1.7320508075688772},"924":{"tf":1.0},"939":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"315":{"tf":1.0},"804":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"750":{"tf":1.0},"804":{"tf":1.0}}},"r":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":145,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":3.1622776601683795},"127":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"231":{"tf":1.0},"273":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"356":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":2.6457513110645907},"435":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"481":{"tf":2.23606797749979},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"517":{"tf":1.0},"520":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"538":{"tf":1.0},"541":{"tf":1.4142135623730951},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"570":{"tf":1.0},"575":{"tf":1.0},"578":{"tf":1.4142135623730951},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.4142135623730951},"609":{"tf":1.0},"612":{"tf":1.0},"618":{"tf":1.4142135623730951},"621":{"tf":1.0},"623":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":2.449489742783178},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"698":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"76":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":2.449489742783178},"839":{"tf":1.0},"842":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"86":{"tf":1.0},"866":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"904":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"917":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":2.0},"929":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"94":{"tf":1.0},"945":{"tf":1.0},"97":{"tf":1.0}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":21,"docs":{"396":{"tf":1.0},"407":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.4142135623730951},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.4142135623730951},"578":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951},"635":{"tf":1.0},"643":{"tf":1.0},"840":{"tf":1.0},"913":{"tf":1.0},"924":{"tf":1.0},"933":{"tf":1.0}},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"396":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"428":{"tf":1.0},"544":{"tf":1.0},"566":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":13,"docs":{"386":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"578":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.4142135623730951},"643":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"396":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"428":{"tf":1.0},"476":{"tf":1.0},"544":{"tf":1.0},"566":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":13,"docs":{"386":{"tf":1.0},"407":{"tf":1.0},"476":{"tf":1.0},"497":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.4142135623730951},"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"5":{"df":1,"docs":{"942":{"tf":1.0}}},"6":{"df":1,"docs":{"950":{"tf":1.7320508075688772}}},"a":{"df":1,"docs":{"224":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"132":{"tf":1.4142135623730951},"224":{"tf":2.23606797749979}},"m":{"df":3,"docs":{"32":{"tf":1.7320508075688772},"700":{"tf":1.0},"912":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"922":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"2":{"tf":1.0},"4":{"tf":1.0},"962":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"261":{"tf":1.0},"289":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"145":{"tf":1.0},"22":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"752":{"tf":1.0},"79":{"tf":1.4142135623730951},"802":{"tf":1.0},"845":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"580":{"tf":1.0},"591":{"tf":1.0}}}},"t":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{">":{".":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":2.449489742783178},"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":124,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":3.4641016151377544},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"137":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":4.242640687119285},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":2.23606797749979},"169":{"tf":1.0},"170":{"tf":2.8284271247461903},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.23606797749979},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":2.6457513110645907},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":4.795831523312719},"259":{"tf":3.3166247903554},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":2.23606797749979},"266":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":2.23606797749979},"324":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":2.6457513110645907},"376":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"560":{"tf":2.8284271247461903},"561":{"tf":1.7320508075688772},"563":{"tf":2.23606797749979},"565":{"tf":2.449489742783178},"566":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":2.23606797749979},"570":{"tf":1.0},"579":{"tf":1.0},"649":{"tf":1.0},"677":{"tf":2.8284271247461903},"679":{"tf":1.0},"693":{"tf":1.0},"718":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.4142135623730951},"734":{"tf":1.0},"735":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":3.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"799":{"tf":3.0},"804":{"tf":2.23606797749979},"807":{"tf":1.0},"815":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.7320508075688772},"843":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.7320508075688772},"897":{"tf":1.4142135623730951},"900":{"tf":1.0},"907":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"929":{"tf":2.6457513110645907},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"939":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":2.6457513110645907},"956":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"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":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"[":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"565":{"tf":1.4142135623730951}}}}}}}},"s":{"df":1,"docs":{"112":{"tf":1.0}}}},"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"261":{"tf":1.0}}}},"[":{"0":{"]":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"?":{"[":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"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":{"565":{"tf":1.0}}}}}}}}},"[":{"0":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"565":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"u":{"df":2,"docs":{"289":{"tf":1.0},"649":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"122":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"289":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"690":{"tf":1.0},"765":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"402":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"5":{"tf":1.0},"935":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":93,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"119":{"tf":1.0},"120":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":3.1622776601683795},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.7320508075688772},"175":{"tf":1.0},"178":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":2.6457513110645907},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"316":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":3.1622776601683795},"377":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"595":{"tf":1.0},"602":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"674":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"690":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"964":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":17,"docs":{"135":{"tf":1.4142135623730951},"168":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"378":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"127":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":3,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"677":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":34,"docs":{"130":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"288":{"tf":1.0},"321":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"677":{"tf":2.23606797749979},"679":{"tf":2.0},"765":{"tf":1.0},"772":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"u":{"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":{"679":{"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"679":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"267":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"203":{"tf":1.0},"318":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":1,"docs":{"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"289":{"tf":1.0},"340":{"tf":1.4142135623730951},"346":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"78":{"tf":1.0},"837":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"379":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"780":{"tf":1.0},"8":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"861":{"tf":1.0},"935":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"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":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":33,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"118":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":2.23606797749979},"416":{"tf":2.449489742783178},"427":{"tf":2.6457513110645907},"437":{"tf":2.449489742783178},"460":{"tf":1.0},"480":{"tf":2.449489742783178},"507":{"tf":2.6457513110645907},"531":{"tf":2.449489742783178},"563":{"tf":1.0},"577":{"tf":2.6457513110645907},"600":{"tf":2.0},"652":{"tf":1.0},"692":{"tf":1.4142135623730951},"701":{"tf":1.0},"817":{"tf":1.0},"86":{"tf":1.4142135623730951},"935":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772}},"e":{"d":{"_":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"553":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":38,"docs":{"129":{"tf":1.0},"131":{"tf":2.6457513110645907},"158":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"203":{"tf":3.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":2.8284271247461903},"306":{"tf":1.0},"307":{"tf":2.0},"315":{"tf":1.0},"326":{"tf":3.0},"328":{"tf":2.0},"329":{"tf":1.7320508075688772},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"784":{"tf":1.0},"819":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"865":{"tf":1.0},"873":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"376":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}},"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"124":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":3.0},"315":{"tf":1.0},"330":{"tf":2.0},"334":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"718":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.4142135623730951},"958":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"328":{"tf":2.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":3.4641016151377544},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"685":{"tf":2.23606797749979},"77":{"tf":2.449489742783178},"830":{"tf":1.7320508075688772},"858":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":2.449489742783178}},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"774":{"tf":1.0},"830":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"251":{"tf":1.0},"266":{"tf":1.0}}}},"n":{"df":4,"docs":{"677":{"tf":1.0},"702":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"137":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"318":{"tf":1.0},"342":{"tf":1.0},"460":{"tf":1.0},"529":{"tf":2.449489742783178},"60":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"471":{"tf":1.0},"503":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"224":{"tf":1.4142135623730951},"317":{"tf":1.0},"34":{"tf":1.0},"690":{"tf":1.4142135623730951},"837":{"tf":1.0},"953":{"tf":1.0}}}},"s":{"df":34,"docs":{"111":{"tf":1.0},"211":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"236":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"317":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"742":{"tf":1.0},"772":{"tf":1.4142135623730951},"788":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"823":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"913":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"862":{"tf":1.0},"864":{"tf":1.0}}}}}}},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"13":{"tf":1.0},"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"670":{"tf":1.4142135623730951},"672":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"663":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"184":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"679":{"tf":1.0},"734":{"tf":1.0},"77":{"tf":1.4142135623730951},"795":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":24,"docs":{"0":{"tf":1.0},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"500":{"tf":1.0},"592":{"tf":1.0},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"848":{"tf":1.0},"853":{"tf":1.7320508075688772},"902":{"tf":1.0},"915":{"tf":1.0},"940":{"tf":1.0},"950":{"tf":1.7320508075688772},"956":{"tf":1.0},"958":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"494":{"tf":1.0},"621":{"tf":3.1622776601683795},"626":{"tf":1.4142135623730951},"672":{"tf":1.0},"721":{"tf":1.0},"743":{"tf":1.0},"804":{"tf":1.0},"862":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.0}}}}},"r":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"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":{"328":{"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{":":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"799":{"tf":1.0}}},"2":{"df":1,"docs":{"799":{"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":7,"docs":{"560":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"852":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"41":{"tf":1.0}}}},"df":52,"docs":{"110":{"tf":1.0},"112":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"224":{"tf":2.0},"259":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":2.8284271247461903},"333":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"510":{"tf":1.0},"522":{"tf":1.0},"534":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"563":{"tf":3.605551275463989},"565":{"tf":1.7320508075688772},"568":{"tf":2.6457513110645907},"570":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"799":{"tf":2.0},"865":{"tf":1.4142135623730951},"89":{"tf":1.0},"897":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"183":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"697":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"802":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"230":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"303":{"tf":1.0},"958":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"162":{"tf":1.0},"19":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"859":{"tf":1.4142135623730951},"895":{"tf":1.0},"935":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"127":{"tf":2.0},"273":{"tf":1.0},"294":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"792":{"tf":1.0},"834":{"tf":1.4142135623730951},"849":{"tf":1.0},"929":{"tf":1.0},"935":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"895":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"203":{"tf":1.0},"289":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0}}},"s":{"df":32,"docs":{"100":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"652":{"tf":2.6457513110645907},"73":{"tf":1.0},"734":{"tf":1.0},"79":{"tf":1.4142135623730951},"875":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":1,"docs":{"923":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"958":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"288":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"183":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"869":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"802":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"715":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0}}}}}},"df":8,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":71,"docs":{"0":{"tf":1.0},"138":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":3.0},"196":{"tf":1.0},"197":{"tf":2.449489742783178},"198":{"tf":2.8284271247461903},"199":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":5.830951894845301},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":2.23606797749979},"209":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"418":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"694":{"tf":1.0},"701":{"tf":1.0},"720":{"tf":1.0},"738":{"tf":1.0},"74":{"tf":1.0},"757":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"841":{"tf":1.0},"863":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0},"963":{"tf":1.0},"965":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"b":{"8":{"/":{"1":{"7":{":":{"0":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.6457513110645907}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"958":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"132":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":2.0},"198":{"tf":1.0},"316":{"tf":1.7320508075688772},"895":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"117":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"793":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"877":{"tf":1.0}}}},"i":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":29,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"644":{"tf":1.0},"677":{"tf":2.0},"697":{"tf":1.0},"734":{"tf":1.0},"750":{"tf":1.0},"755":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"782":{"tf":1.0},"801":{"tf":1.0},"839":{"tf":1.4142135623730951},"865":{"tf":1.0}}},"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":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":119,"docs":{"108":{"tf":2.0},"11":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":2.23606797749979},"116":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":3.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"21":{"tf":2.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":2.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.0},"292":{"tf":1.0},"293":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":2.0},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.4142135623730951},"31":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"340":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"38":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"41":{"tf":1.0},"419":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":2.0},"440":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"499":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"533":{"tf":1.0},"55":{"tf":1.0},"563":{"tf":1.0},"59":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"614":{"tf":1.4142135623730951},"661":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":2.8284271247461903},"68":{"tf":1.0},"686":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.4142135623730951},"753":{"tf":1.0},"77":{"tf":1.0},"783":{"tf":1.0},"812":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"850":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.0},"9":{"tf":1.0},"91":{"tf":1.0},"924":{"tf":1.0},"950":{"tf":1.7320508075688772},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"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":2,"docs":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"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":{},"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":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":2,"docs":{"232":{"tf":1.0},"379":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"234":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"315":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"11":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.0},"653":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.4142135623730951},"693":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"d":{"df":10,"docs":{"232":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.7320508075688772},"34":{"tf":1.0},"401":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"376":{"tf":1.0},"467":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"149":{"tf":1.0},"22":{"tf":1.4142135623730951},"318":{"tf":1.0},"339":{"tf":1.0},"652":{"tf":1.0},"747":{"tf":1.0},"801":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":25,"docs":{"110":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"289":{"tf":2.0},"31":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"354":{"tf":1.0},"462":{"tf":1.0},"646":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"?":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":1,"docs":{"565":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"d":{"df":10,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"313":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"811":{"tf":1.0},"909":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"556":{"tf":1.0}}}}}},"df":66,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":3.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"328":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":2.449489742783178},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"65":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"747":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"804":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"881":{"tf":1.0},"888":{"tf":1.0},"897":{"tf":1.0},"968":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"t":{"df":8,"docs":{"106":{"tf":1.0},"22":{"tf":1.0},"630":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"961":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"371":{"tf":1.0},"961":{"tf":1.0}}}},"x":{"df":58,"docs":{"117":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"50":{"tf":1.0},"541":{"tf":1.0},"632":{"tf":1.0},"720":{"tf":1.0},"731":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"797":{"tf":1.0},"804":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.0},"818":{"tf":1.4142135623730951},"820":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.4142135623730951},"843":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"876":{"tf":1.0},"880":{"tf":1.4142135623730951},"881":{"tf":1.0},"892":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"924":{"tf":2.23606797749979},"926":{"tf":1.0},"929":{"tf":1.0},"935":{"tf":1.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"946":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"d":{"(":{"2":{"0":{"1":{"9":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"100":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"355":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"682":{"tf":1.0},"715":{"tf":1.0},"79":{"tf":1.0},"861":{"tf":1.0},"872":{"tf":1.0},"908":{"tf":1.4142135623730951}},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"383":{"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":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"2":{"df":1,"docs":{"851":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"p":{"df":3,"docs":{"342":{"tf":1.0},"666":{"tf":1.0},"741":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"918":{"tf":1.4142135623730951},"937":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"459":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"720":{"tf":1.0},"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"786":{"tf":1.0},"807":{"tf":1.0},"867":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.0}}}},"n":{"df":12,"docs":{"26":{"tf":1.0},"342":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":5,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"830":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"44":{"tf":1.0},"677":{"tf":1.0},"683":{"tf":1.0},"831":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":80,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":2.23606797749979},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"55":{"tf":1.0},"560":{"tf":1.0},"580":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"60":{"tf":1.0},"614":{"tf":1.0},"626":{"tf":1.0},"662":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"697":{"tf":1.0},"72":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0},"919":{"tf":1.0},"93":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"715":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"c":{"df":8,"docs":{"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"354":{"tf":1.0},"679":{"tf":1.0},"792":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.4142135623730951},"224":{"tf":1.0},"231":{"tf":1.0},"807":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"476":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"968":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"268":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":62,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"128":{"tf":1.0},"138":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.7320508075688772},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"285":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"864":{"tf":1.0},"87":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"969":{"tf":3.0}}}},"df":14,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"288":{"tf":1.0},"320":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"823":{"tf":1.0},"89":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"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":6,"docs":{"12":{"tf":1.0},"775":{"tf":1.0},"793":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0}},"s":{":":{"$":{"df":0,"docs":{},"{":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"793":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"288":{"tf":1.0},"796":{"tf":1.0},"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":135,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"548":{"tf":1.0},"553":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"565":{"tf":1.0},"571":{"tf":1.0},"577":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"617":{"tf":1.0},"623":{"tf":1.0},"628":{"tf":1.0},"634":{"tf":1.0},"637":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"814":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"117":{"tf":1.0},"289":{"tf":1.0},"350":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"618":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"63":{"tf":1.0},"711":{"tf":1.0},"80":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"318":{"tf":1.0},"356":{"tf":1.0},"657":{"tf":1.4142135623730951},"776":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"22":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"297":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"752":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"958":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"282":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":281,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"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},"746":{"tf":1.0},"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},"755":{"tf":1.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},"765":{"tf":1.0},"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},"78":{"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"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.0},"895":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"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.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":6,"docs":{"184":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"22":{"tf":1.0},"538":{"tf":1.0},"900":{"tf":1.0}}}}},"n":{"c":{"df":14,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"111":{"tf":1.4142135623730951},"144":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"318":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"338":{"tf":1.7320508075688772},"342":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":2.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"471":{"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},"48":{"tf":1.0},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"514":{"tf":1.0},"652":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"725":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.0},"743":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.0},"772":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.4142135623730951},"810":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.0},"867":{"tf":1.4142135623730951},"905":{"tf":1.0},"907":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"924":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"958":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"315":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"190":{"tf":1.0},"310":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"830":{"tf":1.0},"87":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"613":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"958":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"334":{"tf":2.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"703":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0}}}}}}},"df":1,"docs":{"687":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"580":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"270":{"tf":1.0},"316":{"tf":1.0},"376":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.4142135623730951},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"830":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"792":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"/":{"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":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":186,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"144":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.7320508075688772},"224":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"371":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"51":{"tf":1.0},"514":{"tf":1.7320508075688772},"52":{"tf":1.0},"528":{"tf":2.8284271247461903},"54":{"tf":1.0},"563":{"tf":2.0},"582":{"tf":1.7320508075688772},"65":{"tf":1.0},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.7320508075688772},"671":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":1.7320508075688772},"687":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"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.4142135623730951},"738":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"78":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"888":{"tf":1.0},"9":{"tf":1.0},"914":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"b":{"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":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"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":0,"docs":{},"m":{"df":1,"docs":{"804":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"838":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":53,"docs":{"127":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"360":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"651":{"tf":1.0},"711":{"tf":1.0},"721":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"876":{"tf":1.0},"905":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"838":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"612":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"609":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"612":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"613":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"510":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":1,"docs":{"22":{"tf":1.0}}},"t":{"df":4,"docs":{"132":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"60":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":107,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"571":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"60":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.4142135623730951},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"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":{"17":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"32":{"tf":1.7320508075688772},"44":{"tf":1.0},"660":{"tf":1.7320508075688772},"677":{"tf":1.0},"688":{"tf":1.7320508075688772}},"n":{"df":90,"docs":{"104":{"tf":1.0},"110":{"tf":1.7320508075688772},"130":{"tf":1.0},"140":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"673":{"tf":1.0},"782":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"929":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":2.6457513110645907}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"276":{"tf":1.0},"68":{"tf":2.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"'":{"df":10,"docs":{"2":{"tf":1.0},"22":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.0},"349":{"tf":1.0},"693":{"tf":1.0},"838":{"tf":1.4142135623730951},"875":{"tf":1.0},"969":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"393":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"157":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"865":{"tf":1.0}}}},"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":{},"n":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":2,"docs":{"124":{"tf":1.0},"892":{"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"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":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"22":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"716":{"tf":1.0},"721":{"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":{},"v":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"i":{"d":{"]":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"492":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"493":{"tf":1.0},"494":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"120":{"tf":1.0},"124":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"\"":{"df":0,"docs":{},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"127":{"tf":1.0},"809":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"127":{"tf":1.0},"310":{"tf":1.0},"773":{"tf":1.0},"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"120":{"tf":1.0},"176":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"383":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"2":{"3":{"df":1,"docs":{"574":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"858":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"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":{"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":{"338":{"tf":1.0},"678":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"679":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"238":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.7320508075688772},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"701":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"551":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":28,"docs":{"121":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"222":{"tf":1.0},"240":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"561":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":2.0},"916":{"tf":1.0},"923":{"tf":1.4142135623730951},"934":{"tf":1.0},"936":{"tf":1.0},"948":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"834":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"243":{"tf":1.0}}}}}},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"585":{"tf":1.0},"586":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"585":{"tf":1.0},"586":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"[":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"519":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"df":3,"docs":{"315":{"tf":1.0},"338":{"tf":1.0},"678":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"168":{"tf":1.0},"752":{"tf":1.0},"912":{"tf":1.0},"929":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}},"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"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":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":1,"docs":{"920":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"920":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"920":{"tf":1.0}},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":3,"docs":{"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"342":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"9":{"tf":1.0},"921":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":2,"docs":{"316":{"tf":1.0},"338":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"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":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":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":{"407":{"tf":1.0},"532":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"643":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"333":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"924":{"tf":1.0},"927":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"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":{},"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":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"802":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"135":{"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":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"127":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"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":{},"s":{"df":3,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"829":{"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.0},"842":{"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":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":2,"docs":{"127":{"tf":1.0},"747":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"747":{"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":{},"r":{".":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"l":{"df":1,"docs":{"862":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"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":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"752":{"tf":1.0},"811":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"127":{"tf":1.0},"762":{"tf":1.0},"806":{"tf":1.0},"809":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"806":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"739":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"747":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"/":{"4":{"0":{".":{"0":{".":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"3":{"3":{".":{"0":{".":{"0":{"df":1,"docs":{"11":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"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":{},"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":{"318":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":23,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":3,"docs":{"316":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"338":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"85":{"tf":1.0}}}}}},"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":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"26":{"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":{},"r":{"df":1,"docs":{"823":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":1,"docs":{"369":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":4,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"362":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"362":{"tf":1.7320508075688772}}}}}},"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":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":3,"docs":{"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"505":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"n":{"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":11,"docs":{"497":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"652":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":84,"docs":{"115":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"288":{"tf":1.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"567":{"tf":1.0},"653":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":2.8284271247461903},"678":{"tf":1.0},"689":{"tf":1.4142135623730951},"690":{"tf":1.0},"692":{"tf":2.23606797749979},"715":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"783":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"864":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":2.23606797749979},"943":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"=":{"=":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"8":{".":{"1":{"df":1,"docs":{"673":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}},"df":0,"docs":{}},"df":2,"docs":{"690":{"tf":1.0},"907":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"673":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"673":{"tf":1.4142135623730951},"690":{"tf":1.0},"907":{"tf":1.0}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"375":{"tf":1.4142135623730951}},"s":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}},"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}},"e":{"=":{"$":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"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":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"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":{"728":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"751":{"tf":1.0},"805":{"tf":1.0},"839":{"tf":1.0},"840":{"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":{"837":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":447,"docs":{"0":{"tf":3.7416573867739413},"10":{"tf":2.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":2.23606797749979},"111":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.0},"126":{"tf":2.6457513110645907},"127":{"tf":2.0},"128":{"tf":1.0},"13":{"tf":2.8284271247461903},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":3.1622776601683795},"14":{"tf":2.0},"141":{"tf":1.0},"142":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":2.8284271247461903},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"18":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":2.0},"182":{"tf":2.0},"183":{"tf":3.0},"184":{"tf":1.7320508075688772},"185":{"tf":2.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"192":{"tf":1.0},"194":{"tf":2.23606797749979},"195":{"tf":3.1622776601683795},"197":{"tf":2.23606797749979},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"2":{"tf":2.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.449489742783178},"206":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"218":{"tf":2.449489742783178},"22":{"tf":2.449489742783178},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"223":{"tf":2.0},"224":{"tf":2.6457513110645907},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":1.7320508075688772},"231":{"tf":2.449489742783178},"232":{"tf":2.449489742783178},"233":{"tf":2.8284271247461903},"234":{"tf":2.23606797749979},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":3.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":2.449489742783178},"259":{"tf":1.7320508075688772},"26":{"tf":2.23606797749979},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":2.0},"280":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":2.23606797749979},"308":{"tf":1.7320508075688772},"309":{"tf":1.7320508075688772},"31":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":3.3166247903554},"316":{"tf":4.242640687119285},"317":{"tf":1.7320508075688772},"318":{"tf":5.385164807134504},"32":{"tf":3.605551275463989},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.23606797749979},"326":{"tf":1.7320508075688772},"328":{"tf":2.23606797749979},"329":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"330":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":2.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":1.7320508075688772},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":2.0},"371":{"tf":1.4142135623730951},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"39":{"tf":1.7320508075688772},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"419":{"tf":1.4142135623730951},"422":{"tf":1.0},"425":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":2.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.23606797749979},"522":{"tf":1.4142135623730951},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"561":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.4142135623730951},"580":{"tf":1.0},"591":{"tf":1.4142135623730951},"598":{"tf":1.0},"6":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772},"600":{"tf":1.0},"601":{"tf":1.0},"614":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"62":{"tf":2.8284271247461903},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.4142135623730951},"630":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":1.7320508075688772},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"647":{"tf":1.4142135623730951},"649":{"tf":2.0},"65":{"tf":2.23606797749979},"652":{"tf":1.0},"653":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"656":{"tf":1.7320508075688772},"657":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.0},"67":{"tf":1.4142135623730951},"670":{"tf":1.0},"671":{"tf":2.6457513110645907},"673":{"tf":2.449489742783178},"674":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":2.449489742783178},"68":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":2.449489742783178},"688":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"690":{"tf":1.7320508075688772},"691":{"tf":1.4142135623730951},"692":{"tf":2.449489742783178},"693":{"tf":1.7320508075688772},"697":{"tf":1.7320508075688772},"698":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":2.6457513110645907},"704":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.7320508075688772},"708":{"tf":1.4142135623730951},"709":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"710":{"tf":1.0},"712":{"tf":1.7320508075688772},"715":{"tf":1.7320508075688772},"716":{"tf":1.0},"721":{"tf":1.7320508075688772},"732":{"tf":1.4142135623730951},"736":{"tf":1.7320508075688772},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":2.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.4142135623730951},"755":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"78":{"tf":2.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"79":{"tf":1.7320508075688772},"792":{"tf":2.0},"793":{"tf":2.8284271247461903},"798":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":2.0},"817":{"tf":1.4142135623730951},"818":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"828":{"tf":1.0},"83":{"tf":1.4142135623730951},"831":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":2.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":2.0},"854":{"tf":1.4142135623730951},"858":{"tf":1.7320508075688772},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":2.0},"862":{"tf":1.0},"865":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.7320508075688772},"872":{"tf":1.0},"873":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"881":{"tf":1.7320508075688772},"882":{"tf":1.4142135623730951},"885":{"tf":1.0},"892":{"tf":1.0},"9":{"tf":3.1622776601683795},"91":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":2.449489742783178},"916":{"tf":2.23606797749979},"917":{"tf":1.0},"919":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"920":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"945":{"tf":1.7320508075688772},"951":{"tf":2.23606797749979},"956":{"tf":1.4142135623730951},"957":{"tf":2.0},"958":{"tf":5.196152422706632},"962":{"tf":1.7320508075688772},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"347":{"tf":1.4142135623730951}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"[":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"112":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"779":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"649":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"670":{"tf":1.0},"672":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"720":{"tf":1.0},"867":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"885":{"tf":1.0}},"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":{},"p":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{"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":1,"docs":{"318":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"473":{"tf":1.7320508075688772},"876":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"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":1,"docs":{"318":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"’":{"df":3,"docs":{"3":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"830":{"tf":1.0},"834":{"tf":1.4142135623730951},"858":{"tf":1.0},"864":{"tf":1.0}}}}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"22":{"tf":1.0},"239":{"tf":1.0},"318":{"tf":1.0},"774":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"702":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"t":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"136":{"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":{},"t":{"c":{"+":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"445":{"tf":1.0},"446":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"df":3,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"df":22,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"425":{"tf":2.449489742783178},"445":{"tf":2.449489742783178},"446":{"tf":2.449489742783178},"448":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"619":{"tf":1.0},"675":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":5,"docs":{"109":{"tf":1.0},"145":{"tf":1.4142135623730951},"198":{"tf":1.0},"859":{"tf":1.0},"88":{"tf":1.0}}},"o":{"d":{"df":7,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"233":{"tf":1.0},"63":{"tf":1.0},"678":{"tf":1.0},"830":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"448":{"tf":1.0}}}}}},"r":{"a":{"b":{"df":1,"docs":{"665":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"339":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"802":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"l":{"df":32,"docs":{"11":{"tf":1.0},"13":{"tf":2.8284271247461903},"318":{"tf":1.0},"663":{"tf":1.7320508075688772},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.4142135623730951},"675":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"731":{"tf":1.0},"735":{"tf":1.0},"750":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"786":{"tf":1.4142135623730951},"792":{"tf":2.0},"793":{"tf":1.0},"801":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"670":{"tf":1.0},"673":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"673":{"tf":1.4142135623730951},"862":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"467":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"2":{"3":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"578":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"578":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"2":{"3":{"df":1,"docs":{"574":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"578":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"2":{"3":{"df":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"578":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"577":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"577":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"288":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"tf":1.4142135623730951}}}},"p":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"673":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"297":{"tf":1.0},"654":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"142":{"tf":1.0},"342":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"849":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"878":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":25,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"117":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.7320508075688772},"23":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"29":{"tf":1.0},"349":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":2.23606797749979},"964":{"tf":1.4142135623730951},"965":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"110":{"tf":1.0},"5":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"852":{"tf":1.0},"853":{"tf":1.0},"913":{"tf":1.0},"933":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}}},"h":{"1":{"2":{"0":{"2":{"0":{"df":1,"docs":{"958":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"521":{"tf":1.0}}},"3":{"df":1,"docs":{"521":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"65":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"514":{"tf":1.0}},"l":{"df":27,"docs":{"109":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"371":{"tf":1.0},"402":{"tf":1.0},"563":{"tf":2.0},"679":{"tf":1.0},"710":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"833":{"tf":1.4142135623730951},"865":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"679":{"tf":1.0},"858":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"120":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.0},"155":{"tf":1.0},"312":{"tf":1.0},"376":{"tf":1.7320508075688772},"401":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.4142135623730951},"60":{"tf":1.0},"618":{"tf":1.7320508075688772},"697":{"tf":1.0},"701":{"tf":1.0},"710":{"tf":1.0},"75":{"tf":2.0},"802":{"tf":1.0},"809":{"tf":1.0},"823":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"878":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"96":{"tf":2.0}}}},"i":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"r":{"d":{"df":3,"docs":{"22":{"tf":1.0},"461":{"tf":1.0},"830":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"274":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"114":{"tf":1.0}},"m":{"df":2,"docs":{"830":{"tf":1.0},"923":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"328":{"tf":1.0},"799":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"677":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"267":{"tf":1.0},"476":{"tf":1.4142135623730951},"494":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"776":{"tf":1.0},"963":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":21,"docs":{"129":{"tf":1.0},"136":{"tf":2.6457513110645907},"317":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"697":{"tf":1.0},"741":{"tf":1.0},"775":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"847":{"tf":1.0},"858":{"tf":1.0},"913":{"tf":1.0},"936":{"tf":1.4142135623730951},"951":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"747":{"tf":1.0}}}}},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"509":{"tf":1.0},"512":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"606":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":22,"docs":{"117":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"226":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"461":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.7320508075688772}}}}}},"n":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"127":{"tf":1.0},"254":{"tf":2.449489742783178},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"677":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"728":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"117":{"tf":1.0},"145":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"456":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"135":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"289":{"tf":1.4142135623730951},"546":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"289":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":1.0},"632":{"tf":1.0}}}}}}}}},"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}}}},"df":12,"docs":{"376":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"503":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":8,"docs":{"132":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}},"i":{"df":1,"docs":{"289":{"tf":1.7320508075688772}}}}}}},"t":{"df":5,"docs":{"127":{"tf":1.0},"142":{"tf":1.0},"50":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"315":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"df":3,"docs":{"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"198":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"655":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"802":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"142":{"tf":1.0},"173":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"811":{"tf":1.0}}},"s":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"0":{"df":1,"docs":{"521":{"tf":1.0}}},"1":{"df":1,"docs":{"521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"519":{"tf":1.0}}},"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"590":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"590":{"tf":1.0}}},":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"df":2,"docs":{"138":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"87":{"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":1,"docs":{"645":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"626":{"tf":1.0}},"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":2,"docs":{"625":{"tf":1.0},"626":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"626":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"521":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"317":{"tf":1.0}}}}}}}},"df":18,"docs":{"237":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"745":{"tf":1.0},"922":{"tf":1.4142135623730951},"933":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"0":{"0":{"0":{"0":{"0":{"0":{"df":21,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"df":3,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"9":{"3":{"8":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"9":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"8":{"7":{"7":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"6":{"2":{"2":{"df":1,"docs":{"126":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"0":{"0":{"0":{"0":{"0":{"#":{"c":{"3":{"df":22,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"1":{"2":{"9":{"3":{"8":{"#":{"c":{"3":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"0":{"4":{"8":{"#":{"c":{"1":{"3":{"df":1,"docs":{"127":{"tf":1.0}}},"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":{"2":{"4":{"7":{"9":{"df":2,"docs":{"677":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"5":{"#":{"c":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"8":{"7":{"7":{"#":{"c":{"2":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"6":{"2":{"2":{"#":{"c":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"645":{"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"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":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"3":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"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":{},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"705":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"707":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"705":{"tf":1.0},"776":{"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":{}}}}}},"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":{},"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"31":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"11":{"tf":1.0},"13":{"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":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"/":{"2":{".":{"0":{"df":1,"docs":{"7":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"540":{"tf":1.0},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"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":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"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":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"254":{"tf":1.0},"288":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"294":{"tf":1.0},"762":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"693":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"693":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"693":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"i":{".":{"df":10,"docs":{"157":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"338":{"tf":1.0},"371":{"tf":1.0},"563":{"tf":1.0},"654":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"969":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"834":{"tf":1.0},"862":{"tf":1.0}}}},"6":{"8":{"6":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"7":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"232":{"tf":1.7320508075688772}}}}},"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":48,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":2.0},"136":{"tf":1.0},"160":{"tf":2.23606797749979},"163":{"tf":1.0},"17":{"tf":1.0},"205":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"347":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"526":{"tf":1.0},"59":{"tf":1.0},"592":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"728":{"tf":1.0},"734":{"tf":1.0},"842":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"9":{"tf":1.0},"946":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":3,"docs":{"119":{"tf":1.0},"173":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}},"i":{"df":36,"docs":{"104":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"118":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"160":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"289":{"tf":2.449489742783178},"315":{"tf":2.0},"330":{"tf":2.0},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"423":{"tf":1.0},"443":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"538":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"697":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"99":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"142":{"tf":1.0},"17":{"tf":1.0},"231":{"tf":1.4142135623730951},"357":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"664":{"tf":1.0},"684":{"tf":1.0},"734":{"tf":1.0},"873":{"tf":1.0},"882":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"693":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":16,"docs":{"127":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"184":{"tf":1.0},"224":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"354":{"tf":1.0},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"710":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.7320508075688772},"271":{"tf":1.0},"318":{"tf":1.0},"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":51,"docs":{"11":{"tf":1.4142135623730951},"144":{"tf":1.0},"192":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":2.23606797749979},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":2.449489742783178},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"379":{"tf":1.0},"52":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"67":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.4142135623730951},"729":{"tf":1.0},"738":{"tf":1.0},"743":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.4142135623730951},"773":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"819":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"849":{"tf":1.0},"854":{"tf":1.0},"872":{"tf":1.0},"881":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.7320508075688772},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"956":{"tf":4.123105625617661}}}}}}},"i":{"df":1,"docs":{"256":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":151,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":2.8284271247461903},"317":{"tf":1.4142135623730951},"318":{"tf":2.449489742783178},"32":{"tf":2.6457513110645907},"324":{"tf":2.449489742783178},"328":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":2.23606797749979},"34":{"tf":1.7320508075688772},"342":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.7320508075688772},"383":{"tf":2.0},"385":{"tf":2.0},"386":{"tf":1.4142135623730951},"393":{"tf":2.0},"395":{"tf":2.0},"396":{"tf":2.23606797749979},"398":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":2.0},"406":{"tf":2.0},"407":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"414":{"tf":2.0},"416":{"tf":2.0},"417":{"tf":2.23606797749979},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"423":{"tf":1.0},"425":{"tf":2.0},"427":{"tf":2.0},"428":{"tf":2.23606797749979},"435":{"tf":2.0},"437":{"tf":2.0},"438":{"tf":2.23606797749979},"44":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"448":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.7320508075688772},"461":{"tf":2.0},"464":{"tf":2.0},"465":{"tf":2.23606797749979},"468":{"tf":1.0},"473":{"tf":2.6457513110645907},"474":{"tf":2.23606797749979},"475":{"tf":2.0},"476":{"tf":2.0},"477":{"tf":1.7320508075688772},"478":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951},"480":{"tf":2.0},"481":{"tf":2.23606797749979},"499":{"tf":1.0},"505":{"tf":2.23606797749979},"507":{"tf":2.0},"508":{"tf":2.23606797749979},"522":{"tf":1.0},"528":{"tf":2.0},"529":{"tf":2.23606797749979},"531":{"tf":2.0},"532":{"tf":2.449489742783178},"538":{"tf":1.0},"540":{"tf":2.0},"541":{"tf":1.0},"543":{"tf":2.0},"544":{"tf":2.23606797749979},"551":{"tf":2.23606797749979},"553":{"tf":2.23606797749979},"554":{"tf":2.0},"555":{"tf":2.6457513110645907},"563":{"tf":1.7320508075688772},"565":{"tf":2.0},"566":{"tf":2.8284271247461903},"574":{"tf":1.7320508075688772},"575":{"tf":1.7320508075688772},"577":{"tf":1.7320508075688772},"578":{"tf":2.0},"591":{"tf":1.0},"598":{"tf":2.0},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"614":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":2.6457513110645907},"623":{"tf":2.0},"624":{"tf":2.449489742783178},"630":{"tf":1.0},"632":{"tf":2.0},"634":{"tf":2.0},"635":{"tf":2.23606797749979},"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"643":{"tf":1.7320508075688772},"649":{"tf":2.23606797749979},"65":{"tf":1.0},"652":{"tf":2.6457513110645907},"66":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.7320508075688772},"692":{"tf":1.0},"693":{"tf":1.4142135623730951},"700":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"772":{"tf":1.0},"78":{"tf":1.4142135623730951},"831":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"909":{"tf":1.0},"916":{"tf":2.449489742783178},"92":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"958":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"288":{"tf":1.0}},"s":{"df":3,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"894":{"tf":1.0},"945":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":148,"docs":{"100":{"tf":3.4641016151377544},"104":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":2.0},"132":{"tf":1.7320508075688772},"145":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":2.0},"264":{"tf":1.0},"27":{"tf":1.7320508075688772},"288":{"tf":1.0},"289":{"tf":3.3166247903554},"297":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.4142135623730951},"342":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"419":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"614":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":1.0},"697":{"tf":1.4142135623730951},"729":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"762":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":3.4641016151377544},"8":{"tf":1.0},"802":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"826":{"tf":1.0},"83":{"tf":1.4142135623730951},"838":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":2.0},"865":{"tf":2.0},"878":{"tf":1.0},"880":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"912":{"tf":1.0},"929":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":3.4641016151377544},"99":{"tf":1.0}},"e":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"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":{}},"_":{"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":{"d":{"df":5,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}},"m":{"df":6,"docs":{"107":{"tf":1.0},"232":{"tf":1.0},"471":{"tf":1.0},"510":{"tf":1.0},"522":{"tf":1.0},"86":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"191":{"tf":1.0},"838":{"tf":1.0},"878":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"731":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"877":{"tf":1.0},"914":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":11,"docs":{"142":{"tf":2.449489742783178},"258":{"tf":2.449489742783178},"263":{"tf":1.4142135623730951},"289":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.7320508075688772},"756":{"tf":1.7320508075688772},"762":{"tf":1.0},"830":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"621":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"202":{"tf":1.0},"239":{"tf":1.0},"346":{"tf":1.0},"715":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":16,"docs":{"37":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"9":{"tf":1.4142135623730951},"950":{"tf":1.0}},"e":{"d":{"d":{"b":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":21,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"267":{"tf":1.0},"283":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"340":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"801":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":12,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"306":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"494":{"tf":1.0},"560":{"tf":1.0},"621":{"tf":1.0},"708":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"694":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"289":{"tf":1.0},"921":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}}},"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"704":{"tf":1.0},"779":{"tf":1.4142135623730951},"799":{"tf":1.0},"969":{"tf":2.0}},"r":{"df":0,"docs":{},"m":{"df":77,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"177":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"264":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":3.3166247903554},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.0},"4":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.0},"662":{"tf":1.0},"677":{"tf":2.449489742783178},"678":{"tf":1.0},"679":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"703":{"tf":1.0},"775":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"84":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"895":{"tf":1.0},"913":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.4142135623730951},"936":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":3.605551275463989}}}}},"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":3,"docs":{"666":{"tf":1.0},"686":{"tf":1.0},"704":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.7320508075688772},"273":{"tf":1.0},"288":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"666":{"tf":1.0},"686":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"79":{"tf":1.7320508075688772},"801":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.4142135623730951},"864":{"tf":1.0},"905":{"tf":1.0}},"i":{"df":82,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"208":{"tf":1.0},"254":{"tf":1.7320508075688772},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":2.0},"315":{"tf":2.8284271247461903},"316":{"tf":2.23606797749979},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"320":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.7320508075688772},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"500":{"tf":1.0},"678":{"tf":1.7320508075688772},"693":{"tf":1.0},"717":{"tf":1.4142135623730951},"721":{"tf":1.0},"723":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"806":{"tf":1.0},"812":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"854":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":2.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"880":{"tf":1.0},"882":{"tf":1.0},"9":{"tf":1.0},"908":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"941":{"tf":1.0},"945":{"tf":1.0},"948":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"803":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"252":{"tf":1.0},"969":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"115":{"tf":1.0},"17":{"tf":1.0},"233":{"tf":1.4142135623730951},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"111":{"tf":1.0},"254":{"tf":1.0},"48":{"tf":1.0},"665":{"tf":1.0},"677":{"tf":1.0},"691":{"tf":1.0},"803":{"tf":1.0},"912":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"244":{"tf":1.0},"772":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":31,"docs":{"115":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":2.23606797749979},"22":{"tf":1.0},"233":{"tf":1.0},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.4142135623730951},"671":{"tf":1.0},"673":{"tf":2.23606797749979},"675":{"tf":1.4142135623730951},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":2.23606797749979},"725":{"tf":1.0},"73":{"tf":1.0},"752":{"tf":1.0},"823":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.4142135623730951},"862":{"tf":1.0},"915":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"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":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"1":{"9":{"df":1,"docs":{"551":{"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":{},"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":{".":{"d":{"df":1,"docs":{"551":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"551":{"tf":1.0}}}}}},"df":1,"docs":{"551":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"551":{"tf":1.0}}}}}},"df":1,"docs":{"551":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"551":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":1,"docs":{"551":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"555":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"c":{"df":22,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"565":{"tf":1.0},"656":{"tf":1.0},"674":{"tf":1.0},"738":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"336":{"tf":1.0},"701":{"tf":1.0},"782":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":33,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"253":{"tf":1.0},"288":{"tf":1.0},"34":{"tf":1.0},"402":{"tf":1.0},"52":{"tf":1.0},"583":{"tf":1.0},"619":{"tf":1.0},"697":{"tf":1.4142135623730951},"73":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"743":{"tf":1.0},"772":{"tf":2.23606797749979},"775":{"tf":1.0},"786":{"tf":1.0},"793":{"tf":1.0},"801":{"tf":1.0},"809":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"94":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"232":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.0},"356":{"tf":1.0},"54":{"tf":1.0},"652":{"tf":2.449489742783178},"676":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":27,"docs":{"117":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"320":{"tf":1.0},"461":{"tf":1.0},"497":{"tf":1.0},"520":{"tf":1.0},"589":{"tf":1.0},"653":{"tf":1.0},"674":{"tf":2.0},"677":{"tf":1.0},"679":{"tf":1.0},"716":{"tf":1.0},"867":{"tf":1.0},"880":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"958":{"tf":1.0}}}}}}}}}},"t":{"3":{"2":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"505":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":20,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"580":{"tf":1.7320508075688772},"590":{"tf":1.0},"591":{"tf":1.7320508075688772},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"685":{"tf":1.0}},"r":{"df":44,"docs":{"10":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"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},"2":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.7320508075688772},"234":{"tf":1.0},"29":{"tf":2.0},"39":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.4142135623730951},"658":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"8":{"tf":1.0},"834":{"tf":1.0},"860":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":2.449489742783178},"958":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"153":{"tf":1.0},"160":{"tf":1.0},"173":{"tf":1.0},"192":{"tf":1.0},"53":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"184":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"282":{"tf":1.0},"289":{"tf":2.23606797749979},"377":{"tf":1.0},"466":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"254":{"tf":2.0},"289":{"tf":1.0}}}}},"f":{"a":{"c":{"df":8,"docs":{"218":{"tf":1.0},"223":{"tf":1.0},"320":{"tf":1.0},"476":{"tf":1.0},"679":{"tf":1.0},"689":{"tf":1.0},"837":{"tf":1.0},"874":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"804":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":31,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":1.0},"315":{"tf":1.4142135623730951},"318":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"456":{"tf":1.0},"471":{"tf":1.0},"62":{"tf":1.0},"647":{"tf":1.0},"693":{"tf":1.0},"728":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"803":{"tf":1.0},"838":{"tf":1.0},"854":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":1.4142135623730951},"933":{"tf":1.0},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"267":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"50":{"tf":1.0},"673":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"715":{"tf":1.0},"753":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"151":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"67":{"tf":1.0},"747":{"tf":1.4142135623730951},"796":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":2.0},"818":{"tf":1.4142135623730951},"820":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.4142135623730951},"951":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"120":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.4142135623730951},"563":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"839":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"120":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"866":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"779":{"tf":1.0},"795":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"p":{"df":18,"docs":{"120":{"tf":1.0},"383":{"tf":1.0},"393":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"529":{"tf":1.0},"541":{"tf":1.0},"551":{"tf":1.0},"563":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"632":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":26,"docs":{"120":{"tf":1.0},"328":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"462":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.4142135623730951},"517":{"tf":1.0},"529":{"tf":1.0},"541":{"tf":1.0},"551":{"tf":1.0},"563":{"tf":1.4142135623730951},"575":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"640":{"tf":1.0},"734":{"tf":1.0},"839":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":32,"docs":{"120":{"tf":2.0},"124":{"tf":1.4142135623730951},"231":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"393":{"tf":1.0},"396":{"tf":2.23606797749979},"414":{"tf":1.0},"417":{"tf":2.449489742783178},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"551":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0},"642":{"tf":1.0},"747":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"76":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"880":{"tf":1.0},"916":{"tf":1.7320508075688772},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"840":{"tf":1.0},"870":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"750":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"914":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"142":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.0}}},"t":{"df":1,"docs":{"800":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"103":{"tf":1.0},"249":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"82":{"tf":1.0},"875":{"tf":1.0},"958":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.7320508075688772},"749":{"tf":1.0},"912":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":1.0},"340":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}}}}}},"o":{"df":76,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"222":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":2.23606797749979},"234":{"tf":1.7320508075688772},"288":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"50":{"tf":2.0},"657":{"tf":1.0},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"685":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"741":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.4142135623730951},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"762":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"789":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.4142135623730951},"798":{"tf":1.0},"802":{"tf":1.7320508075688772},"804":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.4142135623730951},"834":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.4142135623730951},"842":{"tf":1.0},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"p":{"df":1,"docs":{"289":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"_":{"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":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"198":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"377":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.7320508075688772},"839":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}},"o":{"8":{"6":{"0":{"1":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"288":{"tf":1.0},"294":{"tf":1.0},"554":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"19":{"tf":1.0}}}},"p":{"df":1,"docs":{"267":{"tf":2.0}}},"s":{"df":0,"docs":{},"u":{"df":20,"docs":{"22":{"tf":1.0},"234":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.4142135623730951},"6":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"814":{"tf":1.0},"859":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.7320508075688772},"915":{"tf":1.0},"925":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}}}}}}}}}}}}}},"t":{"'":{"df":36,"docs":{"103":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"17":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"232":{"tf":2.449489742783178},"328":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"873":{"tf":1.4142135623730951},"884":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":19,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.4142135623730951},"22":{"tf":1.0},"230":{"tf":1.0},"264":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"692":{"tf":1.0},"708":{"tf":1.0},"83":{"tf":1.0},"916":{"tf":1.0}}}}}},"’":{"df":3,"docs":{"182":{"tf":1.0},"254":{"tf":1.0},"964":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"882":{"tf":1.0}}},"v":{"a":{"df":8,"docs":{"656":{"tf":1.0},"737":{"tf":1.0},"786":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"864":{"tf":1.4142135623730951},"876":{"tf":1.0},"969":{"tf":1.7320508075688772}},"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":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":99,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"174":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"29":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"32":{"tf":2.23606797749979},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0},"35":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"561":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.7320508075688772},"659":{"tf":1.4142135623730951},"660":{"tf":1.7320508075688772},"688":{"tf":1.7320508075688772},"693":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"927":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":3,"docs":{"731":{"tf":1.4142135623730951},"759":{"tf":1.0},"823":{"tf":1.0}},"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":{"12":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"882":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"b":{"df":5,"docs":{"224":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"128":{"tf":1.0},"171":{"tf":1.0},"195":{"tf":1.0},"254":{"tf":2.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0},"642":{"tf":1.0},"644":{"tf":1.0},"697":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"865":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"e":{"df":3,"docs":{"380":{"tf":1.0},"697":{"tf":1.0},"838":{"tf":1.0}}},"k":{"df":2,"docs":{"701":{"tf":1.4142135623730951},"951":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"b":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"915":{"tf":1.0}}}},"df":9,"docs":{"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"190":{"tf":1.0},"261":{"tf":1.0},"41":{"tf":1.0},"692":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"950":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"565":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"799":{"tf":1.0}}},"2":{"df":1,"docs":{"799":{"tf":1.0}}},"df":27,"docs":{"120":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"232":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"560":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.0},"568":{"tf":2.23606797749979},"570":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"697":{"tf":2.23606797749979},"698":{"tf":2.0},"701":{"tf":1.4142135623730951},"732":{"tf":1.0},"765":{"tf":1.0},"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"379":{"tf":1.0}}}},"d":{"df":2,"docs":{"697":{"tf":1.0},"701":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"155":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":6,"docs":{"509":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0},"632":{"tf":1.0},"829":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":8,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"376":{"tf":1.4142135623730951},"441":{"tf":1.0},"66":{"tf":1.0},"80":{"tf":1.0},"834":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"b":{"df":17,"docs":{"168":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"212":{"tf":2.0},"213":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"727":{"tf":1.7320508075688772},"741":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":24,"docs":{"100":{"tf":1.7320508075688772},"169":{"tf":1.0},"17":{"tf":1.0},"254":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":2.6457513110645907},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"252":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":23,"docs":{"106":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"66":{"tf":1.0},"673":{"tf":1.0},"680":{"tf":1.0},"708":{"tf":1.0},"73":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"923":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"p":{"df":1,"docs":{"651":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":68,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":2.0},"110":{"tf":2.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.0},"338":{"tf":1.0},"354":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.7320508075688772},"662":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.4142135623730951},"678":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"741":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.4142135623730951},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"829":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"879":{"tf":1.0},"89":{"tf":2.0},"9":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"529":{"tf":1.0}}},"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":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},"df":72,"docs":{"110":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":2.23606797749979},"376":{"tf":2.23606797749979},"377":{"tf":4.242640687119285},"378":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"393":{"tf":4.47213595499958},"395":{"tf":1.4142135623730951},"396":{"tf":2.449489742783178},"397":{"tf":1.4142135623730951},"398":{"tf":4.123105625617661},"412":{"tf":1.7320508075688772},"414":{"tf":4.47213595499958},"416":{"tf":1.4142135623730951},"417":{"tf":2.6457513110645907},"418":{"tf":1.4142135623730951},"419":{"tf":4.123105625617661},"433":{"tf":1.7320508075688772},"435":{"tf":4.47213595499958},"437":{"tf":1.4142135623730951},"438":{"tf":2.6457513110645907},"439":{"tf":1.4142135623730951},"440":{"tf":4.123105625617661},"488":{"tf":1.4142135623730951},"490":{"tf":2.449489742783178},"491":{"tf":2.23606797749979},"492":{"tf":2.0},"493":{"tf":2.23606797749979},"494":{"tf":2.23606797749979},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":4.242640687119285},"501":{"tf":3.7416573867739413},"515":{"tf":1.4142135623730951},"517":{"tf":2.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":4.123105625617661},"524":{"tf":3.7416573867739413},"583":{"tf":2.0},"585":{"tf":2.0},"586":{"tf":2.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"590":{"tf":1.4142135623730951},"591":{"tf":4.242640687119285},"593":{"tf":3.7416573867739413},"606":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"609":{"tf":2.23606797749979},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":4.242640687119285},"616":{"tf":3.7416573867739413},"747":{"tf":1.0},"75":{"tf":1.0},"752":{"tf":1.4142135623730951},"785":{"tf":1.0},"817":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.7320508075688772},"862":{"tf":1.7320508075688772},"864":{"tf":1.7320508075688772},"881":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"951":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"942":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"124":{"tf":2.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"418":{"tf":1.0},"734":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"590":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"521":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"613":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"439":{"tf":1.0},"78":{"tf":1.0},"942":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"498":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"400":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"502":{"tf":1.0},"525":{"tf":1.0},"594":{"tf":1.0},"617":{"tf":1.0},"842":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"400":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"442":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"206":{"tf":1.0},"254":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"969":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"969":{"tf":1.7320508075688772}},"u":{"a":{"df":0,"docs":{},"g":{"df":51,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"136":{"tf":1.0},"21":{"tf":1.0},"280":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"299":{"tf":1.0},"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.7320508075688772},"728":{"tf":1.0},"736":{"tf":1.0},"740":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.0},"834":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"862":{"tf":1.0},"89":{"tf":1.4142135623730951},"958":{"tf":1.0}},"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":{"9":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.0},"267":{"tf":1.0},"807":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"224":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.0},"736":{"tf":1.0},"907":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"467":{"tf":1.0},"621":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":2.6457513110645907},"142":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"204":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"861":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"741":{"tf":1.0}},"n":{"c":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":11,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"425":{"tf":2.449489742783178},"456":{"tf":1.0},"473":{"tf":1.0},"484":{"tf":1.0},"673":{"tf":1.0},"858":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"254":{"tf":1.0},"41":{"tf":1.0},"760":{"tf":1.0},"909":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"874":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"191":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":2.23606797749979},"247":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"780":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"d":{"df":8,"docs":{"141":{"tf":1.0},"74":{"tf":1.0},"814":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"467":{"tf":1.0},"720":{"tf":1.0}}},"n":{"df":4,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0}}}},"v":{"df":5,"docs":{"150":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"816":{"tf":1.0},"916":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"328":{"tf":1.0},"653":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"568":{"tf":1.0},"916":{"tf":1.0},"958":{"tf":1.0}}},"y":{"_":{"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":{"d":{"df":2,"docs":{"160":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"805":{"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":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"565":{"tf":1.0},"642":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":23,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"241":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"328":{"tf":2.0},"378":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"471":{"tf":1.0},"541":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.4142135623730951},"757":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"259":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"'":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":1,"docs":{"254":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"294":{"tf":1.0}}}}},"’":{"df":3,"docs":{"203":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":24,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"170":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"258":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"673":{"tf":1.0},"834":{"tf":1.4142135623730951},"878":{"tf":1.0},"962":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"956":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}}}}},"i":{"b":{"df":3,"docs":{"316":{"tf":1.0},"674":{"tf":1.0},"924":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":52,"docs":{"0":{"tf":2.23606797749979},"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"270":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.0},"665":{"tf":1.7320508075688772},"668":{"tf":1.0},"678":{"tf":1.0},"705":{"tf":1.0},"753":{"tf":1.4142135623730951},"775":{"tf":1.0},"799":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"9":{"tf":3.1622776601683795},"916":{"tf":1.7320508075688772},"929":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"y":{"'":{"df":2,"docs":{"21":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"'":{"df":1,"docs":{"743":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"151":{"tf":1.0},"184":{"tf":1.0},"271":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"848":{"tf":1.0},"875":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"874":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":36,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":1.0},"109":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"289":{"tf":2.449489742783178},"308":{"tf":1.0},"315":{"tf":1.0},"454":{"tf":1.0},"567":{"tf":1.4142135623730951},"632":{"tf":1.0},"636":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"734":{"tf":1.0},"770":{"tf":1.0},"78":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.0},"79":{"tf":3.1622776601683795},"80":{"tf":1.0},"840":{"tf":1.0},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"917":{"tf":1.0},"94":{"tf":1.4142135623730951},"953":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":72,"docs":{"109":{"tf":1.0},"129":{"tf":1.7320508075688772},"13":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":2.449489742783178},"170":{"tf":1.0},"224":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"357":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"456":{"tf":2.0},"476":{"tf":1.4142135623730951},"484":{"tf":1.7320508075688772},"499":{"tf":1.0},"501":{"tf":1.4142135623730951},"511":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"541":{"tf":1.0},"570":{"tf":1.0},"575":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.4142135623730951},"598":{"tf":1.0},"609":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.4142135623730951},"621":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"677":{"tf":1.0},"721":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"761":{"tf":1.0},"774":{"tf":1.0},"787":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"580":{"tf":1.0},"582":{"tf":1.0},"591":{"tf":1.0}}}},"df":18,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":2.0},"234":{"tf":1.0},"27":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"653":{"tf":1.0},"677":{"tf":1.0},"682":{"tf":1.0},"689":{"tf":1.0},"862":{"tf":1.0},"935":{"tf":1.0}}},"k":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"376":{"tf":1.0},"753":{"tf":1.0},"844":{"tf":1.0},"862":{"tf":1.4142135623730951},"890":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":1.4142135623730951}}},"t":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"21":{"tf":1.0},"294":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"768":{"tf":1.0},"804":{"tf":1.0},"838":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"288":{"tf":1.0},"38":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"858":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"132":{"tf":1.0},"19":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"769":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.4142135623730951},"815":{"tf":1.7320508075688772},"820":{"tf":1.7320508075688772},"867":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"772":{"tf":1.0}}}}}}},"df":68,"docs":{"10":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"297":{"tf":2.449489742783178},"315":{"tf":1.0},"318":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":2.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"39":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":2.0},"435":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"443":{"tf":1.7320508075688772},"445":{"tf":1.7320508075688772},"446":{"tf":2.23606797749979},"448":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"499":{"tf":2.0},"501":{"tf":1.0},"522":{"tf":2.0},"524":{"tf":1.0},"538":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"57":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":2.0},"593":{"tf":1.0},"614":{"tf":2.0},"616":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"668":{"tf":1.0},"689":{"tf":1.0},"715":{"tf":1.0},"73":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.4142135623730951},"77":{"tf":1.0},"813":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"862":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"912":{"tf":1.0},"94":{"tf":1.4142135623730951},"952":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"307":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":2.6457513110645907},"731":{"tf":1.0},"951":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"675":{"tf":1.0},"915":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":9,"docs":{"127":{"tf":1.0},"224":{"tf":1.0},"289":{"tf":1.4142135623730951},"371":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"78":{"tf":1.4142135623730951},"965":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"m":{"d":{"b":{"df":5,"docs":{"716":{"tf":1.0},"765":{"tf":1.0},"803":{"tf":1.0},"818":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":68,"docs":{"112":{"tf":1.0},"20":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"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},"480":{"tf":1.0},"481":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":68,"docs":{"112":{"tf":1.0},"20":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"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},"480":{"tf":1.0},"481":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":4,"docs":{"338":{"tf":1.4142135623730951},"649":{"tf":1.0},"652":{"tf":1.0},"834":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"338":{"tf":1.0},"649":{"tf":1.0},"652":{"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":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"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":15,"docs":{"140":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"263":{"tf":1.0},"268":{"tf":1.0},"31":{"tf":1.0},"338":{"tf":1.7320508075688772},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.4142135623730951},"592":{"tf":1.0},"864":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":27,"docs":{"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"316":{"tf":1.0},"710":{"tf":1.4142135623730951},"736":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"842":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"938":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"846":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"846":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"170":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"22":{"tf":1.0},"318":{"tf":1.0},"800":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"_":{"2":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"779":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"580":{"tf":1.0},"591":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":54,"docs":{"120":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":3.3166247903554},"237":{"tf":2.8284271247461903},"238":{"tf":2.0},"239":{"tf":3.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":2.0},"359":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"514":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"582":{"tf":1.0},"701":{"tf":1.0},"704":{"tf":1.0},"721":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"771":{"tf":1.0},"779":{"tf":1.0},"787":{"tf":1.0},"814":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":2.0},"849":{"tf":1.0},"854":{"tf":1.0},"880":{"tf":1.4142135623730951},"898":{"tf":1.0},"923":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.4142135623730951},"938":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"814":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":5,"docs":{"653":{"tf":1.0},"741":{"tf":1.0},"834":{"tf":1.4142135623730951},"919":{"tf":1.0},"932":{"tf":1.0}}},"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"438":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":10,"docs":{"376":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"441":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.0},"567":{"tf":1.4142135623730951},"569":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"tf":1.7320508075688772}}},"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":{"315":{"tf":1.0}}}}}}},"o":{"df":2,"docs":{"0":{"tf":1.0},"958":{"tf":1.0}}},"p":{"df":4,"docs":{"224":{"tf":2.0},"231":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"772":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":37,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"449":{"tf":1.0},"461":{"tf":1.0},"469":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"592":{"tf":1.0},"62":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"818":{"tf":1.4142135623730951},"839":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"963":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":49,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":1.0},"307":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"541":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"736":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.7320508075688772},"761":{"tf":1.0},"775":{"tf":1.0},"793":{"tf":1.0},"806":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"873":{"tf":1.4142135623730951},"876":{"tf":1.0},"891":{"tf":1.0},"912":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":30,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"203":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"572":{"tf":1.0},"665":{"tf":1.0},"668":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"690":{"tf":1.4142135623730951},"697":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"859":{"tf":1.0}}}}},"p":{"df":1,"docs":{"834":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"747":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"73":{"tf":1.0},"78":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":4,"docs":{"103":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"82":{"tf":1.0}}},"u":{"d":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"376":{"tf":1.0},"629":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"285":{"tf":1.0},"286":{"tf":1.0},"496":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"816":{"tf":1.0},"858":{"tf":1.0},"878":{"tf":1.0},"916":{"tf":1.0},"933":{"tf":1.0}}}}}}},"m":{"1":{"/":{"df":0,"docs":{},"m":{"2":{"/":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"958":{"tf":1.0}}},"a":{"c":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"233":{"tf":1.4142135623730951},"690":{"tf":1.0}},"h":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"289":{"tf":1.0},"697":{"tf":1.0},"910":{"tf":1.0}}}}},"o":{"df":7,"docs":{"19":{"tf":1.0},"673":{"tf":1.0},"775":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"867":{"tf":1.0},"884":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"256":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"862":{"tf":1.0},"869":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"487":{"tf":1.0},"514":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"104":{"tf":1.0},"289":{"tf":1.0},"83":{"tf":1.0}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":21,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.0},"26":{"tf":1.0},"306":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"316":{"tf":2.449489742783178},"34":{"tf":1.0},"342":{"tf":1.0},"646":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"840":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"675":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"308":{"tf":1.0},"62":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.0},"288":{"tf":2.449489742783178},"669":{"tf":1.7320508075688772},"685":{"tf":1.7320508075688772},"772":{"tf":1.0},"881":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":75,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.0},"281":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"318":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.4142135623730951},"443":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"538":{"tf":1.0},"619":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.0},"70":{"tf":1.4142135623730951},"720":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"804":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"842":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.4142135623730951},"862":{"tf":1.0},"863":{"tf":1.0},"882":{"tf":1.0},"900":{"tf":1.0},"91":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"925":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}},"r":{"df":1,"docs":{"956":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"917":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"153":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"62":{"tf":1.0},"647":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"867":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"958":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"44":{"tf":1.0},"677":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":21,"docs":{"127":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":2.449489742783178},"618":{"tf":1.4142135623730951},"625":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"858":{"tf":1.0},"915":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":5,"docs":{"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0},"673":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"968":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"820":{"tf":1.0}}},"2":{"0":{"1":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"4":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":9,"docs":{"131":{"tf":1.0},"170":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":2.23606797749979},"717":{"tf":1.4142135623730951},"723":{"tf":1.0},"840":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"328":{"tf":1.0},"679":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":11,"docs":{"21":{"tf":1.7320508075688772},"276":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"37":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"666":{"tf":1.0},"686":{"tf":1.7320508075688772},"862":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"318":{"tf":1.0},"773":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"334":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"640":{"tf":1.4142135623730951},"697":{"tf":1.0},"738":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"864":{"tf":1.0},"89":{"tf":1.0},"935":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"703":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"735":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688772},"656":{"tf":1.0}}}}},"x":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"861":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"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":{"761":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"212":{"tf":1.0},"213":{"tf":1.0},"897":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"315":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"565":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":59,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"170":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"328":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"456":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.0},"501":{"tf":1.7320508075688772},"511":{"tf":1.0},"514":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"541":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"575":{"tf":1.0},"582":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.4142135623730951},"609":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"632":{"tf":1.0},"732":{"tf":1.0},"81":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"929":{"tf":1.0}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"968":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"673":{"tf":1.0},"686":{"tf":1.0}},"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":6,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"645":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"n":{"df":41,"docs":{"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"168":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"487":{"tf":1.4142135623730951},"499":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"677":{"tf":1.0},"703":{"tf":1.0},"710":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":5,"docs":{"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"371":{"tf":1.0},"864":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":63,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"141":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":2.0},"477":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"488":{"tf":1.0},"503":{"tf":1.0},"549":{"tf":1.0},"632":{"tf":1.0},"70":{"tf":2.0},"708":{"tf":1.0},"711":{"tf":2.23606797749979},"721":{"tf":1.0},"73":{"tf":1.4142135623730951},"739":{"tf":1.0},"74":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"834":{"tf":1.4142135623730951},"86":{"tf":1.0},"861":{"tf":2.0},"866":{"tf":1.0},"880":{"tf":1.0},"91":{"tf":2.0},"929":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":2.449489742783178},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"289":{"tf":1.0},"346":{"tf":1.0},"471":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":2.0},"929":{"tf":1.0},"937":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"173":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"510":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":25,"docs":{"289":{"tf":1.4142135623730951},"310":{"tf":1.0},"376":{"tf":1.4142135623730951},"503":{"tf":2.23606797749979},"505":{"tf":1.4142135623730951},"507":{"tf":2.6457513110645907},"508":{"tf":1.4142135623730951},"509":{"tf":1.7320508075688772},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"514":{"tf":2.0},"515":{"tf":2.0},"517":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"718":{"tf":1.0},"814":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"911":{"tf":1.0},"958":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.7320508075688772}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"507":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.7320508075688772},"509":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"514":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"839":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"772":{"tf":1.0},"853":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"525":{"tf":1.0},"837":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"738":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"677":{"tf":1.7320508075688772},"679":{"tf":1.0},"779":{"tf":1.0},"805":{"tf":1.0},"814":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"858":{"tf":1.0},"898":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.4142135623730951},"938":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"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":1,"docs":{"266":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"171":{"tf":1.0}}},"2":{"df":1,"docs":{"171":{"tf":1.0}}},"df":16,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"254":{"tf":1.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"338":{"tf":1.0},"568":{"tf":1.0},"680":{"tf":1.0},"727":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":32,"docs":{"221":{"tf":2.0},"223":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.0},"257":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":2.23606797749979},"317":{"tf":1.0},"338":{"tf":2.0},"462":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"715":{"tf":1.0},"731":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"772":{"tf":1.7320508075688772},"838":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"'":{"df":7,"docs":{"104":{"tf":1.0},"288":{"tf":1.0},"464":{"tf":1.0},"554":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"799":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"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":2,"docs":{"110":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":423,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":2.0},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":2.6457513110645907},"105":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":2.449489742783178},"110":{"tf":2.8284271247461903},"111":{"tf":1.7320508075688772},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"120":{"tf":3.872983346207417},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":3.4641016151377544},"125":{"tf":3.1622776601683795},"126":{"tf":1.4142135623730951},"127":{"tf":3.3166247903554},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"135":{"tf":1.7320508075688772},"137":{"tf":2.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":2.0},"146":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":3.0},"174":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":2.8284271247461903},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":2.0},"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":3.0},"197":{"tf":2.449489742783178},"198":{"tf":2.449489742783178},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"208":{"tf":1.0},"21":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":2.449489742783178},"231":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":4.69041575982343},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"277":{"tf":1.0},"28":{"tf":2.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":2.0},"286":{"tf":2.0},"287":{"tf":2.0},"288":{"tf":4.898979485566356},"289":{"tf":4.898979485566356},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"318":{"tf":2.6457513110645907},"321":{"tf":1.7320508075688772},"322":{"tf":2.0},"330":{"tf":1.4142135623730951},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.4142135623730951},"376":{"tf":2.449489742783178},"377":{"tf":3.0},"379":{"tf":2.0},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":2.23606797749979},"388":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"408":{"tf":2.23606797749979},"409":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"425":{"tf":2.8284271247461903},"427":{"tf":2.6457513110645907},"428":{"tf":1.4142135623730951},"429":{"tf":2.23606797749979},"43":{"tf":1.0},"430":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":2.8284271247461903},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":2.23606797749979},"451":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":2.23606797749979},"467":{"tf":1.4142135623730951},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"476":{"tf":1.7320508075688772},"477":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"51":{"tf":1.0},"510":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"52":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"526":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":2.0},"534":{"tf":1.0},"537":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":2.23606797749979},"546":{"tf":1.4142135623730951},"547":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":2.23606797749979},"557":{"tf":1.7320508075688772},"560":{"tf":1.0},"563":{"tf":2.449489742783178},"565":{"tf":1.0},"566":{"tf":1.4142135623730951},"567":{"tf":2.23606797749979},"568":{"tf":2.0},"572":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":2.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.7320508075688772},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.4142135623730951},"591":{"tf":1.7320508075688772},"596":{"tf":1.0},"598":{"tf":1.4142135623730951},"60":{"tf":2.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":2.23606797749979},"603":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"609":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":2.23606797749979},"614":{"tf":1.7320508075688772},"619":{"tf":2.23606797749979},"621":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"624":{"tf":1.0},"625":{"tf":2.23606797749979},"626":{"tf":1.0},"630":{"tf":1.0},"632":{"tf":2.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"636":{"tf":2.23606797749979},"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"643":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"645":{"tf":2.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"671":{"tf":1.0},"677":{"tf":3.4641016151377544},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.449489742783178},"708":{"tf":1.7320508075688772},"709":{"tf":1.0},"71":{"tf":2.0},"710":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"716":{"tf":2.23606797749979},"718":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"73":{"tf":3.605551275463989},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.4142135623730951},"736":{"tf":1.0},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"74":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":2.0},"747":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"752":{"tf":2.449489742783178},"755":{"tf":1.0},"76":{"tf":2.449489742783178},"761":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":3.1622776601683795},"770":{"tf":1.4142135623730951},"772":{"tf":2.8284271247461903},"773":{"tf":1.0},"776":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":3.4641016151377544},"782":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":2.8284271247461903},"790":{"tf":1.7320508075688772},"791":{"tf":1.4142135623730951},"794":{"tf":1.0},"795":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":2.0},"807":{"tf":1.0},"809":{"tf":2.0},"81":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":2.0},"818":{"tf":1.4142135623730951},"82":{"tf":2.0},"823":{"tf":1.7320508075688772},"83":{"tf":2.6457513110645907},"830":{"tf":2.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"839":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.7320508075688772},"852":{"tf":1.7320508075688772},"853":{"tf":1.4142135623730951},"858":{"tf":1.0},"86":{"tf":2.23606797749979},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":2.449489742783178},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"871":{"tf":1.0},"875":{"tf":1.4142135623730951},"876":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":2.449489742783178},"880":{"tf":1.0},"89":{"tf":2.8284271247461903},"892":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.0},"907":{"tf":1.0},"91":{"tf":2.449489742783178},"911":{"tf":1.7320508075688772},"912":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":2.0},"917":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":2.0},"925":{"tf":1.0},"929":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"932":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":3.605551275463989},"941":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":3.0},"958":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"963":{"tf":1.0},"97":{"tf":2.449489742783178},"98":{"tf":3.1622776601683795},"99":{"tf":3.4641016151377544}},"s":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"396":{"tf":1.0}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"635":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"465":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"407":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"d":{"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":{".":{"d":{"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":{"(":{"2":{"0":{"1":{"9":{"df":1,"docs":{"551":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"551":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"553":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"555":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"438":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"d":{"df":3,"docs":{"666":{"tf":1.0},"667":{"tf":1.0},"801":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"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":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"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":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"477":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"481":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"643":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"449":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"544":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"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":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"428":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"417":{"tf":1.0}}}}}}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"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":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"[":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"112":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{"d":{".":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"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":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"4":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"532":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"566":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":63,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"110":{"tf":3.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":2.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"21":{"tf":2.449489742783178},"26":{"tf":1.0},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"377":{"tf":1.4142135623730951},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"665":{"tf":2.0},"668":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"679":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"830":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.4142135623730951},"853":{"tf":1.0},"864":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":3.0},"91":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"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":{},"t":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"20":{"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":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"565":{"tf":1.0},"566":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":3,"docs":{"200":{"tf":1.0},"203":{"tf":2.23606797749979},"254":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"160":{"tf":1.0},"716":{"tf":1.0},"765":{"tf":1.0},"818":{"tf":1.0},"860":{"tf":1.4142135623730951},"867":{"tf":1.0},"869":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"891":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"881":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"258":{"tf":1.0},"310":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"131":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"170":{"tf":1.0},"462":{"tf":1.4142135623730951},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"734":{"tf":1.0},"804":{"tf":1.4142135623730951},"939":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":2,"docs":{"261":{"tf":1.0},"267":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":2,"docs":{"823":{"tf":1.0},"862":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":4,"docs":{"256":{"tf":1.0},"306":{"tf":1.0},"804":{"tf":1.0},"916":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"103":{"tf":1.0},"471":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"582":{"tf":1.0},"591":{"tf":1.4142135623730951},"737":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":11,"docs":{"131":{"tf":1.4142135623730951},"467":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"836":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"19":{"tf":1.0},"818":{"tf":1.4142135623730951},"840":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":15,"docs":{"100":{"tf":1.7320508075688772},"422":{"tf":1.0},"537":{"tf":1.0},"644":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"805":{"tf":1.0},"837":{"tf":1.0},"844":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0},"99":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"21":{"tf":1.0},"289":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0},"825":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"814":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"173":{"tf":1.0},"231":{"tf":1.0},"288":{"tf":1.0},"834":{"tf":1.0}}}},"m":{"df":1,"docs":{"288":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"127":{"tf":1.0},"155":{"tf":1.4142135623730951},"168":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"274":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"742":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}},"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":21,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.0},"237":{"tf":1.0},"318":{"tf":2.6457513110645907},"671":{"tf":1.4142135623730951},"673":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"789":{"tf":1.0},"79":{"tf":1.7320508075688772},"801":{"tf":1.0},"803":{"tf":1.0},"818":{"tf":1.4142135623730951},"835":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951}},"l":{"df":7,"docs":{"132":{"tf":1.4142135623730951},"274":{"tf":1.0},"431":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"762":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"837":{"tf":1.4142135623730951},"862":{"tf":1.0},"923":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"934":{"tf":1.0},"950":{"tf":1.7320508075688772},"956":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"160":{"tf":1.0},"402":{"tf":1.0},"711":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"53":{"tf":1.0},"958":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"142":{"tf":2.0},"289":{"tf":1.0},"456":{"tf":1.0},"493":{"tf":1.0},"804":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"65":{"tf":1.0},"861":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":62,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":2.0},"328":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"772":{"tf":1.4142135623730951},"802":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"84":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.7320508075688772},"859":{"tf":1.0},"862":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"875":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"969":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"864":{"tf":1.0},"925":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"119":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"65":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"834":{"tf":1.4142135623730951},"843":{"tf":1.0},"865":{"tf":1.0},"916":{"tf":1.0}}}},"z":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"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":{"/":{"2":{"df":4,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"677":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"2":{"df":3,"docs":{"138":{"tf":1.0},"292":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"1":{"df":1,"docs":{"301":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"l":{"a":{"'":{"df":6,"docs":{"13":{"tf":1.0},"289":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"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":{".":{"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":{"316":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"473":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.4142135623730951},"373":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"555":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"121":{"tf":1.0},"31":{"tf":1.0},"659":{"tf":1.0},"713":{"tf":1.0}}}},"/":{"<":{"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"316":{"tf":1.0},"317":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"578":{"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":13,"docs":{"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"h":{"df":56,"docs":{"110":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"660":{"tf":1.0},"688":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"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":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"693":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"923":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"342":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"693":{"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":{"34":{"tf":1.0}}}}}}}},"df":10,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"654":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"713":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"393":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"383":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"574":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":1,"docs":{"551":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"553":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"437":{"tf":1.0}},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"507":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"585":{"tf":1.4142135623730951},"586":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"623":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"519":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"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":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"480":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"448":{"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"540":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"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":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"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":{},"s":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"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":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":0,"docs":{},"e":{"d":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"]":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"687":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":18,"docs":{"133":{"tf":1.0},"21":{"tf":1.4142135623730951},"268":{"tf":1.0},"289":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"656":{"tf":1.0},"677":{"tf":1.0},"7":{"tf":1.0},"712":{"tf":1.0},"73":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0}},"’":{"df":1,"docs":{"704":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"958":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"s":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"117":{"tf":1.0},"137":{"tf":1.4142135623730951},"22":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.0},"710":{"tf":1.0},"80":{"tf":1.4142135623730951},"846":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"728":{"tf":1.0},"814":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":38,"docs":{"103":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"192":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"34":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.4142135623730951},"462":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951},"549":{"tf":1.0},"674":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"76":{"tf":1.7320508075688772},"792":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"22":{"tf":2.0},"847":{"tf":1.0},"859":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"811":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"652":{"tf":1.0},"811":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"799":{"tf":1.0}}}},"w":{"1":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772}}},"2":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0}}},"3":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"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":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"701":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"693":{"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":{},"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":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"d":{"df":2,"docs":{"20":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"/":{"a":{"df":6,"docs":{"388":{"tf":1.0},"409":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"534":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":112,"docs":{"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":2.23606797749979},"289":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"292":{"tf":1.0},"294":{"tf":2.23606797749979},"295":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"315":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"651":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.0},"687":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"731":{"tf":1.4142135623730951},"736":{"tf":1.0},"782":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"823":{"tf":1.0},"83":{"tf":2.0},"834":{"tf":1.0},"84":{"tf":1.4142135623730951},"857":{"tf":1.0},"864":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"915":{"tf":1.0},"921":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.0},"956":{"tf":1.0},"964":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":5,"docs":{"104":{"tf":1.0},"157":{"tf":1.0},"687":{"tf":2.23606797749979},"697":{"tf":1.0},"83":{"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":{"d":{"/":{"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":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"17":{"tf":1.0}}}}}}},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"456":{"tf":1.4142135623730951},"460":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.7320508075688772},"499":{"tf":1.0},"501":{"tf":1.4142135623730951},"557":{"tf":1.0},"804":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"v":{"df":8,"docs":{"12":{"tf":1.0},"317":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"775":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":2.23606797749979},"853":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"376":{"tf":1.0},"414":{"tf":2.449489742783178},"418":{"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":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"289":{"tf":1.0},"328":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"895":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"844":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"df":5,"docs":{"730":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"883":{"tf":1.0}}}},"df":1,"docs":{"224":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":30,"docs":{"105":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"330":{"tf":1.0},"347":{"tf":1.4142135623730951},"649":{"tf":1.0},"66":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"922":{"tf":1.0},"969":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":91,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":3.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"297":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":2.0},"326":{"tf":1.0},"338":{"tf":1.4142135623730951},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"401":{"tf":1.0},"43":{"tf":1.0},"473":{"tf":1.0},"52":{"tf":1.0},"533":{"tf":1.0},"583":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"621":{"tf":1.0},"647":{"tf":1.0},"652":{"tf":1.0},"662":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"70":{"tf":1.0},"710":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"762":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"80":{"tf":1.7320508075688772},"807":{"tf":1.7320508075688772},"824":{"tf":1.0},"828":{"tf":1.0},"838":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":27,"docs":{"376":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"497":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.0},"517":{"tf":1.0},"520":{"tf":1.0},"575":{"tf":1.4142135623730951},"578":{"tf":2.0},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":2.0},"606":{"tf":1.0},"609":{"tf":1.4142135623730951},"621":{"tf":1.0},"816":{"tf":1.0},"915":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"28":{"tf":1.0},"326":{"tf":1.0},"644":{"tf":1.4142135623730951},"894":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{":":{"5":{".":{"6":{".":{"0":{"@":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"820":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"626":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":2.23606797749979}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"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":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{},"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":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"624":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"(":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"589":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"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":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"623":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"519":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"520":{"tf":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":{"517":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"273":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"590":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"710":{"tf":1.0},"779":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"915":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"127":{"tf":4.123105625617661},"135":{"tf":1.0},"168":{"tf":1.0},"288":{"tf":1.4142135623730951},"401":{"tf":1.0},"412":{"tf":1.0},"645":{"tf":1.0},"752":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":1.0},"830":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0}}}}}}}}}}}},"w":{"df":106,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"117":{"tf":2.0},"12":{"tf":1.0},"132":{"tf":1.4142135623730951},"140":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":2.23606797749979},"26":{"tf":1.0},"288":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"35":{"tf":1.0},"379":{"tf":1.0},"425":{"tf":2.449489742783178},"445":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"528":{"tf":2.6457513110645907},"55":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"563":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"661":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"680":{"tf":1.0},"69":{"tf":1.0},"691":{"tf":1.0},"693":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"701":{"tf":1.0},"71":{"tf":2.0},"711":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"721":{"tf":1.4142135623730951},"725":{"tf":1.0},"727":{"tf":1.7320508075688772},"729":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"779":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":2.23606797749979},"8":{"tf":1.7320508075688772},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"866":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"895":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":2.0},"929":{"tf":1.0},"932":{"tf":1.0},"942":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.7320508075688772},"961":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"274":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"929":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"117":{"tf":1.0},"678":{"tf":1.4142135623730951},"842":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":21,"docs":{"127":{"tf":1.7320508075688772},"13":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.0},"184":{"tf":2.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"318":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"680":{"tf":1.0},"711":{"tf":1.0},"823":{"tf":1.0},"839":{"tf":1.0},"958":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"677":{"tf":1.0},"871":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"254":{"tf":1.0},"60":{"tf":1.0},"83":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"765":{"tf":1.0},"772":{"tf":1.0}}},"m":{"b":{"df":0,"docs":{},"u":{"df":21,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.0},"198":{"tf":2.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"211":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"738":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"34":{"tf":1.7320508075688772},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"947":{"tf":1.0},"958":{"tf":1.0}}}},"df":3,"docs":{"912":{"tf":1.4142135623730951},"913":{"tf":1.0},"939":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}}}}}}}},"df":37,"docs":{"184":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"393":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.4142135623730951},"491":{"tf":1.0},"529":{"tf":1.4142135623730951},"541":{"tf":1.0},"551":{"tf":1.0},"575":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.4142135623730951},"606":{"tf":1.0},"609":{"tf":1.4142135623730951},"621":{"tf":1.0},"632":{"tf":1.0},"741":{"tf":1.4142135623730951},"762":{"tf":1.0},"802":{"tf":1.0},"815":{"tf":1.0},"831":{"tf":1.0},"866":{"tf":1.0},"905":{"tf":1.0}},"e":{"df":45,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"316":{"tf":2.0},"318":{"tf":1.4142135623730951},"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"685":{"tf":1.0},"70":{"tf":1.4142135623730951},"765":{"tf":1.0},"772":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"663":{"tf":1.0},"665":{"tf":1.0},"682":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":86,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"291":{"tf":1.0},"300":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"344":{"tf":1.0},"377":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"514":{"tf":1.0},"546":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.4142135623730951},"568":{"tf":1.0},"572":{"tf":1.0},"580":{"tf":1.0},"664":{"tf":1.0},"667":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.0},"684":{"tf":1.0},"701":{"tf":1.0},"719":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"807":{"tf":1.0},"824":{"tf":1.0},"83":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"927":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"h":{"df":7,"docs":{"204":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"471":{"tf":1.0},"649":{"tf":1.0},"667":{"tf":1.0},"796":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"44":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"198":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":36,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.7320508075688772},"292":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":84,"docs":{"115":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.7320508075688772},"551":{"tf":2.6457513110645907},"652":{"tf":1.0},"677":{"tf":1.0},"719":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.7320508075688772},"731":{"tf":1.0},"732":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"740":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"763":{"tf":1.0},"772":{"tf":2.6457513110645907},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"789":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.7320508075688772},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"839":{"tf":2.0},"842":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":2.23606797749979},"854":{"tf":1.0},"857":{"tf":1.4142135623730951},"858":{"tf":2.449489742783178},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.6457513110645907},"862":{"tf":2.0},"863":{"tf":1.0},"864":{"tf":2.449489742783178},"865":{"tf":2.23606797749979},"866":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"895":{"tf":1.0},"912":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"912":{"tf":1.0},"939":{"tf":1.0},"958":{"tf":1.0}}},"x":{"df":2,"docs":{"689":{"tf":1.0},"690":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":8,"docs":{"406":{"tf":1.0},"427":{"tf":1.0},"448":{"tf":1.4142135623730951},"464":{"tf":1.0},"531":{"tf":1.0},"553":{"tf":1.0},"600":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"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":1,"docs":{"529":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"834":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"459":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"765":{"tf":1.4142135623730951},"772":{"tf":2.0},"796":{"tf":1.4142135623730951},"858":{"tf":1.0},"865":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":100,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"127":{"tf":3.1622776601683795},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"21":{"tf":1.0},"267":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"425":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"517":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"591":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"612":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"773":{"tf":1.0},"806":{"tf":1.0},"834":{"tf":2.0},"849":{"tf":1.0},"897":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"618":{"tf":1.4142135623730951},"619":{"tf":1.0},"621":{"tf":2.0},"623":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":41,"docs":{"131":{"tf":1.0},"170":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"376":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"638":{"tf":1.0},"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"644":{"tf":2.449489742783178},"645":{"tf":1.7320508075688772},"652":{"tf":1.0},"663":{"tf":1.0},"679":{"tf":1.0},"693":{"tf":1.0},"718":{"tf":1.0},"727":{"tf":1.7320508075688772},"730":{"tf":1.0},"732":{"tf":1.0},"772":{"tf":1.4142135623730951},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":2.0},"805":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"834":{"tf":1.0},"908":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"875":{"tf":1.0},"915":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"719":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"814":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"120":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"170":{"tf":1.0},"22":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"454":{"tf":1.0},"840":{"tf":1.0},"864":{"tf":1.0},"908":{"tf":1.0}},"r":{"df":5,"docs":{"376":{"tf":1.0},"560":{"tf":1.0},"76":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"683":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"237":{"tf":1.0},"265":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"234":{"tf":1.0},"673":{"tf":1.0},"785":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"671":{"tf":2.0},"673":{"tf":1.4142135623730951},"835":{"tf":1.0},"915":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"549":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"802":{"tf":1.4142135623730951},"881":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"l":{"d":{"df":6,"docs":{"288":{"tf":1.4142135623730951},"741":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":2.23606797749979},"874":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"224":{"tf":1.0},"274":{"tf":1.0},"731":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"844":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}}}},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"478":{"tf":1.0}}}}}}},"df":1,"docs":{"478":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":21,"docs":{"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"379":{"tf":1.0},"570":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"902":{"tf":1.0},"919":{"tf":1.4142135623730951},"924":{"tf":1.0},"927":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"315":{"tf":1.4142135623730951},"324":{"tf":1.0},"338":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"679":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":82,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"477":{"tf":1.0},"493":{"tf":1.0},"519":{"tf":1.0},"538":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"613":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"678":{"tf":1.0},"691":{"tf":1.0},"693":{"tf":1.0},"697":{"tf":1.0},"741":{"tf":1.0},"751":{"tf":1.0},"79":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"80":{"tf":1.0},"801":{"tf":1.0},"809":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"961":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"_":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"266":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"671":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":2.449489742783178}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"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":1,"docs":{"478":{"tf":1.4142135623730951}}},"df":1,"docs":{"478":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"d":{"(":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"473":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":1,"docs":{"473":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":7,"docs":{"17":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"649":{"tf":1.0},"853":{"tf":1.0},"919":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"151":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":2.23606797749979},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"241":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"569":{"tf":1.0},"890":{"tf":1.0},"969":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":19,"docs":{"107":{"tf":1.0},"132":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.4142135623730951},"340":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"78":{"tf":1.0},"786":{"tf":1.0},"804":{"tf":1.0},"86":{"tf":1.0},"99":{"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":4,"docs":{"103":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"131":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"330":{"tf":1.0},"734":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"565":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":94,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":3.4641016151377544},"13":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.1622776601683795},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":2.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.4142135623730951},"315":{"tf":2.6457513110645907},"326":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":2.6457513110645907},"440":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"644":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":2.0},"67":{"tf":1.0},"682":{"tf":2.0},"728":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"801":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"861":{"tf":1.0},"871":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"951":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"958":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":60,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.0},"346":{"tf":1.7320508075688772},"352":{"tf":1.0},"363":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"48":{"tf":1.4142135623730951},"499":{"tf":1.0},"522":{"tf":1.0},"565":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"689":{"tf":1.0},"692":{"tf":1.0},"800":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"956":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{":":{"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":{"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"656":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"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":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.0},"227":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"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":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"656":{"tf":1.0},"793":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"393":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"632":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"404":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"598":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"574":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951}}}}}}}},"n":{"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":3,"docs":{"621":{"tf":2.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0}}}}}},"df":4,"docs":{"315":{"tf":1.0},"338":{"tf":1.0},"649":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"425":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951},"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":{}}}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{":":{"4":{".":{"3":{".":{"1":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"117":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.0},"823":{"tf":1.0}}}}}}},"s":{"/":{"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":{"271":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"762":{"tf":1.4142135623730951},"923":{"tf":1.0}}}}}}},"df":13,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"923":{"tf":1.4142135623730951},"938":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"834":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"924":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"175":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"367":{"tf":1.0},"572":{"tf":1.0},"840":{"tf":1.0},"855":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"859":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":46,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"26":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"4":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.7320508075688772},"63":{"tf":1.0},"630":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"708":{"tf":1.0},"734":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"923":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}},"g":{"df":0,"docs":{},"o":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}},"n":{"df":2,"docs":{"265":{"tf":1.0},"379":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":2.23606797749979},"17":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"276":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"667":{"tf":1.0},"683":{"tf":1.0},"697":{"tf":1.0},"852":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"289":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"830":{"tf":1.4142135623730951},"861":{"tf":1.0},"88":{"tf":1.0},"922":{"tf":1.0},"927":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"127":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}},"df":19,"docs":{"121":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"289":{"tf":1.0},"456":{"tf":1.0},"476":{"tf":1.0},"517":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"677":{"tf":1.0},"711":{"tf":1.0},"74":{"tf":1.0},"823":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"471":{"tf":1.0},"761":{"tf":1.0},"773":{"tf":1.0},"912":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"190":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"204":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"520":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"315":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"668":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.7320508075688772},"773":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":14,"docs":{"0":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"653":{"tf":1.0},"70":{"tf":1.0},"704":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"775":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"667":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"289":{"tf":1.0},"647":{"tf":1.0},"78":{"tf":1.0},"853":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"288":{"tf":1.0},"297":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"660":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":2.0},"688":{"tf":1.0},"689":{"tf":1.0},"776":{"tf":1.0},"793":{"tf":1.4142135623730951},"798":{"tf":1.0},"805":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"858":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"944":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"789":{"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"590":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":161,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.4142135623730951},"249":{"tf":1.0},"254":{"tf":3.1622776601683795},"264":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.7320508075688772},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"571":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"625":{"tf":1.0},"628":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"652":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.4142135623730951},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"8":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"9":{"tf":1.0},"900":{"tf":1.0},"905":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.4142135623730951},"960":{"tf":1.7320508075688772},"961":{"tf":1.0},"963":{"tf":2.0},"964":{"tf":1.4142135623730951},"965":{"tf":1.7320508075688772},"968":{"tf":2.6457513110645907},"969":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0}}}},"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"477":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"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":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"481":{"tf":1.0},"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"480":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"623":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"623":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"199":{"tf":1.0},"459":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"786":{"tf":1.0},"812":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"969":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"814":{"tf":1.0},"862":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":88,"docs":{"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"190":{"tf":1.4142135623730951},"211":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"409":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.4142135623730951},"521":{"tf":1.0},"522":{"tf":1.7320508075688772},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"560":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.7320508075688772},"590":{"tf":1.0},"591":{"tf":1.7320508075688772},"602":{"tf":1.4142135623730951},"603":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"625":{"tf":1.4142135623730951},"636":{"tf":1.4142135623730951},"644":{"tf":2.23606797749979},"645":{"tf":1.0},"693":{"tf":1.0},"701":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"789":{"tf":1.0},"801":{"tf":1.0},"805":{"tf":1.0},"857":{"tf":1.0},"867":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"933":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"17":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"698":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"869":{"tf":1.0}}}}}}}}}}}},"r":{"df":10,"docs":{"17":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"692":{"tf":1.4142135623730951},"707":{"tf":1.0},"830":{"tf":1.0},"915":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}}}}},"t":{"df":25,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"679":{"tf":1.0},"698":{"tf":1.0},"711":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"793":{"tf":1.0},"834":{"tf":1.4142135623730951},"853":{"tf":1.0},"854":{"tf":1.0},"958":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.4142135623730951},"268":{"tf":1.0},"289":{"tf":1.0},"454":{"tf":1.0},"618":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"74":{"tf":1.0},"78":{"tf":1.0},"923":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"289":{"tf":1.0},"645":{"tf":1.0}}},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"643":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"643":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"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":{"640":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":44,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.7320508075688772},"233":{"tf":1.0},"238":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.7320508075688772},"598":{"tf":1.0},"609":{"tf":1.0},"640":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.4142135623730951},"682":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"796":{"tf":1.0},"799":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"830":{"tf":1.0},"837":{"tf":1.0},"914":{"tf":1.0},"98":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"435":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"289":{"tf":1.4142135623730951},"435":{"tf":2.6457513110645907},"437":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"254":{"tf":2.8284271247461903},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.0}}},"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":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":6,"docs":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"383":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0}}}},"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":{},"j":{"df":3,"docs":{"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"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":0,"docs":{},"j":{"df":3,"docs":{"621":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"652":{"tf":1.0}}}},"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":{},"j":{"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"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":{},"j":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"26":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.7320508075688772},"443":{"tf":1.0},"538":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"686":{"tf":1.7320508075688772},"692":{"tf":1.0},"769":{"tf":1.0},"782":{"tf":1.0},"802":{"tf":1.4142135623730951},"814":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"949":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":23,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"142":{"tf":1.4142135623730951},"217":{"tf":1.0},"254":{"tf":1.4142135623730951},"298":{"tf":1.0},"471":{"tf":1.0},"644":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":2.23606797749979},"709":{"tf":1.0},"710":{"tf":1.4142135623730951},"716":{"tf":1.0},"755":{"tf":1.0},"759":{"tf":1.0},"853":{"tf":1.0},"865":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"951":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":2,"docs":{"652":{"tf":1.4142135623730951},"701":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"953":{"tf":1.0}}}},"n":{"d":{"df":15,"docs":{"127":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"146":{"tf":1.0},"22":{"tf":1.4142135623730951},"313":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"734":{"tf":1.0},"754":{"tf":1.0},"809":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.4142135623730951},"834":{"tf":1.0},"871":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0}}}}},"p":{"8":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":2.0}}}}}}}},"df":28,"docs":{"146":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.0},"258":{"tf":3.0},"262":{"tf":1.0},"264":{"tf":1.0},"315":{"tf":1.4142135623730951},"318":{"tf":1.0},"377":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.4142135623730951},"577":{"tf":1.0},"588":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"836":{"tf":1.4142135623730951},"864":{"tf":1.0},"963":{"tf":1.0}},"f":{"df":1,"docs":{"136":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"915":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":25,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.0},"308":{"tf":1.0},"321":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"456":{"tf":1.7320508075688772},"46":{"tf":1.0},"484":{"tf":1.4142135623730951},"53":{"tf":1.0},"538":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.4142135623730951},"73":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"94":{"tf":1.0},"958":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"100":{"tf":1.0},"175":{"tf":1.0},"288":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"590":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.7320508075688772},"915":{"tf":1.0}}}},"t":{"df":8,"docs":{"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"715":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"130":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"567":{"tf":1.0},"674":{"tf":1.0},"78":{"tf":1.0},"788":{"tf":1.7320508075688772},"842":{"tf":1.0},"871":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":2.23606797749979},"958":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"42":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"671":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"#":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"'":{"df":4,"docs":{"139":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0}}},"(":{"df":1,"docs":{"117":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"275":{"tf":1.0},"298":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":15,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"326":{"tf":1.0},"864":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"765":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"297":{"tf":1.7320508075688772},"727":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"864":{"tf":1.0}}}}}},"df":292,"docs":{"100":{"tf":5.291502622129181},"101":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":2.449489742783178},"125":{"tf":5.0990195135927845},"126":{"tf":3.3166247903554},"127":{"tf":6.855654600401044},"128":{"tf":2.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":2.23606797749979},"131":{"tf":3.3166247903554},"132":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"134":{"tf":2.449489742783178},"135":{"tf":3.7416573867739413},"136":{"tf":3.3166247903554},"137":{"tf":2.6457513110645907},"138":{"tf":2.6457513110645907},"139":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":2.23606797749979},"145":{"tf":3.605551275463989},"146":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":2.449489742783178},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.23606797749979},"172":{"tf":1.0},"173":{"tf":2.6457513110645907},"174":{"tf":1.0},"175":{"tf":3.0},"176":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"184":{"tf":4.242640687119285},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":5.0},"231":{"tf":3.605551275463989},"233":{"tf":2.449489742783178},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":2.23606797749979},"243":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":3.4641016151377544},"258":{"tf":4.0},"259":{"tf":2.6457513110645907},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"264":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":2.6457513110645907},"276":{"tf":2.449489742783178},"278":{"tf":1.0},"289":{"tf":4.0},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":2.6457513110645907},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":4.58257569495584},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"315":{"tf":4.0},"316":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":2.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":2.0},"338":{"tf":2.0},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.7320508075688772},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.4142135623730951},"416":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"468":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"619":{"tf":1.0},"623":{"tf":1.0},"632":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"642":{"tf":1.0},"647":{"tf":2.0},"649":{"tf":2.6457513110645907},"651":{"tf":1.4142135623730951},"652":{"tf":4.898979485566356},"653":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":2.23606797749979},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"674":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":3.4641016151377544},"679":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":2.449489742783178},"698":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"704":{"tf":1.0},"709":{"tf":2.23606797749979},"710":{"tf":2.23606797749979},"711":{"tf":2.449489742783178},"715":{"tf":1.7320508075688772},"716":{"tf":1.0},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"723":{"tf":1.0},"727":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.4142135623730951},"730":{"tf":1.0},"734":{"tf":2.6457513110645907},"736":{"tf":1.0},"738":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":2.449489742783178},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"765":{"tf":1.0},"78":{"tf":2.23606797749979},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":5.291502622129181},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"806":{"tf":2.23606797749979},"807":{"tf":2.23606797749979},"809":{"tf":1.4142135623730951},"812":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":1.4142135623730951},"834":{"tf":2.449489742783178},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.7320508075688772},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"860":{"tf":1.4142135623730951},"861":{"tf":2.0},"862":{"tf":1.4142135623730951},"864":{"tf":2.23606797749979},"865":{"tf":2.23606797749979},"867":{"tf":1.7320508075688772},"869":{"tf":1.7320508075688772},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"875":{"tf":1.0},"876":{"tf":1.0},"878":{"tf":1.0},"880":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"907":{"tf":1.0},"913":{"tf":2.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.7320508075688772},"916":{"tf":2.0},"917":{"tf":1.4142135623730951},"919":{"tf":2.0},"920":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":2.8284271247461903},"930":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":2.23606797749979},"952":{"tf":1.0},"956":{"tf":2.449489742783178},"958":{"tf":1.0},"963":{"tf":1.0},"99":{"tf":2.23606797749979}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"696":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"649":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"652":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":20,"docs":{"131":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":2.449489742783178},"26":{"tf":1.0},"278":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":2.0},"665":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.7320508075688772},"864":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.4142135623730951}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":2,"docs":{"210":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"858":{"tf":1.0},"869":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"316":{"tf":1.0},"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":7,"docs":{"115":{"tf":1.0},"19":{"tf":2.0},"43":{"tf":1.0},"673":{"tf":1.0},"692":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"136":{"tf":1.0},"160":{"tf":1.0},"184":{"tf":1.4142135623730951},"218":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":2.0},"77":{"tf":1.0},"864":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"132":{"tf":1.0},"376":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"595":{"tf":1.0},"602":{"tf":1.4142135623730951},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"20":{"tf":1.0},"338":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"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":{},"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":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"138":{"tf":1.0},"147":{"tf":1.0},"26":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"683":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"969":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"652":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"636":{"tf":1.0}}}}}}}},"n":{"df":7,"docs":{"190":{"tf":1.0},"344":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":4,"docs":{"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"315":{"tf":1.0}}},"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}},"df":68,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":2.0},"136":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"34":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"356":{"tf":1.7320508075688772},"379":{"tf":1.0},"456":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"653":{"tf":1.0},"690":{"tf":1.0},"697":{"tf":1.0},"705":{"tf":1.0},"794":{"tf":1.0},"806":{"tf":1.0},"815":{"tf":1.0},"831":{"tf":1.0},"854":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.4142135623730951},"9":{"tf":1.0},"902":{"tf":1.4142135623730951},"913":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":2.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"936":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":3,"docs":{"923":{"tf":1.0},"928":{"tf":1.0},"938":{"tf":1.0}}}}}}}}}}},"y":{"df":3,"docs":{"100":{"tf":1.0},"79":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":30,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"124":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"422":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"514":{"tf":1.0},"537":{"tf":1.0},"582":{"tf":1.0},"65":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"85":{"tf":1.0},"860":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"136":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":32,"docs":{"13":{"tf":3.7416573867739413},"663":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.4142135623730951},"672":{"tf":1.0},"693":{"tf":2.449489742783178},"694":{"tf":1.4142135623730951},"695":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"721":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"786":{"tf":1.4142135623730951},"792":{"tf":1.7320508075688772},"793":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"924":{"tf":1.0},"951":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"203":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"63":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"700":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"924":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":12,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.6457513110645907},"191":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0}}},"p":{"df":3,"docs":{"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"254":{"tf":1.0},"289":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"401":{"tf":1.0},"412":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.7320508075688772},"223":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"270":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"70":{"tf":1.0},"741":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"867":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"924":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":9,"docs":{"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"150":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"750":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"190":{"tf":1.4142135623730951},"262":{"tf":1.0},"267":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"64":{"tf":1.0},"73":{"tf":1.0},"744":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"814":{"tf":1.0},"833":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"234":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":23,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"878":{"tf":1.0},"962":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{".":{"0":{"df":5,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"903":{"tf":1.0}}},"1":{"df":3,"docs":{"899":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"2":{"df":1,"docs":{"898":{"tf":1.0}}},"3":{"df":1,"docs":{"897":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"896":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"184":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"131":{"tf":2.449489742783178},"132":{"tf":1.0},"289":{"tf":1.0},"734":{"tf":1.4142135623730951},"804":{"tf":1.0}},"e":{"_":{"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":{"734":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"560":{"tf":1.0},"640":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"326":{"tf":1.0},"720":{"tf":1.0},"807":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"259":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":2.0},"317":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.4142135623730951},"596":{"tf":1.0},"607":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.7320508075688772},"960":{"tf":1.0},"968":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"285":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":2,"docs":{"720":{"tf":1.0},"757":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"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":{"782":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"782":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"757":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"912":{"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":1,"docs":{"252":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"130":{"tf":1.0},"136":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"67":{"tf":1.0},"845":{"tf":1.0},"951":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"967":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"667":{"tf":1.0},"864":{"tf":1.0}}}}},"s":{"df":9,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"198":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"17":{"tf":1.0},"203":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"692":{"tf":1.4142135623730951},"720":{"tf":1.0},"742":{"tf":1.0},"771":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"913":{"tf":1.0},"929":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"118":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"478":{"tf":1.0},"492":{"tf":1.0},"65":{"tf":1.0},"711":{"tf":1.4142135623730951},"752":{"tf":1.0},"791":{"tf":1.0},"796":{"tf":1.0},"806":{"tf":1.4142135623730951},"824":{"tf":1.0},"846":{"tf":1.0},"916":{"tf":1.0},"924":{"tf":1.0}},"s":{"df":8,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"254":{"tf":1.0},"654":{"tf":1.0},"782":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"52":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"962":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":17,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"217":{"tf":1.0},"834":{"tf":1.0},"864":{"tf":1.0},"880":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"324":{"tf":1.0},"425":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"563":{"tf":1.0},"671":{"tf":1.0},"814":{"tf":1.0},"837":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"862":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"104":{"tf":1.0},"680":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"276":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"704":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"402":{"tf":1.0},"619":{"tf":1.0}}}},"df":4,"docs":{"254":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.0},"912":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":2,"docs":{"254":{"tf":1.0},"675":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":45,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"155":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"263":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":2.8284271247461903},"316":{"tf":2.6457513110645907},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.7320508075688772},"439":{"tf":1.0},"441":{"tf":1.0},"459":{"tf":1.7320508075688772},"646":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"711":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"816":{"tf":1.0},"83":{"tf":1.0},"832":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"115":{"tf":1.7320508075688772},"330":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"804":{"tf":1.0},"830":{"tf":1.4142135623730951},"858":{"tf":1.0}},"t":{"'":{"df":7,"docs":{"224":{"tf":1.0},"227":{"tf":1.0},"355":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}},"df":54,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"132":{"tf":2.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.4142135623730951},"221":{"tf":1.0},"224":{"tf":1.7320508075688772},"226":{"tf":1.0},"268":{"tf":1.7320508075688772},"276":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"37":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"580":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"647":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"669":{"tf":2.0},"67":{"tf":1.0},"674":{"tf":1.0},"685":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"853":{"tf":1.0},"9":{"tf":2.6457513110645907},"908":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"132":{"tf":1.0},"289":{"tf":2.0},"533":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"252":{"tf":1.0},"653":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"83":{"tf":1.0},"958":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"834":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"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":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":60,"docs":{"0":{"tf":2.23606797749979},"10":{"tf":1.7320508075688772},"103":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"122":{"tf":2.0},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"43":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.0},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"891":{"tf":1.0},"894":{"tf":1.0},"908":{"tf":1.0},"912":{"tf":1.4142135623730951},"915":{"tf":1.0},"92":{"tf":1.0},"958":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"956":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"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":{"317":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"840":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"223":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"802":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"749":{"tf":1.0},"777":{"tf":1.0},"929":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.4142135623730951},"208":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"568":{"tf":1.4142135623730951},"580":{"tf":1.0},"582":{"tf":1.0},"618":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"905":{"tf":1.0},"951":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"963":{"tf":1.0},"964":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"?":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"231":{"tf":1.0},"232":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"541":{"tf":1.0},"854":{"tf":1.0},"922":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":109,"docs":{"10":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.4142135623730951},"330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"37":{"tf":1.0},"379":{"tf":1.0},"39":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.4142135623730951},"48":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":2.0},"494":{"tf":1.7320508075688772},"505":{"tf":1.0},"514":{"tf":1.0},"517":{"tf":1.0},"57":{"tf":1.0},"574":{"tf":1.0},"585":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"653":{"tf":1.0},"66":{"tf":1.0},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"685":{"tf":1.7320508075688772},"686":{"tf":1.0},"692":{"tf":1.0},"701":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"793":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"9":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.4142135623730951},"953":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":3.3166247903554}}},"df":0,"docs":{},"s":{"df":1,"docs":{"698":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"590":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"697":{"tf":1.4142135623730951},"7":{"tf":1.0},"773":{"tf":1.4142135623730951},"784":{"tf":1.0},"842":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"782":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":12,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":2.0},"777":{"tf":1.0},"778":{"tf":1.0},"806":{"tf":1.0},"850":{"tf":1.0},"913":{"tf":1.0},"926":{"tf":1.4142135623730951},"951":{"tf":1.0},"958":{"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":{"60":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}},"s":{"df":30,"docs":{"124":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"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},"285":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"459":{"tf":1.0},"580":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"924":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"t":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"140":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"924":{"tf":1.0}}}},"w":{"d":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"22":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"658":{"tf":1.0}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"318":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"837":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"690":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"3":{"df":3,"docs":{"21":{"tf":1.7320508075688772},"673":{"tf":1.0},"690":{"tf":1.0}}},"df":119,"docs":{"0":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.7320508075688772},"146":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":2.8284271247461903},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":2.449489742783178},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":2.23606797749979},"30":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":2.23606797749979},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"390":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"470":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.0},"513":{"tf":1.0},"529":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"605":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.0},"658":{"tf":1.7320508075688772},"670":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":2.8284271247461903},"690":{"tf":1.0},"721":{"tf":1.0},"725":{"tf":1.4142135623730951},"727":{"tf":1.0},"729":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"743":{"tf":1.0},"751":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"790":{"tf":1.0},"799":{"tf":1.0},"803":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.7320508075688772},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"820":{"tf":1.4142135623730951},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"842":{"tf":2.0},"845":{"tf":1.0},"846":{"tf":2.0},"847":{"tf":1.0},"849":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.4142135623730951},"858":{"tf":2.0},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":2.0},"869":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.0},"921":{"tf":1.4142135623730951},"939":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}}}},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":11,"docs":{"0":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"48":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.4142135623730951},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.4142135623730951},"934":{"tf":1.0}}}},"r":{"df":1,"docs":{"233":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"0":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"661":{"tf":1.0},"9":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.7320508075688772},"933":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"40":{"tf":1.0},"50":{"tf":2.0},"903":{"tf":1.0},"912":{"tf":1.7320508075688772},"924":{"tf":1.7320508075688772},"926":{"tf":1.0},"927":{"tf":1.4142135623730951},"934":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"194":{"tf":1.0},"197":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":24,"docs":{"132":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.4142135623730951},"600":{"tf":2.449489742783178},"601":{"tf":2.0},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"606":{"tf":1.4142135623730951},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"734":{"tf":1.0},"791":{"tf":1.4142135623730951},"817":{"tf":1.0},"830":{"tf":1.4142135623730951},"937":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"617":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"938":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"865":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"136":{"tf":1.0},"157":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"231":{"tf":2.0},"256":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"765":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":35,"docs":{"188":{"tf":1.0},"205":{"tf":1.0},"376":{"tf":1.0},"389":{"tf":1.0},"399":{"tf":1.0},"410":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":1.0},"535":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"569":{"tf":1.0},"592":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.7320508075688772},"637":{"tf":1.0},"646":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"959":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"u":{"df":2,"docs":{"310":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":14,"docs":{"168":{"tf":1.0},"310":{"tf":1.0},"649":{"tf":1.0},"718":{"tf":1.0},"720":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.4142135623730951},"774":{"tf":1.0},"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"157":{"tf":1.0},"953":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"963":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"135":{"tf":2.0},"834":{"tf":1.0}}},"df":5,"docs":{"761":{"tf":1.0},"769":{"tf":1.0},"912":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":3.7416573867739413}}}}}},"r":{"2":{"0":{"df":1,"docs":{"883":{"tf":1.0}}},"5":{"c":{"df":1,"docs":{"745":{"tf":1.0}}},"df":1,"docs":{"762":{"tf":1.0}}},"6":{"c":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"204":{"tf":1.0},"823":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"878":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"288":{"tf":1.0},"734":{"tf":1.0},"774":{"tf":1.0},"842":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"528":{"tf":1.0}}}}}}},"df":1,"docs":{"376":{"tf":1.0}},"g":{"df":7,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"471":{"tf":1.4142135623730951},"52":{"tf":1.0},"582":{"tf":1.4142135623730951},"65":{"tf":1.0},"86":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"264":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"78":{"tf":1.0},"878":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"623":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}},"df":25,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"376":{"tf":1.4142135623730951},"523":{"tf":1.0},"618":{"tf":1.7320508075688772},"619":{"tf":1.0},"621":{"tf":2.23606797749979},"623":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"626":{"tf":2.23606797749979},"736":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"804":{"tf":1.0},"836":{"tf":1.0},"846":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"929":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"590":{"tf":1.0},"592":{"tf":1.0}},"n":{"df":1,"docs":{"752":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"264":{"tf":1.0},"460":{"tf":1.0},"803":{"tf":1.0}}},"y":{"df":1,"docs":{"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"205":{"tf":1.0},"289":{"tf":1.0},"344":{"tf":1.0},"570":{"tf":1.0},"630":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"85":{"tf":1.0},"867":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"254":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"2":{"tf":1.0},"225":{"tf":1.0},"340":{"tf":1.0},"807":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"tf":1.0}}}},"i":{"df":2,"docs":{"115":{"tf":1.0},"254":{"tf":1.0}}},"m":{"df":1,"docs":{"912":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":13,"docs":{"184":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"248":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.0},"693":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"289":{"tf":1.0},"673":{"tf":1.0},"680":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"752":{"tf":1.0},"840":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.6457513110645907},"184":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":2.6457513110645907},"297":{"tf":1.0},"298":{"tf":2.23606797749979},"649":{"tf":1.0},"652":{"tf":3.3166247903554},"669":{"tf":1.0},"685":{"tf":1.0},"752":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":2.0},"834":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.7320508075688772},"865":{"tf":2.0},"914":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"134":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"523":{"tf":1.0},"578":{"tf":1.7320508075688772},"77":{"tf":1.0},"951":{"tf":1.0},"98":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"858":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"103":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"21":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"265":{"tf":1.0},"454":{"tf":1.0},"64":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"678":{"tf":1.0},"776":{"tf":1.0},"801":{"tf":1.0},"82":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"563":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":250,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":2.449489742783178},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.7320508075688772},"213":{"tf":1.0},"258":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":2.23606797749979},"376":{"tf":4.242640687119285},"377":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":2.23606797749979},"395":{"tf":1.0},"396":{"tf":2.23606797749979},"401":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"412":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":2.23606797749979},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"425":{"tf":3.7416573867739413},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":2.23606797749979},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":2.0},"478":{"tf":1.0},"480":{"tf":2.6457513110645907},"481":{"tf":2.23606797749979},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.7320508075688772},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.7320508075688772},"492":{"tf":1.7320508075688772},"493":{"tf":2.23606797749979},"494":{"tf":2.449489742783178},"496":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":2.23606797749979},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.7320508075688772},"507":{"tf":2.6457513110645907},"508":{"tf":2.449489742783178},"510":{"tf":1.0},"511":{"tf":1.0},"514":{"tf":1.7320508075688772},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":2.0},"519":{"tf":1.0},"520":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.7320508075688772},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":2.6457513110645907},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"537":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.0},"549":{"tf":1.7320508075688772},"550":{"tf":1.0},"551":{"tf":3.605551275463989},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.4142135623730951},"560":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.7320508075688772},"566":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.0},"575":{"tf":1.7320508075688772},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"583":{"tf":1.0},"584":{"tf":1.0},"585":{"tf":2.0},"586":{"tf":2.0},"588":{"tf":1.0},"589":{"tf":1.0},"593":{"tf":1.7320508075688772},"595":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":2.23606797749979},"606":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.7320508075688772},"611":{"tf":1.4142135623730951},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"629":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":2.449489742783178},"677":{"tf":1.4142135623730951},"679":{"tf":2.0},"680":{"tf":1.0},"71":{"tf":1.0},"711":{"tf":1.0},"718":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"761":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.7320508075688772},"776":{"tf":1.0},"78":{"tf":1.4142135623730951},"782":{"tf":1.0},"79":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"802":{"tf":1.0},"804":{"tf":1.7320508075688772},"807":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"87":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.4142135623730951},"895":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"92":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"937":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"956":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"854":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"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":1,"docs":{"834":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"184":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"254":{"tf":1.0},"640":{"tf":1.7320508075688772},"642":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"237":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"752":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.0},"294":{"tf":1.0},"84":{"tf":1.0},"865":{"tf":1.0}}},"df":0,"docs":{}}}},"df":7,"docs":{"17":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"322":{"tf":1.4142135623730951},"762":{"tf":1.0},"834":{"tf":1.0},"958":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"772":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"875":{"tf":1.0},"902":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"437":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":86,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.4142135623730951},"147":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.7320508075688772},"229":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"300":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"376":{"tf":1.0},"387":{"tf":1.7320508075688772},"390":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.7320508075688772},"411":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.7320508075688772},"432":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.7320508075688772},"453":{"tf":1.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.0},"486":{"tf":1.0},"488":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.7320508075688772},"536":{"tf":1.0},"545":{"tf":1.7320508075688772},"556":{"tf":1.7320508075688772},"559":{"tf":1.0},"567":{"tf":1.7320508075688772},"571":{"tf":1.0},"581":{"tf":1.0},"594":{"tf":1.0},"602":{"tf":1.7320508075688772},"605":{"tf":1.0},"613":{"tf":1.7320508075688772},"617":{"tf":1.0},"625":{"tf":1.7320508075688772},"628":{"tf":1.0},"636":{"tf":1.7320508075688772},"645":{"tf":1.7320508075688772},"654":{"tf":1.0},"659":{"tf":1.0},"769":{"tf":1.0},"8":{"tf":1.0},"811":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"924":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":2.0},"968":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"875":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"408":{"tf":1.0},"429":{"tf":1.0},"602":{"tf":1.0}}}}}}}},"df":1,"docs":{"408":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"460":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}},"x":{"df":3,"docs":{"364":{"tf":1.0},"371":{"tf":1.0},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"232":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"651":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"715":{"tf":1.0},"752":{"tf":1.0},"884":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"307":{"tf":1.0}}}}}}}}}}}}},"p":{"df":2,"docs":{"307":{"tf":1.0},"338":{"tf":1.0}}}}},"r":{"df":4,"docs":{"289":{"tf":1.0},"678":{"tf":1.0},"812":{"tf":1.0},"833":{"tf":1.4142135623730951}},"i":{"df":44,"docs":{"108":{"tf":1.0},"138":{"tf":1.4142135623730951},"20":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"387":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"499":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"708":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"750":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"567":{"tf":1.0},"680":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"239":{"tf":1.0},"254":{"tf":1.0},"273":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"391":{"tf":1.0},"412":{"tf":1.0},"488":{"tf":1.0},"515":{"tf":1.0},"583":{"tf":1.0},"606":{"tf":1.0},"709":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":2.23606797749979},"99":{"tf":1.0}}},"x":{"df":3,"docs":{"33":{"tf":1.0},"762":{"tf":1.0},"851":{"tf":1.0}}}},"df":9,"docs":{"142":{"tf":1.0},"170":{"tf":1.0},"376":{"tf":1.4142135623730951},"560":{"tf":1.0},"618":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":66,"docs":{"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"315":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.0},"781":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"846":{"tf":1.0},"855":{"tf":1.0},"86":{"tf":1.0},"868":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"888":{"tf":1.0},"893":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"9":{"tf":1.0},"901":{"tf":1.0},"912":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":7,"docs":{"259":{"tf":1.0},"288":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"326":{"tf":1.0},"647":{"tf":1.0},"665":{"tf":1.0},"858":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"184":{"tf":1.0},"754":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"142":{"tf":1.4142135623730951},"309":{"tf":1.0},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"838":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"203":{"tf":1.0},"254":{"tf":1.4142135623730951},"330":{"tf":1.0},"796":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":7,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"206":{"tf":1.0},"254":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0}}},"v":{"df":44,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"329":{"tf":1.0},"398":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"499":{"tf":1.7320508075688772},"522":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"614":{"tf":1.7320508075688772},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"744":{"tf":1.0},"752":{"tf":2.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":2.23606797749979},"771":{"tf":1.0},"772":{"tf":1.0},"779":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"830":{"tf":1.0},"833":{"tf":1.4142135623730951},"838":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.4142135623730951},"882":{"tf":1.0},"891":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0},"947":{"tf":1.0},"952":{"tf":1.0},"98":{"tf":2.23606797749979}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"743":{"tf":1.0},"754":{"tf":1.0}},"l":{"@":{"0":{".":{"5":{".":{"3":{"df":1,"docs":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"288":{"tf":1.0},"807":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0},"838":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"254":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"673":{"tf":1.0},"725":{"tf":1.0},"732":{"tf":1.0},"799":{"tf":2.0},"854":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":1,"docs":{"127":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":52,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"315":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"346":{"tf":1.0},"381":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":2.449489742783178},"440":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"532":{"tf":1.0},"591":{"tf":1.0},"6":{"tf":1.0},"614":{"tf":1.0},"635":{"tf":2.23606797749979},"742":{"tf":1.0},"773":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"857":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.4142135623730951},"918":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"958":{"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":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"590":{"tf":1.0},"621":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"762":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"129":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"212":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"295":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.4142135623730951},"363":{"tf":1.0},"370":{"tf":1.0},"379":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"698":{"tf":1.4142135623730951},"701":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"802":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"861":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"9":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.4142135623730951},"919":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"956":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":130,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.7320508075688772},"264":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"302":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":2.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"340":{"tf":1.0},"385":{"tf":1.0},"39":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.7320508075688772},"600":{"tf":1.0},"603":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.4142135623730951},"62":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":2.449489742783178},"677":{"tf":1.7320508075688772},"678":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"76":{"tf":1.4142135623730951},"761":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"801":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.0},"811":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"837":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"965":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"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":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"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":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"636":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"871":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"224":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.4142135623730951},"371":{"tf":1.0}}}},"t":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"289":{"tf":1.0},"318":{"tf":3.1622776601683795},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"402":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"814":{"tf":1.0},"860":{"tf":1.0},"872":{"tf":1.0},"88":{"tf":1.0},"948":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"456":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"557":{"tf":1.7320508075688772},"76":{"tf":2.0},"811":{"tf":1.0},"950":{"tf":1.4142135623730951},"97":{"tf":2.0}}}},"v":{"df":2,"docs":{"34":{"tf":1.0},"912":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"_":{"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":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"315":{"tf":1.4142135623730951},"567":{"tf":1.0},"655":{"tf":1.0},"772":{"tf":1.4142135623730951},"838":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"127":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"326":{"tf":1.0},"655":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"853":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"100":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":3.0},"289":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"560":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":1.7320508075688772},"932":{"tf":1.0},"99":{"tf":1.0}}}}},"df":4,"docs":{"254":{"tf":1.0},"276":{"tf":1.0},"916":{"tf":1.0},"966":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"796":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"170":{"tf":1.0},"259":{"tf":1.0},"303":{"tf":1.0},"747":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"190":{"tf":1.0},"258":{"tf":1.7320508075688772},"263":{"tf":1.0},"297":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"801":{"tf":1.0},"839":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"919":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":4,"docs":{"203":{"tf":1.0},"233":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"218":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"590":{"tf":1.0},"592":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"162":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":2.0},"849":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":29,"docs":{"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"234":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"88":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":47,"docs":{"134":{"tf":1.0},"149":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"459":{"tf":1.0},"464":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"490":{"tf":1.0},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.7320508075688772},"565":{"tf":1.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"692":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":2.449489742783178},"801":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"858":{"tf":1.0},"919":{"tf":1.0},"951":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":13,"docs":{"103":{"tf":1.4142135623730951},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"670":{"tf":1.0},"70":{"tf":1.0},"780":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.4142135623730951},"743":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"138":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"677":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"862":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"745":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"62":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"79":{"tf":1.0},"804":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"958":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"v":{"'":{"df":2,"docs":{"803":{"tf":1.0},"818":{"tf":1.0}}},"df":9,"docs":{"270":{"tf":1.0},"741":{"tf":1.4142135623730951},"753":{"tf":1.0},"754":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"880":{"tf":1.0}}}},"l":{"b":{"df":16,"docs":{"736":{"tf":1.0},"788":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.7320508075688772},"818":{"tf":1.4142135623730951},"820":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}},"l":{"df":1,"docs":{"190":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":3.872983346207417},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":3.0}}}}}}},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"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":{"667":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"318":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.0},"915":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"13":{"tf":2.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"77":{"tf":1.0},"881":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"16":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.4142135623730951},"720":{"tf":1.0},"867":{"tf":1.0}}}},"n":{"df":83,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"119":{"tf":1.4142135623730951},"126":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"136":{"tf":1.0},"142":{"tf":2.6457513110645907},"149":{"tf":1.0},"17":{"tf":2.6457513110645907},"173":{"tf":1.0},"175":{"tf":2.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":2.449489742783178},"203":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":2.0},"32":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"457":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"60":{"tf":1.0},"652":{"tf":2.6457513110645907},"655":{"tf":1.0},"658":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.0},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"802":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":1.0},"83":{"tf":1.0},"834":{"tf":1.4142135623730951},"839":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.7320508075688772},"915":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":16,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"20":{"tf":1.4142135623730951},"206":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"765":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"858":{"tf":1.0},"921":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"4":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":1,"docs":{"958":{"tf":1.0}}},"df":130,"docs":{"0":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"559":{"tf":1.0},"565":{"tf":1.0},"571":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.0},"617":{"tf":1.0},"623":{"tf":1.0},"628":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"653":{"tf":1.7320508075688772},"654":{"tf":1.4142135623730951},"655":{"tf":1.7320508075688772},"715":{"tf":1.0},"716":{"tf":1.0},"718":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.0},"740":{"tf":1.4142135623730951},"743":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.4142135623730951},"757":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.0},"809":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"837":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"881":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"958":{"tf":2.0},"969":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":13,"docs":{"258":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"716":{"tf":1.4142135623730951},"76":{"tf":1.0},"765":{"tf":1.4142135623730951},"803":{"tf":1.0},"818":{"tf":1.4142135623730951},"920":{"tf":1.0},"97":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"849":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":36,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"454":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":2.0},"626":{"tf":1.0},"668":{"tf":1.0},"678":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"823":{"tf":1.4142135623730951},"840":{"tf":1.0},"916":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":31,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.23606797749979},"254":{"tf":2.23606797749979},"31":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":2.0},"476":{"tf":2.6457513110645907},"493":{"tf":2.449489742783178},"494":{"tf":2.6457513110645907},"496":{"tf":1.0},"505":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"678":{"tf":1.0},"803":{"tf":1.0},"894":{"tf":1.0},"912":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"17":{"tf":1.0},"958":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"621":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"254":{"tf":1.0},"289":{"tf":2.0},"710":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"184":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0}}}},"n":{"df":6,"docs":{"135":{"tf":1.4142135623730951},"233":{"tf":1.0},"734":{"tf":1.0},"831":{"tf":1.4142135623730951},"913":{"tf":1.0},"929":{"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":6,"docs":{"175":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":33,"docs":{"127":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":3.1622776601683795},"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"275":{"tf":2.0},"297":{"tf":2.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"321":{"tf":1.0},"619":{"tf":1.0},"647":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"710":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"723":{"tf":1.0},"727":{"tf":1.0},"755":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"867":{"tf":1.0},"876":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":20,"docs":{"108":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"290":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"63":{"tf":1.0},"644":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"697":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"87":{"tf":1.0},"935":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":7,"docs":{"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772},"541":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"680":{"tf":1.0},"697":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}},"r":{"'":{"df":1,"docs":{"60":{"tf":1.0}}},".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"/":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"@":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"276":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"184":{"tf":1.0},"254":{"tf":1.7320508075688772},"289":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"17":{"tf":2.449489742783178},"20":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":2.23606797749979},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"500":{"tf":1.0},"592":{"tf":1.0},"663":{"tf":1.0},"671":{"tf":1.4142135623730951},"682":{"tf":1.0},"685":{"tf":1.0},"769":{"tf":1.0},"774":{"tf":1.0},"852":{"tf":1.0},"879":{"tf":1.0},"912":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"232":{"tf":1.0},"289":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":8,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"318":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"=":{"2":{"5":{"df":1,"docs":{"835":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"682":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"774":{"tf":1.0},"852":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":175,"docs":{"0":{"tf":2.6457513110645907},"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":2.449489742783178},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"22":{"tf":3.1622776601683795},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":2.0},"315":{"tf":2.6457513110645907},"316":{"tf":2.6457513110645907},"317":{"tf":1.0},"318":{"tf":3.7416573867739413},"32":{"tf":3.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.7320508075688772},"338":{"tf":1.0},"340":{"tf":2.0},"349":{"tf":2.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"398":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"522":{"tf":1.4142135623730951},"538":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"626":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":2.6457513110645907},"654":{"tf":1.7320508075688772},"655":{"tf":1.0},"656":{"tf":1.4142135623730951},"657":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"660":{"tf":2.23606797749979},"661":{"tf":1.0},"662":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"67":{"tf":1.0},"671":{"tf":1.4142135623730951},"674":{"tf":1.4142135623730951},"675":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":2.449489742783178},"692":{"tf":1.0},"693":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.4142135623730951},"706":{"tf":1.0},"709":{"tf":1.0},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"731":{"tf":1.0},"735":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"804":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"83":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"85":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":2.0},"966":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":4,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"140":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}},"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}},"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":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"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":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"tf":1.0}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"540":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"448":{"tf":1.0}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"544":{"tf":1.4142135623730951}}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"543":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"428":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.0},"138":{"tf":2.23606797749979},"140":{"tf":2.449489742783178},"254":{"tf":2.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"376":{"tf":1.0},"429":{"tf":1.0},"443":{"tf":1.0},"450":{"tf":1.4142135623730951},"452":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"548":{"tf":1.4142135623730951},"652":{"tf":1.7320508075688772},"665":{"tf":1.0},"73":{"tf":1.0},"782":{"tf":1.0},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"858":{"tf":1.0}}}}},"df":25,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"286":{"tf":1.0},"315":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"861":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":45,"docs":{"1":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"138":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"208":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.7320508075688772},"280":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":2.0},"326":{"tf":1.0},"330":{"tf":1.0},"4":{"tf":1.4142135623730951},"427":{"tf":1.0},"5":{"tf":1.4142135623730951},"538":{"tf":1.0},"678":{"tf":1.0},"73":{"tf":1.0},"730":{"tf":1.0},"865":{"tf":1.4142135623730951},"94":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":2.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"965":{"tf":1.7320508075688772},"968":{"tf":1.4142135623730951},"969":{"tf":2.23606797749979}},"’":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":97,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":2.0},"259":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"330":{"tf":1.0},"356":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"501":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"549":{"tf":1.4142135623730951},"56":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"572":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"630":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"672":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"709":{"tf":1.0},"772":{"tf":1.7320508075688772},"79":{"tf":1.0},"799":{"tf":2.23606797749979},"83":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.4142135623730951},"958":{"tf":1.0}},"m":{"df":2,"docs":{"109":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":4,"docs":{"234":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"377":{"tf":1.0}}}},"g":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"157":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":3.3166247903554},"289":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"73":{"tf":1.0},"890":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"473":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"144":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"298":{"tf":1.0},"649":{"tf":1.0},"872":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"_":{"df":0,"docs":{},"p":{"df":31,"docs":{"139":{"tf":1.0},"140":{"tf":2.23606797749979},"160":{"tf":1.4142135623730951},"259":{"tf":1.0},"289":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"642":{"tf":1.0},"677":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":66,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":2.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"145":{"tf":1.0},"160":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"203":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"258":{"tf":2.0},"259":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"330":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.0},"560":{"tf":1.0},"6":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"716":{"tf":1.0},"747":{"tf":1.0},"755":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"807":{"tf":1.0},"82":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"867":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":1.0}},"p":{"df":2,"docs":{"224":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":6,"docs":{"103":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"289":{"tf":2.0},"546":{"tf":1.0},"958":{"tf":1.0}}}}},"t":{"df":88,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":2.0},"218":{"tf":1.0},"224":{"tf":2.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"549":{"tf":1.0},"561":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"590":{"tf":1.4142135623730951},"591":{"tf":1.0},"614":{"tf":1.0},"618":{"tf":1.0},"632":{"tf":1.0},"651":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"716":{"tf":1.0},"727":{"tf":1.4142135623730951},"73":{"tf":1.0},"752":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"806":{"tf":2.0},"83":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.7320508075688772},"865":{"tf":1.0},"873":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.0},"231":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.4142135623730951},"653":{"tf":1.0},"692":{"tf":1.0},"775":{"tf":1.0},"79":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"770":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"570":{"tf":1.0},"644":{"tf":1.0},"697":{"tf":1.0},"755":{"tf":1.0},"770":{"tf":1.0}}}},"df":5,"docs":{"34":{"tf":1.0},"376":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0}}},"v":{"df":11,"docs":{"199":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"62":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"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":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":39,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"212":{"tf":2.0},"213":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"66":{"tf":1.0},"674":{"tf":1.0},"727":{"tf":1.7320508075688772},"74":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.4142135623730951},"922":{"tf":1.0},"95":{"tf":1.0}},"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":{"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":8,"docs":{"267":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"54":{"tf":1.0},"687":{"tf":1.0},"704":{"tf":1.4142135623730951},"721":{"tf":1.0},"736":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":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":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"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":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"895":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"241":{"tf":1.0},"289":{"tf":1.0},"454":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"890":{"tf":1.0},"895":{"tf":1.0},"905":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"905":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"803":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"126":{"tf":1.0},"802":{"tf":1.0},"914":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"366":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":145,"docs":{"100":{"tf":2.8284271247461903},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"121":{"tf":1.0},"124":{"tf":1.7320508075688772},"128":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":2.6457513110645907},"136":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"173":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":2.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":2.6457513110645907},"316":{"tf":2.23606797749979},"318":{"tf":1.0},"32":{"tf":1.0},"326":{"tf":1.4142135623730951},"330":{"tf":2.0},"348":{"tf":1.0},"35":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"373":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.0},"377":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"402":{"tf":1.0},"41":{"tf":1.0},"425":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"457":{"tf":1.0},"460":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":3.3166247903554},"540":{"tf":1.4142135623730951},"541":{"tf":1.0},"551":{"tf":1.7320508075688772},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"598":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"619":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"649":{"tf":1.4142135623730951},"651":{"tf":1.0},"653":{"tf":1.4142135623730951},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"665":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"676":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"690":{"tf":1.7320508075688772},"691":{"tf":1.0},"710":{"tf":1.0},"715":{"tf":1.4142135623730951},"72":{"tf":1.0},"720":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.8284271247461903},"801":{"tf":1.4142135623730951},"804":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.4142135623730951},"84":{"tf":1.0},"842":{"tf":1.0},"85":{"tf":1.0},"858":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"921":{"tf":1.0},"923":{"tf":1.4142135623730951},"925":{"tf":1.0},"927":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.0},"328":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.0},"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"727":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"462":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"460":{"tf":1.0},"938":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"373":{"tf":1.0},"773":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"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":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"919":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":9,"docs":{"12":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":2.0},"318":{"tf":1.4142135623730951},"43":{"tf":1.0},"673":{"tf":1.0},"676":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"307":{"tf":1.0},"715":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"858":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"541":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"225":{"tf":1.0},"265":{"tf":1.0},"626":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"772":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"431":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"969":{"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":8,"docs":{"103":{"tf":1.0},"128":{"tf":1.0},"192":{"tf":1.0},"626":{"tf":1.4142135623730951},"738":{"tf":1.0},"82":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"11":{"tf":1.0},"665":{"tf":1.0},"751":{"tf":1.0},"775":{"tf":1.0},"804":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"958":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}}}},"df":2,"docs":{"655":{"tf":1.0},"658":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":13,"docs":{"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"151":{"tf":1.0},"184":{"tf":1.0},"218":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"678":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"939":{"tf":1.0},"969":{"tf":2.449489742783178}},"n":{"df":5,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":24,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"184":{"tf":1.0},"342":{"tf":1.4142135623730951},"715":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.0},"739":{"tf":1.4142135623730951},"743":{"tf":1.0},"747":{"tf":1.4142135623730951},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"806":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.4142135623730951},"931":{"tf":1.0}}}}}},"df":5,"docs":{"184":{"tf":1.0},"22":{"tf":1.0},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"814":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"268":{"tf":1.0},"318":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"854":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"762":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"df":7,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"494":{"tf":1.7320508075688772},"621":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"258":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"734":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"318":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"103":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"381":{"tf":1.0},"674":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"900":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"i":{"df":10,"docs":{"142":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"677":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"503":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"473":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":33,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.4142135623730951},"494":{"tf":1.0},"549":{"tf":1.0},"568":{"tf":1.0},"595":{"tf":1.0},"629":{"tf":1.0},"70":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"78":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"852":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"348":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"129":{"tf":1.0},"135":{"tf":2.8284271247461903},"190":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"326":{"tf":1.0},"376":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"510":{"tf":1.0},"511":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"693":{"tf":1.0},"720":{"tf":1.0},"818":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"916":{"tf":1.4142135623730951},"929":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"232":{"tf":1.0},"306":{"tf":1.0},"782":{"tf":1.0},"799":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"456":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"830":{"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":2,"docs":{"121":{"tf":1.0},"864":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"568":{"tf":1.0},"626":{"tf":1.0},"816":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"145":{"tf":1.0},"289":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"267":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"557":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":2.23606797749979},"823":{"tf":1.0},"834":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"480":{"tf":2.23606797749979},"496":{"tf":1.0},"507":{"tf":2.23606797749979},"577":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"642":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"s":{"df":2,"docs":{"565":{"tf":1.4142135623730951},"642":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"480":{"tf":2.23606797749979},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"577":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"1":{"9":{"df":1,"docs":{"577":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"[":{"0":{"df":1,"docs":{"565":{"tf":2.0}}},"df":0,"docs":{}},"df":8,"docs":{"112":{"tf":2.23606797749979},"13":{"tf":1.0},"480":{"tf":3.3166247903554},"496":{"tf":1.4142135623730951},"507":{"tf":3.4641016151377544},"565":{"tf":2.449489742783178},"577":{"tf":2.449489742783178},"642":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":3.872983346207417}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"289":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"815":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"112":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"1":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"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":{},"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":{},"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"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":{"563":{"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":0,"docs":{},"e":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}},"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":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"799":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"190":{"tf":1.0},"376":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"596":{"tf":1.0},"618":{"tf":1.4142135623730951},"67":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"692":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"915":{"tf":1.0},"969":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"195":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.4142135623730951},"308":{"tf":1.0},"316":{"tf":1.0},"867":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"878":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":28,"docs":{"118":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"373":{"tf":1.0},"493":{"tf":1.0},"567":{"tf":1.0},"7":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"77":{"tf":1.0},"801":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"98":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"563":{"tf":1.7320508075688772},"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"$":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"683":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"686":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"224":{"tf":1.0},"231":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"264":{"tf":1.4142135623730951},"580":{"tf":1.0},"591":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"861":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"538":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":36,"docs":{"120":{"tf":1.0},"140":{"tf":1.0},"224":{"tf":1.4142135623730951},"252":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.7320508075688772},"414":{"tf":2.0},"419":{"tf":1.7320508075688772},"435":{"tf":2.0},"440":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.7320508075688772},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"616":{"tf":1.4142135623730951},"630":{"tf":1.0},"65":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":115,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"367":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.4142135623730951},"406":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"488":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"529":{"tf":1.7320508075688772},"531":{"tf":1.0},"538":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.0},"565":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.4142135623730951},"632":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"690":{"tf":1.0},"693":{"tf":1.4142135623730951},"697":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"776":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"858":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"926":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.0},"951":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.7320508075688772},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":66,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.4142135623730951},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"448":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.7320508075688772},"524":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"670":{"tf":1.0},"76":{"tf":1.4142135623730951},"789":{"tf":1.0},"823":{"tf":1.0},"839":{"tf":1.0},"858":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.4142135623730951},"466":{"tf":1.0},"484":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"793":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"590":{"tf":1.0}},"s":{"_":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"590":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"l":{".":{"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"925":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"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":{},"r":{"df":1,"docs":{"27":{"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":0,"docs":{},"{":{"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":{"17":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"698":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"909":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"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":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"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":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{")":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"417":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"752":{"tf":1.0},"881":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"646":{"tf":1.0},"65":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"376":{"tf":1.0},"439":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}},"r":{"d":{"df":10,"docs":{"110":{"tf":2.0},"231":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"572":{"tf":1.0},"62":{"tf":1.0},"823":{"tf":1.0},"837":{"tf":1.0},"89":{"tf":2.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"179":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"7":{"/":{"1":{"5":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"/":{"0":{"4":{":":{"3":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":55,"docs":{"0":{"tf":2.8284271247461903},"100":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":2.0},"2":{"tf":1.0},"203":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"241":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"269":{"tf":1.0},"285":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.7320508075688772},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"478":{"tf":1.4142135623730951},"490":{"tf":2.0},"492":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.0},"618":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"711":{"tf":1.4142135623730951},"736":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"818":{"tf":1.0},"853":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"880":{"tf":1.0},"969":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":38,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"146":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"678":{"tf":1.0},"752":{"tf":1.4142135623730951},"760":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"807":{"tf":1.4142135623730951},"818":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.0},"876":{"tf":1.0},"9":{"tf":1.0},"929":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"203":{"tf":2.8284271247461903},"32":{"tf":1.0},"324":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"674":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"76":{"tf":1.0},"838":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0},"923":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.0},"678":{"tf":1.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":11,"docs":{"377":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"664":{"tf":1.0},"684":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"585":{"tf":2.449489742783178},"586":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":7,"docs":{"289":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.7320508075688772},"342":{"tf":1.0},"742":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"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":{"_":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"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":{"_":{"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"d":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"0":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"565":{"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":{},"m":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"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":2,"docs":{"844":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":36,"docs":{"10":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"14":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":2.0},"195":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"23":{"tf":2.0},"247":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":2.0},"290":{"tf":1.0},"299":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":2.0},"441":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":2.0},"64":{"tf":1.0},"677":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.0},"701":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"924":{"tf":1.0},"926":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":34,"docs":{"118":{"tf":1.4142135623730951},"127":{"tf":1.0},"136":{"tf":1.0},"19":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"37":{"tf":1.0},"393":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"46":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"694":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.4142135623730951},"805":{"tf":1.0},"905":{"tf":1.0},"912":{"tf":1.0},"923":{"tf":1.4142135623730951},"969":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":17,"docs":{"149":{"tf":1.0},"203":{"tf":1.0},"454":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"459":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.7320508075688772},"716":{"tf":1.0},"77":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"921":{"tf":1.0},"969":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"129":{"tf":1.0},"135":{"tf":2.449489742783178},"17":{"tf":1.0},"264":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"678":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"789":{"tf":1.0},"834":{"tf":1.0},"909":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":52,"docs":{"114":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"464":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"565":{"tf":1.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.0},"74":{"tf":1.0},"752":{"tf":1.0},"837":{"tf":1.0},"842":{"tf":1.0},"882":{"tf":1.0},"905":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"951":{"tf":1.0}}},"i":{"df":2,"docs":{"289":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"340":{"tf":1.0},"674":{"tf":1.0}}}}}}},"df":1,"docs":{"752":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"136":{"tf":1.0},"234":{"tf":1.4142135623730951},"297":{"tf":1.0},"698":{"tf":1.0},"923":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"964":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"862":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":79,"docs":{"120":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":3.605551275463989},"136":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"170":{"tf":1.4142135623730951},"198":{"tf":1.0},"224":{"tf":2.0},"231":{"tf":1.0},"285":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"347":{"tf":2.449489742783178},"376":{"tf":2.8284271247461903},"377":{"tf":1.4142135623730951},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"425":{"tf":2.449489742783178},"427":{"tf":2.6457513110645907},"428":{"tf":2.6457513110645907},"429":{"tf":1.4142135623730951},"433":{"tf":1.7320508075688772},"435":{"tf":2.449489742783178},"437":{"tf":1.4142135623730951},"438":{"tf":1.0},"443":{"tf":2.0},"445":{"tf":2.6457513110645907},"446":{"tf":2.6457513110645907},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":1.0},"529":{"tf":1.4142135623730951},"532":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"554":{"tf":1.7320508075688772},"560":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":2.23606797749979},"580":{"tf":1.4142135623730951},"603":{"tf":1.0},"614":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.4142135623730951},"634":{"tf":1.0},"635":{"tf":2.23606797749979},"644":{"tf":1.0},"645":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"697":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":2.449489742783178},"738":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"78":{"tf":1.0},"799":{"tf":1.0},"813":{"tf":1.0},"818":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.7320508075688772},"842":{"tf":1.0},"862":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"738":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"442":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"301":{"tf":1.0},"340":{"tf":1.0},"376":{"tf":1.0},"638":{"tf":1.0},"640":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"645":{"tf":1.0},"87":{"tf":1.0},"956":{"tf":1.0},"964":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"816":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"226":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"677":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"377":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"135":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"312":{"tf":1.0},"354":{"tf":1.0},"561":{"tf":1.0},"648":{"tf":1.0},"652":{"tf":1.0},"66":{"tf":1.7320508075688772},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"752":{"tf":1.0},"864":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"929":{"tf":1.0},"956":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"184":{"tf":1.0},"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"801":{"tf":1.0}}}},"df":53,"docs":{"100":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"561":{"tf":1.0},"60":{"tf":1.0},"647":{"tf":1.4142135623730951},"649":{"tf":2.449489742783178},"652":{"tf":3.4641016151377544},"710":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"801":{"tf":1.0},"804":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"917":{"tf":1.0},"919":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"22":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"847":{"tf":1.0},"859":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":15,"docs":{"100":{"tf":1.7320508075688772},"142":{"tf":1.0},"224":{"tf":1.0},"243":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"560":{"tf":1.0},"736":{"tf":1.0},"79":{"tf":1.7320508075688772}}}},"t":{"df":8,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0},"715":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"62":{"tf":1.0},"710":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"698":{"tf":1.0},"913":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":40,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":3.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"443":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"63":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"66":{"tf":1.0},"692":{"tf":1.0},"78":{"tf":1.4142135623730951},"811":{"tf":1.0},"840":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"379":{"tf":1.0},"838":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"145":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":1.0},"117":{"tf":1.0},"318":{"tf":1.0}}}},"m":{"df":7,"docs":{"412":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.6457513110645907},"519":{"tf":1.4142135623730951},"577":{"tf":2.23606797749979},"588":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"254":{"tf":1.4142135623730951},"345":{"tf":1.0},"968":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"315":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"830":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"492":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":85,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"34":{"tf":1.4142135623730951},"422":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"572":{"tf":1.0},"62":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"671":{"tf":1.0},"697":{"tf":1.0},"705":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"730":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0},"776":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0},"812":{"tf":1.0},"834":{"tf":2.0},"835":{"tf":1.0},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"846":{"tf":1.0},"85":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"925":{"tf":1.0},"938":{"tf":1.4142135623730951},"947":{"tf":1.0},"950":{"tf":2.0},"951":{"tf":1.0},"958":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"100":{"tf":1.0},"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"288":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.4142135623730951},"443":{"tf":1.0},"538":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"847":{"tf":1.0},"86":{"tf":1.4142135623730951},"882":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"540":{"tf":1.0}}},"df":61,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.7320508075688772},"161":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.0},"223":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"354":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"513":{"tf":1.0},"536":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"605":{"tf":1.0},"653":{"tf":1.0},"657":{"tf":1.4142135623730951},"681":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"738":{"tf":1.4142135623730951},"760":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.7320508075688772},"798":{"tf":1.0},"799":{"tf":1.0},"804":{"tf":1.0},"818":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"969":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"224":{"tf":1.0},"324":{"tf":1.0},"735":{"tf":1.0},"772":{"tf":1.0},"793":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"844":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"289":{"tf":1.0},"692":{"tf":1.0},"907":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"759":{"tf":1.0},"900":{"tf":1.0},"909":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"105":{"tf":1.0},"115":{"tf":1.7320508075688772},"132":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"184":{"tf":1.0},"234":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"735":{"tf":1.0},"78":{"tf":1.0},"791":{"tf":1.0},"804":{"tf":1.0},"817":{"tf":1.0},"84":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"17":{"tf":1.0},"198":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"289":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"960":{"tf":1.4142135623730951},"963":{"tf":1.0},"964":{"tf":1.7320508075688772},"969":{"tf":4.58257569495584}},"l":{"df":7,"docs":{"103":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{},"g":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}}}},"df":47,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"224":{"tf":3.1622776601683795},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":2.0},"297":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":2.0},"304":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.7320508075688772},"359":{"tf":1.0},"363":{"tf":2.23606797749979},"364":{"tf":1.0},"366":{"tf":2.449489742783178},"367":{"tf":1.7320508075688772},"369":{"tf":2.0},"370":{"tf":2.6457513110645907},"371":{"tf":2.0},"373":{"tf":4.123105625617661},"375":{"tf":2.0},"801":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"837":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"843":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"933":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"969":{"tf":1.0}},"p":{"df":1,"docs":{"224":{"tf":1.0}}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"17":{"tf":1.0},"279":{"tf":1.4142135623730951},"299":{"tf":1.0},"300":{"tf":1.0},"783":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":24,"docs":{"117":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"44":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"592":{"tf":1.0},"644":{"tf":1.4142135623730951},"674":{"tf":1.0},"675":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.0},"805":{"tf":1.0},"830":{"tf":1.0},"864":{"tf":1.0},"884":{"tf":1.0},"97":{"tf":1.0}},"n":{"df":14,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"83":{"tf":1.0},"847":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}},"r":{"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":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"756":{"tf":1.0},"762":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"110":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"34":{"tf":1.0},"342":{"tf":1.4142135623730951},"653":{"tf":1.0},"667":{"tf":1.0},"731":{"tf":1.0},"862":{"tf":1.0},"874":{"tf":1.0},"89":{"tf":1.0},"927":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":31,"docs":{"127":{"tf":1.4142135623730951},"151":{"tf":1.0},"2":{"tf":1.0},"271":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"321":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":2.0},"376":{"tf":1.0},"454":{"tf":1.0},"678":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"736":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"812":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"881":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"97":{"tf":1.0}}}}},"b":{"df":2,"docs":{"505":{"tf":1.0},"517":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"6":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"132":{"tf":1.4142135623730951},"223":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"344":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"537":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"712":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"860":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"160":{"tf":1.0},"223":{"tf":1.0},"289":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"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":38,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.4142135623730951},"145":{"tf":1.0},"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"224":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"288":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"674":{"tf":1.0},"680":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"77":{"tf":1.4142135623730951},"775":{"tf":1.0},"839":{"tf":1.4142135623730951},"847":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.7320508075688772},"936":{"tf":1.0},"958":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951}}},"y":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":3,"docs":{"13":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"744":{"tf":1.0}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"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":{},"t":{"df":1,"docs":{"545":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"318":{"tf":1.4142135623730951},"837":{"tf":1.0},"860":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"289":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"511":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":5,"docs":{"272":{"tf":1.0},"340":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"149":{"tf":1.0},"233":{"tf":1.0},"276":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"s":{"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":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"318":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"765":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"772":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"772":{"tf":1.0}}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":74,"docs":{"107":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":2.6457513110645907},"113":{"tf":1.7320508075688772},"114":{"tf":2.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"318":{"tf":6.4031242374328485},"328":{"tf":2.0},"331":{"tf":1.0},"384":{"tf":1.0},"394":{"tf":1.0},"405":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"463":{"tf":1.0},"479":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"542":{"tf":1.0},"552":{"tf":1.0},"564":{"tf":1.0},"565":{"tf":1.4142135623730951},"576":{"tf":1.0},"587":{"tf":1.0},"599":{"tf":1.0},"610":{"tf":1.0},"622":{"tf":1.0},"633":{"tf":1.0},"641":{"tf":1.0},"650":{"tf":1.0},"652":{"tf":1.0},"720":{"tf":1.4142135623730951},"728":{"tf":1.0},"742":{"tf":1.0},"763":{"tf":1.4142135623730951},"768":{"tf":1.0},"776":{"tf":1.0},"784":{"tf":1.0},"801":{"tf":1.0},"804":{"tf":1.0},"810":{"tf":1.0},"814":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.0},"853":{"tf":1.0},"86":{"tf":2.0},"863":{"tf":1.0},"867":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"888":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"924":{"tf":2.0},"927":{"tf":1.7320508075688772},"937":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"952":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"347":{"tf":2.449489742783178}}}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":27,"docs":{"107":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0},"86":{"tf":1.0},"879":{"tf":1.0},"933":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":28,"docs":{"107":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.4142135623730951},"416":{"tf":1.0},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.7320508075688772},"464":{"tf":1.4142135623730951},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.4142135623730951},"543":{"tf":1.0},"553":{"tf":1.4142135623730951},"565":{"tf":1.7320508075688772},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.4142135623730951},"611":{"tf":1.0},"623":{"tf":1.4142135623730951},"634":{"tf":1.0},"642":{"tf":1.4142135623730951},"765":{"tf":1.0},"772":{"tf":2.449489742783178},"805":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":2,"docs":{"496":{"tf":1.0},"519":{"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"765":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951}}}}}}}}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"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":{},"i":{"d":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"887":{"tf":1.0}}},"2":{"df":1,"docs":{"886":{"tf":1.0}}},"3":{"df":1,"docs":{"885":{"tf":1.0}}},"4":{"df":1,"docs":{"884":{"tf":1.0}}},"5":{"df":1,"docs":{"883":{"tf":1.0}}},"6":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"332":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.7320508075688772},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":15,"docs":{"254":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"632":{"tf":2.449489742783178},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.4142135623730951},"643":{"tf":1.0},"677":{"tf":1.0},"684":{"tf":1.4142135623730951},"740":{"tf":1.0},"770":{"tf":1.4142135623730951},"929":{"tf":1.0},"969":{"tf":3.7416573867739413}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"288":{"tf":1.0},"765":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"153":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"297":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"963":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"103":{"tf":1.0},"318":{"tf":1.0},"519":{"tf":1.0},"588":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.7320508075688772},"468":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"95":{"tf":1.0}}}}},"’":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}},"g":{"df":24,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"289":{"tf":1.4142135623730951},"306":{"tf":1.0},"376":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.0},"75":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}},"k":{"df":7,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"618":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"184":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":1.0},"297":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"686":{"tf":1.0},"908":{"tf":1.0},"919":{"tf":1.0},"969":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"342":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"679":{"tf":1.0}}}}}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"679":{"tf":1.7320508075688772}}}},"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":1,"docs":{"840":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":24,"docs":{"22":{"tf":3.0},"318":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"454":{"tf":1.0},"471":{"tf":1.0},"679":{"tf":1.0},"718":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"76":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"833":{"tf":1.4142135623730951},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":12,"docs":{"113":{"tf":1.0},"117":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"29":{"tf":1.0},"318":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"78":{"tf":1.0},"958":{"tf":1.4142135623730951},"969":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"258":{"tf":1.0},"570":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"807":{"tf":1.0},"823":{"tf":1.0},"919":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":67,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":2.0},"198":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.7320508075688772},"221":{"tf":2.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"240":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":1.0},"316":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.7320508075688772},"35":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"471":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0},"522":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"621":{"tf":2.23606797749979},"673":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"736":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"9":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"968":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"142":{"tf":1.4142135623730951},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"802":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"448":{"tf":1.4142135623730951},"464":{"tf":1.0},"531":{"tf":1.0},"553":{"tf":1.0},"600":{"tf":1.0},"623":{"tf":1.0},"642":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951},"925":{"tf":1.0}},"n":{"df":2,"docs":{"698":{"tf":1.0},"805":{"tf":1.0}}}}}},"u":{"df":7,"docs":{"142":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"449":{"tf":1.0},"578":{"tf":1.0},"772":{"tf":1.0},"963":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":3,"docs":{"173":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"289":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"n":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":3,"docs":{"456":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"158":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"857":{"tf":1.0}}}}}}},"df":158,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"131":{"tf":2.6457513110645907},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.6457513110645907},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":3.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"258":{"tf":2.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":2.0},"262":{"tf":1.0},"272":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"401":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"454":{"tf":1.7320508075688772},"456":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":3.605551275463989},"473":{"tf":1.0},"474":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"477":{"tf":1.0},"480":{"tf":2.6457513110645907},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":2.6457513110645907},"487":{"tf":2.0},"488":{"tf":2.23606797749979},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":1.7320508075688772},"494":{"tf":1.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.7320508075688772},"507":{"tf":1.0},"549":{"tf":2.0},"551":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"596":{"tf":1.0},"607":{"tf":1.0},"619":{"tf":1.0},"644":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"70":{"tf":1.0},"711":{"tf":2.23606797749979},"718":{"tf":1.4142135623730951},"720":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.7320508075688772},"734":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":3.1622776601683795},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"803":{"tf":1.4142135623730951},"805":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.4142135623730951},"811":{"tf":1.0},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"83":{"tf":1.0},"830":{"tf":1.0},"847":{"tf":1.4142135623730951},"85":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":2.449489742783178},"862":{"tf":1.4142135623730951},"866":{"tf":1.0},"880":{"tf":1.4142135623730951},"9":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"919":{"tf":1.4142135623730951},"929":{"tf":1.0},"951":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":3.1622776601683795},"98":{"tf":2.23606797749979},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"184":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"739":{"tf":1.0}}}}},"r":{"df":12,"docs":{"142":{"tf":1.0},"456":{"tf":1.7320508075688772},"471":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"728":{"tf":1.0},"872":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"473":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"772":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"454":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"803":{"tf":1.0}}},"df":22,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"158":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":2.0},"456":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"483":{"tf":1.0},"549":{"tf":1.4142135623730951},"76":{"tf":2.0},"816":{"tf":1.7320508075688772},"863":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"834":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"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":19,"docs":{"131":{"tf":1.4142135623730951},"142":{"tf":4.898979485566356},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"272":{"tf":1.0},"315":{"tf":1.0},"560":{"tf":1.7320508075688772},"729":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.0},"804":{"tf":2.449489742783178},"878":{"tf":1.4142135623730951},"894":{"tf":1.0},"915":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"929":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":2.6457513110645907},"184":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.4142135623730951},"881":{"tf":1.0},"97":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":2.0},"482":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"725":{"tf":1.0},"813":{"tf":1.0},"870":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"502":{"tf":1.0},"834":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"249":{"tf":1.0},"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"964":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":2.23606797749979}}}}},"l":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"318":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"127":{"tf":1.0},"175":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"246":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"561":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.7320508075688772},"224":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"872":{"tf":1.0},"934":{"tf":1.0}}}}},"l":{"d":{"df":2,"docs":{"126":{"tf":1.0},"802":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"127":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"496":{"tf":1.0}}},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.0},"567":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"498":{"tf":1.0},"500":{"tf":1.0}}}}},"df":30,"docs":{"115":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.0},"299":{"tf":1.0},"34":{"tf":1.0},"348":{"tf":1.0},"43":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"703":{"tf":1.0},"707":{"tf":1.4142135623730951},"73":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.0},"956":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"379":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"960":{"tf":1.0},"969":{"tf":2.23606797749979}}}}}}},"p":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"254":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"965":{"tf":1.0}},"i":{"c":{"df":8,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"86":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"127":{"tf":1.4142135623730951},"376":{"tf":1.0},"396":{"tf":1.0},"412":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"267":{"tf":1.0},"315":{"tf":1.0},"859":{"tf":1.0},"925":{"tf":1.0}}},"k":{"df":20,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"377":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"673":{"tf":1.0},"74":{"tf":1.0},"806":{"tf":1.0},"818":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.0},"206":{"tf":1.7320508075688772},"258":{"tf":1.0},"263":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"912":{"tf":1.0}}},"n":{"df":5,"docs":{"119":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":4,"docs":{"729":{"tf":1.0},"738":{"tf":1.4142135623730951},"811":{"tf":1.0},"823":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"110":{"tf":1.0},"21":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"829":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"21":{"tf":2.0},"276":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"862":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"131":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0}}}},"t":{"df":6,"docs":{"128":{"tf":1.0},"213":{"tf":1.0},"248":{"tf":1.0},"709":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"704":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"166":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"665":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"379":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":29,"docs":{"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"565":{"tf":1.4142135623730951},"600":{"tf":1.0},"63":{"tf":1.0},"642":{"tf":1.0},"652":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"71":{"tf":1.0},"712":{"tf":1.0},"737":{"tf":1.0},"756":{"tf":1.0},"786":{"tf":1.0},"807":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"957":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"144":{"tf":1.4142135623730951},"155":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":2.23606797749979},"231":{"tf":2.0},"233":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"342":{"tf":1.0},"66":{"tf":1.0},"716":{"tf":1.0},"734":{"tf":1.0},"752":{"tf":1.0},"869":{"tf":1.0},"938":{"tf":1.0},"951":{"tf":2.0}}}}}},"m":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"752":{"tf":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":{"752":{"tf":1.0}}},"p":{"df":1,"docs":{"881":{"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":2,"docs":{"218":{"tf":1.0},"49":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":29,"docs":{"100":{"tf":2.0},"13":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":2.6457513110645907},"665":{"tf":1.0},"666":{"tf":1.4142135623730951},"678":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":2.0},"94":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"131":{"tf":1.0},"328":{"tf":2.449489742783178},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"468":{"tf":1.7320508075688772},"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"524":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":2.23606797749979},"761":{"tf":1.0},"873":{"tf":1.0},"897":{"tf":1.4142135623730951},"912":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}}}},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"773":{"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":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.4142135623730951}}}},"df":2,"docs":{"912":{"tf":1.4142135623730951},"913":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"191":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"100":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"258":{"tf":1.7320508075688772},"297":{"tf":1.0},"663":{"tf":1.0},"701":{"tf":1.0},"79":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"968":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"183":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"876":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"712":{"tf":1.0},"957":{"tf":1.0}}}},"o":{"df":21,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.4142135623730951},"173":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.0},"377":{"tf":1.4142135623730951},"44":{"tf":1.0},"613":{"tf":1.0},"677":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"814":{"tf":1.0},"875":{"tf":1.4142135623730951},"958":{"tf":1.0},"959":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"/":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}},"df":144,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"132":{"tf":3.872983346207417},"134":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":2.6457513110645907},"289":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"377":{"tf":1.4142135623730951},"379":{"tf":2.0},"387":{"tf":1.4142135623730951},"397":{"tf":1.0},"408":{"tf":1.4142135623730951},"418":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"482":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"498":{"tf":1.0},"509":{"tf":1.0},"514":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"529":{"tf":1.0},"533":{"tf":1.4142135623730951},"537":{"tf":1.4142135623730951},"540":{"tf":1.0},"545":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"572":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"596":{"tf":1.0},"602":{"tf":1.4142135623730951},"607":{"tf":1.0},"613":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"626":{"tf":1.7320508075688772},"630":{"tf":1.0},"636":{"tf":1.4142135623730951},"644":{"tf":2.23606797749979},"645":{"tf":2.449489742783178},"67":{"tf":2.23606797749979},"677":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"72":{"tf":1.4142135623730951},"721":{"tf":1.0},"727":{"tf":1.7320508075688772},"73":{"tf":1.0},"730":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"740":{"tf":1.0},"772":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.7320508075688772},"804":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.7320508075688772},"818":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"834":{"tf":1.7320508075688772},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772},"913":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":2.0},"92":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.4142135623730951},"932":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"954":{"tf":1.0},"956":{"tf":2.449489742783178},"958":{"tf":1.4142135623730951},"961":{"tf":1.0},"99":{"tf":1.7320508075688772}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":5,"docs":{"134":{"tf":1.0},"184":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"264":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"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":{},"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":{"553":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":5,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"136":{"tf":1.0}}},"df":2,"docs":{"531":{"tf":1.0},"692":{"tf":1.0}},"i":{"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":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"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":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"151":{"tf":1.0},"316":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"324":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"6":{"4":{"df":2,"docs":{"461":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"933":{"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":{"d":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"184":{"tf":1.0},"239":{"tf":1.0},"791":{"tf":1.0},"917":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"844":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"127":{"tf":1.0},"807":{"tf":1.0},"929":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"310":{"tf":1.0},"697":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"796":{"tf":1.0},"815":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"376":{"tf":1.0},"414":{"tf":2.449489742783178},"418":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"679":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.0}},"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":1,"docs":{"679":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"865":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"904":{"tf":1.0},"923":{"tf":1.0},"946":{"tf":1.0}}}}},"r":{"df":21,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"963":{"tf":1.0},"965":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"252":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"456":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"117":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"173":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"543":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"677":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"376":{"tf":2.0},"422":{"tf":1.0},"433":{"tf":1.0},"443":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"719":{"tf":1.0},"728":{"tf":1.0},"733":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"748":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"768":{"tf":1.0},"772":{"tf":1.0},"958":{"tf":1.0}}}},"i":{"df":1,"docs":{"234":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"310":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"812":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"342":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"862":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":13,"docs":{"104":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"160":{"tf":1.0},"376":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"697":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"t":{"df":37,"docs":{"107":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"143":{"tf":1.0},"318":{"tf":2.449489742783178},"460":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":2.23606797749979},"483":{"tf":1.0},"487":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":2.0},"522":{"tf":1.0},"554":{"tf":1.0},"557":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":1.4142135623730951},"734":{"tf":1.0},"818":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.0},"86":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"958":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"751":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"376":{"tf":1.0},"572":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":13,"docs":{"132":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"674":{"tf":1.0},"791":{"tf":1.0},"839":{"tf":1.0},"923":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"377":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"224":{"tf":1.0},"289":{"tf":1.4142135623730951},"330":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"680":{"tf":1.0},"710":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"907":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"137":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"929":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"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":{"732":{"tf":1.0},"858":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}}}}},"l":{"df":2,"docs":{"960":{"tf":1.0},"968":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"714":{"tf":1.0},"889":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"173":{"tf":1.0},"752":{"tf":1.0}}}},"t":{"df":2,"docs":{"673":{"tf":1.4142135623730951},"686":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"339":{"tf":1.0},"50":{"tf":1.0},"721":{"tf":1.0},"731":{"tf":1.0},"79":{"tf":1.0},"795":{"tf":1.0},"953":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"265":{"tf":1.0},"266":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":76,"docs":{"108":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"289":{"tf":1.0},"32":{"tf":1.0},"626":{"tf":1.0},"719":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"727":{"tf":1.0},"728":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.7320508075688772},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.4142135623730951},"783":{"tf":1.0},"786":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.4142135623730951},"862":{"tf":1.0},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"897":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.4142135623730951},"912":{"tf":2.0},"914":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":42,"docs":{"11":{"tf":1.0},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"184":{"tf":2.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"747":{"tf":1.0},"757":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"848":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"904":{"tf":1.0},"929":{"tf":1.4142135623730951},"939":{"tf":1.0},"969":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":26,"docs":{"127":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"730":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.4142135623730951},"808":{"tf":1.0},"815":{"tf":1.0},"842":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"872":{"tf":1.0},"880":{"tf":1.0},"883":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"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":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":74,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"135":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"315":{"tf":2.6457513110645907},"316":{"tf":1.7320508075688772},"317":{"tf":3.3166247903554},"318":{"tf":2.0},"320":{"tf":1.7320508075688772},"321":{"tf":2.23606797749979},"322":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"339":{"tf":1.0},"342":{"tf":1.0},"471":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"649":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"710":{"tf":1.4142135623730951},"715":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.7320508075688772},"741":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"766":{"tf":1.0},"786":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"807":{"tf":1.0},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.7320508075688772},"834":{"tf":1.7320508075688772},"836":{"tf":1.0},"838":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"854":{"tf":2.6457513110645907},"859":{"tf":1.7320508075688772},"860":{"tf":1.0},"861":{"tf":1.7320508075688772},"875":{"tf":1.0},"880":{"tf":1.0},"895":{"tf":1.4142135623730951},"913":{"tf":1.0},"919":{"tf":2.23606797749979},"921":{"tf":1.7320508075688772},"922":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":2.449489742783178},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"947":{"tf":1.0},"956":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"917":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"338":{"tf":1.0},"923":{"tf":1.7320508075688772}}},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"715":{"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":{"317":{"tf":1.0},"922":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"317":{"tf":1.0},"922":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"693":{"tf":1.0},"701":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"324":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":1,"docs":{"324":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"217":{"tf":1.0},"254":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"710":{"tf":1.0},"929":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"541":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"540":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":{"912":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{".":{"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"254":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"190":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":30,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"223":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":3.1622776601683795},"232":{"tf":3.872983346207417},"233":{"tf":3.0},"288":{"tf":1.0},"289":{"tf":2.0},"297":{"tf":1.0},"376":{"tf":1.4142135623730951},"537":{"tf":2.0},"538":{"tf":1.4142135623730951},"540":{"tf":2.0},"541":{"tf":2.6457513110645907},"543":{"tf":1.4142135623730951},"545":{"tf":1.7320508075688772},"546":{"tf":1.4142135623730951},"548":{"tf":1.0},"761":{"tf":1.7320508075688772},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"837":{"tf":1.0},"864":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.7320508075688772},"932":{"tf":1.0},"946":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"786":{"tf":1.0}}}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":13,"docs":{"135":{"tf":1.0},"289":{"tf":1.0},"346":{"tf":1.0},"371":{"tf":1.0},"4":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"678":{"tf":1.0},"699":{"tf":1.0},"707":{"tf":1.0},"770":{"tf":1.0},"878":{"tf":1.0},"941":{"tf":1.0}}}},"df":397,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"136":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"203":{"tf":2.6457513110645907},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"224":{"tf":3.1622776601683795},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":3.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":2.0},"26":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":2.449489742783178},"289":{"tf":3.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"299":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"31":{"tf":1.7320508075688772},"315":{"tf":3.0},"316":{"tf":3.0},"318":{"tf":3.0},"32":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"338":{"tf":2.0},"34":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.4142135623730951},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":3.7416573867739413},"377":{"tf":2.23606797749979},"38":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":2.0},"4":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"419":{"tf":2.0},"423":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":2.0},"443":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"456":{"tf":3.0},"457":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":2.23606797749979},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.4142135623730951},"47":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"484":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.4142135623730951},"499":{"tf":2.0},"5":{"tf":2.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"515":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"52":{"tf":1.7320508075688772},"520":{"tf":1.4142135623730951},"522":{"tf":2.0},"526":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"538":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"566":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":2.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"598":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.4142135623730951},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":2.0},"618":{"tf":1.7320508075688772},"619":{"tf":1.4142135623730951},"621":{"tf":2.6457513110645907},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.4142135623730951},"644":{"tf":1.0},"649":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.4142135623730951},"657":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.7320508075688772},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":2.449489742783178},"673":{"tf":2.6457513110645907},"674":{"tf":2.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.4142135623730951},"68":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"684":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"690":{"tf":1.4142135623730951},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"697":{"tf":1.0},"70":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.0},"721":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"74":{"tf":1.4142135623730951},"742":{"tf":1.0},"75":{"tf":2.0},"752":{"tf":1.4142135623730951},"754":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"763":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":2.0},"773":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"786":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.4142135623730951},"796":{"tf":1.0},"80":{"tf":1.7320508075688772},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":2.0},"804":{"tf":1.0},"807":{"tf":2.0},"809":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"82":{"tf":1.7320508075688772},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"834":{"tf":2.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"86":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":1.0},"89":{"tf":1.7320508075688772},"898":{"tf":1.0},"9":{"tf":2.23606797749979},"908":{"tf":1.0},"909":{"tf":1.7320508075688772},"91":{"tf":1.0},"916":{"tf":2.0},"919":{"tf":1.0},"92":{"tf":1.0},"920":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"942":{"tf":1.0},"95":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":2.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":3.605551275463989},"97":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":6,"docs":{"289":{"tf":1.7320508075688772},"697":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}},".":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.7320508075688772}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"529":{"tf":1.4142135623730951}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{".":{"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":{"d":{"(":{")":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{".":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"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":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"532":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"531":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{")":{"[":{"0":{"]":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":84,"docs":{"100":{"tf":3.0},"117":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":2.23606797749979},"151":{"tf":2.0},"160":{"tf":1.7320508075688772},"169":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"233":{"tf":1.0},"242":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":2.449489742783178},"276":{"tf":1.0},"289":{"tf":2.6457513110645907},"3":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":2.449489742783178},"316":{"tf":2.0},"317":{"tf":1.4142135623730951},"320":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"423":{"tf":1.0},"443":{"tf":1.0},"46":{"tf":1.0},"469":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"538":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"63":{"tf":1.0},"637":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0},"694":{"tf":1.0},"70":{"tf":1.0},"710":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":1.7320508075688772},"775":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":3.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"858":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.4142135623730951},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"289":{"tf":1.0},"964":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"663":{"tf":1.0},"673":{"tf":1.0},"682":{"tf":1.0},"697":{"tf":1.0},"74":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}},"df":2,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":11,"docs":{"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.0},"288":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":10,"docs":{"170":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"791":{"tf":1.0},"802":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"234":{"tf":1.0},"51":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":17,"docs":{"132":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"376":{"tf":1.4142135623730951},"526":{"tf":1.4142135623730951},"528":{"tf":3.1622776601683795},"529":{"tf":3.605551275463989},"531":{"tf":2.449489742783178},"532":{"tf":1.0},"533":{"tf":1.0},"762":{"tf":1.0},"78":{"tf":1.0},"817":{"tf":1.7320508075688772},"852":{"tf":1.0},"869":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"0":{".":{"1":{"df":6,"docs":{"882":{"tf":1.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"956":{"tf":1.0}}},"1":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"942":{"tf":1.0}}},"1":{"df":1,"docs":{"941":{"tf":1.0}}},"2":{"df":1,"docs":{"940":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"938":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"136":{"tf":1.0},"937":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"936":{"tf":1.0}}},"1":{"df":1,"docs":{"935":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"931":{"tf":1.0}}},"1":{"df":1,"docs":{"930":{"tf":1.0}}},"2":{"df":1,"docs":{"754":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":2,"docs":{"929":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"954":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"927":{"tf":1.0}}},"1":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"920":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"919":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"918":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"953":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"917":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"950":{"tf":1.0}}},"1":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"947":{"tf":1.0}}},"1":{"df":1,"docs":{"946":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"945":{"tf":1.0}}},"1":{"df":1,"docs":{"944":{"tf":1.0}}},"2":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"2":{"df":1,"docs":{"858":{"tf":1.0}}},"4":{"df":1,"docs":{"857":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"df":1,"docs":{"838":{"tf":1.0}}},"3":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"910":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"3":{"df":1,"docs":{"903":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"950":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{".":{"3":{".":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{".":{"0":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"880":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.0}}},"1":{"df":1,"docs":{"908":{"tf":1.0}}},"2":{"df":2,"docs":{"565":{"tf":1.0},"907":{"tf":1.0}}},"3":{"df":1,"docs":{"906":{"tf":1.0}}},"4":{"df":1,"docs":{"905":{"tf":1.0}}},"5":{"df":1,"docs":{"904":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"878":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"877":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"875":{"tf":1.0}}},"1":{"df":1,"docs":{"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"871":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"870":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"869":{"tf":1.0}}},"1":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"866":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"863":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"861":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"857":{"tf":1.0}}},"1":{"df":1,"docs":{"856":{"tf":1.0}}},"2":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":3,"docs":{"901":{"tf":1.4142135623730951},"902":{"tf":1.0},"903":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"854":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"853":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"852":{"tf":1.0}}},"1":{"df":1,"docs":{"851":{"tf":1.0}}},"2":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"834":{"tf":1.0},"849":{"tf":1.0}}},"1":{"df":1,"docs":{"848":{"tf":1.0}}},"2":{"df":1,"docs":{"847":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"846":{"tf":1.0}}},"1":{"df":1,"docs":{"845":{"tf":1.0}}},"2":{"df":1,"docs":{"844":{"tf":1.0}}},"3":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"841":{"tf":1.0}}},"1":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"839":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"837":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"836":{"tf":1.0}}},"1":{"df":1,"docs":{"835":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"833":{"tf":1.0}}},"1":{"df":1,"docs":{"832":{"tf":1.0}}},"2":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"830":{"tf":1.0}}},"1":{"df":1,"docs":{"829":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"828":{"tf":1.0}}},"1":{"df":1,"docs":{"827":{"tf":1.0}}},"2":{"df":2,"docs":{"825":{"tf":1.0},"826":{"tf":1.0}}},"3":{"df":1,"docs":{"825":{"tf":1.0}}},"4":{"df":1,"docs":{"824":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"822":{"tf":1.0},"823":{"tf":1.0}}},"1":{"df":2,"docs":{"821":{"tf":1.0},"822":{"tf":1.0}}},"2":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":2,"docs":{"810":{"tf":1.0},"811":{"tf":1.0}}},"1":{"df":1,"docs":{"810":{"tf":1.0}}},"2":{"df":1,"docs":{"809":{"tf":1.0}}},"3":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"819":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"818":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"816":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"814":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"813":{"tf":1.0}}},"1":{"df":1,"docs":{"812":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"1":{"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":2,"docs":{"380":{"tf":1.0},"802":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"1":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"752":{"tf":1.0}}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"799":{"tf":1.0}}},"1":{"df":1,"docs":{"798":{"tf":1.0}}},"2":{"df":1,"docs":{"797":{"tf":1.0}}},"3":{"df":1,"docs":{"796":{"tf":1.0}}},"4":{"df":1,"docs":{"795":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"1":{"df":2,"docs":{"824":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"792":{"tf":1.0}}},"1":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"788":{"tf":1.0}}},"1":{"df":1,"docs":{"787":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.0}}},"1":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"783":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"782":{"tf":1.0}}},"1":{"df":1,"docs":{"781":{"tf":1.0}}},"2":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"779":{"tf":1.0}}},"1":{"df":1,"docs":{"778":{"tf":1.0}}},"2":{"df":1,"docs":{"777":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":2,"docs":{"136":{"tf":1.0},"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"775":{"tf":1.0}}},"1":{"df":1,"docs":{"774":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"528":{"tf":1.0}}},"5":{".":{"0":{".":{"0":{"df":2,"docs":{"893":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"1":{"df":1,"docs":{"892":{"tf":1.0}}},"2":{"df":1,"docs":{"891":{"tf":1.0}}},"3":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":3,"docs":{"764":{"tf":1.0},"767":{"tf":1.0},"772":{"tf":1.0}}},"1":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"770":{"tf":1.0}}},"1":{"df":1,"docs":{"769":{"tf":1.0}}},"2":{"df":1,"docs":{"768":{"tf":1.0}}},"3":{"df":1,"docs":{"767":{"tf":1.0}}},"4":{"df":1,"docs":{"766":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":3,"docs":{"764":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0}}},"1":{"df":1,"docs":{"764":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"756":{"tf":1.0}}},"1":{"df":2,"docs":{"753":{"tf":1.0},"755":{"tf":1.0}}},"2":{"df":1,"docs":{"754":{"tf":1.0}}},"3":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"716":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"1":{"df":1,"docs":{"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"750":{"tf":1.0}}},"1":{"df":1,"docs":{"749":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"748":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"746":{"tf":1.0},"747":{"tf":1.0}}},"1":{"df":1,"docs":{"746":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"745":{"tf":1.0}}},"1":{"df":1,"docs":{"744":{"tf":1.0}}},"2":{"df":1,"docs":{"743":{"tf":1.0}}},"3":{"df":1,"docs":{"742":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"735":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"729":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"772":{"tf":1.0}}},"1":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"756":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"727":{"tf":1.0}}},"1":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"725":{"tf":1.0}}},"1":{"df":1,"docs":{"724":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"722":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":2,"docs":{"425":{"tf":1.0},"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"718":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{".":{"0":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"735":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"731":{"tf":1.0}}},"8":{"df":1,"docs":{"721":{"tf":1.0}}},"9":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"347":{"tf":1.4142135623730951},"360":{"tf":1.0},"367":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.0},"507":{"tf":1.4142135623730951},"565":{"tf":2.0},"577":{"tf":1.4142135623730951},"642":{"tf":1.0},"651":{"tf":1.0},"803":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":2.8284271247461903}}}}}}}}},"df":32,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"144":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"618":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":3.872983346207417},"698":{"tf":1.0},"772":{"tf":1.0},"802":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"913":{"tf":1.4142135623730951},"915":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":176,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"202":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"298":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.7320508075688772},"352":{"tf":1.0},"357":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":2.23606797749979},"373":{"tf":1.0},"376":{"tf":3.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"393":{"tf":1.4142135623730951},"395":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"401":{"tf":2.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.7320508075688772},"406":{"tf":1.7320508075688772},"412":{"tf":1.7320508075688772},"414":{"tf":1.7320508075688772},"416":{"tf":3.0},"419":{"tf":1.4142135623730951},"422":{"tf":1.0},"425":{"tf":3.7416573867739413},"427":{"tf":3.3166247903554},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":3.0},"440":{"tf":1.4142135623730951},"443":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.0},"457":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.4142135623730951},"471":{"tf":2.0},"476":{"tf":2.23606797749979},"480":{"tf":3.872983346207417},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":2.23606797749979},"497":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":4.0},"508":{"tf":2.0},"510":{"tf":1.4142135623730951},"514":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"522":{"tf":2.0},"526":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":2.23606797749979},"531":{"tf":3.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"543":{"tf":1.7320508075688772},"549":{"tf":1.0},"551":{"tf":1.7320508075688772},"553":{"tf":2.449489742783178},"554":{"tf":1.4142135623730951},"557":{"tf":1.0},"560":{"tf":1.7320508075688772},"563":{"tf":1.7320508075688772},"565":{"tf":2.0},"568":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"572":{"tf":1.0},"575":{"tf":1.7320508075688772},"577":{"tf":3.1622776601683795},"578":{"tf":2.0},"580":{"tf":1.7320508075688772},"583":{"tf":1.0},"588":{"tf":1.7320508075688772},"589":{"tf":1.0},"591":{"tf":2.0},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.7320508075688772},"600":{"tf":2.8284271247461903},"601":{"tf":2.0},"606":{"tf":1.0},"609":{"tf":1.7320508075688772},"611":{"tf":2.0},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.7320508075688772},"623":{"tf":1.7320508075688772},"632":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"642":{"tf":1.7320508075688772},"644":{"tf":1.0},"652":{"tf":1.4142135623730951},"664":{"tf":1.0},"677":{"tf":1.0},"684":{"tf":1.0},"73":{"tf":2.449489742783178},"756":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":3.4641016151377544},"791":{"tf":1.0},"799":{"tf":1.0},"80":{"tf":1.0},"801":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"82":{"tf":1.0},"830":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"857":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.4142135623730951},"88":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"914":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.0},"94":{"tf":2.449489742783178},"952":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"553":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":6,"docs":{"324":{"tf":1.0},"347":{"tf":2.0},"473":{"tf":1.0},"565":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"203":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"229":{"tf":1.7320508075688772},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"348":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":2.0},"402":{"tf":1.0},"619":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":2.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.0},"841":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"665":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"665":{"tf":1.0}}}}},"df":2,"docs":{"315":{"tf":1.0},"318":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"655":{"tf":1.0},"658":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"184":{"tf":1.0},"234":{"tf":1.0},"246":{"tf":1.0},"704":{"tf":1.0},"924":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"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":{"448":{"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":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"690":{"tf":1.0},"921":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"739":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"117":{"tf":1.0},"173":{"tf":1.0},"674":{"tf":1.0},"693":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"652":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"5":{"df":1,"docs":{"44":{"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":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":103,"docs":{"11":{"tf":2.6457513110645907},"117":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"173":{"tf":1.7320508075688772},"175":{"tf":2.0},"224":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":2.6457513110645907},"289":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":2.23606797749979},"44":{"tf":2.0},"456":{"tf":1.0},"48":{"tf":1.7320508075688772},"484":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"529":{"tf":1.0},"561":{"tf":1.0},"63":{"tf":1.0},"669":{"tf":2.449489742783178},"673":{"tf":2.0},"685":{"tf":2.8284271247461903},"692":{"tf":2.23606797749979},"721":{"tf":1.0},"727":{"tf":1.0},"731":{"tf":1.4142135623730951},"735":{"tf":1.0},"739":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":2.23606797749979},"763":{"tf":1.7320508075688772},"768":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"78":{"tf":1.0},"783":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"843":{"tf":1.0},"848":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":2.23606797749979},"862":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"897":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":1.0},"915":{"tf":1.7320508075688772},"916":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"936":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"a":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}}},"df":13,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"354":{"tf":1.0},"656":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"742":{"tf":1.0},"837":{"tf":1.0},"906":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"1":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"136":{"tf":1.0},"218":{"tf":2.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.7320508075688772},"569":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"890":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"563":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"566":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"566":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"566":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"566":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"565":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"690":{"tf":1.0},"691":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"19":{"tf":1.7320508075688772},"689":{"tf":1.0},"690":{"tf":1.7320508075688772},"691":{"tf":1.4142135623730951},"692":{"tf":1.0},"915":{"tf":1.4142135623730951},"939":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":4,"docs":{"670":{"tf":1.7320508075688772},"672":{"tf":1.4142135623730951},"673":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"41":{"tf":1.0},"968":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}},"d":{"df":9,"docs":{"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"n":{"df":1,"docs":{"738":{"tf":1.0}}}},"s":{"df":1,"docs":{"272":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"744":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"127":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"652":{"tf":1.0},"715":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"801":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"861":{"tf":1.0},"958":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"867":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"203":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"880":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0}}}}}}}}}},"l":{"df":4,"docs":{"315":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"894":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"834":{"tf":1.0},"915":{"tf":1.0},"94":{"tf":1.4142135623730951},"958":{"tf":1.0},"96":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"315":{"tf":1.0},"328":{"tf":1.0},"356":{"tf":1.0},"830":{"tf":1.7320508075688772},"858":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"969":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"958":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"861":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"50":{"tf":1.0},"669":{"tf":1.4142135623730951},"674":{"tf":1.0},"677":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"776":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"924":{"tf":1.0},"948":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"545":{"tf":1.0},"632":{"tf":1.0},"636":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"df":23,"docs":{"0":{"tf":1.0},"218":{"tf":1.0},"233":{"tf":1.7320508075688772},"243":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"894":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"909":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.7320508075688772},"952":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"342":{"tf":1.0},"912":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"241":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":10,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"712":{"tf":1.4142135623730951},"9":{"tf":1.0},"957":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"131":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"31":{"tf":1.0},"379":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"679":{"tf":1.0},"786":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"5":{"tf":1.0},"957":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"19":{"tf":1.4142135623730951},"673":{"tf":2.0},"751":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.4142135623730951},"815":{"tf":1.0},"820":{"tf":1.4142135623730951},"831":{"tf":1.0},"832":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"867":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"195":{"tf":1.0},"82":{"tf":1.0},"960":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"110":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"89":{"tf":1.0},"968":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.0},"387":{"tf":1.0},"801":{"tf":1.0},"862":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"233":{"tf":1.0},"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"190":{"tf":1.0},"258":{"tf":1.0},"371":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"79":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"655":{"tf":1.0},"658":{"tf":1.0},"715":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"376":{"tf":1.0},"595":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"289":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"n":{"d":{"df":1,"docs":{"342":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"890":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"241":{"tf":1.4142135623730951},"905":{"tf":1.4142135623730951},"906":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":2.0},"19":{"tf":1.0},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"272":{"tf":1.0},"289":{"tf":1.0},"673":{"tf":1.0},"690":{"tf":1.4142135623730951},"711":{"tf":2.23606797749979},"749":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"804":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"867":{"tf":1.0},"886":{"tf":1.0},"904":{"tf":1.0},"910":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.0},"929":{"tf":1.4142135623730951},"958":{"tf":1.0}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"129":{"tf":1.0},"132":{"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":{}},"s":{"df":0,"docs":{},"h":{"df":30,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"315":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":26,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"117":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"330":{"tf":1.0},"379":{"tf":1.0},"454":{"tf":1.0},"677":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"853":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"118":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"289":{"tf":1.0},"342":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"618":{"tf":1.0},"693":{"tf":1.0},"698":{"tf":1.0},"730":{"tf":1.0},"751":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"915":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"803":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"105":{"tf":1.0},"294":{"tf":1.4142135623730951},"697":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"927":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":47,"docs":{"100":{"tf":1.0},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"19":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":3.0},"224":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":2.0},"673":{"tf":1.4142135623730951},"680":{"tf":1.0},"70":{"tf":1.0},"712":{"tf":1.0},"725":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"79":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"834":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"86":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.0},"91":{"tf":1.0},"929":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"22":{"tf":2.0},"834":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"113":{"tf":1.0},"118":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"958":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"736":{"tf":1.0},"867":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"d":{"!":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"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":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"710":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":1.0},"652":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.0},"653":{"tf":1.0},"665":{"tf":1.0},"761":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"127":{"tf":1.0},"315":{"tf":1.0},"340":{"tf":1.0},"694":{"tf":1.4142135623730951},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"753":{"tf":1.0},"79":{"tf":1.0},"809":{"tf":1.0},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"570":{"tf":1.0},"968":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"877":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"782":{"tf":1.0}}}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"19":{"tf":1.7320508075688772},"751":{"tf":1.0},"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"132":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"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":{"798":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":18,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"657":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"786":{"tf":1.0},"833":{"tf":1.0},"855":{"tf":1.4142135623730951},"858":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"652":{"tf":1.0}}}}}}}}}},"0":{"df":17,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"416":{"tf":1.0},"642":{"tf":1.0}}},"2":{"df":3,"docs":{"480":{"tf":1.0},"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"333":{"tf":1.0},"334":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":17,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"136":{"tf":2.0},"205":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":2.0},"484":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"701":{"tf":1.0},"775":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"916":{"tf":1.4142135623730951},"936":{"tf":1.0}},"l":{"df":1,"docs":{"132":{"tf":1.0}}},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"701":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":39,"docs":{"108":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"138":{"tf":1.4142135623730951},"20":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"387":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"678":{"tf":1.4142135623730951},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":2.0},"857":{"tf":1.0}}}}}}}}},"df":1,"docs":{"701":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"795":{"tf":1.0},"830":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":3,"docs":{"226":{"tf":1.0},"422":{"tf":1.0},"537":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"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":{},"p":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"402":{"tf":1.0},"493":{"tf":1.0},"619":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"z":{"0":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"a":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"2":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"6":{".":{"0":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"808":{"tf":1.0}}},"8":{".":{"3":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"768":{"tf":1.0}}},"6":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{".":{"0":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"748":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"2":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{".":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":54,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.4142135623730951},"482":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"664":{"tf":1.0},"677":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"746":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"896":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"958":{"tf":2.8284271247461903}}},"2":{"df":19,"docs":{"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"863":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"958":{"tf":3.0}}},"3":{"df":33,"docs":{"158":{"tf":1.7320508075688772},"164":{"tf":1.0},"171":{"tf":1.7320508075688772},"288":{"tf":1.0},"554":{"tf":2.449489742783178},"728":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"743":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"746":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"958":{"tf":2.6457513110645907}},"t":{"1":{"7":{":":{"3":{"0":{":":{"0":{"0":{"df":2,"docs":{"664":{"tf":1.0},"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":{}},"df":0,"docs":{}}},"4":{":":{"0":{"0":{"df":11,"docs":{"158":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"175":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"727":{"tf":1.4142135623730951},"740":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"798":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"947":{"tf":1.4142135623730951},"958":{"tf":2.23606797749979}}},"5":{":":{"0":{"0":{"df":2,"docs":{"183":{"tf":1.0},"554":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"716":{"tf":1.4142135623730951},"722":{"tf":1.4142135623730951},"723":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"858":{"tf":2.0},"871":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"958":{"tf":2.449489742783178}}},"6":{"df":30,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"720":{"tf":1.4142135623730951},"725":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"798":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"847":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"87":{"tf":1.0},"898":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"958":{"tf":2.8284271247461903}},"t":{"0":{"9":{":":{"5":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"717":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"958":{"tf":2.449489742783178}}},"8":{"df":22,"docs":{"719":{"tf":1.4142135623730951},"720":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":2.0},"766":{"tf":1.4142135623730951},"768":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"958":{"tf":2.23606797749979}}},"9":{"df":31,"docs":{"718":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"826":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"832":{"tf":2.0},"860":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"958":{"tf":2.6457513110645907}}},"df":64,"docs":{"108":{"tf":1.4142135623730951},"127":{"tf":1.0},"138":{"tf":1.4142135623730951},"142":{"tf":2.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"271":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"386":{"tf":2.0},"396":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":2.23606797749979},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":2.23606797749979},"428":{"tf":2.23606797749979},"438":{"tf":2.23606797749979},"449":{"tf":2.0},"464":{"tf":2.8284271247461903},"465":{"tf":1.7320508075688772},"468":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"508":{"tf":2.23606797749979},"520":{"tf":1.0},"532":{"tf":2.23606797749979},"544":{"tf":2.8284271247461903},"551":{"tf":2.449489742783178},"553":{"tf":2.449489742783178},"555":{"tf":2.0},"560":{"tf":1.0},"566":{"tf":2.23606797749979},"575":{"tf":1.0},"578":{"tf":2.0},"589":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":2.0},"609":{"tf":1.0},"612":{"tf":1.4142135623730951},"618":{"tf":1.0},"624":{"tf":2.23606797749979},"635":{"tf":2.23606797749979},"643":{"tf":1.4142135623730951},"664":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"716":{"tf":1.0},"728":{"tf":1.0},"734":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"1":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},",":{"0":{"2":{"4":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{",":{"5":{"7":{"6":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{",":{"7":{"4":{"1":{",":{"8":{"2":{"4":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"0":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"3":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"1":{"1":{".":{"0":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"3":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"2":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"5":{"df":1,"docs":{"830":{"tf":1.0}}},"6":{"df":3,"docs":{"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"0":{"df":2,"docs":{"824":{"tf":1.0},"827":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{".":{"0":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"792":{"tf":1.0}}},"8":{".":{"2":{"1":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"2":{"3":{"df":1,"docs":{"727":{"tf":1.0}}},"4":{"df":1,"docs":{"721":{"tf":1.0}}},"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"8":{".":{"0":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":3,"docs":{"585":{"tf":2.449489742783178},"586":{"tf":2.449489742783178},"590":{"tf":1.0}}},"df":8,"docs":{"142":{"tf":1.7320508075688772},"171":{"tf":1.0},"315":{"tf":1.0},"551":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"774":{"tf":1.0}}},"1":{"df":1,"docs":{"142":{"tf":1.0}}},"2":{"df":1,"docs":{"846":{"tf":1.0}}},"4":{"df":1,"docs":{"846":{"tf":1.0}}},"6":{"df":1,"docs":{"918":{"tf":1.0}}},"df":15,"docs":{"328":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"524":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.4142135623730951},"616":{"tf":1.0},"738":{"tf":1.4142135623730951},"774":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"845":{"tf":1.0}}},"5":{"df":1,"docs":{"919":{"tf":1.0}}},"6":{"df":2,"docs":{"842":{"tf":1.0},"919":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"844":{"tf":1.0}}},"4":{"df":2,"docs":{"505":{"tf":2.8284271247461903},"507":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"842":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"842":{"tf":1.0}}},"9":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"842":{"tf":1.0}}},"3":{"df":1,"docs":{"842":{"tf":1.0}}},"5":{"df":1,"docs":{"917":{"tf":1.0}}},"6":{"df":2,"docs":{"838":{"tf":1.0},"916":{"tf":1.0}}},"8":{"5":{"7":{"6":{".":{"0":{"df":1,"docs":{"517":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"df":1,"docs":{"841":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"838":{"tf":1.0}}},"3":{"df":1,"docs":{"840":{"tf":1.0}}},"5":{"df":2,"docs":{"835":{"tf":1.0},"916":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"918":{"tf":1.0}}},"9":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"916":{"tf":1.0}}},"3":{"df":1,"docs":{"838":{"tf":1.0}}},"4":{"df":1,"docs":{"839":{"tf":1.0}}},"7":{"df":1,"docs":{"917":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"834":{"tf":1.0}}},"8":{"df":1,"docs":{"837":{"tf":1.0}}},"df":0,"docs":{}},":":{"1":{"0":{":":{"1":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"3":{"df":1,"docs":{"757":{"tf":1.0}}},"6":{"df":2,"docs":{"720":{"tf":1.0},"757":{"tf":1.0}}},"df":0,"docs":{}},"df":64,"docs":{"127":{"tf":1.0},"183":{"tf":2.23606797749979},"218":{"tf":1.0},"258":{"tf":1.0},"275":{"tf":1.4142135623730951},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"717":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"737":{"tf":1.0},"739":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951},"836":{"tf":1.0},"842":{"tf":1.4142135623730951},"852":{"tf":1.0},"880":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":2.0},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"904":{"tf":1.4142135623730951},"905":{"tf":2.0},"910":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"958":{"tf":2.8284271247461903}},"m":{"b":{"df":4,"docs":{"135":{"tf":1.0},"521":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}}},"1":{".":{"3":{"df":1,"docs":{"868":{"tf":1.0}}},"4":{".":{"0":{"df":1,"docs":{"861":{"tf":1.0}}},"1":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"855":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"834":{"tf":1.0},"837":{"tf":1.0}}},"8":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"834":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"834":{"tf":1.0}}},"4":{"df":1,"docs":{"834":{"tf":1.0}}},"6":{"df":1,"docs":{"834":{"tf":1.0}}},"9":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"1":{"df":1,"docs":{"834":{"tf":1.0}}},"2":{"df":2,"docs":{"833":{"tf":1.4142135623730951},"915":{"tf":1.0}}},"3":{"df":1,"docs":{"834":{"tf":1.0}}},"5":{"df":1,"docs":{"835":{"tf":1.0}}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"831":{"tf":1.0}}},"5":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"833":{"tf":1.0},"915":{"tf":1.0}}},"8":{"df":1,"docs":{"915":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"832":{"tf":1.0}}},"5":{"df":1,"docs":{"831":{"tf":1.0}}},"8":{"df":1,"docs":{"830":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"258":{"tf":1.0},"288":{"tf":1.0},"480":{"tf":1.0},"507":{"tf":1.0},"715":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"818":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"877":{"tf":2.0},"878":{"tf":2.0},"879":{"tf":2.0},"900":{"tf":1.4142135623730951},"901":{"tf":1.4142135623730951},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":3.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"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":{".":{"0":{".":{"0":{"df":2,"docs":{"833":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":1,"docs":{"831":{"tf":1.0}}},"5":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"7":{"df":2,"docs":{"830":{"tf":1.4142135623730951},"914":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"3":{"df":1,"docs":{"915":{"tf":1.0}}},"8":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"914":{"tf":1.4142135623730951}}},"4":{"/":{"a":{"df":2,"docs":{"132":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"829":{"tf":1.0}}},"df":1,"docs":{"950":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"820":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"164":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"780":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"958":{"tf":2.449489742783178}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"0":{"3":{"df":1,"docs":{"820":{"tf":1.0}}},"4":{"df":1,"docs":{"818":{"tf":1.0}}},"df":1,"docs":{"949":{"tf":1.0}}},"1":{"4":{"df":1,"docs":{"819":{"tf":1.0}}},"7":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"818":{"tf":1.0}}},"5":{"df":1,"docs":{"818":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}},"3":{"5":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"df":1,"docs":{"816":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"816":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"816":{"tf":1.0}}},"3":{"df":1,"docs":{"815":{"tf":1.0}}},"5":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"815":{"tf":1.0}}},"3":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"814":{"tf":1.0}}},"6":{"df":1,"docs":{"814":{"tf":1.0}}},"8":{"df":1,"docs":{"814":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"813":{"tf":1.0}}},"4":{"df":1,"docs":{"813":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"812":{"tf":1.0}}},"4":{"df":1,"docs":{"813":{"tf":1.0}}},"8":{"df":1,"docs":{"812":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":8,"docs":{"151":{"tf":1.0},"288":{"tf":1.0},"752":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"947":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0}}},"4":{".":{"0":{".":{"1":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"759":{"tf":1.0}}},"1":{".":{"2":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"738":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"3":{"df":1,"docs":{"811":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"913":{"tf":1.0}}},"6":{"df":1,"docs":{"811":{"tf":1.0}}},"7":{"df":1,"docs":{"811":{"tf":1.0}}},"8":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"810":{"tf":1.0}}},"8":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"809":{"tf":1.0}}},"2":{"df":1,"docs":{"809":{"tf":1.0}}},"4":{"df":1,"docs":{"808":{"tf":1.0}}},"8":{"df":1,"docs":{"807":{"tf":1.0}}},"df":1,"docs":{"948":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"807":{"tf":1.0}}},"2":{"df":1,"docs":{"807":{"tf":1.0}}},"9":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"2":{"df":2,"docs":{"807":{"tf":1.0},"912":{"tf":1.0}}},"4":{"df":1,"docs":{"807":{"tf":1.0}}},"5":{"df":1,"docs":{"807":{"tf":1.7320508075688772}}},"7":{"df":2,"docs":{"855":{"tf":1.0},"912":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"806":{"tf":1.0}}},"2":{"df":1,"docs":{"806":{"tf":1.0}}},"5":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"806":{"tf":1.0}}},"2":{"df":1,"docs":{"804":{"tf":1.0}}},"3":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"805":{"tf":1.0}}},"5":{"df":1,"docs":{"805":{"tf":1.0}}},"9":{"7":{"6":{"1":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"288":{"tf":1.0},"77":{"tf":1.0},"774":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"5":{".":{"1":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"7":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"805":{"tf":1.0}}},"2":{"9":{"3":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"912":{"tf":1.0}}},"4":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":2,"docs":{"804":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"6":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"3":{"4":{"df":1,"docs":{"804":{"tf":1.0}}},"8":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"782":{"tf":1.0}}},"3":{"6":{"1":{"2":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"947":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"803":{"tf":1.0}}},"1":{"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"802":{"tf":1.0}}},"8":{"3":{"8":{"3":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"802":{"tf":1.0}}},"6":{"7":{"6":{"4":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"6":{"0":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"4":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"1":{"9":{"1":{"2":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"802":{"tf":1.0}}},"5":{"df":1,"docs":{"793":{"tf":1.0}}},"6":{"df":1,"docs":{"802":{"tf":1.0}}},"7":{"7":{"6":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"0":{"df":1,"docs":{"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"5":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"135":{"tf":1.0},"315":{"tf":1.0},"733":{"tf":1.0},"743":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.0},"770":{"tf":1.4142135623730951},"780":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"836":{"tf":1.0},"902":{"tf":1.4142135623730951},"920":{"tf":1.0},"922":{"tf":1.4142135623730951},"929":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"6":{"0":{"1":{"5":{"5":{"0":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"799":{"tf":2.449489742783178}}},"4":{"8":{"5":{"4":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"801":{"tf":1.0}}},"5":{"0":{"9":{"7":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"8":{"2":{"df":2,"docs":{"127":{"tf":1.0},"866":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"4":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"8":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"801":{"tf":1.0}}},"4":{"7":{"8":{"5":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"801":{"tf":1.0}}},"6":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},"2":{"8":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"9":{"9":{"7":{"df":1,"docs":{"857":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"801":{"tf":1.0}}},"5":{"8":{"6":{"5":{"df":1,"docs":{"856":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"5":{"7":{"5":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"7":{"3":{"df":1,"docs":{"847":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"3":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"799":{"tf":1.0}}},"6":{"5":{"8":{"9":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"4":{"7":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"947":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"798":{"tf":1.0}}},"5":{"0":{"4":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"797":{"tf":1.0}}},"9":{"df":1,"docs":{"797":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"910":{"tf":1.0}}},"2":{"2":{"7":{"3":{"df":1,"docs":{"747":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"910":{"tf":1.0}}},"9":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"8":{"3":{"7":{"0":{"7":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"7":{"0":{"1":{"df":1,"docs":{"953":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"3":{"6":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"909":{"tf":1.0}}},"7":{"df":1,"docs":{"795":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"732":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"901":{"tf":1.4142135623730951},"904":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"958":{"tf":2.0}}},"7":{"1":{"1":{"9":{"2":{"8":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{"2":{"5":{"df":2,"docs":{"124":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"8":{"0":{"7":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"909":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"909":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"4":{"3":{"1":{"4":{"0":{"df":1,"docs":{"919":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"5":{"3":{"df":1,"docs":{"626":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"792":{"tf":1.0}}},"8":{"df":1,"docs":{"909":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"5":{"0":{"2":{"3":{"5":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"908":{"tf":1.0}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"5":{"df":1,"docs":{"907":{"tf":1.0}}},"6":{"df":1,"docs":{"792":{"tf":1.0}}},"9":{"df":1,"docs":{"792":{"tf":1.0}}},"df":3,"docs":{"498":{"tf":1.0},"521":{"tf":1.0},"590":{"tf":1.0}}},"6":{"2":{"8":{"5":{"9":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"4":{"9":{"df":1,"docs":{"774":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"907":{"tf":1.0}}},"7":{"0":{"3":{"7":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"907":{"tf":1.0}}},"9":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"906":{"tf":1.0}}},"2":{"1":{"5":{"6":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"905":{"tf":1.0}}},"4":{"df":1,"docs":{"791":{"tf":1.0}}},"5":{"4":{"2":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"790":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"0":{"3":{"7":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"789":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"786":{"tf":1.0}}},"4":{"df":1,"docs":{"905":{"tf":1.0}}},"7":{"2":{"3":{"4":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"904":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"786":{"tf":1.0}}},"3":{"df":1,"docs":{"788":{"tf":1.4142135623730951}}},"6":{"2":{"5":{"8":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"1":{"9":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"0":{"0":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"737":{"tf":1.0},"754":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"818":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"956":{"tf":1.7320508075688772},"958":{"tf":1.7320508075688772}}},"8":{"0":{"0":{"6":{"4":{"6":{"df":1,"docs":{"755":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"1":{"1":{"2":{"8":{"df":1,"docs":{"754":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"2":{"5":{"5":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"3":{"5":{"1":{"3":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{"1":{"5":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":2,"docs":{"787":{"tf":1.0},"900":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"903":{"tf":1.0}}},"1":{"2":{"5":{"3":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"2":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"903":{"tf":1.0}}},"2":{"6":{"7":{"2":{"df":1,"docs":{"749":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"4":{"5":{"9":{"2":{"df":1,"docs":{"127":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"902":{"tf":1.0}}},"5":{"2":{"3":{"3":{"df":1,"docs":{"741":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"0":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"785":{"tf":1.0}}},"9":{"1":{"6":{"1":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"785":{"tf":1.0}}},"8":{"0":{"6":{"6":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"4":{"5":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"9":{"3":{"7":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"2":{"4":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"8":{"1":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"784":{"tf":1.0},"899":{"tf":1.0}}},"5":{"df":2,"docs":{"898":{"tf":1.0},"900":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"5":{"3":{"3":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"898":{"tf":1.0}}},"7":{"9":{"5":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"0":{"1":{"df":2,"docs":{"124":{"tf":1.0},"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}},"9":{"df":1,"docs":{"897":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"895":{"tf":1.0}}},"2":{"df":2,"docs":{"776":{"tf":1.0},"783":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"895":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"782":{"tf":1.0}}},"9":{"4":{"2":{"9":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"2":{"9":{"7":{"df":1,"docs":{"729":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"782":{"tf":1.0}}},"6":{"1":{"1":{"3":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"782":{"tf":1.0}}},"9":{"1":{"1":{"4":{"df":1,"docs":{"727":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"781":{"tf":1.0}}},"2":{"0":{"9":{"7":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"894":{"tf":1.0}}},"8":{"3":{"3":{"6":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"759":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}},"9":{"0":{"0":{"df":1,"docs":{"894":{"tf":1.0}}},"8":{"df":1,"docs":{"780":{"tf":1.0}}},"9":{"2":{"4":{"4":{"df":1,"docs":{"721":{"tf":1.0}}},"6":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"779":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"9":{"7":{"6":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}}},"3":{"df":2,"docs":{"779":{"tf":1.0},"892":{"tf":1.0}}},"5":{"3":{"4":{"6":{"df":1,"docs":{"716":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"8":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"8":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"947":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"777":{"tf":1.0},"778":{"tf":1.0}}},"5":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"891":{"tf":1.0}}},"3":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"890":{"tf":1.0}}},"1":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"947":{"tf":1.0}}},"df":12,"docs":{"258":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"751":{"tf":1.4142135623730951},"867":{"tf":1.0},"921":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}},">":{"&":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"100":{"tf":2.23606797749979},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"127":{"tf":4.0},"146":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"203":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":2.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"310":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"404":{"tf":2.6457513110645907},"414":{"tf":2.6457513110645907},"416":{"tf":1.4142135623730951},"465":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"517":{"tf":1.0},"524":{"tf":1.4142135623730951},"537":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":3.0},"624":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"728":{"tf":1.0},"773":{"tf":1.0},"79":{"tf":2.23606797749979},"907":{"tf":1.0},"958":{"tf":1.0}},"m":{"b":{"df":3,"docs":{"135":{"tf":1.0},"837":{"tf":1.0},"933":{"tf":1.0}}},"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"n":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"μ":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}}},"2":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"0":{".":{"2":{"df":1,"docs":{"561":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"3":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"877":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"590":{"tf":1.0}}},"4":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":1,"docs":{"632":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"3":{"df":1,"docs":{"774":{"tf":1.0}}},"4":{"df":1,"docs":{"815":{"tf":1.0}}},"5":{"df":1,"docs":{"927":{"tf":1.0}}},"6":{"df":1,"docs":{"927":{"tf":1.0}}},"9":{"df":30,"docs":{"108":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"87":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"958":{"tf":3.0}}},"df":1,"docs":{"945":{"tf":1.0}}},"2":{"0":{"df":79,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"812":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"818":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"826":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"847":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"863":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"958":{"tf":5.196152422706632}}},"1":{"df":73,"docs":{"677":{"tf":1.0},"780":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"798":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"947":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"958":{"tf":4.795831523312719}}},"2":{"df":39,"docs":{"664":{"tf":1.0},"684":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"958":{"tf":2.23606797749979}}},"3":{"df":34,"docs":{"733":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"743":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"746":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"901":{"tf":1.4142135623730951},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"904":{"tf":1.4142135623730951},"905":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"4":{"df":27,"docs":{"258":{"tf":1.0},"715":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"722":{"tf":1.4142135623730951},"723":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"6":{"df":1,"docs":{"773":{"tf":1.0}}},"9":{"df":1,"docs":{"773":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"3":{"5":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"9":{"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"771":{"tf":1.0}}},"df":1,"docs":{"946":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"770":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"762":{"tf":1.0}}},"7":{"df":1,"docs":{"765":{"tf":1.0}}},"8":{"df":1,"docs":{"765":{"tf":1.0}}},"9":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"770":{"tf":1.0}}},"7":{"df":1,"docs":{"769":{"tf":1.0}}},"8":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"258":{"tf":1.0},"328":{"tf":1.4142135623730951},"738":{"tf":1.0},"740":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"956":{"tf":1.0}}},"1":{"1":{"4":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":4,"docs":{"763":{"tf":1.0},"764":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}},"6":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"763":{"tf":1.0}}},"5":{"df":1,"docs":{"763":{"tf":1.0}}},"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"404":{"tf":1.0},"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"945":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"762":{"tf":1.0}}},"3":{"df":1,"docs":{"762":{"tf":1.0}}},"5":{"df":1,"docs":{"762":{"tf":1.0}}},"9":{"df":1,"docs":{"762":{"tf":1.0}}},"df":1,"docs":{"945":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"762":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"8":{"2":{"df":1,"docs":{"762":{"tf":1.0}}},"8":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"761":{"tf":1.0}}},"5":{"df":1,"docs":{"761":{"tf":1.0}}},"6":{"df":1,"docs":{"759":{"tf":1.0}}},"9":{"df":1,"docs":{"761":{"tf":1.0}}},"df":1,"docs":{"944":{"tf":1.0}}},"df":7,"docs":{"258":{"tf":1.0},"719":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"760":{"tf":1.0}}},"df":1,"docs":{"943":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"760":{"tf":1.0}}},"9":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"759":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"747":{"tf":1.0}}},"5":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"757":{"tf":1.0}}},"6":{"df":1,"docs":{"756":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"738":{"tf":1.0}}},"4":{"df":1,"docs":{"756":{"tf":1.0}}},"5":{"df":1,"docs":{"756":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"755":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"7":{"0":{"df":1,"docs":{"754":{"tf":1.0}}},"1":{"df":1,"docs":{"752":{"tf":1.0}}},"2":{"df":1,"docs":{"752":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"753":{"tf":1.0}}},"8":{"df":1,"docs":{"753":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"9":{"4":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"727":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"3":{"0":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":1,"docs":{"880":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"750":{"tf":1.0}}},"3":{"df":1,"docs":{"750":{"tf":1.0}}},"7":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"751":{"tf":1.0}}},"8":{"df":1,"docs":{"748":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"751":{"tf":1.0}}},"5":{"df":1,"docs":{"735":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"747":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"747":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"553":{"tf":1.0},"574":{"tf":1.0},"721":{"tf":1.4142135623730951},"723":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"847":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"511":{"tf":1.0},"524":{"tf":1.0}}},"1":{"5":{"df":1,"docs":{"743":{"tf":1.0}}},"7":{"df":1,"docs":{"743":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"742":{"tf":1.0}}},"6":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"740":{"tf":1.0}}},"6":{"df":1,"docs":{"734":{"tf":1.0}}},"9":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"739":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"173":{"tf":1.0},"718":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"5":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{".":{"8":{"9":{"3":{"7":{"3":{"9":{"3":{"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":{}},"0":{"3":{"df":1,"docs":{"737":{"tf":1.0}}},"df":3,"docs":{"135":{"tf":1.0},"830":{"tf":1.0},"929":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"737":{"tf":1.0}}},"3":{"df":1,"docs":{"735":{"tf":1.0}}},"6":{"df":1,"docs":{"735":{"tf":1.0}}},"8":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"2":{"8":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"736":{"tf":1.0}}},"8":{"df":1,"docs":{"736":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"4":{"5":{"df":1,"docs":{"736":{"tf":1.0}}},"df":1,"docs":{"941":{"tf":1.0}}},"5":{"df":2,"docs":{"425":{"tf":1.0},"721":{"tf":1.0}}},"6":{"df":2,"docs":{"701":{"tf":1.0},"940":{"tf":1.0}}},"df":16,"docs":{"551":{"tf":2.0},"553":{"tf":1.7320508075688772},"554":{"tf":2.449489742783178},"669":{"tf":1.0},"753":{"tf":1.4142135623730951},"757":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"826":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":2.23606797749979}}},"6":{"0":{"df":1,"docs":{"939":{"tf":1.0}}},"1":{"4":{"df":1,"docs":{"735":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"6":{"9":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"9":{"7":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":15,"docs":{"258":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"863":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"7":{"0":{"9":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"1":{"9":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"731":{"tf":1.0}}},"7":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"731":{"tf":1.0}}},"7":{"df":1,"docs":{"727":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"4":{"5":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"728":{"tf":1.0}}},"7":{"df":1,"docs":{"729":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"728":{"tf":1.0}}},"7":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"727":{"tf":1.0}}},"2":{"df":1,"docs":{"727":{"tf":1.0}}},"6":{"df":1,"docs":{"727":{"tf":1.7320508075688772}}},"df":1,"docs":{"938":{"tf":1.0}}},"df":7,"docs":{"158":{"tf":1.0},"171":{"tf":1.0},"833":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"8":{"1":{"df":1,"docs":{"938":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":3,"docs":{"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0}}},"7":{"df":1,"docs":{"721":{"tf":1.0}}},"8":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"1":{"df":1,"docs":{"721":{"tf":1.0}}},"3":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"721":{"tf":1.0}}},"df":1,"docs":{"938":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"164":{"tf":1.0},"715":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"718":{"tf":1.0}}},"5":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"718":{"tf":1.0}}},"8":{"df":1,"docs":{"718":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"717":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":13,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"730":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"958":{"tf":1.0}},"t":{"0":{"9":{":":{"5":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"3":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"2":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},">":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"1":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":30,"docs":{"100":{"tf":2.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"146":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"259":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"289":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"642":{"tf":1.0},"747":{"tf":1.0},"79":{"tf":2.0},"814":{"tf":1.4142135623730951},"830":{"tf":1.0},"958":{"tf":1.0}}},"3":{".":{"1":{".":{"0":{"df":1,"docs":{"945":{"tf":1.0}}},"1":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"785":{"tf":1.0}}},"2":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"799":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"846":{"tf":1.0},"867":{"tf":1.0}}},"6":{".":{"0":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"735":{"tf":1.0},"858":{"tf":1.0}}},"7":{"df":5,"docs":{"40":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0}}},"8":{"df":4,"docs":{"15":{"tf":1.0},"30":{"tf":1.0},"673":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"6":{"df":1,"docs":{"715":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"938":{"tf":1.0}}},"5":{"df":1,"docs":{"258":{"tf":1.0}}},"df":14,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"22":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"733":{"tf":1.4142135623730951},"747":{"tf":1.0},"748":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"81":{"tf":1.0},"892":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"1":{".":{"5":{".":{"0":{"df":4,"docs":{"425":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"563":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":2,"docs":{"936":{"tf":1.0},"937":{"tf":1.0}}},"9":{"df":1,"docs":{"937":{"tf":1.0}}},"df":6,"docs":{"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0}}},"2":{"df":6,"docs":{"258":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"621":{"tf":1.0},"762":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"3":{".":{"0":{".":{"0":{"df":2,"docs":{"11":{"tf":1.0},"824":{"tf":1.0}}},"3":{"df":1,"docs":{"824":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"824":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"756":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"2":{"df":1,"docs":{"935":{"tf":1.0}}},"3":{"df":1,"docs":{"935":{"tf":1.0}}},"6":{"df":1,"docs":{"933":{"tf":1.0}}},"df":2,"docs":{"731":{"tf":1.0},"735":{"tf":1.0}}},"5":{"8":{"df":1,"docs":{"884":{"tf":1.0}}},"9":{"df":1,"docs":{"884":{"tf":1.0}}},"d":{"a":{"b":{"8":{"5":{"2":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"884":{"tf":1.0}}},"5":{"df":1,"docs":{"883":{"tf":1.0}}},"df":2,"docs":{"258":{"tf":1.0},"956":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"882":{"tf":1.0}}},"5":{"df":1,"docs":{"934":{"tf":1.0}}},"8":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"882":{"tf":1.0}}},"2":{"df":1,"docs":{"882":{"tf":1.0}}},"9":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"881":{"tf":1.0}}},"4":{"df":1,"docs":{"881":{"tf":1.0}}},"9":{"df":2,"docs":{"880":{"tf":1.0},"933":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"169":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"416":{"tf":1.4142135623730951},"546":{"tf":1.0},"551":{"tf":2.23606797749979},"553":{"tf":2.0},"632":{"tf":1.0},"65":{"tf":1.0},"772":{"tf":1.0},"79":{"tf":1.7320508075688772},"915":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"318":{"tf":1.0}}},"2":{".":{"2":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"783":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"3":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"880":{"tf":1.0}}},"1":{"df":1,"docs":{"879":{"tf":1.0}}},"7":{"df":1,"docs":{"880":{"tf":1.0}}},"9":{"6":{"df":8,"docs":{"377":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.0},"170":{"tf":1.0},"285":{"tf":1.0},"570":{"tf":1.0},"920":{"tf":1.0},"956":{"tf":1.0}},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"1":{"1":{"df":1,"docs":{"933":{"tf":1.0}}},"5":{"df":1,"docs":{"933":{"tf":1.0}}},"6":{"df":1,"docs":{"880":{"tf":1.0}}},"df":1,"docs":{"956":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"879":{"tf":1.0}}},"2":{"df":1,"docs":{"880":{"tf":1.0}}},"df":2,"docs":{"588":{"tf":1.0},"956":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}}},"3":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"1":{"df":1,"docs":{"933":{"tf":1.0}}},"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":1,"docs":{"553":{"tf":1.0}},"f":{"4":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{"df":1,"docs":{"933":{"tf":1.0}}},"6":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"9":{"5":{"df":1,"docs":{"872":{"tf":1.0}}},"7":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":2.23606797749979},"867":{"tf":1.0}}}},"d":{"2":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"184":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.4142135623730951},"289":{"tf":1.0},"546":{"tf":1.0},"632":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.7320508075688772}},"k":{"b":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"869":{"tf":1.0}}}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"1":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":11,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"315":{"tf":1.0},"468":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"756":{"tf":1.0},"897":{"tf":1.0}}},"df":6,"docs":{"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"873":{"tf":1.0}}},"1":{".":{"8":{".":{"2":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"df":3,"docs":{"872":{"tf":1.0},"929":{"tf":1.7320508075688772},"932":{"tf":1.0}}},"8":{"df":1,"docs":{"872":{"tf":1.0}}},"9":{"df":1,"docs":{"932":{"tf":1.0}}},"df":1,"docs":{"158":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"871":{"tf":1.0}}},"4":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":2,"docs":{"404":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"871":{"tf":1.0},"931":{"tf":1.0}}},"5":{"df":1,"docs":{"871":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"930":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"929":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"870":{"tf":1.0}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.4142135623730951},"353":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":2.449489742783178},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"642":{"tf":1.0},"652":{"tf":1.4142135623730951},"79":{"tf":1.0},"833":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"6":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"834":{"tf":1.0}}}}},"6":{".":{"1":{".":{"2":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":2,"docs":{"824":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"1":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"801":{"tf":1.0}}},"9":{"4":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"929":{"tf":1.0}}},"df":5,"docs":{"135":{"tf":1.4142135623730951},"315":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"929":{"tf":1.0}}},"1":{"4":{"7":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"df":1,"docs":{"929":{"tf":1.0}}},"df":4,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"864":{"tf":1.0}}},"8":{"df":1,"docs":{"929":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"929":{"tf":1.0}}},"3":{"5":{"5":{"2":{"0":{"0":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"864":{"tf":1.0}}},"df":1,"docs":{"258":{"tf":1.0}}},"8":{"1":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"929":{"tf":1.0}}},"5":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.4142135623730951},"379":{"tf":1.0},"406":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"956":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{"df":2,"docs":{"30":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"910":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":1,"docs":{"736":{"tf":1.0}}},"1":{"df":16,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"830":{"tf":1.0}}},"1":{"df":1,"docs":{"863":{"tf":1.0}}},"2":{"df":1,"docs":{"863":{"tf":1.0}}},"3":{"df":1,"docs":{"863":{"tf":1.0}}},"7":{"df":1,"docs":{"863":{"tf":1.0}}},"df":1,"docs":{"956":{"tf":1.0}}},"4":{"d":{"b":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"927":{"tf":1.0}}},"5":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"862":{"tf":1.0}}},"3":{"df":1,"docs":{"862":{"tf":1.0}}},"5":{"df":1,"docs":{"862":{"tf":1.0}}},"6":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"927":{"tf":1.0}}},"9":{"df":1,"docs":{"927":{"tf":1.0}}},"df":1,"docs":{"955":{"tf":1.0}}},"8":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"861":{"tf":1.0}}},"6":{"df":1,"docs":{"925":{"tf":1.0}}},"9":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"640":{"tf":1.0},"642":{"tf":1.0},"786":{"tf":1.4142135623730951}}},"8":{".":{"0":{"df":1,"docs":{"517":{"tf":1.7320508075688772}}},"1":{".":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"df":1,"docs":{"861":{"tf":1.0}}},"8":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}},"df":2,"docs":{"288":{"tf":1.4142135623730951},"303":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"860":{"tf":1.0}}},"1":{"df":1,"docs":{"924":{"tf":1.0}}},"5":{"df":1,"docs":{"860":{"tf":1.0}}},"9":{"2":{"df":1,"docs":{"541":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"924":{"tf":1.0}}},"5":{"df":1,"docs":{"924":{"tf":1.0}}},"7":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"858":{"tf":1.0}}},"3":{"df":1,"docs":{"858":{"tf":1.0}}},"4":{"df":1,"docs":{"858":{"tf":1.0}}},"6":{"df":2,"docs":{"858":{"tf":1.0},"923":{"tf":1.7320508075688772}}},"df":1,"docs":{"954":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}}},"6":{",":{"4":{"0":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":1,"docs":{"554":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"854":{"tf":1.0}}},"6":{"df":1,"docs":{"854":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"8":{"4":{"2":{"1":{"1":{"df":0,"docs":{},"e":{"5":{"4":{"5":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"a":{"a":{"0":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"136":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"471":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"791":{"tf":1.0},"802":{"tf":1.0},"835":{"tf":1.0},"956":{"tf":1.0}},"k":{"df":2,"docs":{"761":{"tf":1.0},"912":{"tf":1.0}}}},"9":{"0":{"8":{"df":1,"docs":{"923":{"tf":1.0}}},"df":1,"docs":{"953":{"tf":2.0}}},"2":{"4":{"df":1,"docs":{"922":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"3":{"5":{"df":1,"docs":{"849":{"tf":1.0}}},"df":0,"docs":{}},"4":{"9":{"df":1,"docs":{"849":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"922":{"tf":1.0}}},"3":{"df":1,"docs":{"849":{"tf":1.0}}},"df":2,"docs":{"685":{"tf":1.0},"951":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}}},"6":{"2":{"df":1,"docs":{"849":{"tf":1.0}}},"5":{"df":1,"docs":{"921":{"tf":1.0}}},"7":{"df":2,"docs":{"849":{"tf":1.0},"920":{"tf":1.0}}},"8":{"df":2,"docs":{"849":{"tf":1.0},"921":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"7":{"0":{"df":1,"docs":{"921":{"tf":1.0}}},"4":{"df":1,"docs":{"846":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"8":{"1":{"df":1,"docs":{"920":{"tf":1.0}}},"3":{"df":1,"docs":{"847":{"tf":1.0}}},"4":{"df":1,"docs":{"919":{"tf":1.0}}},"6":{"df":1,"docs":{"847":{"tf":1.0}}},"7":{"df":1,"docs":{"846":{"tf":1.0}}},"8":{"df":1,"docs":{"919":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"9":{"3":{"df":1,"docs":{"847":{"tf":1.0}}},"4":{"df":1,"docs":{"919":{"tf":1.0}}},"5":{"df":1,"docs":{"842":{"tf":1.0}}},"6":{"df":1,"docs":{"846":{"tf":1.0}}},"8":{"df":1,"docs":{"843":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"df":9,"docs":{"164":{"tf":1.0},"183":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"956":{"tf":1.0}}},"_":{"_":{"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":1,"docs":{"473":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"_":{"df":24,"docs":{"377":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.4142135623730951},"414":{"tf":2.0},"419":{"tf":1.4142135623730951},"435":{"tf":2.0},"440":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"858":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":3.4641016151377544}}}},"k":{".":{"a":{"df":2,"docs":{"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"1":{"df":0,"docs":{},"i":{"df":3,"docs":{"376":{"tf":1.4142135623730951},"387":{"tf":1.0},"397":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"751":{"tf":1.0},"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"665":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.4142135623730951}},"l":{"df":6,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"741":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"478":{"tf":1.0},"492":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"223":{"tf":1.0},"354":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.4142135623730951},"377":{"tf":1.0},"427":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"711":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"376":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"549":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":18,"docs":{"135":{"tf":1.0},"313":{"tf":1.0},"357":{"tf":1.0},"446":{"tf":1.0},"529":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.4142135623730951},"693":{"tf":1.0},"717":{"tf":1.4142135623730951},"723":{"tf":1.0},"741":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":1.7320508075688772},"801":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"953":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":31,"docs":{"110":{"tf":1.4142135623730951},"177":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"32":{"tf":2.0},"356":{"tf":1.4142135623730951},"389":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"418":{"tf":1.0},"660":{"tf":2.0},"665":{"tf":1.0},"679":{"tf":1.0},"688":{"tf":2.0},"715":{"tf":1.0},"736":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"842":{"tf":1.0},"876":{"tf":1.0},"89":{"tf":1.4142135623730951},"917":{"tf":1.0},"924":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.7320508075688772}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.4142135623730951}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"396":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"297":{"tf":1.4142135623730951},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"753":{"tf":1.0},"796":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"653":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"680":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"703":{"tf":1.0},"76":{"tf":1.0},"935":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":2.0},"884":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":1,"docs":{"517":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"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":1,"docs":{"517":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"738":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"729":{"tf":1.0},"738":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"729":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"494":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"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":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"475":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"772":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"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":{"c":{"!":{"[":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"476":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}},"e":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"586":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"586":{"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":15,"docs":{"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.7320508075688772},"517":{"tf":1.7320508075688772},"574":{"tf":1.0},"575":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"725":{"tf":1.0},"829":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"456":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"759":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"257":{"tf":1.4142135623730951},"376":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"590":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"814":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"741":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"340":{"tf":1.0},"376":{"tf":1.0},"560":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"909":{"tf":1.0},"951":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":28,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"195":{"tf":1.0},"224":{"tf":2.6457513110645907},"233":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.4142135623730951},"318":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0},"691":{"tf":2.0},"711":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.449489742783178},"837":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"880":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{},"n":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"233":{"tf":1.4142135623730951},"315":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.0},"814":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"956":{"tf":1.0}}}}},"b":{"df":2,"docs":{"224":{"tf":2.0},"227":{"tf":1.7320508075688772}}},"d":{"df":100,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":2.449489742783178},"195":{"tf":1.0},"198":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":2.449489742783178},"24":{"tf":1.0},"254":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"315":{"tf":1.0},"318":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":3.7416573867739413},"414":{"tf":3.7416573867739413},"419":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.7320508075688772},"474":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"613":{"tf":1.0},"614":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"728":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.7320508075688772},"752":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"799":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"823":{"tf":1.4142135623730951},"830":{"tf":1.0},"834":{"tf":2.0},"837":{"tf":1.7320508075688772},"846":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"882":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"898":{"tf":1.0},"9":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"927":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"956":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":50,"docs":{"107":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"289":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"568":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"63":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"707":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":1.0},"802":{"tf":1.0},"834":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"120":{"tf":1.0},"136":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.0},"471":{"tf":1.0},"52":{"tf":1.0},"704":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"500":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"134":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"288":{"tf":2.0},"289":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"693":{"tf":1.0},"758":{"tf":1.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}}}}}}}}},"df":152,"docs":{"0":{"tf":2.8284271247461903},"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.7320508075688772},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"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.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"563":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"621":{"tf":2.23606797749979},"649":{"tf":1.0},"665":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"69":{"tf":1.4142135623730951},"698":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.4142135623730951},"750":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.6457513110645907},"804":{"tf":1.0},"809":{"tf":1.4142135623730951},"811":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"875":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"902":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"340":{"tf":1.0},"854":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"188":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"693":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"308":{"tf":1.0},"318":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"580":{"tf":1.0},"77":{"tf":1.0},"782":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"_":{"df":1,"docs":{"461":{"tf":1.0}}},"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"951":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"132":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"862":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"100":{"tf":2.449489742783178},"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"757":{"tf":1.0},"762":{"tf":1.7320508075688772},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":2.449489742783178},"806":{"tf":1.0},"848":{"tf":1.0},"902":{"tf":1.0},"919":{"tf":1.0},"969":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"119":{"tf":1.0},"288":{"tf":1.0},"644":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"775":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"951":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"175":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}}}}},"h":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"252":{"tf":1.0},"959":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}},"s":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"288":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":4,"docs":{"471":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"950":{"tf":1.0}}}}}}}}},"i":{"a":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"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":{},"y":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":5,"docs":{"494":{"tf":1.0},"509":{"tf":1.0},"512":{"tf":1.0},"725":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":2,"docs":{"22":{"tf":1.0},"861":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":82,"docs":{"12":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"306":{"tf":1.0},"320":{"tf":1.0},"37":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"510":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"537":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0},"632":{"tf":1.0},"644":{"tf":1.4142135623730951},"658":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"709":{"tf":1.0},"715":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"734":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"750":{"tf":1.0},"76":{"tf":1.4142135623730951},"762":{"tf":1.0},"765":{"tf":1.0},"773":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"823":{"tf":1.0},"830":{"tf":1.7320508075688772},"839":{"tf":1.0},"885":{"tf":1.0},"906":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0},"947":{"tf":1.0},"97":{"tf":1.4142135623730951}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0}},"g":{"df":15,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"330":{"tf":1.0},"541":{"tf":1.0},"677":{"tf":1.4142135623730951},"76":{"tf":1.0},"761":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"df":1,"docs":{"334":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"285":{"tf":1.0},"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"811":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":29,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"456":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"680":{"tf":1.0},"692":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"98":{"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":{"27":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"223":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"653":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":24,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"401":{"tf":1.0},"412":{"tf":1.0},"471":{"tf":1.4142135623730951},"487":{"tf":1.0},"514":{"tf":1.0},"560":{"tf":1.0},"567":{"tf":1.0},"632":{"tf":1.0},"649":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0},"880":{"tf":1.0},"916":{"tf":1.0},"923":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"132":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.0},"404":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"916":{"tf":1.0},"933":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"103":{"tf":1.0},"811":{"tf":1.0},"82":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"261":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":8,"docs":{"288":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}}},"t":{"df":1,"docs":{"703":{"tf":1.0}}},"z":{"df":5,"docs":{"267":{"tf":1.0},"471":{"tf":1.0},"704":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"252":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"'":{"df":1,"docs":{"315":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":113,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":2.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"349":{"tf":1.0},"431":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"656":{"tf":2.0},"662":{"tf":2.23606797749979},"663":{"tf":2.0},"664":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"669":{"tf":1.7320508075688772},"670":{"tf":1.4142135623730951},"671":{"tf":2.23606797749979},"672":{"tf":1.4142135623730951},"673":{"tf":1.7320508075688772},"674":{"tf":2.6457513110645907},"675":{"tf":2.449489742783178},"676":{"tf":1.7320508075688772},"677":{"tf":1.7320508075688772},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"732":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"745":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"765":{"tf":1.0},"775":{"tf":1.0},"783":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.4142135623730951},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"826":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"830":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.4142135623730951},"837":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.4142135623730951}},"x":{"df":2,"docs":{"759":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":16,"docs":{"118":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"288":{"tf":1.0},"326":{"tf":2.6457513110645907},"327":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"734":{"tf":1.0}}},"y":{"df":1,"docs":{"923":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"118":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":17,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"61":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"687":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0},"959":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"752":{"tf":1.0},"762":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.0},"919":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"600":{"tf":1.0},"611":{"tf":1.0},"680":{"tf":1.0},"734":{"tf":1.0},"925":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":218,"docs":{"0":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.23606797749979},"13":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"26":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":2.0},"306":{"tf":2.449489742783178},"307":{"tf":2.6457513110645907},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.7320508075688772},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"316":{"tf":2.23606797749979},"317":{"tf":1.4142135623730951},"318":{"tf":2.6457513110645907},"319":{"tf":2.23606797749979},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":2.23606797749979},"326":{"tf":2.0},"327":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"334":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":1.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"348":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"392":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"400":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"405":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"432":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"442":{"tf":1.7320508075688772},"444":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"453":{"tf":1.7320508075688772},"455":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"513":{"tf":1.7320508075688772},"516":{"tf":1.4142135623730951},"518":{"tf":1.4142135623730951},"523":{"tf":1.0},"525":{"tf":1.0},"527":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"536":{"tf":1.7320508075688772},"539":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"559":{"tf":1.7320508075688772},"562":{"tf":1.4142135623730951},"564":{"tf":1.4142135623730951},"568":{"tf":1.0},"571":{"tf":1.7320508075688772},"572":{"tf":1.0},"573":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"581":{"tf":1.0},"584":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"605":{"tf":1.7320508075688772},"607":{"tf":1.0},"608":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"617":{"tf":1.0},"620":{"tf":1.4142135623730951},"621":{"tf":2.23606797749979},"622":{"tf":1.4142135623730951},"628":{"tf":1.0},"631":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"639":{"tf":1.4142135623730951},"641":{"tf":1.4142135623730951},"647":{"tf":1.0},"648":{"tf":1.4142135623730951},"650":{"tf":1.4142135623730951},"652":{"tf":2.6457513110645907},"653":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"678":{"tf":1.0},"686":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.4142135623730951},"729":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"752":{"tf":2.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"784":{"tf":1.4142135623730951},"796":{"tf":2.0},"799":{"tf":2.23606797749979},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.449489742783178},"817":{"tf":1.4142135623730951},"819":{"tf":1.0},"834":{"tf":1.4142135623730951},"854":{"tf":1.0},"86":{"tf":1.4142135623730951},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"878":{"tf":1.0},"890":{"tf":1.0},"898":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.7320508075688772},"919":{"tf":1.7320508075688772},"920":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.7320508075688772},"927":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"952":{"tf":1.4142135623730951},"956":{"tf":2.0},"960":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":3.3166247903554},"969":{"tf":1.7320508075688772}}},"k":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"p":{"'":{"df":3,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"83":{"tf":1.0}}},"/":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"?":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"&":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"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":{}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"315":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"315":{"tf":1.0},"947":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"947":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"169":{"tf":1.0},"175":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":2.8284271247461903},"234":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"338":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"674":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.4142135623730951},"811":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"476":{"tf":1.0},"494":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"960":{"tf":1.0},"966":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"958":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":11,"docs":{"137":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":2.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0}}},"(":{"_":{":":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"232":{"tf":1.0},"316":{"tf":1.4142135623730951},"338":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"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":{"136":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"316":{"tf":1.0},"318":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"839":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"0":{".":{"1":{".":{"0":{"df":3,"docs":{"316":{"tf":1.0},"318":{"tf":1.0},"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":{}}}}}}}}},"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":1,"docs":{"315":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"151":{"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"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":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":144,"docs":{"0":{"tf":2.0},"100":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"132":{"tf":4.358898943540674},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":3.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":2.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"173":{"tf":2.0},"175":{"tf":2.6457513110645907},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"181":{"tf":2.0},"182":{"tf":2.0},"183":{"tf":2.23606797749979},"184":{"tf":3.1622776601683795},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.7320508075688772},"22":{"tf":2.23606797749979},"222":{"tf":2.0},"224":{"tf":2.6457513110645907},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"254":{"tf":2.449489742783178},"259":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.6457513110645907},"290":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":3.3166247903554},"316":{"tf":2.6457513110645907},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.4142135623730951},"338":{"tf":1.0},"349":{"tf":2.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"418":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"549":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"59":{"tf":1.0},"632":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":2.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.7320508075688772},"658":{"tf":1.7320508075688772},"66":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.4142135623730951},"668":{"tf":1.0},"671":{"tf":2.449489742783178},"673":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"679":{"tf":1.7320508075688772},"680":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"687":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.4142135623730951},"711":{"tf":1.0},"727":{"tf":1.0},"78":{"tf":2.6457513110645907},"79":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":2.0},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"840":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":2.449489742783178},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.7320508075688772},"864":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":2.6457513110645907},"91":{"tf":1.4142135623730951},"938":{"tf":1.0},"946":{"tf":1.0},"958":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}},"df":26,"docs":{"13":{"tf":1.7320508075688772},"169":{"tf":1.0},"195":{"tf":2.0},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"267":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"529":{"tf":1.0},"663":{"tf":1.0},"672":{"tf":1.0},"741":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"674":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"202":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"v":{"df":1,"docs":{"342":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"145":{"tf":1.0},"258":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"326":{"tf":1.0},"377":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"572":{"tf":1.0},"583":{"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":8,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"762":{"tf":1.4142135623730951},"923":{"tf":1.0},"924":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"776":{"tf":1.0},"781":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"17":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"22":{"tf":1.0},"321":{"tf":1.0},"377":{"tf":1.0},"678":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}},"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":36,"docs":{"318":{"tf":1.7320508075688772},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"565":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"796":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"921":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"268":{"tf":1.0}}}},"m":{"6":{"4":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"184":{"tf":1.0},"227":{"tf":1.0},"259":{"tf":1.0},"50":{"tf":1.0},"653":{"tf":1.0},"854":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"170":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.0},"446":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0},"644":{"tf":1.7320508075688772},"645":{"tf":1.0},"693":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"254":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":6,"docs":{"226":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.4142135623730951},"637":{"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"tf":1.7320508075688772}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"635":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"635":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"635":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":{".":{"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"635":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"634":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"777":{"tf":1.0},"778":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":17,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"188":{"tf":1.0},"205":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"342":{"tf":1.0},"72":{"tf":1.0},"752":{"tf":1.0},"93":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"962":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"385":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"385":{"tf":1.0},"395":{"tf":1.0},"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"553":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"652":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"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":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"1":{"df":1,"docs":{"507":{"tf":1.4142135623730951}}},"df":5,"docs":{"416":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}},"df":2,"docs":{"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"2":{"df":2,"docs":{"519":{"tf":1.0},"588":{"tf":1.0}}},"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"385":{"tf":1.0},"395":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"553":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"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":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"333":{"tf":1.0},"508":{"tf":1.0},"578":{"tf":1.0},"642":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"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":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"496":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"480":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"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":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"2":{"0":{"1":{"9":{"df":1,"docs":{"554":{"tf":1.0}}},"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":{},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"416":{"tf":1.0}}},"2":{"df":1,"docs":{"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"407":{"tf":1.0},"428":{"tf":1.0},"465":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}},"df":6,"docs":{"416":{"tf":1.0},"465":{"tf":1.0},"519":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.0}}},"df":4,"docs":{"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"2":{"df":3,"docs":{"519":{"tf":1.0},"588":{"tf":1.0},"611":{"tf":1.0}}},"3":{"3":{"df":2,"docs":{"600":{"tf":1.0},"611":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":2,"docs":{"406":{"tf":1.0},"427":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"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":{"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"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":{"565":{"tf":1.0}}}}}},"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":1,"docs":{"531":{"tf":1.0}}}},"df":0,"docs":{}},"(":{"1":{"1":{"df":1,"docs":{"507":{"tf":1.0}}},"df":2,"docs":{"588":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}},"2":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}},"4":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"519":{"tf":1.0},"588":{"tf":1.0}}}}},"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"385":{"tf":1.0},"652":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":27,"docs":{"333":{"tf":1.0},"334":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.4142135623730951},"624":{"tf":1.0},"635":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"!":{"(":{"4":{"0":{"0":{"df":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"\"":{"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":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"427":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"480":{"tf":1.0},"496":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"600":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"553":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"531":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"107":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"497":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"565":{"tf":1.7320508075688772},"566":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"tf":2.0},"86":{"tf":1.4142135623730951},"880":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"\"":{"2":{"0":{"1":{"9":{"df":1,"docs":{"554":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"tf":1.4142135623730951}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"0":{"df":3,"docs":{"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"601":{"tf":1.0}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951}}},"df":2,"docs":{"416":{"tf":1.4142135623730951},"642":{"tf":1.0}},"l":{"df":1,"docs":{"577":{"tf":1.7320508075688772}}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}},"df":1,"docs":{"565":{"tf":1.0}},"l":{"df":2,"docs":{"480":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951}}}},"3":{"df":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.4142135623730951}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"652":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"623":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"333":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"601":{"tf":1.0},"624":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"643":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"272":{"tf":1.0}}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"203":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.0},"297":{"tf":1.4142135623730951},"474":{"tf":1.0},"677":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":16,"docs":{"100":{"tf":1.0},"252":{"tf":1.4142135623730951},"258":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"514":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"675":{"tf":1.0},"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"838":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"342":{"tf":1.0},"786":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"312":{"tf":1.0},"340":{"tf":1.0},"838":{"tf":1.0},"958":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"802":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"858":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"150":{"tf":1.0},"259":{"tf":1.0},"661":{"tf":1.0},"693":{"tf":1.0}}},"k":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"160":{"tf":1.0},"233":{"tf":1.0},"462":{"tf":1.0},"563":{"tf":1.0},"670":{"tf":1.0},"802":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0},"252":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"218":{"tf":1.0}}}}},"o":{"df":14,"docs":{"459":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"565":{"tf":2.23606797749979},"577":{"tf":1.0},"588":{"tf":1.0},"623":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.4142135623730951},"720":{"tf":1.0},"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"798":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":48,"docs":{"12":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"162":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":2.0},"218":{"tf":1.4142135623730951},"288":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"647":{"tf":1.0},"666":{"tf":1.4142135623730951},"67":{"tf":1.0},"671":{"tf":1.0},"686":{"tf":1.4142135623730951},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.4142135623730951},"783":{"tf":1.0},"793":{"tf":1.0},"807":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"91":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":14,"docs":{"117":{"tf":1.0},"136":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"289":{"tf":1.0},"36":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"669":{"tf":1.0},"685":{"tf":1.0},"9":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":73,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"306":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.0},"376":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"568":{"tf":1.0},"572":{"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.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"693":{"tf":1.0},"695":{"tf":1.4142135623730951},"705":{"tf":1.0},"710":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.4142135623730951},"78":{"tf":1.0},"802":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"969":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":36,"docs":{"104":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"310":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"785":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"844":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"318":{"tf":1.0},"342":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"577":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"652":{"tf":1.0},"865":{"tf":1.0}}}},"r":{"df":3,"docs":{"223":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":4,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":3.1622776601683795}}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"120":{"tf":1.0},"127":{"tf":1.4142135623730951},"135":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"267":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"859":{"tf":1.0},"873":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"125":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"168":{"tf":1.0},"245":{"tf":1.0},"271":{"tf":1.0},"315":{"tf":1.0},"346":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"786":{"tf":1.0},"807":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"823":{"tf":1.0},"830":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"724":{"tf":1.0},"726":{"tf":1.0},"858":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"289":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"640":{"tf":2.0},"645":{"tf":1.4142135623730951}},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"640":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"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":{}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"521":{"tf":1.0},"523":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"226":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0},"964":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":37,"docs":{"106":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"245":{"tf":1.4142135623730951},"258":{"tf":2.0},"275":{"tf":1.0},"276":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"52":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"583":{"tf":1.0},"653":{"tf":1.7320508075688772},"654":{"tf":1.7320508075688772},"659":{"tf":1.7320508075688772},"690":{"tf":1.0},"720":{"tf":1.0},"799":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.7320508075688772},"893":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"123":{"tf":1.0},"125":{"tf":2.6457513110645907},"127":{"tf":2.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"184":{"tf":2.6457513110645907},"210":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"275":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":2.0},"842":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"875":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"747":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"df":6,"docs":{"116":{"tf":1.0},"17":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951}}},"i":{"c":{"df":6,"docs":{"294":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"671":{"tf":1.0},"674":{"tf":1.0},"895":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"561":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"297":{"tf":1.0},"684":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.7320508075688772},"168":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"814":{"tf":1.0},"89":{"tf":1.0}}}}},"df":52,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"461":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"514":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"708":{"tf":1.0},"711":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":1.0},"816":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"858":{"tf":1.4142135623730951},"86":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":71,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"140":{"tf":1.7320508075688772},"150":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"338":{"tf":2.0},"342":{"tf":1.4142135623730951},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"541":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"630":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"663":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"696":{"tf":1.0},"697":{"tf":1.7320508075688772},"698":{"tf":1.0},"701":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"801":{"tf":1.0},"804":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"845":{"tf":1.0},"865":{"tf":1.4142135623730951},"867":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"941":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"184":{"tf":1.4142135623730951},"231":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.4142135623730951},"728":{"tf":1.0},"76":{"tf":1.0},"878":{"tf":1.0},"97":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":7,"docs":{"117":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"758":{"tf":1.0},"853":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":25,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"456":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"693":{"tf":1.0},"70":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"74":{"tf":2.0},"91":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"923":{"tf":1.0},"95":{"tf":2.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"752":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":29,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"435":{"tf":1.0},"446":{"tf":1.4142135623730951},"46":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"630":{"tf":1.0},"73":{"tf":1.0},"772":{"tf":1.0},"799":{"tf":1.0},"915":{"tf":1.0},"94":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"132":{"tf":1.0},"254":{"tf":1.0},"26":{"tf":1.7320508075688772},"334":{"tf":2.0},"768":{"tf":1.0},"833":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"288":{"tf":1.0},"401":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"126":{"tf":1.4142135623730951},"142":{"tf":2.0},"173":{"tf":1.0},"192":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"626":{"tf":1.0},"720":{"tf":1.0},"76":{"tf":1.0},"802":{"tf":1.0},"840":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"693":{"tf":1.0},"919":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"11":{"tf":1.0},"690":{"tf":1.4142135623730951},"849":{"tf":1.0},"868":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"df":20,"docs":{"26":{"tf":1.0},"654":{"tf":1.7320508075688772},"727":{"tf":1.0},"736":{"tf":1.0},"740":{"tf":1.0},"773":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"834":{"tf":1.7320508075688772},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"846":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"859":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"t":{"df":11,"docs":{"144":{"tf":1.0},"254":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"621":{"tf":1.0},"703":{"tf":1.4142135623730951},"862":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"693":{"tf":1.0}}}},"b":{"df":1,"docs":{"422":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"459":{"tf":1.0},"477":{"tf":1.0},"737":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.4142135623730951},"852":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":2.449489742783178}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"5":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"328":{"tf":3.0},"329":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.449489742783178},"640":{"tf":1.0},"642":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"129":{"tf":1.0},"135":{"tf":1.4142135623730951},"317":{"tf":1.0},"837":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":13,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.7320508075688772},"706":{"tf":1.4142135623730951},"959":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.4142135623730951},"968":{"tf":2.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":5,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.0},"652":{"tf":1.0},"830":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":45,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"376":{"tf":1.4142135623730951},"381":{"tf":2.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":2.23606797749979},"392":{"tf":1.0},"393":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":2.6457513110645907},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"439":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":1.7320508075688772},"73":{"tf":1.0},"773":{"tf":1.0},"78":{"tf":1.0},"801":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"823":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}},"t":{"df":2,"docs":{"266":{"tf":1.0},"267":{"tf":1.0}},"h":{"df":22,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"272":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"729":{"tf":1.0},"77":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"830":{"tf":1.0},"89":{"tf":1.0},"959":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"310":{"tf":1.0},"496":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"758":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":13,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":2.449489742783178},"63":{"tf":1.0},"66":{"tf":1.0},"708":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"=":{"\"":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"131":{"tf":2.0},"158":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":2.6457513110645907},"326":{"tf":1.4142135623730951},"328":{"tf":2.8284271247461903},"333":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":39,"docs":{"175":{"tf":1.0},"377":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.4142135623730951},"719":{"tf":1.7320508075688772},"727":{"tf":1.4142135623730951},"730":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"738":{"tf":1.0},"753":{"tf":1.0},"765":{"tf":1.4142135623730951},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"786":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.4142135623730951},"824":{"tf":1.0},"828":{"tf":1.0},"837":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.4142135623730951},"677":{"tf":1.0},"964":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"254":{"tf":1.0},"862":{"tf":1.0},"969":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"796":{"tf":1.0}},"n":{"df":8,"docs":{"191":{"tf":1.0},"224":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"810":{"tf":1.0},"824":{"tf":1.0},"861":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"289":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"342":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"136":{"tf":1.4142135623730951},"190":{"tf":1.0},"233":{"tf":2.449489742783178},"241":{"tf":2.0},"245":{"tf":1.4142135623730951},"31":{"tf":2.6457513110645907},"316":{"tf":1.0},"33":{"tf":1.4142135623730951},"342":{"tf":1.0},"66":{"tf":1.0},"898":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"909":{"tf":1.0},"915":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"112":{"tf":2.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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"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":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"d":{"df":2,"docs":{"19":{"tf":1.0},"815":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"575":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"376":{"tf":1.0},"471":{"tf":2.0},"474":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"503":{"tf":2.0},"507":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"519":{"tf":1.4142135623730951},"572":{"tf":1.0},"577":{"tf":2.0},"580":{"tf":2.449489742783178},"582":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.4142135623730951},"591":{"tf":2.23606797749979},"716":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"718":{"tf":1.0}}}}}},"g":{"=":{"\"":{"0":{"0":{"0":{"0":{"0":{"0":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":210,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":4.242640687119285},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.7320508075688772},"254":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"390":{"tf":1.0},"397":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":2.0},"502":{"tf":1.0},"509":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"567":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"594":{"tf":1.0},"6":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"613":{"tf":1.0},"617":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"628":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"715":{"tf":1.4142135623730951},"716":{"tf":2.23606797749979},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"725":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.7320508075688772},"732":{"tf":1.4142135623730951},"734":{"tf":1.7320508075688772},"736":{"tf":1.0},"738":{"tf":2.23606797749979},"739":{"tf":1.0},"741":{"tf":1.7320508075688772},"745":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":2.23606797749979},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"814":{"tf":1.4142135623730951},"83":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"880":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"905":{"tf":1.0},"913":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.0},"929":{"tf":1.4142135623730951},"942":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":88,"docs":{"742":{"tf":1.0},"743":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"758":{"tf":1.0},"762":{"tf":2.23606797749979},"763":{"tf":1.4142135623730951},"764":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.7320508075688772},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.7320508075688772},"814":{"tf":1.0},"816":{"tf":1.7320508075688772},"817":{"tf":1.0},"818":{"tf":1.7320508075688772},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":1.7320508075688772},"837":{"tf":1.0},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"868":{"tf":1.0},"880":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.7320508075688772},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":2.0},"921":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":2.0},"930":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0},"953":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"958":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":5,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"379":{"tf":1.0},"6":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"793":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"914":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"670":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":101,"docs":{"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":1.4142135623730951},"17":{"tf":2.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"224":{"tf":2.0},"227":{"tf":1.7320508075688772},"254":{"tf":1.0},"26":{"tf":2.8284271247461903},"268":{"tf":2.449489742783178},"27":{"tf":1.0},"280":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"377":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"63":{"tf":1.4142135623730951},"662":{"tf":1.0},"663":{"tf":2.0},"664":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.7320508075688772},"670":{"tf":1.0},"671":{"tf":2.6457513110645907},"672":{"tf":1.0},"673":{"tf":1.7320508075688772},"676":{"tf":1.4142135623730951},"678":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":2.0},"683":{"tf":1.0},"684":{"tf":2.23606797749979},"685":{"tf":1.7320508075688772},"686":{"tf":1.0},"687":{"tf":1.0},"735":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"753":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"811":{"tf":1.0},"820":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"83":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"853":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"879":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"9":{"tf":1.4142135623730951},"910":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"942":{"tf":1.4142135623730951},"949":{"tf":1.0},"950":{"tf":1.0},"958":{"tf":2.0},"96":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":37,"docs":{"100":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"647":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"78":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":1.0},"833":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"877":{"tf":1.0},"951":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"208":{"tf":1.0},"312":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"653":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"289":{"tf":1.0},"721":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":14,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"48":{"tf":1.0},"653":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"793":{"tf":1.0},"916":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"379":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"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":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"254":{"tf":2.6457513110645907},"328":{"tf":3.0},"329":{"tf":2.23606797749979},"332":{"tf":2.0},"333":{"tf":3.1622776601683795},"376":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":21,"docs":{"170":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"510":{"tf":2.0},"511":{"tf":1.0},"514":{"tf":1.7320508075688772},"522":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"737":{"tf":1.0},"756":{"tf":1.0},"829":{"tf":1.0},"873":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":3.1622776601683795}}}}}}}},"1":{"d":{"b":{"d":{"6":{"df":0,"docs":{},"e":{"0":{"6":{"1":{"7":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"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":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"234":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"785":{"tf":1.0}}}},"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"127":{"tf":1.0},"142":{"tf":1.7320508075688772},"560":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":7,"docs":{"127":{"tf":2.449489742783178},"175":{"tf":2.8284271247461903},"224":{"tf":1.0},"231":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"884":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"652":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"[":{"0":{"df":1,"docs":{"652":{"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":7,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"804":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"26":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":2.0},"346":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"565":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.4142135623730951},"665":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"710":{"tf":1.0},"772":{"tf":1.0},"788":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"84":{"tf":1.0},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"867":{"tf":1.4142135623730951},"873":{"tf":1.0},"880":{"tf":1.0},"91":{"tf":1.0},"919":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"340":{"tf":1.0},"649":{"tf":1.0},"796":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":2.0},"563":{"tf":1.0},"89":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"958":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"34":{"tf":1.0},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"461":{"tf":1.0},"538":{"tf":1.0},"762":{"tf":1.0},"791":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"652":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"492":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"492":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"321":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.7320508075688772},"459":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"738":{"tf":1.0},"786":{"tf":1.0},"792":{"tf":1.0},"846":{"tf":1.0},"891":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"110":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"259":{"tf":1.0},"289":{"tf":1.0},"618":{"tf":1.0},"677":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":21,"docs":{"104":{"tf":1.0},"17":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"83":{"tf":1.0},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"557":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"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":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}},"df":8,"docs":{"114":{"tf":1.0},"19":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"720":{"tf":1.0},"757":{"tf":1.0},"958":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"770":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":48,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"142":{"tf":2.0},"169":{"tf":1.4142135623730951},"175":{"tf":2.0},"184":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"203":{"tf":1.0},"22":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"476":{"tf":1.0},"618":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"710":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"78":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"919":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":26,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":2.23606797749979},"120":{"tf":1.4142135623730951},"127":{"tf":1.0},"142":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"176":{"tf":1.0},"234":{"tf":1.0},"265":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":3.0},"289":{"tf":3.3166247903554},"346":{"tf":1.0},"546":{"tf":1.0},"632":{"tf":1.4142135623730951},"677":{"tf":1.0},"679":{"tf":1.0},"782":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"124":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"s":{"df":21,"docs":{"100":{"tf":2.0},"120":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"50":{"tf":1.4142135623730951},"578":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"679":{"tf":1.0},"760":{"tf":1.0},"765":{"tf":1.0},"79":{"tf":2.0},"834":{"tf":1.0},"838":{"tf":1.0},"848":{"tf":1.0},"892":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"169":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"[":{"\"":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{";":{"1":{"\"":{"]":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"(":{"c":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":1,"docs":{"673":{"tf":1.0}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":76,"docs":{"100":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"203":{"tf":3.0},"297":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"834":{"tf":3.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"89":{"tf":1.4142135623730951},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"814":{"tf":1.0},"823":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"109":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"796":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"964":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"316":{"tf":1.0},"342":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"674":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"125":{"tf":1.0},"845":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":122,"docs":{"100":{"tf":3.3166247903554},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"324":{"tf":1.0},"344":{"tf":1.0},"379":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"425":{"tf":2.449489742783178},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"568":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.0},"614":{"tf":1.4142135623730951},"645":{"tf":1.0},"678":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.7320508075688772},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":2.0},"730":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"738":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":2.0},"758":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"784":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":3.3166247903554},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"807":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.4142135623730951},"828":{"tf":1.0},"834":{"tf":1.7320508075688772},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"873":{"tf":1.0},"889":{"tf":1.4142135623730951},"89":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.4142135623730951},"900":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"909":{"tf":1.0},"916":{"tf":1.4142135623730951},"919":{"tf":1.7320508075688772},"920":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"945":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":245,"docs":{"5":{"tf":1.0},"713":{"tf":1.7320508075688772},"714":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"722":{"tf":1.4142135623730951},"723":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"743":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"746":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"780":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"798":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"818":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"826":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"847":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"863":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"889":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"901":{"tf":1.4142135623730951},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"904":{"tf":1.4142135623730951},"905":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"947":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"956":{"tf":1.7320508075688772}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"107":{"tf":1.0},"119":{"tf":1.7320508075688772},"132":{"tf":1.0},"205":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"246":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":42,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"231":{"tf":1.0},"285":{"tf":1.7320508075688772},"286":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"303":{"tf":1.0},"378":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.4142135623730951},"414":{"tf":2.0},"419":{"tf":1.4142135623730951},"435":{"tf":2.0},"440":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"570":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"721":{"tf":1.0},"736":{"tf":1.0},"747":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"81":{"tf":1.0},"897":{"tf":1.0},"912":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":38,"docs":{"10":{"tf":1.0},"112":{"tf":2.449489742783178},"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"18":{"tf":1.0},"218":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"57":{"tf":1.0},"580":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"73":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"772":{"tf":1.7320508075688772},"802":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"579":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"579":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"698":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"22":{"tf":1.0},"861":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"289":{"tf":1.4142135623730951},"401":{"tf":1.0},"677":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"376":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"84":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"958":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"128":{"tf":1.0},"28":{"tf":1.0},"460":{"tf":1.0},"677":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"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":{"245":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"915":{"tf":1.0}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"i":{"df":6,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0},"746":{"tf":1.0},"912":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"912":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"947":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"j":{"df":2,"docs":{"32":{"tf":1.7320508075688772},"700":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"969":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"315":{"tf":1.7320508075688772},"316":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"338":{"tf":1.0},"347":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"563":{"tf":1.0},"679":{"tf":2.0},"882":{"tf":1.0},"929":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"267":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"318":{"tf":1.0},"678":{"tf":1.0},"862":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"806":{"tf":1.0}}}}},"r":{"df":26,"docs":{"100":{"tf":2.6457513110645907},"109":{"tf":1.0},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":2.23606797749979},"321":{"tf":1.0},"427":{"tf":1.0},"531":{"tf":1.0},"567":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"78":{"tf":2.23606797749979},"789":{"tf":1.0},"79":{"tf":2.6457513110645907},"840":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"917":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"99":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"17":{"tf":1.0},"226":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"289":{"tf":1.0},"87":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"897":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":8,"docs":{"43":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.4142135623730951},"912":{"tf":1.0},"915":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"184":{"tf":1.0},"533":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"330":{"tf":1.0},"533":{"tf":1.0},"78":{"tf":1.0},"909":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"268":{"tf":1.0},"839":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"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":{},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":23,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"158":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"338":{"tf":1.0},"342":{"tf":1.4142135623730951},"750":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"801":{"tf":1.0},"865":{"tf":1.4142135623730951}}}}}}},"df":43,"docs":{"0":{"tf":1.0},"111":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.7320508075688772},"17":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.7320508075688772},"258":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"376":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"526":{"tf":1.0},"535":{"tf":1.0},"570":{"tf":1.0},"653":{"tf":1.0},"710":{"tf":1.0},"73":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.0},"811":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"916":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}},"|":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{"730":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"254":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"142":{"tf":1.4142135623730951},"184":{"tf":1.0},"315":{"tf":1.0},"456":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"76":{"tf":1.0},"804":{"tf":1.0},"894":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"224":{"tf":1.0},"241":{"tf":1.0},"379":{"tf":1.0},"80":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"803":{"tf":1.0}}}}},"u":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"m":{"d":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"557":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":2.0},"116":{"tf":1.0}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}},"df":87,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"110":{"tf":2.449489742783178},"111":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":2.0},"175":{"tf":2.6457513110645907},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"317":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"43":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.0},"683":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"71":{"tf":1.0},"737":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.0},"782":{"tf":1.0},"793":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"802":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"823":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.7320508075688772},"839":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.7320508075688772},"867":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.449489742783178},"9":{"tf":1.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"969":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"498":{"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":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"268":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":93,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"117":{"tf":2.23606797749979},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"175":{"tf":2.8284271247461903},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":2.23606797749979},"297":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"346":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"580":{"tf":1.0},"632":{"tf":1.0},"645":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"652":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.0},"67":{"tf":1.7320508075688772},"674":{"tf":1.0},"677":{"tf":1.0},"680":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"70":{"tf":1.0},"704":{"tf":1.0},"71":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"715":{"tf":1.0},"72":{"tf":1.0},"729":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":2.0},"82":{"tf":1.4142135623730951},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"853":{"tf":1.0},"860":{"tf":1.0},"865":{"tf":1.4142135623730951},"897":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"938":{"tf":1.0},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":2.0},"97":{"tf":2.0},"98":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"645":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"288":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"289":{"tf":1.7320508075688772},"687":{"tf":1.0},"703":{"tf":1.0},"83":{"tf":1.0},"852":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"117":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"471":{"tf":1.0},"753":{"tf":1.0},"9":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"958":{"tf":1.0}}},"m":{"a":{"df":6,"docs":{"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"353":{"tf":1.0},"370":{"tf":1.4142135623730951}},"n":{"d":{">":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":33,"docs":{"115":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":2.23606797749979},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":3.872983346207417},"232":{"tf":1.0},"233":{"tf":3.605551275463989},"234":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"653":{"tf":1.0},"682":{"tf":1.0},"689":{"tf":2.23606797749979},"690":{"tf":1.0},"691":{"tf":1.7320508075688772},"692":{"tf":1.7320508075688772},"804":{"tf":1.0},"861":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":2.6457513110645907},"935":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":2,"docs":{"379":{"tf":1.0},"823":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":35,"docs":{"106":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.0},"21":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.0},"387":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"854":{"tf":1.0},"99":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"949":{"tf":1.0},"950":{"tf":1.7320508075688772},"953":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"659":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":8,"docs":{"160":{"tf":1.0},"289":{"tf":1.7320508075688772},"5":{"tf":1.0},"546":{"tf":1.0},"712":{"tf":1.0},"838":{"tf":1.0},"859":{"tf":1.0},"957":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":6,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"52":{"tf":1.0},"958":{"tf":1.0}}},"t":{"df":10,"docs":{"289":{"tf":1.0},"51":{"tf":1.0},"762":{"tf":1.0},"776":{"tf":1.0},"784":{"tf":1.0},"801":{"tf":1.0},"851":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"735":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"835":{"tf":1.0},"844":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":16,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"250":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"340":{"tf":1.0},"379":{"tf":1.0},"678":{"tf":1.4142135623730951},"737":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"845":{"tf":1.0},"854":{"tf":1.0},"861":{"tf":1.0},"902":{"tf":1.0}}},"x":{"df":3,"docs":{"144":{"tf":1.0},"22":{"tf":1.0},"772":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"538":{"tf":1.0},"697":{"tf":1.0}}}}},"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"11":{"tf":2.0},"13":{"tf":2.0},"193":{"tf":1.0},"316":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"656":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0},"77":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"933":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{".":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"915":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"135":{"tf":1.0},"661":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"913":{"tf":1.0},"933":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"378":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"572":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"169":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"677":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"823":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"878":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":8,"docs":{"203":{"tf":4.123105625617661},"205":{"tf":1.0},"254":{"tf":1.0},"316":{"tf":1.4142135623730951},"830":{"tf":1.0},"861":{"tf":1.0},"908":{"tf":1.0},"912":{"tf":1.0}},"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":{},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"805":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":83,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"168":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":4.358898943540674},"197":{"tf":2.449489742783178},"198":{"tf":3.4641016151377544},"199":{"tf":2.449489742783178},"200":{"tf":1.7320508075688772},"202":{"tf":2.8284271247461903},"203":{"tf":4.358898943540674},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"210":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":4.898979485566356},"258":{"tf":2.23606797749979},"261":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"307":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":3.0},"316":{"tf":2.8284271247461903},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"342":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"503":{"tf":1.0},"514":{"tf":1.4142135623730951},"60":{"tf":1.0},"663":{"tf":2.0},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.4142135623730951},"682":{"tf":2.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"693":{"tf":1.0},"720":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.4142135623730951},"79":{"tf":1.0},"801":{"tf":1.0},"861":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"732":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"563":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"289":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"592":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":2.23606797749979},"627":{"tf":1.0},"655":{"tf":1.0},"710":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"d":{"df":28,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"190":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"371":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.0},"674":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"258":{"tf":1.0},"260":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.4142135623730951},"674":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"330":{"tf":1.0},"346":{"tf":1.0},"493":{"tf":1.0},"704":{"tf":1.0},"804":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"898":{"tf":1.0},"906":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":19,"docs":{"32":{"tf":1.7320508075688772},"324":{"tf":1.0},"448":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"490":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"577":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"700":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"175":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"765":{"tf":1.0},"878":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"65":{"tf":1.0},"752":{"tf":1.0}}}},"m":{"df":34,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.4142135623730951},"230":{"tf":1.0},"276":{"tf":1.4142135623730951},"307":{"tf":1.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"379":{"tf":1.0},"43":{"tf":1.4142135623730951},"492":{"tf":1.0},"720":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"788":{"tf":1.0},"793":{"tf":1.7320508075688772},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"838":{"tf":1.4142135623730951},"842":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"858":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"422":{"tf":1.0},"537":{"tf":1.0},"6":{"tf":1.7320508075688772},"860":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":88,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"234":{"tf":1.0},"246":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.7320508075688772},"328":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"423":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"443":{"tf":1.0},"48":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"501":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"538":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"609":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"653":{"tf":1.0},"697":{"tf":1.0},"716":{"tf":1.0},"73":{"tf":1.4142135623730951},"772":{"tf":1.0},"779":{"tf":1.0},"79":{"tf":1.0},"823":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.4142135623730951},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"129":{"tf":1.7320508075688772},"136":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"289":{"tf":2.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"422":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"546":{"tf":1.0},"592":{"tf":1.0},"60":{"tf":1.0},"634":{"tf":2.449489742783178},"636":{"tf":1.4142135623730951},"637":{"tf":1.0},"70":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":2.23606797749979},"961":{"tf":2.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":2.0},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{".":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"111":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.7320508075688772},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"834":{"tf":1.0},"858":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"5":{"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":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":63,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.4142135623730951},"185":{"tf":2.6457513110645907},"186":{"tf":1.7320508075688772},"187":{"tf":3.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"206":{"tf":3.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"471":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"602":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"682":{"tf":1.0},"715":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"837":{"tf":1.0},"854":{"tf":1.0},"857":{"tf":1.0},"871":{"tf":1.0},"9":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"407":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"406":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"459":{"tf":1.0},"477":{"tf":1.0},"788":{"tf":1.0},"834":{"tf":1.0},"861":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"t":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}},"t":{"df":7,"docs":{"115":{"tf":1.0},"377":{"tf":1.4142135623730951},"471":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"834":{"tf":1.0},"884":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"854":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"254":{"tf":2.8284271247461903},"7":{"tf":1.0},"823":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"800":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"130":{"tf":1.0},"322":{"tf":1.4142135623730951},"653":{"tf":2.23606797749979},"654":{"tf":1.7320508075688772},"659":{"tf":1.7320508075688772},"673":{"tf":1.0},"755":{"tf":1.0},"758":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.4142135623730951},"818":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"881":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"11":{"tf":1.0},"117":{"tf":1.0},"17":{"tf":1.0},"315":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"673":{"tf":1.0},"769":{"tf":1.0},"782":{"tf":1.0},"825":{"tf":1.0},"838":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"873":{"tf":1.0},"919":{"tf":1.0},"935":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":21,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"315":{"tf":1.0},"67":{"tf":1.0},"731":{"tf":1.0},"762":{"tf":2.23606797749979},"764":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"804":{"tf":1.0},"816":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"847":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"926":{"tf":1.0},"947":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"138":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"741":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"958":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"190":{"tf":1.0},"62":{"tf":1.0},"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":40,"docs":{"124":{"tf":2.0},"125":{"tf":1.7320508075688772},"127":{"tf":2.23606797749979},"347":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":2.0},"406":{"tf":1.0},"408":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":2.0},"582":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":2.0},"607":{"tf":2.0},"618":{"tf":1.4142135623730951},"619":{"tf":2.23606797749979},"621":{"tf":1.0},"70":{"tf":1.0},"716":{"tf":1.0},"75":{"tf":2.23606797749979},"755":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"907":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":44,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"127":{"tf":2.6457513110645907},"131":{"tf":1.4142135623730951},"288":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"402":{"tf":2.0},"403":{"tf":1.0},"404":{"tf":3.872983346207417},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"408":{"tf":1.7320508075688772},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":2.6457513110645907},"413":{"tf":1.0},"414":{"tf":3.872983346207417},"415":{"tf":1.0},"416":{"tf":2.8284271247461903},"417":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"456":{"tf":1.0},"544":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"621":{"tf":2.23606797749979},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"734":{"tf":1.0},"75":{"tf":1.4142135623730951},"818":{"tf":1.0},"837":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"421":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"267":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"673":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"111":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.449489742783178},"116":{"tf":1.7320508075688772},"804":{"tf":1.0},"831":{"tf":1.0},"853":{"tf":1.0}}}},"df":1,"docs":{"261":{"tf":1.0}}}}},"w":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"752":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"679":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"679":{"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":{"679":{"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":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":34,"docs":{"166":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.7320508075688772},"289":{"tf":1.0},"376":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"646":{"tf":1.4142135623730951},"674":{"tf":3.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":3.4641016151377544},"678":{"tf":2.0},"679":{"tf":1.7320508075688772},"680":{"tf":1.0},"736":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"771":{"tf":1.0},"785":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"835":{"tf":1.0},"844":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"880":{"tf":1.7320508075688772},"958":{"tf":1.4142135623730951}},"e":{"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":{"df":1,"docs":{"677":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"26":{"tf":1.4142135623730951},"315":{"tf":1.0},"655":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"754":{"tf":1.0},"787":{"tf":1.0},"818":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"854":{"tf":1.0},"871":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"655":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.7320508075688772},"259":{"tf":1.0},"27":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"710":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"785":{"tf":1.0},"79":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.0},"925":{"tf":1.0},"951":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"538":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"0":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"31":{"tf":1.0},"65":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"701":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"579":{"tf":1.0},"618":{"tf":1.0},"627":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":1,"docs":{"254":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":50,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":2.0},"14":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.0},"283":{"tf":1.0},"293":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"334":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.0},"54":{"tf":1.0},"572":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.0},"691":{"tf":1.0},"694":{"tf":1.0},"711":{"tf":1.0},"715":{"tf":1.4142135623730951},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"950":{"tf":1.0},"968":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":1,"docs":{"551":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"579":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"813":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"594":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":2.449489742783178},"138":{"tf":2.23606797749979},"139":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"223":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"259":{"tf":2.449489742783178},"261":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":2.0},"317":{"tf":3.1622776601683795},"336":{"tf":2.0},"337":{"tf":1.0},"338":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"520":{"tf":1.0},"551":{"tf":2.449489742783178},"560":{"tf":1.0},"572":{"tf":2.23606797749979},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":2.0},"581":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.0},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"590":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"592":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"647":{"tf":1.0},"649":{"tf":1.7320508075688772},"667":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":3.1622776601683795},"679":{"tf":1.7320508075688772},"690":{"tf":2.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"729":{"tf":1.4142135623730951},"734":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.7320508075688772},"79":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"804":{"tf":1.0},"823":{"tf":1.0},"830":{"tf":1.0},"837":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"922":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.4142135623730951},"969":{"tf":2.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"718":{"tf":1.0},"738":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"145":{"tf":1.0},"173":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"4":{"1":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"837":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"316":{"tf":1.0},"318":{"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":32,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"466":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.4142135623730951},"636":{"tf":1.0},"839":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":18,"docs":{"109":{"tf":1.0},"127":{"tf":1.0},"264":{"tf":1.4142135623730951},"721":{"tf":1.0},"741":{"tf":1.0},"753":{"tf":1.4142135623730951},"812":{"tf":1.0},"818":{"tf":1.0},"831":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"88":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.4142135623730951},"917":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":228,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":4.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"160":{"tf":2.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"185":{"tf":3.0},"186":{"tf":1.0},"187":{"tf":3.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.449489742783178},"191":{"tf":2.23606797749979},"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},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":3.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":2.23606797749979},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":4.69041575982343},"292":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"33":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"385":{"tf":1.7320508075688772},"389":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"395":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"410":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"437":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"443":{"tf":1.0},"448":{"tf":1.7320508075688772},"452":{"tf":1.4142135623730951},"464":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"480":{"tf":2.0},"485":{"tf":1.4142135623730951},"487":{"tf":3.1622776601683795},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"496":{"tf":2.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"507":{"tf":2.23606797749979},"512":{"tf":1.4142135623730951},"514":{"tf":3.1622776601683795},"517":{"tf":1.4142135623730951},"519":{"tf":2.23606797749979},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"53":{"tf":1.0},"531":{"tf":1.7320508075688772},"535":{"tf":1.4142135623730951},"537":{"tf":1.0},"538":{"tf":1.0},"54":{"tf":1.4142135623730951},"541":{"tf":1.0},"543":{"tf":1.7320508075688772},"546":{"tf":1.0},"548":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"569":{"tf":1.4142135623730951},"57":{"tf":2.6457513110645907},"577":{"tf":2.23606797749979},"58":{"tf":1.0},"580":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"588":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"611":{"tf":1.7320508075688772},"614":{"tf":1.4142135623730951},"615":{"tf":1.4142135623730951},"623":{"tf":1.7320508075688772},"627":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"637":{"tf":1.4142135623730951},"638":{"tf":1.0},"642":{"tf":2.23606797749979},"644":{"tf":1.0},"646":{"tf":1.4142135623730951},"652":{"tf":3.4641016151377544},"666":{"tf":1.0},"67":{"tf":1.4142135623730951},"674":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"697":{"tf":2.0},"698":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"704":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":2.6457513110645907},"772":{"tf":2.23606797749979},"78":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"791":{"tf":1.0},"818":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"86":{"tf":1.4142135623730951},"860":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"873":{"tf":1.0},"9":{"tf":2.6457513110645907},"91":{"tf":1.0},"916":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":3.3166247903554},"962":{"tf":1.0},"969":{"tf":4.358898943540674},"98":{"tf":2.6457513110645907},"99":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"315":{"tf":2.23606797749979},"316":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"\"":{"2":{"0":{"2":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"915":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"551":{"tf":1.4142135623730951},"553":{"tf":1.0}}}}}}}},"df":25,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.4142135623730951},"288":{"tf":2.0},"376":{"tf":1.0},"549":{"tf":1.4142135623730951},"551":{"tf":2.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"556":{"tf":1.0},"664":{"tf":1.4142135623730951},"669":{"tf":1.0},"684":{"tf":2.23606797749979},"685":{"tf":1.0},"741":{"tf":1.0},"77":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951},"830":{"tf":1.0},"847":{"tf":1.4142135623730951},"87":{"tf":1.0},"881":{"tf":1.0},"914":{"tf":1.0},"98":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"376":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"549":{"tf":2.23606797749979},"550":{"tf":1.0},"551":{"tf":3.0},"552":{"tf":1.0},"553":{"tf":2.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":1.7320508075688772},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"559":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.7320508075688772},"776":{"tf":1.0},"78":{"tf":1.0},"813":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"956":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{".":{"d":{"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":{"(":{"1":{"9":{"9":{"3":{"df":1,"docs":{"553":{"tf":1.0}}},"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":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":27,"docs":{"117":{"tf":1.7320508075688772},"127":{"tf":2.449489742783178},"132":{"tf":1.0},"175":{"tf":2.8284271247461903},"224":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":1.0},"379":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"830":{"tf":1.0},"861":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"814":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"831":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":89,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":2.449489742783178},"2":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.6457513110645907},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":3.0},"222":{"tf":2.23606797749979},"223":{"tf":2.23606797749979},"224":{"tf":3.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":2.8284271247461903},"234":{"tf":1.7320508075688772},"235":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":2.23606797749979},"241":{"tf":2.449489742783178},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"315":{"tf":1.0},"348":{"tf":2.23606797749979},"349":{"tf":2.449489742783178},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":2.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":2.6457513110645907},"364":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"651":{"tf":1.0},"701":{"tf":1.0},"715":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"817":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"863":{"tf":1.0},"880":{"tf":1.0},"890":{"tf":1.0},"898":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"906":{"tf":1.0},"915":{"tf":1.0},"920":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"379":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"276":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"858":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"965":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":107,"docs":{"100":{"tf":2.0},"116":{"tf":1.0},"131":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":3.3166247903554},"205":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.4142135623730951},"289":{"tf":3.3166247903554},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.4142135623730951},"565":{"tf":1.7320508075688772},"568":{"tf":1.0},"570":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.4142135623730951},"668":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"690":{"tf":1.4142135623730951},"700":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"799":{"tf":1.0},"814":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"842":{"tf":1.0},"861":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"952":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"874":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":12,"docs":{"318":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0},"652":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"871":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":77,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":2.6457513110645907},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":2.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"259":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"326":{"tf":1.7320508075688772},"336":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"38":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"568":{"tf":1.4142135623730951},"593":{"tf":1.0},"60":{"tf":1.0},"616":{"tf":1.0},"626":{"tf":1.0},"644":{"tf":1.7320508075688772},"647":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.7320508075688772},"686":{"tf":1.0},"690":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.6457513110645907},"947":{"tf":1.0},"951":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":49,"docs":{"190":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"35":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.4142135623730951},"649":{"tf":1.0},"677":{"tf":1.4142135623730951},"679":{"tf":1.0},"773":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"22":{"tf":1.0},"272":{"tf":1.4142135623730951},"315":{"tf":1.0},"721":{"tf":1.0},"789":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"315":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":33,"docs":{"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":2.449489742783178},"135":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"295":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"342":{"tf":1.4142135623730951},"741":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.4142135623730951},"838":{"tf":1.7320508075688772},"860":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.7320508075688772},"917":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"956":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"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":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"838":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0}}}}}}}}}},"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":{"334":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"334":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"621":{"tf":2.23606797749979}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"626":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":4.358898943540674},"623":{"tf":1.7320508075688772},"626":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":45,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":2.0},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":2.0},"184":{"tf":1.0},"19":{"tf":2.0},"21":{"tf":1.0},"24":{"tf":2.0},"26":{"tf":1.7320508075688772},"270":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"376":{"tf":1.0},"41":{"tf":1.4142135623730951},"484":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"665":{"tf":1.7320508075688772},"671":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"744":{"tf":1.0},"750":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"844":{"tf":1.0},"858":{"tf":2.23606797749979},"859":{"tf":1.0},"880":{"tf":1.0},"882":{"tf":1.0},"9":{"tf":1.4142135623730951},"947":{"tf":1.0},"953":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"234":{"tf":1.0},"252":{"tf":1.0},"958":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":16,"docs":{"129":{"tf":1.0},"136":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"380":{"tf":1.7320508075688772},"715":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"805":{"tf":1.0},"838":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"315":{"tf":1.0},"330":{"tf":1.0},"697":{"tf":1.4142135623730951},"770":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":9,"docs":{"136":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":61,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"153":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"224":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":2.449489742783178},"292":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"315":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"579":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"823":{"tf":1.0},"87":{"tf":1.0},"964":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"568":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"175":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"462":{"tf":1.0}}},"df":20,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"354":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":2.0}},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"949":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":32,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":2.0},"318":{"tf":1.0},"488":{"tf":1.0},"5":{"tf":1.4142135623730951},"515":{"tf":1.0},"56":{"tf":1.7320508075688772},"662":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"772":{"tf":1.7320508075688772},"799":{"tf":2.23606797749979},"857":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"104":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"22":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"741":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"11":{"tf":1.0},"132":{"tf":1.7320508075688772},"205":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"456":{"tf":1.0},"673":{"tf":1.7320508075688772},"72":{"tf":1.0},"77":{"tf":1.0},"846":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"956":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":13,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"223":{"tf":1.0},"626":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.7320508075688772},"675":{"tf":1.0},"773":{"tf":1.0},"79":{"tf":1.0},"964":{"tf":1.0}}}}}},"i":{"c":{"df":21,"docs":{"132":{"tf":2.449489742783178},"184":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"289":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"431":{"tf":1.0},"50":{"tf":1.7320508075688772},"73":{"tf":1.0},"835":{"tf":1.0},"94":{"tf":1.0}},"e":{"'":{"df":5,"docs":{"231":{"tf":1.0},"351":{"tf":1.0},"549":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"498":{"tf":1.4142135623730951},"500":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"497":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"254":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"640":{"tf":2.0},"642":{"tf":1.4142135623730951},"645":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"5":{"df":1,"docs":{"640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"21":{"tf":1.0},"254":{"tf":2.6457513110645907},"276":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"37":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"60":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"703":{"tf":1.0},"801":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":70,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"121":{"tf":1.4142135623730951},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.0},"248":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.4142135623730951},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":1.4142135623730951},"340":{"tf":1.0},"348":{"tf":1.4142135623730951},"37":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.4142135623730951},"471":{"tf":1.0},"488":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"515":{"tf":1.0},"52":{"tf":1.7320508075688772},"522":{"tf":1.0},"524":{"tf":1.0},"583":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"606":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"653":{"tf":1.7320508075688772},"660":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"685":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"705":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"82":{"tf":1.0},"830":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"912":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"402":{"tf":1.0},"619":{"tf":1.0},"673":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"376":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"613":{"tf":1.4142135623730951}}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":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":{"318":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"289":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"665":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"191":{"tf":1.0},"289":{"tf":1.4142135623730951},"33":{"tf":1.0},"652":{"tf":1.0},"792":{"tf":1.0},"807":{"tf":1.0},"916":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"114":{"tf":1.0},"127":{"tf":2.23606797749979},"135":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"338":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"665":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"690":{"tf":1.4142135623730951},"734":{"tf":1.0},"818":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"860":{"tf":1.4142135623730951},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"846":{"tf":1.0},"859":{"tf":1.0}}},"y":{"_":{"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":8,"docs":{"125":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"126":{"tf":1.4142135623730951},"145":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.23606797749979},"195":{"tf":1.0},"203":{"tf":3.1622776601683795},"206":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":2.23606797749979},"321":{"tf":2.0},"324":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":1.4142135623730951},"649":{"tf":1.4142135623730951},"667":{"tf":1.0},"716":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951},"872":{"tf":1.0},"930":{"tf":1.0},"950":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"872":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"734":{"tf":1.4142135623730951},"927":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"224":{"tf":1.0},"371":{"tf":1.0},"476":{"tf":1.0},"831":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"168":{"tf":1.0},"22":{"tf":1.0},"809":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":19,"docs":{"127":{"tf":1.0},"340":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0},"718":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":1.0},"774":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"865":{"tf":1.4142135623730951},"933":{"tf":1.0},"940":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"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":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"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":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"601":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"600":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":18,"docs":{"226":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"288":{"tf":1.0},"376":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":2.23606797749979},"615":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"119":{"tf":1.0},"184":{"tf":1.4142135623730951},"29":{"tf":1.0},"688":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"660":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":112,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"137":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":2.6457513110645907},"41":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":2.8284271247461903},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.0},"488":{"tf":2.6457513110645907},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"514":{"tf":2.0},"515":{"tf":2.6457513110645907},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.0},"549":{"tf":1.4142135623730951},"572":{"tf":3.0},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":2.23606797749979},"581":{"tf":1.0},"582":{"tf":2.0},"583":{"tf":2.6457513110645907},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"590":{"tf":1.4142135623730951},"591":{"tf":1.7320508075688772},"592":{"tf":1.7320508075688772},"593":{"tf":1.0},"594":{"tf":1.0},"718":{"tf":1.4142135623730951},"729":{"tf":2.0},"738":{"tf":1.0},"755":{"tf":1.0},"76":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"880":{"tf":1.0},"911":{"tf":1.7320508075688772},"958":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"673":{"tf":1.0},"728":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"480":{"tf":1.0},"759":{"tf":1.0},"854":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"969":{"tf":4.123105625617661}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"961":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":1,"docs":{"859":{"tf":1.0}}},"o":{"c":{"df":36,"docs":{"134":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.4142135623730951},"315":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":2.0},"335":{"tf":1.7320508075688772},"343":{"tf":1.0},"376":{"tf":1.0},"390":{"tf":1.7320508075688772},"400":{"tf":1.7320508075688772},"411":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"432":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"502":{"tf":1.0},"513":{"tf":1.7320508075688772},"525":{"tf":1.0},"536":{"tf":1.7320508075688772},"559":{"tf":1.7320508075688772},"571":{"tf":1.7320508075688772},"581":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.7320508075688772},"617":{"tf":1.0},"628":{"tf":1.0},"838":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.0},"912":{"tf":1.0},"924":{"tf":1.0}},"s":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"]":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":71,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.6457513110645907},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.7320508075688772},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"37":{"tf":2.23606797749979},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":2.23606797749979},"499":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.7320508075688772},"697":{"tf":1.0},"706":{"tf":1.0},"71":{"tf":1.0},"772":{"tf":1.4142135623730951},"799":{"tf":2.0},"801":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}}}}}}}},"df":14,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"342":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"493":{"tf":1.0},"57":{"tf":1.0},"692":{"tf":1.0},"76":{"tf":1.0},"831":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":1,"docs":{"969":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"640":{"tf":1.0},"649":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.4142135623730951},"793":{"tf":1.0},"82":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":2,"docs":{"289":{"tf":1.0},"523":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":31,"docs":{"135":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"480":{"tf":2.449489742783178},"493":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"583":{"tf":1.0},"630":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"753":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"782":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"814":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"338":{"tf":1.0},"621":{"tf":2.23606797749979},"77":{"tf":1.0},"792":{"tf":1.0},"834":{"tf":1.0},"862":{"tf":1.0},"98":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"710":{"tf":1.0}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"346":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"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":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"747":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":19,"docs":{"144":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"339":{"tf":2.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"377":{"tf":1.0},"468":{"tf":1.0},"814":{"tf":1.0},"848":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"17":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"661":{"tf":1.0},"673":{"tf":2.0},"675":{"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":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":18,"docs":{"127":{"tf":1.0},"232":{"tf":1.0},"310":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"750":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"947":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"884":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"448":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"425":{"tf":2.449489742783178},"445":{"tf":2.8284271247461903},"446":{"tf":4.0},"448":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"135":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"224":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"328":{"tf":1.0},"601":{"tf":1.0},"732":{"tf":1.0},"753":{"tf":1.0},"758":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"818":{"tf":1.4142135623730951},"835":{"tf":1.0},"838":{"tf":1.0},"844":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"921":{"tf":1.0},"99":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"289":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"771":{"tf":1.0},"83":{"tf":1.4142135623730951},"834":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"125":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"271":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"725":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"208":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":2.0},"330":{"tf":1.0},"465":{"tf":1.0},"579":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"737":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"858":{"tf":1.0},"865":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"289":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"529":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"753":{"tf":1.4142135623730951},"78":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":44,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":3.4641016151377544},"136":{"tf":1.7320508075688772},"155":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"54":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"567":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":74,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"221":{"tf":1.0},"258":{"tf":1.4142135623730951},"281":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.23606797749979},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"346":{"tf":1.0},"348":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"456":{"tf":1.0},"476":{"tf":1.4142135623730951},"482":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"560":{"tf":1.0},"568":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"653":{"tf":1.7320508075688772},"661":{"tf":1.0},"665":{"tf":1.0},"710":{"tf":1.0},"78":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"456":{"tf":1.0},"484":{"tf":1.0},"78":{"tf":1.0},"877":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"82":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"62":{"tf":1.0},"728":{"tf":1.0},"862":{"tf":1.0},"968":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"218":{"tf":1.0},"677":{"tf":1.0},"814":{"tf":1.0},"924":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}}},"df":1,"docs":{"701":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"231":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"958":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"927":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"288":{"tf":1.0},"79":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":103,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"571":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772}}}}}}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"191":{"tf":1.0},"242":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":2.0},"332":{"tf":1.7320508075688772},"735":{"tf":1.0},"752":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"?":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{")":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"65":{"tf":1.0},"916":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"549":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"328":{"tf":2.0},"644":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}}}},"f":{"df":1,"docs":{"815":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"344":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"132":{"tf":1.0},"17":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"769":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"779":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"446":{"tf":1.0},"743":{"tf":1.0},"812":{"tf":1.0},"842":{"tf":1.0},"938":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":23,"docs":{"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"50":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":88,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"221":{"tf":2.0},"224":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.7320508075688772},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"322":{"tf":2.0},"324":{"tf":1.0},"348":{"tf":1.4142135623730951},"355":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.7320508075688772},"387":{"tf":1.0},"389":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"443":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"715":{"tf":1.4142135623730951},"721":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.7320508075688772},"762":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"818":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"861":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.4142135623730951},"956":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"_":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":11,"docs":{"128":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"541":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"731":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"696":{"tf":1.0},"697":{"tf":3.1622776601683795},"698":{"tf":2.449489742783178},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":2.0},"951":{"tf":1.4142135623730951}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"1":{"6":{"/":{"1":{"7":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"/":{"0":{"4":{":":{"3":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"1":{"9":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":1.0},"184":{"tf":2.0},"203":{"tf":1.4142135623730951},"329":{"tf":1.0},"711":{"tf":1.0},"76":{"tf":1.0},"795":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.4142135623730951},"865":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.7320508075688772},"969":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"263":{"tf":1.7320508075688772},"31":{"tf":1.0},"763":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"867":{"tf":1.0},"922":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"135":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"289":{"tf":1.4142135623730951},"958":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"140":{"tf":1.4142135623730951},"316":{"tf":1.0},"376":{"tf":1.0},"429":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"452":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"652":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"927":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"183":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"127":{"tf":1.0},"710":{"tf":1.0},"834":{"tf":1.0},"913":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.7320508075688772},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"493":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"63":{"tf":1.0},"673":{"tf":1.0},"736":{"tf":1.0},"753":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"776":{"tf":1.0},"788":{"tf":1.0},"802":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"853":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"929":{"tf":1.0},"938":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"439":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"105":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"526":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":29,"docs":{"138":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"32":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"34":{"tf":1.7320508075688772},"377":{"tf":1.0},"533":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"700":{"tf":1.4142135623730951},"71":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"958":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"563":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"750":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":49,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"19":{"tf":1.7320508075688772},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"229":{"tf":2.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"348":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"653":{"tf":1.0},"660":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":2.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":2.449489742783178},"691":{"tf":2.23606797749979},"692":{"tf":1.0},"721":{"tf":1.0},"74":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"841":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"907":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"921":{"tf":1.7320508075688772},"924":{"tf":1.0},"939":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"315":{"tf":1.0},"804":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"750":{"tf":1.0},"804":{"tf":1.0}}},"r":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":145,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":3.4641016151377544},"127":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"231":{"tf":1.0},"273":{"tf":2.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"356":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":2.6457513110645907},"435":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"481":{"tf":2.23606797749979},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"517":{"tf":1.0},"520":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"538":{"tf":1.0},"541":{"tf":1.4142135623730951},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"570":{"tf":1.0},"575":{"tf":1.0},"578":{"tf":1.4142135623730951},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.4142135623730951},"609":{"tf":1.0},"612":{"tf":1.0},"618":{"tf":1.4142135623730951},"621":{"tf":1.0},"623":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":2.449489742783178},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"698":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"76":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":2.449489742783178},"839":{"tf":1.0},"842":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"86":{"tf":1.0},"866":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"904":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"917":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":2.0},"929":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"94":{"tf":1.0},"945":{"tf":1.0},"97":{"tf":1.0}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":21,"docs":{"396":{"tf":1.0},"407":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.4142135623730951},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.4142135623730951},"578":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951},"635":{"tf":1.0},"643":{"tf":1.0},"840":{"tf":1.0},"913":{"tf":1.0},"924":{"tf":1.0},"933":{"tf":1.0}},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"396":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"428":{"tf":1.0},"544":{"tf":1.0},"566":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":13,"docs":{"386":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"578":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.4142135623730951},"643":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"396":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"428":{"tf":1.0},"476":{"tf":1.0},"544":{"tf":1.0},"566":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":13,"docs":{"386":{"tf":1.0},"407":{"tf":1.0},"476":{"tf":1.0},"497":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.4142135623730951},"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"5":{"df":1,"docs":{"942":{"tf":1.0}}},"6":{"df":1,"docs":{"950":{"tf":1.7320508075688772}}},"a":{"df":1,"docs":{"224":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"132":{"tf":1.4142135623730951},"224":{"tf":2.23606797749979}},"m":{"df":3,"docs":{"32":{"tf":1.7320508075688772},"700":{"tf":1.0},"912":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"922":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"2":{"tf":1.0},"4":{"tf":1.0},"962":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"261":{"tf":1.0},"289":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"145":{"tf":1.0},"22":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"752":{"tf":1.0},"79":{"tf":1.4142135623730951},"802":{"tf":1.0},"845":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"580":{"tf":1.0},"591":{"tf":1.0}}}},"t":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{">":{".":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":2.449489742783178},"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":132,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":3.4641016151377544},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"137":{"tf":1.0},"141":{"tf":2.23606797749979},"142":{"tf":4.358898943540674},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"168":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"170":{"tf":3.0},"171":{"tf":2.0},"173":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.23606797749979},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":3.0},"214":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"258":{"tf":5.0},"259":{"tf":3.605551275463989},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":2.23606797749979},"263":{"tf":1.4142135623730951},"264":{"tf":2.449489742783178},"266":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":2.23606797749979},"324":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"346":{"tf":2.8284271247461903},"347":{"tf":1.0},"376":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"560":{"tf":3.1622776601683795},"561":{"tf":2.0},"562":{"tf":1.0},"563":{"tf":2.449489742783178},"564":{"tf":1.0},"565":{"tf":2.6457513110645907},"566":{"tf":1.4142135623730951},"567":{"tf":2.23606797749979},"568":{"tf":2.449489742783178},"569":{"tf":1.0},"570":{"tf":1.4142135623730951},"571":{"tf":1.0},"579":{"tf":1.0},"649":{"tf":1.0},"677":{"tf":2.8284271247461903},"679":{"tf":1.4142135623730951},"693":{"tf":1.0},"718":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.4142135623730951},"734":{"tf":1.0},"735":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":3.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"799":{"tf":3.0},"804":{"tf":2.23606797749979},"807":{"tf":1.0},"815":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.7320508075688772},"843":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.7320508075688772},"897":{"tf":1.4142135623730951},"900":{"tf":1.0},"907":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"929":{"tf":2.6457513110645907},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"939":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":2.6457513110645907},"956":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"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":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"[":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"565":{"tf":1.4142135623730951}}}}}}}},"s":{"df":1,"docs":{"112":{"tf":1.0}}}},"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"[":{"0":{"]":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"?":{"[":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"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":{"565":{"tf":1.0}}}}}}}}},"[":{"0":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"565":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"u":{"df":2,"docs":{"289":{"tf":1.0},"649":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"122":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"289":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"690":{"tf":1.0},"765":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"402":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"5":{"tf":1.0},"935":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":94,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":2.0},"115":{"tf":2.23606797749979},"119":{"tf":1.0},"120":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":3.1622776601683795},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"171":{"tf":2.0},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":2.6457513110645907},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"316":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.4142135623730951},"376":{"tf":3.1622776601683795},"377":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"595":{"tf":1.0},"602":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.4142135623730951},"649":{"tf":1.0},"665":{"tf":1.0},"674":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"690":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"964":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":17,"docs":{"135":{"tf":1.4142135623730951},"168":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"378":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"127":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":3,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"677":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":34,"docs":{"130":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"288":{"tf":1.0},"321":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"677":{"tf":2.23606797749979},"679":{"tf":2.0},"765":{"tf":1.0},"772":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"u":{"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":{"679":{"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"679":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"267":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"203":{"tf":1.0},"318":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":1,"docs":{"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"289":{"tf":1.0},"340":{"tf":1.7320508075688772},"346":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"78":{"tf":1.0},"837":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"379":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"780":{"tf":1.0},"8":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"861":{"tf":1.0},"935":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"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":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":33,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"118":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":2.23606797749979},"416":{"tf":2.449489742783178},"427":{"tf":2.6457513110645907},"437":{"tf":2.449489742783178},"460":{"tf":1.0},"480":{"tf":2.449489742783178},"507":{"tf":2.6457513110645907},"531":{"tf":2.449489742783178},"563":{"tf":1.0},"577":{"tf":2.6457513110645907},"600":{"tf":2.0},"652":{"tf":1.0},"692":{"tf":1.4142135623730951},"701":{"tf":1.0},"817":{"tf":1.0},"86":{"tf":1.4142135623730951},"935":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772}},"e":{"d":{"_":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"553":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":43,"docs":{"129":{"tf":1.0},"131":{"tf":2.6457513110645907},"158":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"203":{"tf":3.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":3.0},"306":{"tf":1.0},"307":{"tf":2.0},"315":{"tf":1.0},"326":{"tf":3.3166247903554},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"329":{"tf":2.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.0},"784":{"tf":1.0},"819":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"865":{"tf":1.0},"873":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"376":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}},"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":27,"docs":{"124":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"210":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":3.0},"315":{"tf":1.0},"330":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"718":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.4142135623730951},"958":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"328":{"tf":2.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":3.4641016151377544},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"685":{"tf":2.449489742783178},"77":{"tf":2.449489742783178},"830":{"tf":1.7320508075688772},"858":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":2.449489742783178}},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"774":{"tf":1.0},"830":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"251":{"tf":1.0},"266":{"tf":1.0}}}},"n":{"df":4,"docs":{"677":{"tf":1.0},"702":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"137":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"318":{"tf":1.0},"342":{"tf":1.0},"460":{"tf":1.0},"529":{"tf":2.449489742783178},"60":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"471":{"tf":1.0},"503":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"224":{"tf":1.4142135623730951},"317":{"tf":1.0},"34":{"tf":1.0},"690":{"tf":1.4142135623730951},"837":{"tf":1.0},"953":{"tf":1.0}}}},"s":{"df":34,"docs":{"111":{"tf":1.0},"211":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"236":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"317":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"742":{"tf":1.0},"772":{"tf":1.4142135623730951},"788":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"823":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"913":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"862":{"tf":1.0},"864":{"tf":1.0}}}}}}},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"13":{"tf":1.0},"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"670":{"tf":1.4142135623730951},"672":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"663":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"184":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"679":{"tf":1.0},"734":{"tf":1.0},"77":{"tf":1.4142135623730951},"795":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":24,"docs":{"0":{"tf":1.0},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"33":{"tf":2.0},"342":{"tf":1.4142135623730951},"500":{"tf":1.0},"592":{"tf":1.0},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"848":{"tf":1.0},"853":{"tf":1.7320508075688772},"902":{"tf":1.0},"915":{"tf":1.0},"940":{"tf":1.0},"950":{"tf":1.7320508075688772},"956":{"tf":1.0},"958":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"494":{"tf":1.0},"621":{"tf":3.1622776601683795},"626":{"tf":1.7320508075688772},"672":{"tf":1.4142135623730951},"721":{"tf":1.0},"743":{"tf":1.0},"804":{"tf":1.0},"862":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.0}}}}},"r":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"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":{"328":{"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{":":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"799":{"tf":1.0}}},"2":{"df":1,"docs":{"799":{"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":7,"docs":{"560":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"852":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"41":{"tf":1.0}}}},"df":52,"docs":{"110":{"tf":1.0},"112":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"224":{"tf":2.0},"259":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":2.8284271247461903},"333":{"tf":1.0},"388":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"534":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"563":{"tf":3.605551275463989},"565":{"tf":1.7320508075688772},"568":{"tf":2.8284271247461903},"570":{"tf":1.0},"580":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"603":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"677":{"tf":1.0},"679":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"799":{"tf":2.0},"865":{"tf":1.4142135623730951},"89":{"tf":1.0},"897":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"697":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"802":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"230":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"303":{"tf":1.0},"958":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"162":{"tf":1.0},"19":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"859":{"tf":1.4142135623730951},"895":{"tf":1.0},"935":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"127":{"tf":2.0},"273":{"tf":1.0},"294":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"792":{"tf":1.0},"834":{"tf":1.4142135623730951},"849":{"tf":1.0},"929":{"tf":1.0},"935":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"895":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"203":{"tf":1.0},"289":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0}}},"s":{"df":32,"docs":{"100":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"652":{"tf":2.6457513110645907},"73":{"tf":1.0},"734":{"tf":1.0},"79":{"tf":1.4142135623730951},"875":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":1,"docs":{"923":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"958":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"288":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"183":{"tf":1.4142135623730951},"248":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"869":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"802":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"715":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0}}}}}},"df":8,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":71,"docs":{"0":{"tf":1.0},"138":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":2.449489742783178},"195":{"tf":3.0},"196":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"198":{"tf":2.8284271247461903},"199":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":5.830951894845301},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":2.23606797749979},"209":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"418":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"694":{"tf":1.0},"701":{"tf":1.0},"720":{"tf":1.0},"738":{"tf":1.0},"74":{"tf":1.0},"757":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"841":{"tf":1.0},"863":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0},"963":{"tf":1.0},"965":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"b":{"8":{"/":{"1":{"7":{":":{"0":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.6457513110645907}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"958":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"132":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":2.0},"198":{"tf":1.0},"316":{"tf":1.7320508075688772},"895":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"117":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"793":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"877":{"tf":1.0}}}},"i":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":29,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"644":{"tf":1.0},"677":{"tf":2.0},"697":{"tf":1.0},"734":{"tf":1.0},"750":{"tf":1.0},"755":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"782":{"tf":1.0},"801":{"tf":1.0},"839":{"tf":1.4142135623730951},"865":{"tf":1.0}}},"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":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":119,"docs":{"108":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":2.23606797749979},"116":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":3.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":2.23606797749979},"202":{"tf":1.0},"203":{"tf":2.0},"21":{"tf":2.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":2.23606797749979},"282":{"tf":1.4142135623730951},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.23606797749979},"292":{"tf":1.4142135623730951},"293":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":2.23606797749979},"301":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"303":{"tf":1.4142135623730951},"31":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"340":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"38":{"tf":2.0},"398":{"tf":1.4142135623730951},"41":{"tf":1.0},"419":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"440":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"499":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"533":{"tf":1.0},"55":{"tf":1.0},"563":{"tf":1.0},"59":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"614":{"tf":1.4142135623730951},"661":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":2.8284271247461903},"68":{"tf":1.0},"686":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.4142135623730951},"753":{"tf":1.0},"77":{"tf":1.0},"783":{"tf":1.0},"812":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"850":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.23606797749979},"9":{"tf":1.0},"91":{"tf":1.0},"924":{"tf":1.0},"950":{"tf":1.7320508075688772},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"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":2,"docs":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"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":{},"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":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":2,"docs":{"232":{"tf":1.0},"379":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"234":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"315":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"11":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"182":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.0},"653":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.4142135623730951},"693":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"d":{"df":10,"docs":{"232":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.7320508075688772},"34":{"tf":1.0},"401":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"376":{"tf":1.0},"467":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"149":{"tf":1.0},"22":{"tf":1.4142135623730951},"318":{"tf":1.0},"339":{"tf":1.0},"652":{"tf":1.0},"747":{"tf":1.0},"801":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":25,"docs":{"110":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"289":{"tf":2.0},"31":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"354":{"tf":1.0},"462":{"tf":1.0},"646":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"?":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":1,"docs":{"565":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"d":{"df":10,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"313":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"811":{"tf":1.0},"909":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"556":{"tf":1.0}}}}}},"df":66,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":3.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"328":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":2.449489742783178},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"65":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"747":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"804":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"881":{"tf":1.0},"888":{"tf":1.0},"897":{"tf":1.0},"968":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"t":{"df":8,"docs":{"106":{"tf":1.4142135623730951},"22":{"tf":1.0},"630":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0},"961":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"371":{"tf":1.0},"961":{"tf":1.0}}}},"x":{"df":58,"docs":{"117":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"50":{"tf":1.0},"541":{"tf":1.0},"632":{"tf":1.0},"720":{"tf":1.0},"731":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"797":{"tf":1.0},"804":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.0},"818":{"tf":1.4142135623730951},"820":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.4142135623730951},"843":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"876":{"tf":1.0},"880":{"tf":1.4142135623730951},"881":{"tf":1.0},"892":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"924":{"tf":2.23606797749979},"926":{"tf":1.0},"929":{"tf":1.0},"935":{"tf":1.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"946":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"d":{"(":{"2":{"0":{"1":{"9":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"100":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"355":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"682":{"tf":1.0},"715":{"tf":1.0},"79":{"tf":1.0},"861":{"tf":1.0},"872":{"tf":1.0},"908":{"tf":1.4142135623730951}},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"383":{"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":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"2":{"df":1,"docs":{"851":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"p":{"df":3,"docs":{"342":{"tf":1.0},"666":{"tf":1.0},"741":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"918":{"tf":1.4142135623730951},"937":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"459":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"720":{"tf":1.0},"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"786":{"tf":1.0},"807":{"tf":1.0},"867":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.0}}}},"n":{"df":12,"docs":{"26":{"tf":1.0},"342":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":5,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"830":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"44":{"tf":1.0},"677":{"tf":1.0},"683":{"tf":1.0},"831":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":80,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":2.23606797749979},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"55":{"tf":1.0},"560":{"tf":1.0},"580":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"60":{"tf":1.0},"614":{"tf":1.0},"626":{"tf":1.0},"662":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"697":{"tf":1.0},"72":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0},"919":{"tf":1.0},"93":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"715":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"c":{"df":8,"docs":{"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"354":{"tf":1.0},"679":{"tf":1.0},"792":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"155":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.4142135623730951},"224":{"tf":1.0},"231":{"tf":1.0},"807":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"476":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"968":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"268":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":84,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"128":{"tf":1.0},"138":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":2.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"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},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.4142135623730951},"387":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"864":{"tf":1.0},"87":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.4142135623730951},"969":{"tf":3.0}}}},"df":14,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"288":{"tf":1.0},"320":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"823":{"tf":1.0},"89":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"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":6,"docs":{"12":{"tf":1.0},"775":{"tf":1.0},"793":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0}},"s":{":":{"$":{"df":0,"docs":{},"{":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"793":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"288":{"tf":1.0},"796":{"tf":1.0},"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":135,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"548":{"tf":1.0},"553":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"565":{"tf":1.0},"571":{"tf":1.0},"577":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"617":{"tf":1.0},"623":{"tf":1.0},"628":{"tf":1.0},"634":{"tf":1.0},"637":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"814":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"117":{"tf":1.0},"289":{"tf":1.0},"350":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"618":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"63":{"tf":1.0},"711":{"tf":1.0},"80":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"318":{"tf":1.0},"356":{"tf":1.0},"657":{"tf":1.4142135623730951},"776":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"22":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"297":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"752":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"958":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"282":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":281,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"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},"746":{"tf":1.0},"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},"755":{"tf":1.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},"765":{"tf":1.0},"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},"78":{"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"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.0},"895":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"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.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":6,"docs":{"184":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"22":{"tf":1.0},"538":{"tf":1.0},"900":{"tf":1.0}}}}},"n":{"c":{"df":14,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"111":{"tf":1.4142135623730951},"144":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"318":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"338":{"tf":1.7320508075688772},"342":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":2.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"471":{"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},"48":{"tf":1.0},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"514":{"tf":1.0},"652":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"725":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.0},"743":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.0},"772":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.4142135623730951},"810":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.0},"867":{"tf":1.4142135623730951},"905":{"tf":1.0},"907":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"924":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"958":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"315":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"190":{"tf":1.0},"310":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"830":{"tf":1.0},"87":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"613":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"958":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"334":{"tf":2.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"703":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0}}}}}}},"df":1,"docs":{"687":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"580":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"270":{"tf":1.0},"316":{"tf":1.0},"376":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.4142135623730951},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"830":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"792":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"d":{"/":{"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":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":224,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"144":{"tf":1.4142135623730951},"166":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"175":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.7320508075688772},"224":{"tf":1.0},"25":{"tf":1.4142135623730951},"252":{"tf":1.0},"26":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.7320508075688772},"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.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"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},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.4142135623730951},"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},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"371":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"51":{"tf":1.0},"514":{"tf":1.7320508075688772},"52":{"tf":1.0},"528":{"tf":2.8284271247461903},"54":{"tf":1.0},"563":{"tf":2.0},"582":{"tf":1.7320508075688772},"65":{"tf":1.0},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.7320508075688772},"671":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":1.7320508075688772},"687":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"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.4142135623730951},"738":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"78":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"888":{"tf":1.4142135623730951},"9":{"tf":1.0},"914":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"b":{"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":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"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":0,"docs":{},"m":{"df":1,"docs":{"804":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"838":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":53,"docs":{"127":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"360":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"651":{"tf":1.0},"711":{"tf":1.0},"721":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"876":{"tf":1.0},"905":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"838":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"612":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"609":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"612":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"613":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"510":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":1,"docs":{"22":{"tf":1.0}}},"t":{"df":4,"docs":{"132":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"60":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":107,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"571":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"60":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.4142135623730951},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"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":{"17":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"32":{"tf":1.7320508075688772},"44":{"tf":1.0},"660":{"tf":1.7320508075688772},"677":{"tf":1.0},"688":{"tf":1.7320508075688772}},"n":{"df":90,"docs":{"104":{"tf":1.0},"110":{"tf":1.7320508075688772},"130":{"tf":1.0},"140":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"673":{"tf":1.0},"782":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"929":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":2.6457513110645907}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"276":{"tf":1.0},"68":{"tf":2.23606797749979},"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"'":{"df":10,"docs":{"2":{"tf":1.0},"22":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.0},"349":{"tf":1.0},"693":{"tf":1.0},"838":{"tf":1.4142135623730951},"875":{"tf":1.0},"969":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"393":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"157":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"865":{"tf":1.0}}}},"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":{},"n":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":2,"docs":{"124":{"tf":1.0},"892":{"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"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":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"22":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"716":{"tf":1.0},"721":{"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":{},"v":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"i":{"d":{"]":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"492":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"493":{"tf":1.0},"494":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"120":{"tf":1.0},"124":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"\"":{"df":0,"docs":{},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"127":{"tf":1.0},"809":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"127":{"tf":1.0},"310":{"tf":1.0},"773":{"tf":1.0},"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"120":{"tf":1.0},"176":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"383":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"2":{"3":{"df":1,"docs":{"574":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"858":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"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":{"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":{"338":{"tf":1.0},"678":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"679":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"238":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.7320508075688772},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"701":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"551":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":28,"docs":{"121":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"222":{"tf":1.0},"240":{"tf":1.4142135623730951},"31":{"tf":1.0},"315":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"561":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":2.0},"916":{"tf":1.0},"923":{"tf":1.4142135623730951},"934":{"tf":1.0},"936":{"tf":1.0},"948":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"834":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"243":{"tf":1.0}}}}}},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"585":{"tf":1.0},"586":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"585":{"tf":1.0},"586":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"[":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"519":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"df":3,"docs":{"315":{"tf":1.0},"338":{"tf":1.0},"678":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"168":{"tf":1.0},"752":{"tf":1.0},"912":{"tf":1.0},"929":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}},"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"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":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":1,"docs":{"920":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"920":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"920":{"tf":1.0}},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":3,"docs":{"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"342":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"9":{"tf":1.0},"921":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":2,"docs":{"316":{"tf":1.0},"338":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"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":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":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":{"407":{"tf":1.0},"532":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"643":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"333":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"924":{"tf":1.0},"927":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"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":{},"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":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"802":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"135":{"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":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"127":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"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":{},"s":{"df":3,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"829":{"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.0},"842":{"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":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":2,"docs":{"127":{"tf":1.0},"747":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"747":{"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":{},"r":{".":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"l":{"df":1,"docs":{"862":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"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":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"752":{"tf":1.0},"811":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"127":{"tf":1.0},"762":{"tf":1.0},"806":{"tf":1.0},"809":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"806":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"739":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"747":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"/":{"4":{"0":{".":{"0":{".":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"3":{"3":{".":{"0":{".":{"0":{"df":1,"docs":{"11":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"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":{},"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":{"318":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":23,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":3,"docs":{"316":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"338":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"85":{"tf":1.0}}}}}},"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":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"26":{"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":{},"r":{"df":1,"docs":{"823":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":1,"docs":{"369":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":4,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"362":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"362":{"tf":1.7320508075688772}}}}}},"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":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":3,"docs":{"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"505":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"n":{"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":11,"docs":{"497":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"652":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":84,"docs":{"115":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"288":{"tf":1.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"567":{"tf":1.0},"653":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":2.8284271247461903},"678":{"tf":1.0},"689":{"tf":1.4142135623730951},"690":{"tf":1.0},"692":{"tf":2.449489742783178},"715":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"783":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"864":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":2.23606797749979},"943":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"=":{"=":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"8":{".":{"1":{"df":1,"docs":{"673":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}},"df":0,"docs":{}},"df":2,"docs":{"690":{"tf":1.0},"907":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"673":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"673":{"tf":1.4142135623730951},"690":{"tf":1.0},"907":{"tf":1.0}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"375":{"tf":1.7320508075688772}},"s":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}},"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}},"e":{"=":{"$":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"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":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"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":{"728":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"751":{"tf":1.0},"805":{"tf":1.0},"839":{"tf":1.0},"840":{"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":{"837":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":517,"docs":{"0":{"tf":3.872983346207417},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"111":{"tf":2.23606797749979},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":2.23606797749979},"126":{"tf":2.8284271247461903},"127":{"tf":2.23606797749979},"128":{"tf":1.0},"13":{"tf":3.0},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":3.1622776601683795},"14":{"tf":2.449489742783178},"141":{"tf":1.0},"142":{"tf":2.6457513110645907},"145":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":2.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":3.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":2.23606797749979},"18":{"tf":2.449489742783178},"180":{"tf":2.23606797749979},"181":{"tf":2.23606797749979},"182":{"tf":2.23606797749979},"183":{"tf":3.1622776601683795},"184":{"tf":2.0},"185":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":3.3166247903554},"196":{"tf":1.0},"197":{"tf":2.449489742783178},"198":{"tf":2.449489742783178},"199":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":2.6457513110645907},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":1.4142135623730951},"21":{"tf":2.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.6457513110645907},"219":{"tf":1.0},"22":{"tf":2.6457513110645907},"220":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":2.23606797749979},"224":{"tf":3.0},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":2.449489742783178},"230":{"tf":2.0},"231":{"tf":2.6457513110645907},"232":{"tf":2.8284271247461903},"233":{"tf":3.1622776601683795},"234":{"tf":2.6457513110645907},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.0},"239":{"tf":2.0},"24":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":3.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":2.6457513110645907},"259":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":2.6457513110645907},"290":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":2.23606797749979},"308":{"tf":1.7320508075688772},"309":{"tf":2.0},"31":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":3.3166247903554},"316":{"tf":4.358898943540674},"317":{"tf":1.7320508075688772},"318":{"tf":5.385164807134504},"32":{"tf":3.7416573867739413},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.23606797749979},"326":{"tf":1.7320508075688772},"328":{"tf":2.23606797749979},"329":{"tf":1.4142135623730951},"33":{"tf":2.449489742783178},"330":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.7320508075688772},"340":{"tf":2.23606797749979},"342":{"tf":1.4142135623730951},"344":{"tf":2.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":2.0},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.4142135623730951},"36":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":2.23606797749979},"371":{"tf":1.4142135623730951},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"383":{"tf":1.0},"385":{"tf":1.0},"39":{"tf":2.23606797749979},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"402":{"tf":2.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"419":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":2.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":2.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.6457513110645907},"50":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":2.6457513110645907},"522":{"tf":1.4142135623730951},"528":{"tf":1.0},"529":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"54":{"tf":1.7320508075688772},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"56":{"tf":1.0},"561":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"580":{"tf":1.0},"59":{"tf":1.0},"591":{"tf":1.4142135623730951},"598":{"tf":1.0},"6":{"tf":2.449489742783178},"60":{"tf":2.0},"600":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.0},"614":{"tf":1.4142135623730951},"619":{"tf":1.7320508075688772},"62":{"tf":3.1622776601683795},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.7320508075688772},"630":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":2.23606797749979},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"647":{"tf":1.4142135623730951},"649":{"tf":2.0},"65":{"tf":2.6457513110645907},"652":{"tf":1.0},"653":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"656":{"tf":1.7320508075688772},"657":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.0},"67":{"tf":1.7320508075688772},"670":{"tf":1.0},"671":{"tf":2.8284271247461903},"673":{"tf":2.449489742783178},"674":{"tf":2.0},"675":{"tf":1.0},"676":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"678":{"tf":2.6457513110645907},"679":{"tf":1.0},"68":{"tf":1.7320508075688772},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":2.6457513110645907},"688":{"tf":1.7320508075688772},"689":{"tf":1.4142135623730951},"690":{"tf":1.7320508075688772},"691":{"tf":1.7320508075688772},"692":{"tf":2.449489742783178},"693":{"tf":1.7320508075688772},"697":{"tf":1.7320508075688772},"698":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":2.8284271247461903},"704":{"tf":1.7320508075688772},"705":{"tf":1.7320508075688772},"706":{"tf":1.4142135623730951},"707":{"tf":2.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"710":{"tf":1.0},"712":{"tf":2.0},"715":{"tf":1.7320508075688772},"716":{"tf":1.0},"721":{"tf":1.7320508075688772},"732":{"tf":1.4142135623730951},"736":{"tf":1.7320508075688772},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":2.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.4142135623730951},"755":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"78":{"tf":2.23606797749979},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"79":{"tf":1.7320508075688772},"792":{"tf":2.0},"793":{"tf":2.8284271247461903},"798":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":2.0},"817":{"tf":1.4142135623730951},"818":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"828":{"tf":1.0},"83":{"tf":1.4142135623730951},"831":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":2.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":2.0},"854":{"tf":1.4142135623730951},"858":{"tf":1.7320508075688772},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":2.0},"862":{"tf":1.0},"865":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.7320508075688772},"872":{"tf":1.0},"873":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"881":{"tf":1.7320508075688772},"882":{"tf":1.4142135623730951},"885":{"tf":1.0},"892":{"tf":1.0},"9":{"tf":3.4641016151377544},"91":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":2.449489742783178},"916":{"tf":2.23606797749979},"917":{"tf":1.0},"919":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"920":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"945":{"tf":1.7320508075688772},"951":{"tf":2.23606797749979},"956":{"tf":1.4142135623730951},"957":{"tf":2.449489742783178},"958":{"tf":5.291502622129181},"962":{"tf":1.7320508075688772},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"347":{"tf":1.4142135623730951}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.4142135623730951}}}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"666":{"tf":1.4142135623730951},"667":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"[":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"112":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"779":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"649":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"670":{"tf":1.4142135623730951},"672":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"720":{"tf":1.0},"867":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"885":{"tf":1.0}},"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":{},"p":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{"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":1,"docs":{"318":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"473":{"tf":1.7320508075688772},"876":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"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":1,"docs":{"318":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"’":{"df":3,"docs":{"3":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"830":{"tf":1.0},"834":{"tf":1.4142135623730951},"858":{"tf":1.0},"864":{"tf":1.0}}}}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"22":{"tf":1.0},"239":{"tf":1.0},"318":{"tf":1.0},"774":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"5":{"tf":1.4142135623730951},"702":{"tf":2.0},"703":{"tf":1.0},"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},"958":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"t":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"136":{"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":{},"t":{"c":{"+":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"445":{"tf":1.0},"446":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"df":3,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"df":22,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"425":{"tf":2.449489742783178},"445":{"tf":2.449489742783178},"446":{"tf":2.449489742783178},"448":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"619":{"tf":1.0},"675":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":5,"docs":{"109":{"tf":1.0},"145":{"tf":1.4142135623730951},"198":{"tf":1.0},"859":{"tf":1.0},"88":{"tf":1.0}}},"o":{"d":{"df":7,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"233":{"tf":1.0},"63":{"tf":1.0},"678":{"tf":1.0},"830":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"448":{"tf":1.0}}}}}},"r":{"a":{"b":{"df":1,"docs":{"665":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"339":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"802":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"l":{"df":32,"docs":{"11":{"tf":1.0},"13":{"tf":2.8284271247461903},"318":{"tf":1.0},"663":{"tf":1.7320508075688772},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.4142135623730951},"675":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"731":{"tf":1.0},"735":{"tf":1.0},"750":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"786":{"tf":1.4142135623730951},"792":{"tf":2.0},"793":{"tf":1.0},"801":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"670":{"tf":1.0},"673":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"673":{"tf":1.4142135623730951},"862":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"467":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"2":{"3":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"578":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"578":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"2":{"3":{"df":1,"docs":{"574":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"578":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"2":{"3":{"df":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"578":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"577":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"577":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"288":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"tf":1.4142135623730951}}}},"p":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"673":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"297":{"tf":1.0},"654":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"142":{"tf":1.0},"342":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"849":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"878":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":25,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"117":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":2.0},"23":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"29":{"tf":1.0},"349":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":2.449489742783178},"964":{"tf":1.4142135623730951},"965":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"110":{"tf":1.0},"5":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"959":{"tf":1.7320508075688772},"960":{"tf":1.4142135623730951},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"968":{"tf":1.7320508075688772},"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"852":{"tf":1.0},"853":{"tf":1.0},"913":{"tf":1.0},"933":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}}},"h":{"1":{"2":{"0":{"2":{"0":{"df":1,"docs":{"958":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"521":{"tf":1.0}}},"3":{"df":1,"docs":{"521":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"65":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"514":{"tf":1.0}},"l":{"df":27,"docs":{"109":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"371":{"tf":1.0},"402":{"tf":1.0},"563":{"tf":2.0},"679":{"tf":1.0},"710":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"833":{"tf":1.4142135623730951},"865":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"679":{"tf":1.0},"858":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"120":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.0},"155":{"tf":1.0},"312":{"tf":1.0},"376":{"tf":1.7320508075688772},"401":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.4142135623730951},"60":{"tf":1.0},"618":{"tf":1.7320508075688772},"697":{"tf":1.0},"701":{"tf":1.0},"710":{"tf":1.0},"75":{"tf":2.0},"802":{"tf":1.0},"809":{"tf":1.0},"823":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"878":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"96":{"tf":2.0}}}},"i":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"r":{"d":{"df":3,"docs":{"22":{"tf":1.0},"461":{"tf":1.0},"830":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"274":{"tf":2.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"114":{"tf":1.0}},"m":{"df":2,"docs":{"830":{"tf":1.0},"923":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"328":{"tf":1.0},"799":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"677":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"267":{"tf":1.0},"476":{"tf":1.4142135623730951},"494":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"776":{"tf":1.0},"963":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":21,"docs":{"129":{"tf":1.0},"136":{"tf":2.8284271247461903},"317":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"697":{"tf":1.0},"741":{"tf":1.0},"775":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"847":{"tf":1.0},"858":{"tf":1.0},"913":{"tf":1.0},"936":{"tf":1.4142135623730951},"951":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"747":{"tf":1.0}}}}},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"509":{"tf":1.0},"512":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"606":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":22,"docs":{"117":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"226":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"461":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.7320508075688772}}}}}},"n":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"127":{"tf":1.0},"254":{"tf":2.449489742783178},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"677":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"728":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"117":{"tf":1.0},"145":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"456":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"135":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"289":{"tf":1.4142135623730951},"546":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"289":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":1.0},"632":{"tf":1.0}}}}}}}}},"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}}}},"df":12,"docs":{"376":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"503":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":8,"docs":{"132":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}},"i":{"df":1,"docs":{"289":{"tf":1.7320508075688772}}}}}}},"t":{"df":5,"docs":{"127":{"tf":1.0},"142":{"tf":1.0},"50":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"315":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"df":3,"docs":{"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"198":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"655":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"802":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"142":{"tf":1.0},"173":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"811":{"tf":1.0}}},"s":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"0":{"df":1,"docs":{"521":{"tf":1.0}}},"1":{"df":1,"docs":{"521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"519":{"tf":1.0}}},"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"590":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"590":{"tf":1.0}}},":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"df":2,"docs":{"138":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"87":{"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":1,"docs":{"645":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"626":{"tf":1.0}},"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":2,"docs":{"625":{"tf":1.0},"626":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"626":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"521":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"317":{"tf":1.0}}}}}}}},"df":18,"docs":{"237":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"745":{"tf":1.0},"922":{"tf":1.4142135623730951},"933":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"0":{"0":{"0":{"0":{"0":{"0":{"df":21,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"df":3,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"9":{"3":{"8":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"9":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"8":{"7":{"7":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"6":{"2":{"2":{"df":1,"docs":{"126":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"0":{"0":{"0":{"0":{"0":{"#":{"c":{"3":{"df":22,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"1":{"2":{"9":{"3":{"8":{"#":{"c":{"3":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"0":{"4":{"8":{"#":{"c":{"1":{"3":{"df":1,"docs":{"127":{"tf":1.0}}},"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":{"2":{"4":{"7":{"9":{"df":2,"docs":{"677":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"5":{"#":{"c":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"8":{"7":{"7":{"#":{"c":{"2":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"6":{"2":{"2":{"#":{"c":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"645":{"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"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":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"3":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"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":{},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"705":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"707":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"705":{"tf":1.0},"776":{"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":{}}}}}},"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":{},"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"31":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"11":{"tf":1.0},"13":{"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":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"/":{"2":{".":{"0":{"df":1,"docs":{"7":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"540":{"tf":1.0},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"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":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"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":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"254":{"tf":1.0},"288":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"294":{"tf":1.0},"762":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"693":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"693":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"693":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"i":{".":{"df":10,"docs":{"157":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"338":{"tf":1.0},"371":{"tf":1.0},"563":{"tf":1.0},"654":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"969":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"834":{"tf":1.0},"862":{"tf":1.0}}}},"6":{"8":{"6":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"7":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"232":{"tf":1.7320508075688772}}}}},"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":48,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":2.0},"136":{"tf":1.0},"160":{"tf":2.23606797749979},"163":{"tf":1.0},"17":{"tf":1.0},"205":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"268":{"tf":1.7320508075688772},"289":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"347":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"526":{"tf":1.0},"59":{"tf":1.0},"592":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"728":{"tf":1.0},"734":{"tf":1.0},"842":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"9":{"tf":1.0},"946":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":3,"docs":{"119":{"tf":1.0},"173":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}},"i":{"df":36,"docs":{"104":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"118":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"160":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"289":{"tf":2.449489742783178},"315":{"tf":2.0},"330":{"tf":2.23606797749979},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"423":{"tf":1.0},"443":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"538":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"697":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"99":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"142":{"tf":1.0},"17":{"tf":1.0},"231":{"tf":1.4142135623730951},"357":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"664":{"tf":1.0},"684":{"tf":1.0},"734":{"tf":1.0},"873":{"tf":1.0},"882":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"693":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":16,"docs":{"127":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"184":{"tf":1.0},"224":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"354":{"tf":1.0},"561":{"tf":1.7320508075688772},"570":{"tf":1.0},"710":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.7320508075688772},"271":{"tf":1.0},"318":{"tf":1.0},"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":51,"docs":{"11":{"tf":1.4142135623730951},"144":{"tf":1.0},"192":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":2.23606797749979},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":2.449489742783178},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"379":{"tf":1.0},"52":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"67":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.4142135623730951},"729":{"tf":1.0},"738":{"tf":1.0},"743":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.4142135623730951},"773":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"819":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"849":{"tf":1.0},"854":{"tf":1.0},"872":{"tf":1.0},"881":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.7320508075688772},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"956":{"tf":4.123105625617661}}}}}}},"i":{"df":1,"docs":{"256":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":151,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":2.8284271247461903},"317":{"tf":1.4142135623730951},"318":{"tf":2.449489742783178},"32":{"tf":2.6457513110645907},"324":{"tf":2.449489742783178},"328":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":2.23606797749979},"34":{"tf":2.0},"342":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.7320508075688772},"383":{"tf":2.0},"385":{"tf":2.0},"386":{"tf":1.4142135623730951},"393":{"tf":2.0},"395":{"tf":2.0},"396":{"tf":2.23606797749979},"398":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":2.0},"406":{"tf":2.0},"407":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"414":{"tf":2.0},"416":{"tf":2.0},"417":{"tf":2.23606797749979},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"425":{"tf":2.0},"427":{"tf":2.0},"428":{"tf":2.23606797749979},"435":{"tf":2.0},"437":{"tf":2.0},"438":{"tf":2.23606797749979},"44":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"448":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.7320508075688772},"461":{"tf":2.0},"464":{"tf":2.0},"465":{"tf":2.23606797749979},"468":{"tf":1.0},"473":{"tf":2.6457513110645907},"474":{"tf":2.23606797749979},"475":{"tf":2.0},"476":{"tf":2.0},"477":{"tf":1.7320508075688772},"478":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951},"480":{"tf":2.0},"481":{"tf":2.23606797749979},"499":{"tf":1.0},"505":{"tf":2.23606797749979},"507":{"tf":2.0},"508":{"tf":2.23606797749979},"522":{"tf":1.0},"528":{"tf":2.0},"529":{"tf":2.23606797749979},"531":{"tf":2.0},"532":{"tf":2.449489742783178},"538":{"tf":1.4142135623730951},"540":{"tf":2.0},"541":{"tf":1.0},"543":{"tf":2.0},"544":{"tf":2.23606797749979},"551":{"tf":2.23606797749979},"553":{"tf":2.23606797749979},"554":{"tf":2.0},"555":{"tf":2.6457513110645907},"563":{"tf":1.7320508075688772},"565":{"tf":2.0},"566":{"tf":2.8284271247461903},"574":{"tf":1.7320508075688772},"575":{"tf":1.7320508075688772},"577":{"tf":1.7320508075688772},"578":{"tf":2.0},"591":{"tf":1.0},"598":{"tf":2.0},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"614":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":2.6457513110645907},"623":{"tf":2.0},"624":{"tf":2.449489742783178},"630":{"tf":1.4142135623730951},"632":{"tf":2.0},"634":{"tf":2.0},"635":{"tf":2.23606797749979},"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"643":{"tf":1.7320508075688772},"649":{"tf":2.23606797749979},"65":{"tf":1.0},"652":{"tf":2.6457513110645907},"66":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.7320508075688772},"692":{"tf":1.0},"693":{"tf":1.4142135623730951},"700":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"772":{"tf":1.0},"78":{"tf":1.4142135623730951},"831":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"909":{"tf":1.0},"916":{"tf":2.449489742783178},"92":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"958":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"288":{"tf":1.0}},"s":{"df":3,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"894":{"tf":1.0},"945":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":148,"docs":{"100":{"tf":3.4641016151377544},"104":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":2.0},"132":{"tf":1.7320508075688772},"145":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":2.0},"264":{"tf":1.0},"27":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":3.3166247903554},"297":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.4142135623730951},"342":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"419":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"614":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":1.0},"697":{"tf":1.4142135623730951},"729":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"762":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":3.4641016151377544},"8":{"tf":1.0},"802":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"826":{"tf":1.0},"83":{"tf":1.4142135623730951},"838":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":2.0},"865":{"tf":2.0},"878":{"tf":1.0},"880":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"912":{"tf":1.0},"929":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":3.4641016151377544},"99":{"tf":1.0}},"e":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"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":{}},"_":{"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":{"d":{"df":5,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}},"m":{"df":6,"docs":{"107":{"tf":1.0},"232":{"tf":1.0},"471":{"tf":1.0},"510":{"tf":1.0},"522":{"tf":1.0},"86":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"191":{"tf":1.0},"838":{"tf":1.0},"878":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"731":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"877":{"tf":1.0},"914":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":11,"docs":{"142":{"tf":2.449489742783178},"258":{"tf":2.449489742783178},"263":{"tf":1.4142135623730951},"289":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.7320508075688772},"756":{"tf":1.7320508075688772},"762":{"tf":1.0},"830":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"621":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"202":{"tf":1.0},"239":{"tf":1.0},"346":{"tf":1.0},"715":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":16,"docs":{"37":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"9":{"tf":1.4142135623730951},"950":{"tf":1.0}},"e":{"d":{"d":{"b":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":21,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"267":{"tf":1.0},"283":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"340":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"801":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":12,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"306":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"494":{"tf":1.0},"560":{"tf":1.0},"621":{"tf":1.0},"708":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"694":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"289":{"tf":1.0},"921":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}}},"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"704":{"tf":1.0},"779":{"tf":1.4142135623730951},"799":{"tf":1.0},"969":{"tf":2.0}},"r":{"df":0,"docs":{},"m":{"df":77,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"177":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"264":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":3.3166247903554},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"349":{"tf":1.4142135623730951},"356":{"tf":1.0},"376":{"tf":1.0},"4":{"tf":2.0},"467":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.0},"662":{"tf":1.4142135623730951},"677":{"tf":2.449489742783178},"678":{"tf":1.0},"679":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.4142135623730951},"703":{"tf":1.0},"775":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"84":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"895":{"tf":1.0},"913":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.4142135623730951},"936":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"965":{"tf":1.4142135623730951},"966":{"tf":1.0},"969":{"tf":3.605551275463989}}}}},"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":3,"docs":{"666":{"tf":1.0},"686":{"tf":1.0},"704":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":23,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":2.0},"273":{"tf":1.0},"288":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"79":{"tf":1.7320508075688772},"801":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.4142135623730951},"864":{"tf":1.0},"905":{"tf":1.0}},"i":{"df":84,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"208":{"tf":1.0},"254":{"tf":1.7320508075688772},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":2.23606797749979},"309":{"tf":2.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.4142135623730951},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"315":{"tf":3.0},"316":{"tf":2.449489742783178},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.7320508075688772},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"500":{"tf":1.0},"678":{"tf":1.7320508075688772},"693":{"tf":1.0},"717":{"tf":1.4142135623730951},"721":{"tf":1.0},"723":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"806":{"tf":1.0},"812":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"854":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":2.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"880":{"tf":1.0},"882":{"tf":1.0},"9":{"tf":1.0},"908":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"941":{"tf":1.0},"945":{"tf":1.0},"948":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"803":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"252":{"tf":1.0},"969":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"115":{"tf":1.0},"17":{"tf":1.0},"233":{"tf":1.4142135623730951},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"111":{"tf":1.0},"254":{"tf":1.0},"48":{"tf":1.0},"665":{"tf":1.0},"677":{"tf":1.0},"691":{"tf":1.4142135623730951},"803":{"tf":1.0},"912":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"244":{"tf":1.0},"772":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":31,"docs":{"115":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":2.23606797749979},"22":{"tf":1.0},"233":{"tf":1.0},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.4142135623730951},"671":{"tf":1.0},"673":{"tf":2.23606797749979},"675":{"tf":1.4142135623730951},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":2.449489742783178},"725":{"tf":1.0},"73":{"tf":1.0},"752":{"tf":1.0},"823":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.4142135623730951},"862":{"tf":1.0},"915":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"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":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"1":{"9":{"df":1,"docs":{"551":{"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":{},"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":{".":{"d":{"df":1,"docs":{"551":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"551":{"tf":1.0}}}}}},"df":1,"docs":{"551":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"551":{"tf":1.0}}}}}},"df":1,"docs":{"551":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"551":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":1,"docs":{"551":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"555":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"c":{"df":22,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"565":{"tf":1.0},"656":{"tf":1.0},"674":{"tf":1.0},"738":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"336":{"tf":1.0},"701":{"tf":1.4142135623730951},"782":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":33,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"253":{"tf":1.0},"288":{"tf":1.0},"34":{"tf":1.0},"402":{"tf":1.0},"52":{"tf":1.0},"583":{"tf":1.0},"619":{"tf":1.0},"697":{"tf":1.4142135623730951},"73":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"743":{"tf":1.0},"772":{"tf":2.23606797749979},"775":{"tf":1.0},"786":{"tf":1.0},"793":{"tf":1.0},"801":{"tf":1.0},"809":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"94":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"232":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.0},"356":{"tf":1.0},"54":{"tf":1.0},"652":{"tf":2.449489742783178},"676":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"117":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"320":{"tf":1.0},"461":{"tf":1.0},"497":{"tf":1.0},"520":{"tf":1.0},"589":{"tf":1.0},"653":{"tf":1.0},"674":{"tf":2.449489742783178},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.7320508075688772},"680":{"tf":1.0},"716":{"tf":1.0},"867":{"tf":1.0},"880":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"958":{"tf":1.0}}}}}}}}}},"t":{"3":{"2":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"505":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":20,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"580":{"tf":1.7320508075688772},"590":{"tf":1.0},"591":{"tf":1.7320508075688772},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"685":{"tf":1.4142135623730951}},"r":{"df":47,"docs":{"10":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"2":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":2.0},"23":{"tf":1.7320508075688772},"234":{"tf":1.0},"29":{"tf":2.0},"39":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.4142135623730951},"658":{"tf":1.0},"66":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"681":{"tf":1.0},"688":{"tf":1.0},"8":{"tf":1.0},"834":{"tf":1.0},"860":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":2.6457513110645907},"958":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"153":{"tf":1.0},"160":{"tf":1.0},"173":{"tf":1.0},"192":{"tf":1.0},"53":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"184":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"282":{"tf":1.0},"289":{"tf":2.23606797749979},"377":{"tf":1.0},"466":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"254":{"tf":2.0},"289":{"tf":1.0}}}}},"f":{"a":{"c":{"df":11,"docs":{"218":{"tf":1.0},"223":{"tf":1.0},"320":{"tf":1.0},"476":{"tf":1.0},"679":{"tf":1.0},"689":{"tf":1.7320508075688772},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"837":{"tf":1.0},"874":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"804":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":31,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":1.0},"315":{"tf":1.4142135623730951},"318":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"456":{"tf":1.0},"471":{"tf":1.0},"62":{"tf":1.0},"647":{"tf":1.0},"693":{"tf":1.0},"728":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"803":{"tf":1.0},"838":{"tf":1.0},"854":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":1.4142135623730951},"933":{"tf":1.0},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"267":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"50":{"tf":1.0},"673":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"715":{"tf":1.0},"753":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"151":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"67":{"tf":1.0},"747":{"tf":1.4142135623730951},"796":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":2.0},"818":{"tf":1.4142135623730951},"820":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.4142135623730951},"951":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"120":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.4142135623730951},"563":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"839":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"120":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"866":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"779":{"tf":1.0},"795":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"p":{"df":18,"docs":{"120":{"tf":1.0},"383":{"tf":1.0},"393":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"529":{"tf":1.0},"541":{"tf":1.0},"551":{"tf":1.0},"563":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"632":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":26,"docs":{"120":{"tf":1.0},"328":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"462":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.4142135623730951},"517":{"tf":1.0},"529":{"tf":1.0},"541":{"tf":1.0},"551":{"tf":1.0},"563":{"tf":1.4142135623730951},"575":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"640":{"tf":1.0},"734":{"tf":1.0},"839":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":32,"docs":{"120":{"tf":2.0},"124":{"tf":1.4142135623730951},"231":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"393":{"tf":1.0},"396":{"tf":2.23606797749979},"414":{"tf":1.0},"417":{"tf":2.449489742783178},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"551":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0},"642":{"tf":1.0},"747":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"76":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"880":{"tf":1.0},"916":{"tf":1.7320508075688772},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"840":{"tf":1.0},"870":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"750":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"914":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"142":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.0}}},"t":{"df":1,"docs":{"800":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":16,"docs":{"103":{"tf":1.0},"249":{"tf":1.7320508075688772},"265":{"tf":2.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"82":{"tf":1.0},"875":{"tf":1.0},"958":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":2.0},"749":{"tf":1.0},"912":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":1.0},"340":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}}}}}},"o":{"df":81,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"222":{"tf":1.0},"228":{"tf":1.7320508075688772},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":2.0},"288":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"50":{"tf":2.23606797749979},"657":{"tf":1.0},"681":{"tf":2.23606797749979},"682":{"tf":2.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"685":{"tf":1.7320508075688772},"686":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"727":{"tf":1.0},"732":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"741":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.4142135623730951},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"762":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"789":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.4142135623730951},"798":{"tf":1.0},"802":{"tf":1.7320508075688772},"804":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.4142135623730951},"834":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.4142135623730951},"842":{"tf":1.0},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"p":{"df":1,"docs":{"289":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"_":{"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":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"198":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"377":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.7320508075688772},"839":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}},"o":{"8":{"6":{"0":{"1":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"288":{"tf":1.0},"294":{"tf":1.0},"554":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"19":{"tf":1.0}}}},"p":{"df":1,"docs":{"267":{"tf":2.23606797749979}}},"s":{"df":0,"docs":{},"u":{"df":20,"docs":{"22":{"tf":1.0},"234":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.4142135623730951},"6":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"814":{"tf":1.0},"859":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.7320508075688772},"915":{"tf":1.0},"925":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}}}}}}}}}}}}}},"t":{"'":{"df":36,"docs":{"103":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"17":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"232":{"tf":2.449489742783178},"328":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"873":{"tf":1.4142135623730951},"884":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":19,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.4142135623730951},"22":{"tf":1.0},"230":{"tf":1.0},"264":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"692":{"tf":1.0},"708":{"tf":1.0},"83":{"tf":1.0},"916":{"tf":1.0}}}}}},"’":{"df":3,"docs":{"182":{"tf":1.4142135623730951},"254":{"tf":1.0},"964":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"882":{"tf":1.0}}},"v":{"a":{"df":8,"docs":{"656":{"tf":1.0},"737":{"tf":1.0},"786":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"864":{"tf":1.4142135623730951},"876":{"tf":1.0},"969":{"tf":1.7320508075688772}},"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":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":122,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"135":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"174":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"32":{"tf":2.449489742783178},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"561":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.7320508075688772},"659":{"tf":1.7320508075688772},"660":{"tf":2.0},"688":{"tf":2.23606797749979},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.4142135623730951},"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.0},"701":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"927":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":3,"docs":{"731":{"tf":1.4142135623730951},"759":{"tf":1.0},"823":{"tf":1.0}},"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":{"12":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"882":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"b":{"df":5,"docs":{"224":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"128":{"tf":1.0},"171":{"tf":1.4142135623730951},"195":{"tf":1.0},"254":{"tf":2.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0},"642":{"tf":1.0},"644":{"tf":1.0},"697":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"865":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"e":{"df":3,"docs":{"380":{"tf":1.0},"697":{"tf":1.0},"838":{"tf":1.0}}},"k":{"df":2,"docs":{"701":{"tf":1.4142135623730951},"951":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"b":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"915":{"tf":1.0}}}},"df":9,"docs":{"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"190":{"tf":1.0},"261":{"tf":1.0},"41":{"tf":1.0},"692":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"950":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"565":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"799":{"tf":1.0}}},"2":{"df":1,"docs":{"799":{"tf":1.0}}},"df":27,"docs":{"120":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"232":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"560":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.0},"568":{"tf":2.23606797749979},"570":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"697":{"tf":2.23606797749979},"698":{"tf":2.23606797749979},"701":{"tf":1.4142135623730951},"732":{"tf":1.0},"765":{"tf":1.0},"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"379":{"tf":1.0}}}},"d":{"df":2,"docs":{"697":{"tf":1.0},"701":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"155":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":6,"docs":{"509":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0},"632":{"tf":1.0},"829":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":8,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"376":{"tf":1.4142135623730951},"441":{"tf":1.0},"66":{"tf":1.0},"80":{"tf":1.0},"834":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"b":{"df":41,"docs":{"168":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":2.23606797749979},"212":{"tf":2.449489742783178},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"258":{"tf":1.0},"727":{"tf":1.7320508075688772},"741":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":24,"docs":{"100":{"tf":1.7320508075688772},"169":{"tf":1.0},"17":{"tf":1.0},"254":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":2.6457513110645907},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"252":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":23,"docs":{"106":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"66":{"tf":1.0},"673":{"tf":1.0},"680":{"tf":1.0},"708":{"tf":1.0},"73":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"923":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"p":{"df":1,"docs":{"651":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":69,"docs":{"0":{"tf":1.0},"10":{"tf":2.0},"11":{"tf":2.23606797749979},"110":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.0},"338":{"tf":1.0},"354":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":2.0},"662":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.4142135623730951},"678":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"741":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.4142135623730951},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"829":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"879":{"tf":1.0},"89":{"tf":2.0},"9":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"529":{"tf":1.0}}},"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":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},"df":100,"docs":{"110":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":2.23606797749979},"376":{"tf":2.23606797749979},"377":{"tf":4.358898943540674},"378":{"tf":1.7320508075688772},"391":{"tf":2.0},"392":{"tf":1.0},"393":{"tf":4.58257569495584},"394":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":2.6457513110645907},"397":{"tf":1.7320508075688772},"398":{"tf":4.242640687119285},"399":{"tf":1.0},"400":{"tf":1.0},"412":{"tf":2.23606797749979},"413":{"tf":1.0},"414":{"tf":4.58257569495584},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":2.8284271247461903},"418":{"tf":1.7320508075688772},"419":{"tf":4.242640687119285},"420":{"tf":1.0},"421":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":4.58257569495584},"436":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":2.8284271247461903},"439":{"tf":1.7320508075688772},"440":{"tf":4.242640687119285},"441":{"tf":1.0},"442":{"tf":1.0},"488":{"tf":2.0},"489":{"tf":1.0},"490":{"tf":2.6457513110645907},"491":{"tf":2.449489742783178},"492":{"tf":2.23606797749979},"493":{"tf":2.449489742783178},"494":{"tf":2.449489742783178},"495":{"tf":1.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.4142135623730951},"498":{"tf":1.7320508075688772},"499":{"tf":4.358898943540674},"500":{"tf":1.0},"501":{"tf":3.872983346207417},"502":{"tf":1.0},"515":{"tf":2.0},"516":{"tf":1.0},"517":{"tf":2.23606797749979},"518":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"522":{"tf":4.242640687119285},"523":{"tf":1.0},"524":{"tf":3.872983346207417},"525":{"tf":1.0},"583":{"tf":2.449489742783178},"584":{"tf":1.0},"585":{"tf":2.23606797749979},"586":{"tf":2.23606797749979},"587":{"tf":1.0},"588":{"tf":1.7320508075688772},"589":{"tf":1.4142135623730951},"590":{"tf":1.7320508075688772},"591":{"tf":4.358898943540674},"592":{"tf":1.0},"593":{"tf":3.872983346207417},"594":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":2.0},"608":{"tf":1.0},"609":{"tf":2.449489742783178},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"612":{"tf":1.7320508075688772},"613":{"tf":1.4142135623730951},"614":{"tf":4.358898943540674},"615":{"tf":1.0},"616":{"tf":3.872983346207417},"617":{"tf":1.0},"747":{"tf":1.0},"75":{"tf":1.0},"752":{"tf":1.4142135623730951},"785":{"tf":1.0},"817":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.7320508075688772},"862":{"tf":1.7320508075688772},"864":{"tf":1.7320508075688772},"881":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"951":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"942":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"124":{"tf":2.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"418":{"tf":1.0},"734":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"590":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"521":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"613":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"439":{"tf":1.0},"78":{"tf":1.0},"942":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"498":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"400":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"502":{"tf":1.0},"525":{"tf":1.0},"594":{"tf":1.0},"617":{"tf":1.0},"842":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"400":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"442":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"206":{"tf":1.0},"254":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"969":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"969":{"tf":1.7320508075688772}},"u":{"a":{"df":0,"docs":{},"g":{"df":51,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"136":{"tf":1.0},"21":{"tf":1.0},"280":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"299":{"tf":1.0},"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.7320508075688772},"728":{"tf":1.0},"736":{"tf":1.0},"740":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.0},"834":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"862":{"tf":1.0},"89":{"tf":1.4142135623730951},"958":{"tf":1.0}},"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":{"9":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.0},"267":{"tf":1.0},"807":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"224":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.0},"736":{"tf":1.0},"907":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"467":{"tf":1.0},"621":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":2.6457513110645907},"142":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"204":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"861":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"741":{"tf":1.0}},"n":{"c":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":11,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"425":{"tf":2.449489742783178},"456":{"tf":1.0},"473":{"tf":1.0},"484":{"tf":1.0},"673":{"tf":1.0},"858":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"254":{"tf":1.0},"41":{"tf":1.0},"760":{"tf":1.0},"909":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"874":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"191":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":2.23606797749979},"247":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"780":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"d":{"df":8,"docs":{"141":{"tf":1.0},"74":{"tf":1.0},"814":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"467":{"tf":1.0},"720":{"tf":1.0}}},"n":{"df":4,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0}}}},"v":{"df":5,"docs":{"150":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"816":{"tf":1.0},"916":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"328":{"tf":1.0},"653":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"568":{"tf":1.0},"916":{"tf":1.0},"958":{"tf":1.0}}},"y":{"_":{"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":{"d":{"df":2,"docs":{"160":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"805":{"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":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"565":{"tf":1.0},"642":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":23,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"241":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"328":{"tf":2.0},"378":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"471":{"tf":1.0},"541":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.4142135623730951},"757":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"259":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"'":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":1,"docs":{"254":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"294":{"tf":1.0}}}}},"’":{"df":3,"docs":{"203":{"tf":2.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":24,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"170":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"258":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"673":{"tf":1.0},"834":{"tf":1.4142135623730951},"878":{"tf":1.0},"962":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"956":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}}}}},"i":{"b":{"df":3,"docs":{"316":{"tf":1.0},"674":{"tf":1.0},"924":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":52,"docs":{"0":{"tf":2.23606797749979},"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"270":{"tf":1.7320508075688772},"280":{"tf":1.0},"290":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.7320508075688772},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"61":{"tf":2.0},"65":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.0},"665":{"tf":1.7320508075688772},"668":{"tf":1.0},"678":{"tf":1.0},"705":{"tf":1.0},"753":{"tf":1.4142135623730951},"775":{"tf":1.0},"799":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"9":{"tf":3.1622776601683795},"916":{"tf":1.7320508075688772},"929":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"y":{"'":{"df":2,"docs":{"21":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"'":{"df":1,"docs":{"743":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"151":{"tf":1.0},"184":{"tf":1.0},"271":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"848":{"tf":1.0},"875":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"874":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":36,"docs":{"100":{"tf":3.3166247903554},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"289":{"tf":2.449489742783178},"308":{"tf":1.0},"315":{"tf":1.0},"454":{"tf":1.0},"567":{"tf":1.4142135623730951},"632":{"tf":1.0},"636":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"734":{"tf":1.0},"770":{"tf":1.0},"78":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.0},"79":{"tf":3.3166247903554},"80":{"tf":1.4142135623730951},"840":{"tf":1.0},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"917":{"tf":1.0},"94":{"tf":1.4142135623730951},"953":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":72,"docs":{"109":{"tf":1.0},"129":{"tf":1.7320508075688772},"13":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":2.6457513110645907},"170":{"tf":1.0},"224":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"456":{"tf":2.0},"476":{"tf":1.4142135623730951},"484":{"tf":2.0},"499":{"tf":1.0},"501":{"tf":1.7320508075688772},"511":{"tf":1.4142135623730951},"522":{"tf":1.0},"524":{"tf":1.7320508075688772},"541":{"tf":1.0},"570":{"tf":1.4142135623730951},"575":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.7320508075688772},"598":{"tf":1.0},"609":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.7320508075688772},"621":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"677":{"tf":1.0},"721":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"761":{"tf":1.0},"774":{"tf":1.0},"787":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"580":{"tf":1.0},"582":{"tf":1.0},"591":{"tf":1.0}}}},"df":21,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":2.0},"234":{"tf":1.0},"27":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"653":{"tf":1.0},"677":{"tf":1.0},"682":{"tf":1.0},"689":{"tf":1.7320508075688772},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"862":{"tf":1.0},"935":{"tf":1.0}}},"k":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"376":{"tf":1.0},"753":{"tf":1.0},"844":{"tf":1.0},"862":{"tf":1.4142135623730951},"890":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":1.4142135623730951}}},"t":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"21":{"tf":1.0},"294":{"tf":1.0},"38":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"768":{"tf":1.0},"804":{"tf":1.0},"838":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"288":{"tf":1.0},"38":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"858":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"132":{"tf":1.0},"19":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"769":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.4142135623730951},"815":{"tf":1.7320508075688772},"820":{"tf":1.7320508075688772},"867":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"772":{"tf":1.0}}}}}}},"df":73,"docs":{"10":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"297":{"tf":2.449489742783178},"315":{"tf":1.0},"318":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":2.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"39":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":2.0},"435":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"443":{"tf":2.23606797749979},"444":{"tf":1.0},"445":{"tf":2.0},"446":{"tf":2.449489742783178},"447":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"499":{"tf":2.0},"501":{"tf":1.0},"522":{"tf":2.0},"524":{"tf":1.0},"538":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"57":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":2.0},"593":{"tf":1.0},"614":{"tf":2.0},"616":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"668":{"tf":1.0},"689":{"tf":1.0},"715":{"tf":1.0},"73":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.4142135623730951},"77":{"tf":1.0},"813":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"862":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"912":{"tf":1.0},"94":{"tf":1.4142135623730951},"952":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"307":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"347":{"tf":2.8284271247461903},"731":{"tf":1.0},"951":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"675":{"tf":1.0},"915":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":9,"docs":{"127":{"tf":1.0},"224":{"tf":1.0},"289":{"tf":1.4142135623730951},"371":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"78":{"tf":1.4142135623730951},"965":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"m":{"d":{"b":{"df":5,"docs":{"716":{"tf":1.0},"765":{"tf":1.0},"803":{"tf":1.0},"818":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":68,"docs":{"112":{"tf":1.0},"20":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"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},"480":{"tf":1.0},"481":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":68,"docs":{"112":{"tf":1.0},"20":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"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},"480":{"tf":1.0},"481":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":4,"docs":{"338":{"tf":1.4142135623730951},"649":{"tf":1.0},"652":{"tf":1.0},"834":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"338":{"tf":1.0},"649":{"tf":1.0},"652":{"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":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"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":15,"docs":{"140":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"263":{"tf":1.0},"268":{"tf":1.0},"31":{"tf":1.0},"338":{"tf":1.7320508075688772},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.4142135623730951},"592":{"tf":1.0},"864":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":27,"docs":{"117":{"tf":1.0},"12":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"316":{"tf":1.0},"710":{"tf":1.4142135623730951},"736":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"842":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"938":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"846":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"846":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"170":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"22":{"tf":1.0},"318":{"tf":1.0},"800":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"_":{"2":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"779":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"580":{"tf":1.0},"591":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":57,"docs":{"120":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":3.4641016151377544},"237":{"tf":3.0},"238":{"tf":2.23606797749979},"239":{"tf":3.1622776601683795},"243":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"355":{"tf":2.0},"356":{"tf":2.449489742783178},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"466":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"514":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"582":{"tf":1.0},"701":{"tf":1.0},"704":{"tf":1.0},"721":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"771":{"tf":1.0},"779":{"tf":1.0},"787":{"tf":1.0},"814":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":2.0},"849":{"tf":1.0},"854":{"tf":1.0},"880":{"tf":1.4142135623730951},"898":{"tf":1.0},"923":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.4142135623730951},"938":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"814":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":5,"docs":{"653":{"tf":1.0},"741":{"tf":1.0},"834":{"tf":1.4142135623730951},"919":{"tf":1.0},"932":{"tf":1.0}}},"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"438":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":10,"docs":{"376":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"441":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.0},"567":{"tf":1.4142135623730951},"569":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"tf":1.7320508075688772}}},"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":{"315":{"tf":1.0}}}}}}},"o":{"df":2,"docs":{"0":{"tf":1.0},"958":{"tf":1.0}}},"p":{"df":4,"docs":{"224":{"tf":2.0},"231":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"772":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":37,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"449":{"tf":1.0},"461":{"tf":1.0},"469":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"592":{"tf":1.0},"62":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"818":{"tf":1.4142135623730951},"839":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"963":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":49,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":1.0},"307":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"541":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"736":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.7320508075688772},"761":{"tf":1.0},"775":{"tf":1.0},"793":{"tf":1.0},"806":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"873":{"tf":1.4142135623730951},"876":{"tf":1.0},"891":{"tf":1.0},"912":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":30,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"203":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"572":{"tf":1.0},"665":{"tf":1.0},"668":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"690":{"tf":1.4142135623730951},"697":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"859":{"tf":1.0}}}}},"p":{"df":1,"docs":{"834":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"747":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"73":{"tf":1.0},"78":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":4,"docs":{"103":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"82":{"tf":1.0}}},"u":{"d":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"376":{"tf":1.0},"629":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"285":{"tf":1.0},"286":{"tf":1.0},"496":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"816":{"tf":1.0},"858":{"tf":1.0},"878":{"tf":1.0},"916":{"tf":1.0},"933":{"tf":1.0}}}}}}},"m":{"1":{"/":{"df":0,"docs":{},"m":{"2":{"/":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"958":{"tf":1.0}}},"a":{"c":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"233":{"tf":1.4142135623730951},"690":{"tf":1.0}},"h":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"289":{"tf":1.0},"697":{"tf":1.0},"910":{"tf":1.0}}}}},"o":{"df":7,"docs":{"19":{"tf":1.0},"673":{"tf":1.0},"775":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"867":{"tf":1.0},"884":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"256":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"862":{"tf":1.0},"869":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"487":{"tf":1.0},"514":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"104":{"tf":1.0},"289":{"tf":1.0},"83":{"tf":1.0}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":21,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.0},"26":{"tf":1.0},"306":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"316":{"tf":2.449489742783178},"34":{"tf":1.0},"342":{"tf":1.0},"646":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"840":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"675":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"308":{"tf":1.0},"62":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.0},"288":{"tf":2.449489742783178},"669":{"tf":1.7320508075688772},"685":{"tf":1.7320508075688772},"772":{"tf":1.0},"881":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":75,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.0},"281":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"318":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.7320508075688772},"443":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"538":{"tf":1.0},"619":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.0},"70":{"tf":1.4142135623730951},"720":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"804":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"842":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"882":{"tf":1.0},"900":{"tf":1.0},"91":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"925":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}},"r":{"df":1,"docs":{"956":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"917":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"153":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"647":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"867":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"958":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"44":{"tf":1.0},"677":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":21,"docs":{"127":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":2.449489742783178},"618":{"tf":1.4142135623730951},"625":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"858":{"tf":1.0},"915":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":5,"docs":{"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0},"673":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"968":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"820":{"tf":1.0}}},"2":{"0":{"1":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"4":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":9,"docs":{"131":{"tf":1.0},"170":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":2.23606797749979},"717":{"tf":1.4142135623730951},"723":{"tf":1.0},"840":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"328":{"tf":1.0},"679":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":11,"docs":{"21":{"tf":1.7320508075688772},"276":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"37":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"666":{"tf":1.0},"686":{"tf":2.0},"862":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"318":{"tf":1.0},"773":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"334":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"640":{"tf":1.4142135623730951},"697":{"tf":1.0},"738":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"864":{"tf":1.0},"89":{"tf":1.0},"935":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"703":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"735":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688772},"656":{"tf":1.0}}}}},"x":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"861":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"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":{"761":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"897":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"315":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"565":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":59,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"170":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"328":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"456":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.0},"501":{"tf":1.7320508075688772},"511":{"tf":1.0},"514":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"541":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"575":{"tf":1.0},"582":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.4142135623730951},"609":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"632":{"tf":1.0},"732":{"tf":1.0},"81":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"929":{"tf":1.0}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"968":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"673":{"tf":1.0},"686":{"tf":1.4142135623730951}},"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":6,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"645":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"n":{"df":41,"docs":{"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"168":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"487":{"tf":1.4142135623730951},"499":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"677":{"tf":1.0},"703":{"tf":1.0},"710":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":5,"docs":{"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"371":{"tf":1.0},"864":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":63,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"141":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":2.0},"477":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"488":{"tf":1.0},"503":{"tf":1.0},"549":{"tf":1.0},"632":{"tf":1.0},"70":{"tf":2.0},"708":{"tf":1.0},"711":{"tf":2.449489742783178},"721":{"tf":1.0},"73":{"tf":1.7320508075688772},"739":{"tf":1.0},"74":{"tf":1.7320508075688772},"747":{"tf":1.4142135623730951},"76":{"tf":2.6457513110645907},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"834":{"tf":1.4142135623730951},"86":{"tf":1.0},"861":{"tf":2.0},"866":{"tf":1.0},"880":{"tf":1.0},"91":{"tf":2.0},"929":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"97":{"tf":2.6457513110645907},"99":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"289":{"tf":1.0},"346":{"tf":1.0},"471":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":2.0},"929":{"tf":1.0},"937":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"173":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"510":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":34,"docs":{"289":{"tf":1.4142135623730951},"310":{"tf":1.0},"376":{"tf":1.4142135623730951},"503":{"tf":2.6457513110645907},"504":{"tf":1.0},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":2.8284271247461903},"508":{"tf":1.7320508075688772},"509":{"tf":2.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.4142135623730951},"512":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":2.23606797749979},"515":{"tf":2.449489742783178},"516":{"tf":1.0},"517":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"523":{"tf":1.0},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"718":{"tf":1.0},"814":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"911":{"tf":1.0},"958":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.7320508075688772}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"507":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.7320508075688772},"509":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"514":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"839":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"772":{"tf":1.0},"853":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"525":{"tf":1.0},"837":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"738":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"677":{"tf":1.7320508075688772},"679":{"tf":1.0},"779":{"tf":1.0},"805":{"tf":1.0},"814":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"858":{"tf":1.0},"898":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.4142135623730951},"938":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"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":1,"docs":{"266":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"171":{"tf":1.0}}},"2":{"df":1,"docs":{"171":{"tf":1.0}}},"df":16,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"254":{"tf":1.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"338":{"tf":1.0},"568":{"tf":1.0},"680":{"tf":1.0},"727":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":32,"docs":{"221":{"tf":2.23606797749979},"223":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.0},"257":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":2.23606797749979},"317":{"tf":1.0},"338":{"tf":2.0},"462":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"715":{"tf":1.0},"731":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"772":{"tf":1.7320508075688772},"838":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"'":{"df":7,"docs":{"104":{"tf":1.0},"288":{"tf":1.0},"464":{"tf":1.0},"554":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"799":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"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":2,"docs":{"110":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":553,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":2.449489742783178},"102":{"tf":2.23606797749979},"103":{"tf":2.449489742783178},"104":{"tf":3.0},"105":{"tf":2.0},"106":{"tf":2.449489742783178},"107":{"tf":2.8284271247461903},"108":{"tf":2.449489742783178},"109":{"tf":3.0},"110":{"tf":3.1622776601683795},"111":{"tf":2.449489742783178},"112":{"tf":3.1622776601683795},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":2.23606797749979},"118":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951},"120":{"tf":4.0},"121":{"tf":2.23606797749979},"122":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":3.7416573867739413},"125":{"tf":3.4641016151377544},"126":{"tf":2.0},"127":{"tf":3.7416573867739413},"128":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"135":{"tf":1.7320508075688772},"137":{"tf":2.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":2.0},"146":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":3.1622776601683795},"174":{"tf":1.4142135623730951},"175":{"tf":2.449489742783178},"176":{"tf":2.6457513110645907},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.23606797749979},"184":{"tf":2.8284271247461903},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":3.1622776601683795},"196":{"tf":1.0},"197":{"tf":2.6457513110645907},"198":{"tf":2.6457513110645907},"199":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":2.23606797749979},"203":{"tf":2.449489742783178},"204":{"tf":2.23606797749979},"205":{"tf":1.7320508075688772},"206":{"tf":2.23606797749979},"208":{"tf":1.0},"21":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":2.449489742783178},"231":{"tf":1.0},"25":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":4.69041575982343},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"277":{"tf":1.0},"28":{"tf":2.23606797749979},"280":{"tf":2.23606797749979},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":2.23606797749979},"286":{"tf":2.23606797749979},"287":{"tf":2.449489742783178},"288":{"tf":5.0},"289":{"tf":5.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"318":{"tf":2.6457513110645907},"321":{"tf":1.7320508075688772},"322":{"tf":2.0},"330":{"tf":1.4142135623730951},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.7320508075688772},"376":{"tf":2.8284271247461903},"377":{"tf":3.3166247903554},"378":{"tf":1.0},"379":{"tf":2.449489742783178},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"387":{"tf":2.6457513110645907},"388":{"tf":1.7320508075688772},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.7320508075688772},"397":{"tf":2.0},"398":{"tf":2.23606797749979},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":2.23606797749979},"403":{"tf":1.0},"404":{"tf":1.4142135623730951},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":1.7320508075688772},"408":{"tf":2.6457513110645907},"409":{"tf":1.7320508075688772},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":1.7320508075688772},"418":{"tf":2.0},"419":{"tf":2.23606797749979},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":3.0},"426":{"tf":1.0},"427":{"tf":2.8284271247461903},"428":{"tf":1.7320508075688772},"429":{"tf":2.6457513110645907},"43":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.7320508075688772},"436":{"tf":1.0},"437":{"tf":3.0},"438":{"tf":1.7320508075688772},"439":{"tf":2.0},"440":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"450":{"tf":2.6457513110645907},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"466":{"tf":2.6457513110645907},"467":{"tf":2.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.7320508075688772},"475":{"tf":2.0},"476":{"tf":2.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"482":{"tf":2.0},"483":{"tf":1.7320508075688772},"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.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.7320508075688772},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":2.0},"499":{"tf":2.23606797749979},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.7320508075688772},"508":{"tf":1.7320508075688772},"509":{"tf":2.0},"51":{"tf":1.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":2.0},"522":{"tf":2.23606797749979},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"527":{"tf":1.0},"528":{"tf":1.7320508075688772},"529":{"tf":1.7320508075688772},"53":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.7320508075688772},"532":{"tf":1.7320508075688772},"533":{"tf":2.449489742783178},"534":{"tf":1.7320508075688772},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"538":{"tf":1.0},"539":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.7320508075688772},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"543":{"tf":1.7320508075688772},"544":{"tf":1.7320508075688772},"545":{"tf":2.6457513110645907},"546":{"tf":2.0},"547":{"tf":1.7320508075688772},"548":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.7320508075688772},"552":{"tf":1.0},"553":{"tf":1.7320508075688772},"554":{"tf":1.7320508075688772},"555":{"tf":1.7320508075688772},"556":{"tf":2.6457513110645907},"557":{"tf":2.23606797749979},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.6457513110645907},"564":{"tf":1.0},"565":{"tf":1.4142135623730951},"566":{"tf":1.7320508075688772},"567":{"tf":2.6457513110645907},"568":{"tf":2.449489742783178},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.4142135623730951},"573":{"tf":1.0},"574":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":2.23606797749979},"579":{"tf":2.0},"580":{"tf":2.23606797749979},"581":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"584":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"590":{"tf":2.0},"591":{"tf":2.23606797749979},"592":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"598":{"tf":1.7320508075688772},"599":{"tf":1.0},"60":{"tf":2.23606797749979},"600":{"tf":1.7320508075688772},"601":{"tf":1.7320508075688772},"602":{"tf":2.6457513110645907},"603":{"tf":1.7320508075688772},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.4142135623730951},"607":{"tf":2.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":2.6457513110645907},"614":{"tf":2.23606797749979},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":2.6457513110645907},"620":{"tf":1.0},"621":{"tf":1.7320508075688772},"622":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":1.4142135623730951},"625":{"tf":2.6457513110645907},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"632":{"tf":2.23606797749979},"633":{"tf":1.0},"634":{"tf":1.7320508075688772},"635":{"tf":1.7320508075688772},"636":{"tf":2.6457513110645907},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.7320508075688772},"641":{"tf":1.0},"642":{"tf":1.7320508075688772},"643":{"tf":1.7320508075688772},"644":{"tf":2.23606797749979},"645":{"tf":2.449489742783178},"646":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"671":{"tf":1.0},"677":{"tf":3.605551275463989},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":2.6457513110645907},"708":{"tf":2.0},"709":{"tf":1.0},"71":{"tf":2.23606797749979},"710":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"716":{"tf":2.23606797749979},"718":{"tf":1.4142135623730951},"72":{"tf":2.0},"721":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"73":{"tf":3.7416573867739413},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.4142135623730951},"736":{"tf":1.0},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"74":{"tf":1.4142135623730951},"740":{"tf":1.0},"741":{"tf":2.0},"747":{"tf":1.4142135623730951},"75":{"tf":2.0},"752":{"tf":2.449489742783178},"755":{"tf":1.0},"76":{"tf":2.6457513110645907},"761":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":3.3166247903554},"770":{"tf":1.4142135623730951},"772":{"tf":2.8284271247461903},"773":{"tf":1.0},"776":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":3.605551275463989},"782":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":3.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.4142135623730951},"794":{"tf":1.0},"795":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":2.0},"807":{"tf":1.0},"809":{"tf":2.0},"81":{"tf":2.0},"811":{"tf":1.4142135623730951},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":2.0},"818":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"823":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"830":{"tf":2.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"839":{"tf":2.449489742783178},"84":{"tf":1.7320508075688772},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":2.23606797749979},"852":{"tf":1.7320508075688772},"853":{"tf":1.4142135623730951},"858":{"tf":1.0},"86":{"tf":2.6457513110645907},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":2.449489742783178},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"871":{"tf":1.0},"875":{"tf":1.4142135623730951},"876":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":2.8284271247461903},"880":{"tf":1.0},"89":{"tf":3.0},"892":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":2.0},"907":{"tf":1.0},"91":{"tf":2.8284271247461903},"911":{"tf":1.7320508075688772},"912":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":2.0},"917":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":2.449489742783178},"925":{"tf":1.0},"929":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"932":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":3.872983346207417},"941":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":3.0},"958":{"tf":1.7320508075688772},"96":{"tf":2.23606797749979},"963":{"tf":1.0},"97":{"tf":2.8284271247461903},"98":{"tf":3.4641016151377544},"99":{"tf":3.7416573867739413}},"s":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"396":{"tf":1.0}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"635":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"465":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"407":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"d":{"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":{".":{"d":{"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":{"(":{"2":{"0":{"1":{"9":{"df":1,"docs":{"551":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"551":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"553":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"555":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"438":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"d":{"df":3,"docs":{"666":{"tf":1.0},"667":{"tf":1.0},"801":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"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":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"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":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"477":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"481":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"643":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"449":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"544":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"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":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"428":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"417":{"tf":1.0}}}}}}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"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":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"[":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"112":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{"d":{".":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"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":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"4":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"532":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"566":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":63,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"110":{"tf":3.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":2.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"21":{"tf":2.449489742783178},"26":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"377":{"tf":1.4142135623730951},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"665":{"tf":2.0},"668":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"679":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"830":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.4142135623730951},"853":{"tf":1.0},"864":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":2.23606797749979},"89":{"tf":3.0},"91":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"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":{},"t":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"20":{"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":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"565":{"tf":1.0},"566":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":3,"docs":{"200":{"tf":1.0},"203":{"tf":2.23606797749979},"254":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"160":{"tf":1.0},"716":{"tf":1.0},"765":{"tf":1.0},"818":{"tf":1.0},"860":{"tf":1.4142135623730951},"867":{"tf":1.0},"869":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"891":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"881":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"258":{"tf":1.0},"310":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"131":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"170":{"tf":1.0},"462":{"tf":1.4142135623730951},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"734":{"tf":1.0},"804":{"tf":1.4142135623730951},"939":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":2,"docs":{"261":{"tf":1.0},"267":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":2,"docs":{"823":{"tf":1.0},"862":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":4,"docs":{"256":{"tf":1.0},"306":{"tf":1.0},"804":{"tf":1.0},"916":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"103":{"tf":1.0},"471":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"582":{"tf":1.0},"591":{"tf":1.4142135623730951},"737":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":11,"docs":{"131":{"tf":1.4142135623730951},"467":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"836":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"19":{"tf":1.0},"818":{"tf":1.4142135623730951},"840":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":15,"docs":{"100":{"tf":1.7320508075688772},"422":{"tf":1.0},"537":{"tf":1.0},"644":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"805":{"tf":1.0},"837":{"tf":1.0},"844":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0},"99":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"21":{"tf":1.0},"289":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0},"825":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"814":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"173":{"tf":1.0},"231":{"tf":1.0},"288":{"tf":1.0},"834":{"tf":1.0}}}},"m":{"df":1,"docs":{"288":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"127":{"tf":1.0},"155":{"tf":1.4142135623730951},"168":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"274":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"742":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}},"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":21,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.0},"237":{"tf":1.0},"318":{"tf":2.6457513110645907},"671":{"tf":1.4142135623730951},"673":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"789":{"tf":1.0},"79":{"tf":1.7320508075688772},"801":{"tf":1.0},"803":{"tf":1.0},"818":{"tf":1.4142135623730951},"835":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951}},"l":{"df":7,"docs":{"132":{"tf":1.4142135623730951},"274":{"tf":1.0},"431":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"762":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"837":{"tf":1.4142135623730951},"862":{"tf":1.0},"923":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"934":{"tf":1.0},"950":{"tf":1.7320508075688772},"956":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"160":{"tf":1.0},"402":{"tf":1.0},"711":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"53":{"tf":1.0},"958":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"142":{"tf":2.0},"289":{"tf":1.0},"456":{"tf":1.0},"493":{"tf":1.0},"804":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"65":{"tf":1.0},"861":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":62,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"267":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":2.0},"328":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"772":{"tf":1.4142135623730951},"802":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"84":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.7320508075688772},"859":{"tf":1.0},"862":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"875":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"969":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"864":{"tf":1.0},"925":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"119":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"65":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"834":{"tf":1.4142135623730951},"843":{"tf":1.0},"865":{"tf":1.0},"916":{"tf":1.0}}}},"z":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"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":{"/":{"2":{"df":4,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"677":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"2":{"df":3,"docs":{"138":{"tf":1.0},"292":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"1":{"df":1,"docs":{"301":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"l":{"a":{"'":{"df":6,"docs":{"13":{"tf":1.0},"289":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"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":{".":{"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":{"316":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"473":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.4142135623730951},"373":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"555":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":72,"docs":{"121":{"tf":1.0},"31":{"tf":1.0},"659":{"tf":1.0},"713":{"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.0},"895":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"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.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0}}}},"/":{"<":{"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"316":{"tf":1.0},"317":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"578":{"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":13,"docs":{"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"h":{"df":56,"docs":{"110":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"660":{"tf":1.0},"688":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"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":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"693":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"923":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"342":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"693":{"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":{"34":{"tf":1.0}}}}}}}},"df":185,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"654":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"689":{"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},"746":{"tf":1.0},"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},"755":{"tf":1.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},"765":{"tf":1.0},"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"888":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"393":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"383":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"574":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":1,"docs":{"551":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"553":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"437":{"tf":1.0}},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"507":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"585":{"tf":1.4142135623730951},"586":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"623":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"519":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"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":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"480":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"448":{"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"540":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"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":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"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":{},"s":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"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":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":0,"docs":{},"e":{"d":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"]":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"687":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":18,"docs":{"133":{"tf":1.0},"21":{"tf":1.4142135623730951},"268":{"tf":1.0},"289":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"656":{"tf":1.0},"677":{"tf":1.0},"7":{"tf":1.0},"712":{"tf":1.0},"73":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0}},"’":{"df":1,"docs":{"704":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"958":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"s":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"117":{"tf":1.0},"137":{"tf":1.4142135623730951},"22":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.0},"710":{"tf":1.0},"80":{"tf":1.4142135623730951},"846":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"728":{"tf":1.0},"814":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":38,"docs":{"103":{"tf":1.0},"119":{"tf":1.7320508075688772},"132":{"tf":1.0},"192":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"34":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.4142135623730951},"462":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951},"549":{"tf":1.0},"674":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"76":{"tf":1.7320508075688772},"792":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"22":{"tf":2.0},"847":{"tf":1.0},"859":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"811":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"652":{"tf":1.0},"811":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"799":{"tf":1.0}}}},"w":{"1":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772}}},"2":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0}}},"3":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"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":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"701":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"693":{"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":{},"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":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"d":{"df":2,"docs":{"20":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"/":{"a":{"df":6,"docs":{"388":{"tf":1.0},"409":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"534":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":112,"docs":{"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"286":{"tf":2.449489742783178},"289":{"tf":1.4142135623730951},"291":{"tf":1.7320508075688772},"292":{"tf":1.0},"294":{"tf":2.449489742783178},"295":{"tf":2.0},"297":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"303":{"tf":2.0},"315":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"651":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.0},"687":{"tf":2.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"731":{"tf":1.4142135623730951},"736":{"tf":1.0},"782":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"823":{"tf":1.0},"83":{"tf":2.23606797749979},"834":{"tf":1.0},"84":{"tf":1.4142135623730951},"857":{"tf":1.0},"864":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"915":{"tf":1.0},"921":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.0},"956":{"tf":1.0},"964":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":5,"docs":{"104":{"tf":1.0},"157":{"tf":1.0},"687":{"tf":2.449489742783178},"697":{"tf":1.0},"83":{"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":{"d":{"/":{"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":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"17":{"tf":1.0}}}}}}},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"456":{"tf":1.4142135623730951},"460":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.7320508075688772},"499":{"tf":1.0},"501":{"tf":1.4142135623730951},"557":{"tf":1.0},"804":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"v":{"df":8,"docs":{"12":{"tf":1.0},"317":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"775":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":2.23606797749979},"853":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"376":{"tf":1.0},"414":{"tf":2.449489742783178},"418":{"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":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"289":{"tf":1.0},"328":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"895":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"844":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"df":5,"docs":{"730":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"883":{"tf":1.0}}}},"df":1,"docs":{"224":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":30,"docs":{"105":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"330":{"tf":1.0},"347":{"tf":1.4142135623730951},"649":{"tf":1.0},"66":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"922":{"tf":1.0},"969":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":91,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":3.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"297":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":2.0},"326":{"tf":1.0},"338":{"tf":1.4142135623730951},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"401":{"tf":1.0},"43":{"tf":1.0},"473":{"tf":1.0},"52":{"tf":1.0},"533":{"tf":1.0},"583":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"621":{"tf":1.0},"647":{"tf":1.0},"652":{"tf":1.0},"662":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"70":{"tf":1.0},"710":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"762":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"80":{"tf":1.7320508075688772},"807":{"tf":1.7320508075688772},"824":{"tf":1.0},"828":{"tf":1.0},"838":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":2.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":27,"docs":{"376":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"497":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.0},"517":{"tf":1.0},"520":{"tf":1.0},"575":{"tf":1.4142135623730951},"578":{"tf":2.0},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":2.0},"606":{"tf":1.0},"609":{"tf":1.4142135623730951},"621":{"tf":1.0},"816":{"tf":1.0},"915":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"28":{"tf":1.0},"326":{"tf":1.0},"644":{"tf":1.4142135623730951},"894":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{":":{"5":{".":{"6":{".":{"0":{"@":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"820":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"626":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":2.23606797749979}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"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":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{},"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":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"624":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"(":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"589":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"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":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"623":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"519":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"520":{"tf":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":{"517":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"273":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"590":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"710":{"tf":1.0},"779":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"915":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"127":{"tf":4.123105625617661},"135":{"tf":1.0},"168":{"tf":1.0},"288":{"tf":1.4142135623730951},"401":{"tf":1.0},"412":{"tf":1.0},"645":{"tf":1.0},"752":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":1.0},"830":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0}}}}}}}}}}}},"w":{"df":126,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":2.0},"12":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":2.23606797749979},"26":{"tf":1.0},"288":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"35":{"tf":1.0},"379":{"tf":1.0},"425":{"tf":2.449489742783178},"445":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"528":{"tf":2.6457513110645907},"55":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"563":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"661":{"tf":1.0},"67":{"tf":1.4142135623730951},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"680":{"tf":1.0},"69":{"tf":1.4142135623730951},"691":{"tf":1.0},"693":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"701":{"tf":1.0},"71":{"tf":2.0},"711":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"721":{"tf":1.4142135623730951},"725":{"tf":1.0},"727":{"tf":1.7320508075688772},"729":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"779":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":2.23606797749979},"8":{"tf":1.7320508075688772},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"811":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"866":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"895":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"916":{"tf":1.0},"92":{"tf":2.23606797749979},"929":{"tf":1.0},"93":{"tf":1.0},"932":{"tf":1.0},"94":{"tf":1.0},"942":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.7320508075688772},"961":{"tf":1.7320508075688772},"968":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"274":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"929":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"117":{"tf":1.0},"678":{"tf":1.4142135623730951},"842":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":21,"docs":{"127":{"tf":1.7320508075688772},"13":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.0},"184":{"tf":2.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"318":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"680":{"tf":1.4142135623730951},"711":{"tf":1.0},"823":{"tf":1.0},"839":{"tf":1.0},"958":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"677":{"tf":1.0},"871":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"254":{"tf":1.0},"60":{"tf":1.0},"83":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"765":{"tf":1.0},"772":{"tf":1.0}}},"m":{"b":{"df":0,"docs":{},"u":{"df":21,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.0},"198":{"tf":2.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"211":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"738":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"34":{"tf":1.7320508075688772},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"947":{"tf":1.0},"958":{"tf":1.0}}}},"df":3,"docs":{"912":{"tf":1.4142135623730951},"913":{"tf":1.0},"939":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}}}}}}}},"df":37,"docs":{"184":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"393":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.4142135623730951},"491":{"tf":1.0},"529":{"tf":1.4142135623730951},"541":{"tf":1.0},"551":{"tf":1.0},"575":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.4142135623730951},"606":{"tf":1.0},"609":{"tf":1.4142135623730951},"621":{"tf":1.0},"632":{"tf":1.0},"741":{"tf":1.4142135623730951},"762":{"tf":1.0},"802":{"tf":1.0},"815":{"tf":1.0},"831":{"tf":1.0},"866":{"tf":1.0},"905":{"tf":1.0}},"e":{"df":45,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"316":{"tf":2.0},"318":{"tf":1.4142135623730951},"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"685":{"tf":1.0},"70":{"tf":1.4142135623730951},"765":{"tf":1.0},"772":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"663":{"tf":1.0},"665":{"tf":1.0},"682":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":86,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"307":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"344":{"tf":1.0},"377":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"514":{"tf":1.0},"546":{"tf":1.4142135623730951},"560":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.4142135623730951},"568":{"tf":1.0},"572":{"tf":1.0},"580":{"tf":1.0},"664":{"tf":1.0},"667":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.0},"684":{"tf":1.0},"701":{"tf":1.0},"719":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"807":{"tf":1.0},"824":{"tf":1.0},"83":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"927":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"h":{"df":7,"docs":{"204":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"471":{"tf":1.0},"649":{"tf":1.0},"667":{"tf":1.0},"796":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"44":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"198":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":36,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.7320508075688772},"292":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":84,"docs":{"115":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.7320508075688772},"551":{"tf":2.6457513110645907},"652":{"tf":1.0},"677":{"tf":1.0},"719":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.7320508075688772},"731":{"tf":1.0},"732":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"740":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"763":{"tf":1.0},"772":{"tf":2.6457513110645907},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"789":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.7320508075688772},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"839":{"tf":2.0},"842":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":2.23606797749979},"854":{"tf":1.0},"857":{"tf":1.4142135623730951},"858":{"tf":2.449489742783178},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.6457513110645907},"862":{"tf":2.0},"863":{"tf":1.0},"864":{"tf":2.449489742783178},"865":{"tf":2.23606797749979},"866":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"895":{"tf":1.0},"912":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"912":{"tf":1.0},"939":{"tf":1.0},"958":{"tf":1.0}}},"x":{"df":2,"docs":{"689":{"tf":1.0},"690":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":8,"docs":{"406":{"tf":1.0},"427":{"tf":1.0},"448":{"tf":1.4142135623730951},"464":{"tf":1.0},"531":{"tf":1.0},"553":{"tf":1.0},"600":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"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":1,"docs":{"529":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"834":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"459":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"765":{"tf":1.4142135623730951},"772":{"tf":2.0},"796":{"tf":1.4142135623730951},"858":{"tf":1.0},"865":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":100,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"127":{"tf":3.1622776601683795},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"21":{"tf":1.0},"267":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"425":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"517":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"591":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"612":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"773":{"tf":1.0},"806":{"tf":1.0},"834":{"tf":2.0},"849":{"tf":1.0},"897":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"618":{"tf":1.4142135623730951},"619":{"tf":1.0},"621":{"tf":2.0},"623":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":45,"docs":{"131":{"tf":1.0},"170":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"376":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"638":{"tf":1.7320508075688772},"639":{"tf":1.0},"640":{"tf":1.7320508075688772},"641":{"tf":1.0},"642":{"tf":1.7320508075688772},"643":{"tf":1.0},"644":{"tf":2.6457513110645907},"645":{"tf":2.23606797749979},"646":{"tf":1.0},"652":{"tf":1.0},"663":{"tf":1.0},"679":{"tf":1.0},"693":{"tf":1.0},"718":{"tf":1.0},"727":{"tf":1.7320508075688772},"730":{"tf":1.0},"732":{"tf":1.0},"772":{"tf":1.4142135623730951},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":2.0},"805":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"834":{"tf":1.0},"908":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"875":{"tf":1.0},"915":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"719":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"814":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"120":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"170":{"tf":1.0},"22":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"454":{"tf":1.0},"840":{"tf":1.0},"864":{"tf":1.0},"908":{"tf":1.0}},"r":{"df":5,"docs":{"376":{"tf":1.0},"560":{"tf":1.0},"76":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"683":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"237":{"tf":1.0},"265":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"234":{"tf":1.0},"673":{"tf":1.0},"785":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"671":{"tf":2.449489742783178},"672":{"tf":1.0},"673":{"tf":1.7320508075688772},"835":{"tf":1.0},"915":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"549":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"802":{"tf":1.4142135623730951},"881":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"l":{"d":{"df":6,"docs":{"288":{"tf":1.4142135623730951},"741":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":2.23606797749979},"874":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"224":{"tf":1.0},"274":{"tf":1.0},"731":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"844":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}}}},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"478":{"tf":1.0}}}}}}},"df":1,"docs":{"478":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":21,"docs":{"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"379":{"tf":1.0},"570":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"902":{"tf":1.0},"919":{"tf":1.4142135623730951},"924":{"tf":1.0},"927":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"315":{"tf":1.4142135623730951},"324":{"tf":1.0},"338":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"679":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":82,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"477":{"tf":1.0},"493":{"tf":1.0},"519":{"tf":1.0},"538":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"613":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"678":{"tf":1.0},"691":{"tf":1.0},"693":{"tf":1.0},"697":{"tf":1.0},"741":{"tf":1.0},"751":{"tf":1.0},"79":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"80":{"tf":1.0},"801":{"tf":1.0},"809":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"961":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"_":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"266":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"671":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":2.449489742783178}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"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":1,"docs":{"478":{"tf":1.4142135623730951}}},"df":1,"docs":{"478":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"d":{"(":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"473":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":1,"docs":{"473":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":7,"docs":{"17":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"649":{"tf":1.0},"853":{"tf":1.0},"919":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"151":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":2.0},"183":{"tf":2.23606797749979},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"241":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"569":{"tf":1.0},"890":{"tf":1.0},"969":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":19,"docs":{"107":{"tf":1.0},"132":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.4142135623730951},"340":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"78":{"tf":1.0},"786":{"tf":1.0},"804":{"tf":1.0},"86":{"tf":1.0},"99":{"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":4,"docs":{"103":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"131":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"330":{"tf":1.0},"734":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"565":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":106,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":3.4641016151377544},"13":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.1622776601683795},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.0},"197":{"tf":1.4142135623730951},"198":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":2.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"276":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.4142135623730951},"298":{"tf":1.7320508075688772},"315":{"tf":2.6457513110645907},"326":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":2.6457513110645907},"440":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"644":{"tf":1.0},"65":{"tf":1.4142135623730951},"655":{"tf":1.0},"66":{"tf":1.4142135623730951},"663":{"tf":2.449489742783178},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"67":{"tf":1.4142135623730951},"670":{"tf":1.0},"682":{"tf":2.449489742783178},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"728":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"801":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"861":{"tf":1.0},"871":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"951":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"958":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":60,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.0},"346":{"tf":1.7320508075688772},"352":{"tf":1.0},"363":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"48":{"tf":1.4142135623730951},"499":{"tf":1.0},"522":{"tf":1.0},"565":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"689":{"tf":1.0},"692":{"tf":1.0},"800":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"956":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{":":{"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":{"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"656":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"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":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.0},"227":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"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":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"656":{"tf":1.0},"793":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"393":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"632":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"404":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"598":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"574":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951}}}}}}}},"n":{"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":3,"docs":{"621":{"tf":2.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0}}}}}},"df":4,"docs":{"315":{"tf":1.0},"338":{"tf":1.0},"649":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"425":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951},"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":{}}}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{":":{"4":{".":{"3":{".":{"1":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"117":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.0},"823":{"tf":1.0}}}}}}},"s":{"/":{"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":{"271":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"762":{"tf":1.4142135623730951},"923":{"tf":1.0}}}}}}},"df":13,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"923":{"tf":1.4142135623730951},"938":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"834":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"924":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"175":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"367":{"tf":1.0},"572":{"tf":1.0},"840":{"tf":1.0},"855":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"859":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":46,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"26":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"4":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.7320508075688772},"63":{"tf":1.0},"630":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"708":{"tf":1.0},"734":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"923":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}},"g":{"df":0,"docs":{},"o":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}},"n":{"df":2,"docs":{"265":{"tf":1.0},"379":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":2.23606797749979},"17":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"276":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"667":{"tf":1.0},"683":{"tf":1.4142135623730951},"697":{"tf":1.0},"852":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"289":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"830":{"tf":1.4142135623730951},"861":{"tf":1.0},"88":{"tf":1.0},"922":{"tf":1.0},"927":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"127":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}},"df":19,"docs":{"121":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"289":{"tf":1.0},"456":{"tf":1.0},"476":{"tf":1.0},"517":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"677":{"tf":1.0},"711":{"tf":1.0},"74":{"tf":1.0},"823":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"471":{"tf":1.0},"761":{"tf":1.0},"773":{"tf":1.0},"912":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"190":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"204":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"520":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"315":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"668":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.7320508075688772},"773":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":22,"docs":{"0":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.7320508075688772},"653":{"tf":1.7320508075688772},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"70":{"tf":1.0},"704":{"tf":1.0},"71":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"960":{"tf":1.0},"962":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"775":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"667":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"289":{"tf":1.0},"647":{"tf":1.0},"78":{"tf":1.0},"853":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"288":{"tf":1.0},"297":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"660":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":2.0},"688":{"tf":1.0},"689":{"tf":1.0},"776":{"tf":1.0},"793":{"tf":1.4142135623730951},"798":{"tf":1.0},"805":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"858":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"944":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"789":{"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"590":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":161,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.4142135623730951},"249":{"tf":1.0},"254":{"tf":3.1622776601683795},"264":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.7320508075688772},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"571":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"625":{"tf":1.0},"628":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"652":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.4142135623730951},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"8":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"9":{"tf":1.0},"900":{"tf":1.0},"905":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.4142135623730951},"960":{"tf":1.7320508075688772},"961":{"tf":1.0},"963":{"tf":2.0},"964":{"tf":1.4142135623730951},"965":{"tf":1.7320508075688772},"968":{"tf":2.6457513110645907},"969":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0}}}},"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"477":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"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":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"481":{"tf":1.0},"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"480":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"623":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"623":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"199":{"tf":1.0},"459":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"786":{"tf":1.0},"812":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"969":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":2.0},"814":{"tf":1.0},"862":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":88,"docs":{"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"190":{"tf":1.4142135623730951},"211":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"387":{"tf":1.7320508075688772},"388":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"408":{"tf":1.7320508075688772},"409":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"450":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"462":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"483":{"tf":1.7320508075688772},"484":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":2.0},"501":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772},"521":{"tf":1.4142135623730951},"522":{"tf":2.0},"533":{"tf":1.7320508075688772},"534":{"tf":1.4142135623730951},"545":{"tf":1.7320508075688772},"547":{"tf":1.4142135623730951},"556":{"tf":1.7320508075688772},"557":{"tf":1.7320508075688772},"560":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":2.0},"590":{"tf":1.4142135623730951},"591":{"tf":2.0},"602":{"tf":1.7320508075688772},"603":{"tf":1.7320508075688772},"613":{"tf":1.7320508075688772},"614":{"tf":2.0},"625":{"tf":1.7320508075688772},"636":{"tf":1.7320508075688772},"644":{"tf":2.449489742783178},"645":{"tf":1.0},"693":{"tf":1.0},"701":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"789":{"tf":1.0},"801":{"tf":1.0},"805":{"tf":1.0},"857":{"tf":1.0},"867":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"933":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"17":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"698":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"869":{"tf":1.0}}}}}}}}}}}},"r":{"df":10,"docs":{"17":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"692":{"tf":1.4142135623730951},"707":{"tf":1.0},"830":{"tf":1.0},"915":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}}}}},"t":{"df":25,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"679":{"tf":1.0},"698":{"tf":1.0},"711":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"793":{"tf":1.0},"834":{"tf":1.4142135623730951},"853":{"tf":1.0},"854":{"tf":1.0},"958":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.4142135623730951},"268":{"tf":1.0},"289":{"tf":1.0},"454":{"tf":1.0},"618":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"74":{"tf":1.0},"78":{"tf":1.0},"923":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"289":{"tf":1.0},"645":{"tf":1.0}}},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"643":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"643":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"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":{"640":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":44,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.7320508075688772},"233":{"tf":1.0},"238":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.7320508075688772},"598":{"tf":1.0},"609":{"tf":1.0},"640":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.4142135623730951},"682":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"796":{"tf":1.0},"799":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"830":{"tf":1.0},"837":{"tf":1.0},"914":{"tf":1.0},"98":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"435":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"289":{"tf":1.4142135623730951},"435":{"tf":2.6457513110645907},"437":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"254":{"tf":2.8284271247461903},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.0}}},"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":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":6,"docs":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"383":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0}}}},"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":{},"j":{"df":3,"docs":{"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"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":0,"docs":{},"j":{"df":3,"docs":{"621":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"652":{"tf":1.0}}}},"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":{},"j":{"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"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":{},"j":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"26":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.7320508075688772},"443":{"tf":1.0},"538":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.4142135623730951},"683":{"tf":2.0},"686":{"tf":2.23606797749979},"692":{"tf":1.0},"769":{"tf":1.0},"782":{"tf":1.0},"802":{"tf":1.4142135623730951},"814":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"949":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":23,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.0},"133":{"tf":1.0},"142":{"tf":1.4142135623730951},"217":{"tf":1.0},"254":{"tf":1.4142135623730951},"298":{"tf":1.0},"471":{"tf":1.0},"644":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":2.23606797749979},"709":{"tf":1.0},"710":{"tf":1.4142135623730951},"716":{"tf":1.0},"755":{"tf":1.0},"759":{"tf":1.0},"853":{"tf":1.0},"865":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"951":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":2,"docs":{"652":{"tf":1.4142135623730951},"701":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"953":{"tf":1.0}}}},"n":{"d":{"df":15,"docs":{"127":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"146":{"tf":1.0},"22":{"tf":1.4142135623730951},"313":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"734":{"tf":1.0},"754":{"tf":1.0},"809":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.4142135623730951},"834":{"tf":1.0},"871":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0}}}}},"p":{"8":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":2.0}}}}}}}},"df":30,"docs":{"146":{"tf":1.4142135623730951},"203":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.4142135623730951},"258":{"tf":3.0},"262":{"tf":1.0},"264":{"tf":1.0},"315":{"tf":1.4142135623730951},"318":{"tf":1.0},"377":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.4142135623730951},"577":{"tf":1.0},"588":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"836":{"tf":1.4142135623730951},"864":{"tf":1.0},"963":{"tf":1.0}},"f":{"df":1,"docs":{"136":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"915":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":25,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.0},"308":{"tf":1.0},"321":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"456":{"tf":1.7320508075688772},"46":{"tf":1.0},"484":{"tf":1.4142135623730951},"53":{"tf":1.0},"538":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.4142135623730951},"73":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"94":{"tf":1.0},"958":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"100":{"tf":1.0},"175":{"tf":1.0},"288":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"590":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.7320508075688772},"915":{"tf":1.0}}}},"t":{"df":8,"docs":{"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"715":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"130":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"567":{"tf":1.0},"674":{"tf":1.0},"78":{"tf":1.0},"788":{"tf":1.7320508075688772},"842":{"tf":1.0},"871":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":2.23606797749979},"958":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"671":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"#":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"'":{"df":4,"docs":{"139":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0}}},"(":{"df":1,"docs":{"117":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"275":{"tf":1.0},"298":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":15,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"158":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"326":{"tf":1.0},"864":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"765":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"297":{"tf":1.7320508075688772},"727":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"864":{"tf":1.0}}}}}},"df":317,"docs":{"100":{"tf":5.291502622129181},"101":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"124":{"tf":2.6457513110645907},"125":{"tf":5.0990195135927845},"126":{"tf":3.3166247903554},"127":{"tf":6.855654600401044},"128":{"tf":2.449489742783178},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"131":{"tf":3.4641016151377544},"132":{"tf":1.7320508075688772},"133":{"tf":2.23606797749979},"134":{"tf":2.6457513110645907},"135":{"tf":3.872983346207417},"136":{"tf":3.4641016151377544},"137":{"tf":3.1622776601683795},"138":{"tf":3.1622776601683795},"139":{"tf":2.23606797749979},"140":{"tf":2.8284271247461903},"141":{"tf":2.23606797749979},"142":{"tf":2.0},"143":{"tf":2.6457513110645907},"144":{"tf":2.6457513110645907},"145":{"tf":4.0},"146":{"tf":2.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":3.0},"156":{"tf":2.449489742783178},"157":{"tf":2.6457513110645907},"158":{"tf":2.23606797749979},"159":{"tf":2.23606797749979},"160":{"tf":2.8284271247461903},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":2.23606797749979},"165":{"tf":2.23606797749979},"166":{"tf":2.0},"167":{"tf":2.0},"168":{"tf":2.23606797749979},"169":{"tf":2.0},"17":{"tf":1.4142135623730951},"170":{"tf":2.8284271247461903},"171":{"tf":1.7320508075688772},"172":{"tf":2.23606797749979},"173":{"tf":3.1622776601683795},"174":{"tf":2.0},"175":{"tf":3.4641016151377544},"176":{"tf":2.8284271247461903},"177":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":4.58257569495584},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.0},"214":{"tf":1.0},"217":{"tf":2.0},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.7320508075688772},"223":{"tf":1.0},"224":{"tf":5.0},"231":{"tf":3.605551275463989},"233":{"tf":2.449489742783178},"236":{"tf":2.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":2.449489742783178},"243":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":3.4641016151377544},"258":{"tf":4.0},"259":{"tf":3.0},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"264":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":2.8284271247461903},"276":{"tf":2.449489742783178},"278":{"tf":1.0},"289":{"tf":4.0},"290":{"tf":2.23606797749979},"291":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.7320508075688772},"294":{"tf":2.8284271247461903},"295":{"tf":2.23606797749979},"296":{"tf":1.7320508075688772},"297":{"tf":4.69041575982343},"298":{"tf":2.0},"299":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"315":{"tf":4.0},"316":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":2.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":2.449489742783178},"337":{"tf":1.0},"338":{"tf":2.23606797749979},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"351":{"tf":1.7320508075688772},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":2.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.4142135623730951},"416":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"468":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"619":{"tf":1.0},"623":{"tf":1.0},"632":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"642":{"tf":1.0},"647":{"tf":2.449489742783178},"648":{"tf":1.0},"649":{"tf":2.8284271247461903},"650":{"tf":1.0},"651":{"tf":1.7320508075688772},"652":{"tf":5.0},"653":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":2.449489742783178},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"674":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":3.605551275463989},"679":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":2.6457513110645907},"698":{"tf":1.7320508075688772},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.7320508075688772},"704":{"tf":1.0},"709":{"tf":2.449489742783178},"710":{"tf":2.23606797749979},"711":{"tf":2.449489742783178},"715":{"tf":1.7320508075688772},"716":{"tf":1.0},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"723":{"tf":1.0},"727":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.4142135623730951},"730":{"tf":1.0},"734":{"tf":2.6457513110645907},"736":{"tf":1.0},"738":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":2.449489742783178},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"765":{"tf":1.0},"78":{"tf":2.23606797749979},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":5.291502622129181},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"806":{"tf":2.23606797749979},"807":{"tf":2.23606797749979},"809":{"tf":1.4142135623730951},"812":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":1.4142135623730951},"834":{"tf":2.449489742783178},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.7320508075688772},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"860":{"tf":1.4142135623730951},"861":{"tf":2.0},"862":{"tf":1.4142135623730951},"864":{"tf":2.23606797749979},"865":{"tf":2.23606797749979},"867":{"tf":1.7320508075688772},"869":{"tf":1.7320508075688772},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"875":{"tf":1.0},"876":{"tf":1.0},"878":{"tf":1.0},"880":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"907":{"tf":1.0},"913":{"tf":2.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.7320508075688772},"916":{"tf":2.0},"917":{"tf":1.4142135623730951},"919":{"tf":2.0},"920":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":2.8284271247461903},"930":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":2.23606797749979},"952":{"tf":1.0},"956":{"tf":2.449489742783178},"958":{"tf":1.0},"963":{"tf":1.0},"99":{"tf":2.23606797749979}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"696":{"tf":1.7320508075688772},"697":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"649":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"652":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":20,"docs":{"131":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":2.449489742783178},"26":{"tf":1.0},"278":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":2.0},"665":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.7320508075688772},"864":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.4142135623730951}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":2,"docs":{"210":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"858":{"tf":1.0},"869":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"316":{"tf":1.0},"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":7,"docs":{"115":{"tf":1.0},"19":{"tf":2.0},"43":{"tf":1.0},"673":{"tf":1.0},"692":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"136":{"tf":1.0},"160":{"tf":1.0},"184":{"tf":1.4142135623730951},"218":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":2.23606797749979},"77":{"tf":1.0},"864":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"132":{"tf":1.0},"376":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"595":{"tf":1.0},"602":{"tf":1.4142135623730951},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"20":{"tf":1.0},"338":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"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":{},"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":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"138":{"tf":1.0},"147":{"tf":1.0},"26":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"683":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"969":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"652":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"636":{"tf":1.0}}}}}}}},"n":{"df":7,"docs":{"190":{"tf":1.0},"344":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":30,"docs":{"185":{"tf":2.23606797749979},"186":{"tf":1.0},"187":{"tf":2.23606797749979},"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.4142135623730951},"206":{"tf":2.23606797749979},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"315":{"tf":1.0}}},"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}},"df":68,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":2.0},"136":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"379":{"tf":1.0},"456":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"653":{"tf":1.0},"690":{"tf":1.0},"697":{"tf":1.0},"705":{"tf":1.0},"794":{"tf":1.0},"806":{"tf":1.0},"815":{"tf":1.0},"831":{"tf":1.0},"854":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.4142135623730951},"9":{"tf":1.0},"902":{"tf":1.4142135623730951},"913":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":2.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"936":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":3,"docs":{"923":{"tf":1.0},"928":{"tf":1.0},"938":{"tf":1.0}}}}}}}}}}},"y":{"df":3,"docs":{"100":{"tf":1.0},"79":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":30,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"124":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"422":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"514":{"tf":1.0},"537":{"tf":1.0},"582":{"tf":1.0},"65":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"85":{"tf":1.0},"860":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"136":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":36,"docs":{"13":{"tf":3.7416573867739413},"663":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.4142135623730951},"672":{"tf":1.0},"693":{"tf":2.8284271247461903},"694":{"tf":2.0},"695":{"tf":1.7320508075688772},"696":{"tf":1.0},"697":{"tf":1.7320508075688772},"698":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.7320508075688772},"721":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"786":{"tf":1.4142135623730951},"792":{"tf":1.7320508075688772},"793":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"924":{"tf":1.0},"951":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"203":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"63":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"700":{"tf":1.4142135623730951},"913":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"924":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":12,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.6457513110645907},"191":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0}}},"p":{"df":3,"docs":{"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"254":{"tf":1.0},"289":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"401":{"tf":1.0},"412":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.7320508075688772},"223":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"270":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"70":{"tf":1.0},"741":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"867":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"924":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":9,"docs":{"113":{"tf":1.0},"115":{"tf":2.0},"150":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"750":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"190":{"tf":1.4142135623730951},"262":{"tf":1.0},"267":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"64":{"tf":1.0},"73":{"tf":1.0},"744":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"814":{"tf":1.0},"833":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"234":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":23,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"878":{"tf":1.0},"962":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{".":{"0":{"df":5,"docs":{"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951}}},"1":{"df":3,"docs":{"899":{"tf":1.4142135623730951},"901":{"tf":1.0},"902":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"898":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"897":{"tf":1.4142135623730951}}},"df":0,"docs":{},"x":{"df":1,"docs":{"896":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"184":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"131":{"tf":2.449489742783178},"132":{"tf":1.0},"289":{"tf":1.0},"734":{"tf":1.4142135623730951},"804":{"tf":1.0}},"e":{"_":{"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":{"734":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"560":{"tf":1.0},"640":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"326":{"tf":1.0},"720":{"tf":1.0},"807":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"259":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":2.0},"317":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.4142135623730951},"596":{"tf":1.0},"607":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.7320508075688772},"960":{"tf":1.0},"968":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"285":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":2,"docs":{"720":{"tf":1.0},"757":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"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":{"782":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"782":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"757":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"912":{"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":1,"docs":{"252":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"130":{"tf":1.0},"136":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"67":{"tf":1.0},"845":{"tf":1.0},"951":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"967":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"667":{"tf":1.0},"864":{"tf":1.0}}}}},"s":{"df":9,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"198":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"17":{"tf":1.0},"203":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"692":{"tf":1.7320508075688772},"720":{"tf":1.0},"742":{"tf":1.0},"771":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"913":{"tf":1.0},"929":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"118":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"478":{"tf":1.0},"492":{"tf":1.0},"65":{"tf":1.0},"711":{"tf":1.4142135623730951},"752":{"tf":1.0},"791":{"tf":1.0},"796":{"tf":1.0},"806":{"tf":1.4142135623730951},"824":{"tf":1.0},"846":{"tf":1.0},"916":{"tf":1.0},"924":{"tf":1.0}},"s":{"df":8,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"254":{"tf":1.0},"654":{"tf":1.0},"782":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"52":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"962":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":17,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"217":{"tf":1.0},"834":{"tf":1.0},"864":{"tf":1.0},"880":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"324":{"tf":1.0},"425":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"563":{"tf":1.0},"671":{"tf":1.0},"814":{"tf":1.0},"837":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"862":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"104":{"tf":1.0},"680":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"276":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"61":{"tf":2.0},"704":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"402":{"tf":1.0},"619":{"tf":1.0}}}},"df":4,"docs":{"254":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.0},"912":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":2,"docs":{"254":{"tf":1.0},"675":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":45,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"125":{"tf":1.0},"155":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"263":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":2.8284271247461903},"316":{"tf":2.6457513110645907},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.7320508075688772},"439":{"tf":1.0},"441":{"tf":1.0},"459":{"tf":1.7320508075688772},"646":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"711":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"816":{"tf":1.0},"83":{"tf":1.0},"832":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"115":{"tf":1.7320508075688772},"330":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"804":{"tf":1.0},"830":{"tf":1.4142135623730951},"858":{"tf":1.0}},"t":{"'":{"df":7,"docs":{"224":{"tf":1.0},"227":{"tf":1.0},"355":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}},"df":87,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"132":{"tf":2.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":1.0},"215":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":2.0},"276":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"37":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"580":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"647":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"669":{"tf":2.0},"67":{"tf":1.0},"674":{"tf":1.0},"685":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"853":{"tf":1.0},"9":{"tf":2.6457513110645907},"908":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"132":{"tf":1.0},"289":{"tf":2.0},"533":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"252":{"tf":1.0},"653":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"83":{"tf":1.0},"958":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"834":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"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":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":101,"docs":{"0":{"tf":2.23606797749979},"10":{"tf":2.23606797749979},"103":{"tf":1.0},"11":{"tf":1.7320508075688772},"111":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":2.0},"13":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"18":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.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},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"66":{"tf":1.0},"661":{"tf":1.0},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"68":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"8":{"tf":2.0},"82":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"891":{"tf":1.0},"894":{"tf":1.0},"9":{"tf":1.0},"908":{"tf":1.0},"912":{"tf":1.4142135623730951},"915":{"tf":1.0},"92":{"tf":1.0},"958":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"956":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"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":{"317":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"840":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"223":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"802":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"749":{"tf":1.0},"777":{"tf":1.0},"929":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.4142135623730951},"208":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"568":{"tf":1.4142135623730951},"580":{"tf":1.0},"582":{"tf":1.0},"618":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"905":{"tf":1.0},"951":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"963":{"tf":1.0},"964":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"?":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"231":{"tf":1.0},"232":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"541":{"tf":1.0},"854":{"tf":1.0},"922":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":109,"docs":{"10":{"tf":1.0},"121":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.4142135623730951},"330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"37":{"tf":1.0},"379":{"tf":1.0},"39":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.4142135623730951},"48":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":2.0},"494":{"tf":1.7320508075688772},"505":{"tf":1.0},"514":{"tf":1.0},"517":{"tf":1.0},"57":{"tf":1.0},"574":{"tf":1.0},"585":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"653":{"tf":1.0},"66":{"tf":1.0},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"685":{"tf":1.7320508075688772},"686":{"tf":1.0},"692":{"tf":1.0},"701":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"793":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"9":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.4142135623730951},"953":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":3.3166247903554}}},"df":0,"docs":{},"s":{"df":1,"docs":{"698":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"590":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"697":{"tf":1.4142135623730951},"7":{"tf":1.0},"773":{"tf":1.4142135623730951},"784":{"tf":1.0},"842":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"782":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":12,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":2.23606797749979},"777":{"tf":1.0},"778":{"tf":1.0},"806":{"tf":1.0},"850":{"tf":1.0},"913":{"tf":1.0},"926":{"tf":1.4142135623730951},"951":{"tf":1.0},"958":{"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":{"60":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}},"s":{"df":30,"docs":{"124":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"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},"285":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"459":{"tf":1.0},"580":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"924":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"t":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"140":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"924":{"tf":1.0}}}},"w":{"d":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"22":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"658":{"tf":1.0}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"318":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"837":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"690":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"3":{"df":3,"docs":{"21":{"tf":1.7320508075688772},"673":{"tf":1.0},"690":{"tf":1.0}}},"df":120,"docs":{"0":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.7320508075688772},"146":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"174":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":3.0},"20":{"tf":2.23606797749979},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":2.449489742783178},"30":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":2.23606797749979},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"390":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"470":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.0},"513":{"tf":1.0},"529":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"605":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.0},"658":{"tf":2.0},"670":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":3.0},"690":{"tf":1.0},"721":{"tf":1.0},"725":{"tf":1.4142135623730951},"727":{"tf":1.0},"729":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"743":{"tf":1.0},"751":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"790":{"tf":1.0},"799":{"tf":1.0},"803":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.7320508075688772},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"820":{"tf":1.4142135623730951},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"842":{"tf":2.0},"845":{"tf":1.0},"846":{"tf":2.0},"847":{"tf":1.0},"849":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.4142135623730951},"858":{"tf":2.0},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":2.0},"869":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.0},"921":{"tf":1.4142135623730951},"939":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}}}},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":11,"docs":{"0":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"48":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.4142135623730951},"934":{"tf":1.0}}}},"r":{"df":1,"docs":{"233":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":18,"docs":{"0":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"661":{"tf":1.0},"9":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.7320508075688772},"933":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"40":{"tf":1.0},"50":{"tf":2.0},"903":{"tf":1.0},"912":{"tf":1.7320508075688772},"924":{"tf":1.7320508075688772},"926":{"tf":1.0},"927":{"tf":1.4142135623730951},"934":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"194":{"tf":1.0},"197":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":33,"docs":{"132":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"595":{"tf":1.7320508075688772},"596":{"tf":1.7320508075688772},"597":{"tf":1.0},"598":{"tf":1.7320508075688772},"599":{"tf":1.0},"600":{"tf":2.6457513110645907},"601":{"tf":2.23606797749979},"602":{"tf":1.7320508075688772},"603":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":1.7320508075688772},"608":{"tf":1.0},"609":{"tf":1.7320508075688772},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"612":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"734":{"tf":1.0},"791":{"tf":1.4142135623730951},"817":{"tf":1.0},"830":{"tf":1.4142135623730951},"937":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"617":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"938":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"865":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"136":{"tf":1.0},"157":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"231":{"tf":2.23606797749979},"256":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"765":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":35,"docs":{"188":{"tf":1.0},"205":{"tf":1.7320508075688772},"376":{"tf":1.0},"389":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"535":{"tf":1.4142135623730951},"548":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"569":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"615":{"tf":1.4142135623730951},"627":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"637":{"tf":1.4142135623730951},"646":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"959":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"u":{"df":2,"docs":{"310":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":14,"docs":{"168":{"tf":1.0},"310":{"tf":1.0},"649":{"tf":1.0},"718":{"tf":1.0},"720":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.4142135623730951},"774":{"tf":1.0},"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"157":{"tf":1.0},"953":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"963":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"135":{"tf":2.0},"834":{"tf":1.0}}},"df":5,"docs":{"761":{"tf":1.0},"769":{"tf":1.0},"912":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":3.7416573867739413}}}}}},"r":{"2":{"0":{"df":1,"docs":{"883":{"tf":1.0}}},"5":{"c":{"df":1,"docs":{"745":{"tf":1.0}}},"df":1,"docs":{"762":{"tf":1.0}}},"6":{"c":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"204":{"tf":1.0},"823":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"878":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"288":{"tf":1.0},"734":{"tf":1.0},"774":{"tf":1.0},"842":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"528":{"tf":1.0}}}}}}},"df":1,"docs":{"376":{"tf":1.0}},"g":{"df":7,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"471":{"tf":1.4142135623730951},"52":{"tf":1.0},"582":{"tf":1.4142135623730951},"65":{"tf":1.0},"86":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"264":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"78":{"tf":1.0},"878":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"623":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}},"df":30,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"376":{"tf":1.4142135623730951},"523":{"tf":1.0},"618":{"tf":2.23606797749979},"619":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":2.449489742783178},"622":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":1.0},"625":{"tf":1.7320508075688772},"626":{"tf":2.449489742783178},"627":{"tf":1.0},"628":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"804":{"tf":1.0},"836":{"tf":1.0},"846":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"929":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"590":{"tf":1.0},"592":{"tf":1.0}},"n":{"df":1,"docs":{"752":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"264":{"tf":1.0},"460":{"tf":1.0},"803":{"tf":1.0}}},"y":{"df":1,"docs":{"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"205":{"tf":1.0},"289":{"tf":1.0},"344":{"tf":1.0},"570":{"tf":1.0},"630":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"85":{"tf":1.0},"867":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"254":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"2":{"tf":1.0},"225":{"tf":1.0},"340":{"tf":1.0},"807":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"tf":1.0}}}},"i":{"df":2,"docs":{"115":{"tf":1.0},"254":{"tf":1.0}}},"m":{"df":1,"docs":{"912":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":19,"docs":{"184":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"248":{"tf":1.7320508075688772},"255":{"tf":1.7320508075688772},"256":{"tf":2.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"693":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"289":{"tf":1.0},"673":{"tf":1.0},"680":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"752":{"tf":1.0},"840":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.6457513110645907},"184":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":2.8284271247461903},"297":{"tf":1.0},"298":{"tf":2.23606797749979},"649":{"tf":1.0},"652":{"tf":3.3166247903554},"669":{"tf":1.0},"685":{"tf":1.0},"752":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":2.0},"834":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.7320508075688772},"865":{"tf":2.0},"914":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"134":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"523":{"tf":1.0},"578":{"tf":1.7320508075688772},"77":{"tf":1.0},"951":{"tf":1.0},"98":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"858":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"103":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"21":{"tf":1.4142135623730951},"249":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"454":{"tf":1.0},"64":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"678":{"tf":1.0},"776":{"tf":1.0},"801":{"tf":1.0},"82":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"563":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":250,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.7320508075688772},"213":{"tf":1.0},"258":{"tf":1.7320508075688772},"261":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":2.23606797749979},"376":{"tf":4.242640687119285},"377":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"393":{"tf":2.23606797749979},"395":{"tf":1.0},"396":{"tf":2.23606797749979},"401":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"412":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"414":{"tf":2.23606797749979},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"425":{"tf":3.7416573867739413},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"435":{"tf":2.23606797749979},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.4142135623730951},"474":{"tf":1.0},"476":{"tf":2.0},"478":{"tf":1.0},"480":{"tf":2.6457513110645907},"481":{"tf":2.23606797749979},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.7320508075688772},"488":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"490":{"tf":1.7320508075688772},"491":{"tf":1.7320508075688772},"492":{"tf":1.7320508075688772},"493":{"tf":2.23606797749979},"494":{"tf":2.449489742783178},"496":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":2.23606797749979},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"507":{"tf":2.6457513110645907},"508":{"tf":2.449489742783178},"510":{"tf":1.0},"511":{"tf":1.0},"514":{"tf":1.7320508075688772},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"517":{"tf":2.0},"519":{"tf":1.0},"520":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.7320508075688772},"526":{"tf":1.0},"527":{"tf":1.4142135623730951},"528":{"tf":2.6457513110645907},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"537":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.0},"549":{"tf":1.7320508075688772},"550":{"tf":1.4142135623730951},"551":{"tf":3.605551275463989},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.4142135623730951},"560":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.7320508075688772},"566":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.4142135623730951},"575":{"tf":1.7320508075688772},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"583":{"tf":1.0},"584":{"tf":1.4142135623730951},"585":{"tf":2.0},"586":{"tf":2.0},"588":{"tf":1.0},"589":{"tf":1.0},"593":{"tf":1.7320508075688772},"595":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":2.23606797749979},"606":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.7320508075688772},"611":{"tf":1.4142135623730951},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"620":{"tf":1.4142135623730951},"621":{"tf":1.0},"623":{"tf":1.0},"629":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":2.449489742783178},"677":{"tf":1.4142135623730951},"679":{"tf":2.23606797749979},"680":{"tf":1.0},"71":{"tf":1.0},"711":{"tf":1.0},"718":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"761":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.7320508075688772},"776":{"tf":1.0},"78":{"tf":1.4142135623730951},"782":{"tf":1.0},"79":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"802":{"tf":1.0},"804":{"tf":1.7320508075688772},"807":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"87":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.4142135623730951},"895":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"92":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"937":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"956":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"854":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"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":1,"docs":{"834":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"184":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"254":{"tf":1.0},"640":{"tf":1.7320508075688772},"642":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"237":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"752":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.0},"294":{"tf":1.0},"84":{"tf":1.0},"865":{"tf":1.0}}},"df":0,"docs":{}}}},"df":7,"docs":{"17":{"tf":1.0},"182":{"tf":1.4142135623730951},"218":{"tf":1.0},"322":{"tf":1.4142135623730951},"762":{"tf":1.0},"834":{"tf":1.0},"958":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"772":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"875":{"tf":1.0},"902":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"437":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":86,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.4142135623730951},"147":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.7320508075688772},"229":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.7320508075688772},"300":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"376":{"tf":1.0},"387":{"tf":1.7320508075688772},"390":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"408":{"tf":1.7320508075688772},"411":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"466":{"tf":1.7320508075688772},"470":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"488":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.4142135623730951},"513":{"tf":1.4142135623730951},"515":{"tf":1.0},"525":{"tf":1.4142135623730951},"533":{"tf":1.7320508075688772},"536":{"tf":1.4142135623730951},"545":{"tf":1.7320508075688772},"556":{"tf":1.7320508075688772},"559":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"571":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"594":{"tf":1.4142135623730951},"602":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"613":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"625":{"tf":1.7320508075688772},"628":{"tf":1.4142135623730951},"636":{"tf":1.7320508075688772},"645":{"tf":1.7320508075688772},"654":{"tf":1.0},"659":{"tf":1.0},"769":{"tf":1.0},"8":{"tf":1.0},"811":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"924":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":2.23606797749979},"968":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"875":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"408":{"tf":1.0},"429":{"tf":1.0},"602":{"tf":1.0}}}}}}}},"df":1,"docs":{"408":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"460":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}},"x":{"df":3,"docs":{"364":{"tf":1.0},"371":{"tf":1.0},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"232":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"651":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"715":{"tf":1.0},"752":{"tf":1.0},"884":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"307":{"tf":1.0}}}}}}}}}}}}},"p":{"df":2,"docs":{"307":{"tf":1.0},"338":{"tf":1.4142135623730951}}}}},"r":{"df":4,"docs":{"289":{"tf":1.0},"678":{"tf":1.0},"812":{"tf":1.0},"833":{"tf":1.4142135623730951}},"i":{"df":67,"docs":{"108":{"tf":1.0},"138":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"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.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"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},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"387":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"499":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"708":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"750":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"567":{"tf":1.0},"680":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"239":{"tf":1.0},"254":{"tf":1.0},"273":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"391":{"tf":1.0},"412":{"tf":1.0},"488":{"tf":1.0},"515":{"tf":1.0},"583":{"tf":1.0},"606":{"tf":1.0},"709":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":2.23606797749979},"99":{"tf":1.0}}},"x":{"df":3,"docs":{"33":{"tf":1.0},"762":{"tf":1.0},"851":{"tf":1.0}}}},"df":9,"docs":{"142":{"tf":1.0},"170":{"tf":1.0},"376":{"tf":1.4142135623730951},"560":{"tf":1.0},"618":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":66,"docs":{"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"132":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"315":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.0},"781":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"846":{"tf":1.0},"855":{"tf":1.0},"86":{"tf":1.0},"868":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"888":{"tf":1.0},"893":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"9":{"tf":1.0},"901":{"tf":1.0},"912":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":7,"docs":{"259":{"tf":1.0},"288":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"326":{"tf":1.0},"647":{"tf":1.0},"665":{"tf":1.0},"858":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"184":{"tf":1.0},"754":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"142":{"tf":1.4142135623730951},"309":{"tf":1.0},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"838":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"203":{"tf":1.0},"254":{"tf":1.4142135623730951},"330":{"tf":1.0},"796":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":7,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"206":{"tf":1.0},"254":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0}}},"v":{"df":44,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"329":{"tf":1.0},"398":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"499":{"tf":1.7320508075688772},"522":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"614":{"tf":1.7320508075688772},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"744":{"tf":1.0},"752":{"tf":2.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":2.23606797749979},"771":{"tf":1.0},"772":{"tf":1.0},"779":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"830":{"tf":1.0},"833":{"tf":1.4142135623730951},"838":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.4142135623730951},"882":{"tf":1.0},"891":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0},"947":{"tf":1.0},"952":{"tf":1.0},"98":{"tf":2.23606797749979}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"743":{"tf":1.0},"754":{"tf":1.0}},"l":{"@":{"0":{".":{"5":{".":{"3":{"df":1,"docs":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"288":{"tf":1.0},"807":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0},"838":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"254":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"673":{"tf":1.0},"725":{"tf":1.0},"732":{"tf":1.0},"799":{"tf":2.0},"854":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":1,"docs":{"127":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":52,"docs":{"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"120":{"tf":2.0},"127":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"315":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"346":{"tf":1.0},"381":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":2.449489742783178},"440":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"532":{"tf":1.0},"591":{"tf":1.0},"6":{"tf":1.0},"614":{"tf":1.0},"635":{"tf":2.23606797749979},"742":{"tf":1.0},"773":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"857":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.4142135623730951},"918":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"958":{"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":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"590":{"tf":1.0},"621":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"762":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":2.0},"129":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"212":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"295":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.4142135623730951},"363":{"tf":1.0},"370":{"tf":1.0},"379":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"698":{"tf":1.7320508075688772},"701":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"802":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"861":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"9":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.4142135623730951},"919":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"956":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":130,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.7320508075688772},"264":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"302":{"tf":1.0},"305":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":2.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"340":{"tf":1.0},"385":{"tf":1.0},"39":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"406":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"58":{"tf":1.4142135623730951},"580":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.7320508075688772},"600":{"tf":1.0},"603":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.4142135623730951},"62":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":2.6457513110645907},"677":{"tf":1.7320508075688772},"678":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"76":{"tf":1.4142135623730951},"761":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"801":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.0},"811":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"837":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"965":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"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":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"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":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"636":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"871":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"224":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.7320508075688772},"371":{"tf":1.0}}}},"t":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"289":{"tf":1.0},"318":{"tf":3.1622776601683795},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"402":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"814":{"tf":1.0},"860":{"tf":1.0},"872":{"tf":1.0},"88":{"tf":1.0},"948":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"456":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"557":{"tf":1.7320508075688772},"76":{"tf":2.0},"811":{"tf":1.0},"950":{"tf":1.4142135623730951},"97":{"tf":2.0}}}},"v":{"df":2,"docs":{"34":{"tf":1.0},"912":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"_":{"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":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"315":{"tf":1.4142135623730951},"567":{"tf":1.0},"655":{"tf":1.0},"772":{"tf":1.4142135623730951},"838":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"127":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"326":{"tf":1.0},"655":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"853":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"100":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":3.1622776601683795},"289":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"560":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":1.7320508075688772},"932":{"tf":1.0},"99":{"tf":1.0}}}}},"df":4,"docs":{"254":{"tf":1.0},"276":{"tf":1.0},"916":{"tf":1.0},"966":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"796":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"170":{"tf":1.0},"259":{"tf":1.0},"303":{"tf":1.0},"747":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"190":{"tf":1.0},"258":{"tf":1.7320508075688772},"263":{"tf":1.0},"297":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"801":{"tf":1.0},"839":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"919":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":4,"docs":{"203":{"tf":1.0},"233":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"218":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"590":{"tf":1.0},"592":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"162":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":2.0},"849":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":29,"docs":{"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"234":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"88":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":47,"docs":{"134":{"tf":1.0},"149":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"459":{"tf":1.0},"464":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"490":{"tf":1.0},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.7320508075688772},"565":{"tf":1.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"692":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":2.449489742783178},"801":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"858":{"tf":1.0},"919":{"tf":1.0},"951":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":13,"docs":{"103":{"tf":1.7320508075688772},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"670":{"tf":1.0},"70":{"tf":1.0},"780":{"tf":1.0},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.4142135623730951},"743":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"138":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"677":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"862":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"745":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"62":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"13":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"79":{"tf":1.0},"804":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0},"958":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"v":{"'":{"df":2,"docs":{"803":{"tf":1.0},"818":{"tf":1.0}}},"df":9,"docs":{"270":{"tf":1.0},"741":{"tf":1.4142135623730951},"753":{"tf":1.0},"754":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"880":{"tf":1.0}}}},"l":{"b":{"df":16,"docs":{"736":{"tf":1.0},"788":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.7320508075688772},"818":{"tf":1.4142135623730951},"820":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}},"l":{"df":1,"docs":{"190":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":3.872983346207417},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":3.0}}}}}}},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"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":{"667":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"318":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.0},"915":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"13":{"tf":2.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"77":{"tf":1.0},"881":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"16":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.4142135623730951},"720":{"tf":1.0},"867":{"tf":1.0}}}},"n":{"df":83,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"119":{"tf":1.4142135623730951},"126":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"136":{"tf":1.0},"142":{"tf":2.6457513110645907},"149":{"tf":1.0},"17":{"tf":2.6457513110645907},"173":{"tf":1.0},"175":{"tf":2.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":2.449489742783178},"203":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":2.0},"32":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"457":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"60":{"tf":1.0},"652":{"tf":2.6457513110645907},"655":{"tf":1.0},"658":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.0},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"802":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":1.0},"83":{"tf":1.0},"834":{"tf":1.4142135623730951},"839":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.7320508075688772},"915":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":16,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"20":{"tf":1.4142135623730951},"206":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"765":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"858":{"tf":1.0},"921":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"4":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":1,"docs":{"958":{"tf":1.0}}},"df":133,"docs":{"0":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"559":{"tf":1.0},"565":{"tf":1.0},"571":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.0},"617":{"tf":1.0},"623":{"tf":1.0},"628":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"653":{"tf":1.7320508075688772},"654":{"tf":1.7320508075688772},"655":{"tf":2.0},"715":{"tf":1.0},"716":{"tf":1.0},"718":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.0},"740":{"tf":1.4142135623730951},"743":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.4142135623730951},"757":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.0},"809":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"837":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"881":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"958":{"tf":2.0},"969":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":13,"docs":{"258":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"716":{"tf":1.4142135623730951},"76":{"tf":1.0},"765":{"tf":1.4142135623730951},"803":{"tf":1.0},"818":{"tf":1.4142135623730951},"920":{"tf":1.0},"97":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"849":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":36,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"454":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":2.0},"626":{"tf":1.0},"668":{"tf":1.0},"678":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"823":{"tf":1.4142135623730951},"840":{"tf":1.0},"916":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":31,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.23606797749979},"254":{"tf":2.23606797749979},"31":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":2.0},"476":{"tf":2.6457513110645907},"493":{"tf":2.449489742783178},"494":{"tf":2.6457513110645907},"496":{"tf":1.0},"505":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"678":{"tf":1.0},"803":{"tf":1.0},"894":{"tf":1.0},"912":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"17":{"tf":1.0},"958":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"621":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"254":{"tf":1.0},"289":{"tf":2.0},"710":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"184":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0}}}},"n":{"df":6,"docs":{"135":{"tf":1.4142135623730951},"233":{"tf":1.0},"734":{"tf":1.0},"831":{"tf":1.4142135623730951},"913":{"tf":1.0},"929":{"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":6,"docs":{"175":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":33,"docs":{"127":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":3.3166247903554},"178":{"tf":1.4142135623730951},"184":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"275":{"tf":2.0},"297":{"tf":2.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"321":{"tf":1.0},"619":{"tf":1.0},"647":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"710":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"723":{"tf":1.0},"727":{"tf":1.0},"755":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"867":{"tf":1.0},"876":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":20,"docs":{"108":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.7320508075688772},"290":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":1.7320508075688772},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"63":{"tf":1.0},"644":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"697":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"87":{"tf":1.0},"935":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":7,"docs":{"230":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772},"541":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"680":{"tf":1.0},"697":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}},"r":{"'":{"df":1,"docs":{"60":{"tf":1.0}}},".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"/":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"@":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"276":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"184":{"tf":1.0},"254":{"tf":1.7320508075688772},"289":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"17":{"tf":2.449489742783178},"20":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":2.23606797749979},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"500":{"tf":1.0},"592":{"tf":1.0},"663":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"685":{"tf":1.0},"769":{"tf":1.0},"774":{"tf":1.0},"852":{"tf":1.0},"879":{"tf":1.0},"912":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"232":{"tf":1.0},"289":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":8,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"318":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"=":{"2":{"5":{"df":1,"docs":{"835":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"682":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"774":{"tf":1.0},"852":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":176,"docs":{"0":{"tf":2.6457513110645907},"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":2.449489742783178},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"22":{"tf":3.1622776601683795},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":2.23606797749979},"225":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"256":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":2.0},"315":{"tf":2.6457513110645907},"316":{"tf":2.6457513110645907},"317":{"tf":1.0},"318":{"tf":3.7416573867739413},"32":{"tf":3.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.7320508075688772},"338":{"tf":1.0},"340":{"tf":2.23606797749979},"349":{"tf":2.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"398":{"tf":1.4142135623730951},"4":{"tf":2.0},"419":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":2.0},"522":{"tf":1.4142135623730951},"538":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"626":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":2.6457513110645907},"654":{"tf":2.0},"655":{"tf":1.0},"656":{"tf":1.4142135623730951},"657":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":2.0},"66":{"tf":1.4142135623730951},"660":{"tf":2.23606797749979},"661":{"tf":1.0},"662":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"67":{"tf":1.0},"671":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":2.6457513110645907},"692":{"tf":1.0},"693":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.7320508075688772},"706":{"tf":1.4142135623730951},"709":{"tf":1.0},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"731":{"tf":1.0},"735":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"793":{"tf":1.4142135623730951},"804":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"83":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"85":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":2.23606797749979},"966":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.7320508075688772}}}},"df":4,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"140":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}},"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}},"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":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"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":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"tf":1.0}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"540":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"448":{"tf":1.0}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"544":{"tf":1.4142135623730951}}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"543":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"428":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.0},"138":{"tf":2.23606797749979},"140":{"tf":2.449489742783178},"254":{"tf":2.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"376":{"tf":1.0},"429":{"tf":1.0},"443":{"tf":1.0},"450":{"tf":1.4142135623730951},"452":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"548":{"tf":1.4142135623730951},"652":{"tf":1.7320508075688772},"665":{"tf":1.0},"73":{"tf":1.0},"782":{"tf":1.0},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"858":{"tf":1.0}}}}},"df":25,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"286":{"tf":1.0},"315":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"861":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":45,"docs":{"1":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":2.0},"132":{"tf":2.0},"138":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"208":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.7320508075688772},"280":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":2.0},"326":{"tf":1.0},"330":{"tf":1.0},"4":{"tf":1.4142135623730951},"427":{"tf":1.0},"5":{"tf":1.4142135623730951},"538":{"tf":1.0},"678":{"tf":1.0},"73":{"tf":1.0},"730":{"tf":1.0},"865":{"tf":1.4142135623730951},"94":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":2.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"965":{"tf":1.7320508075688772},"968":{"tf":1.4142135623730951},"969":{"tf":2.23606797749979}},"’":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":97,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":2.0},"259":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"330":{"tf":1.0},"356":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"501":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"549":{"tf":1.4142135623730951},"56":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"572":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"630":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"672":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"709":{"tf":1.0},"772":{"tf":1.7320508075688772},"79":{"tf":1.0},"799":{"tf":2.23606797749979},"83":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.4142135623730951},"958":{"tf":1.0}},"m":{"df":2,"docs":{"109":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":4,"docs":{"234":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"377":{"tf":1.0}}}},"g":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"157":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":3.3166247903554},"289":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"73":{"tf":1.0},"890":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"473":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"144":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"298":{"tf":1.0},"649":{"tf":1.0},"872":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"_":{"df":0,"docs":{},"p":{"df":31,"docs":{"139":{"tf":1.0},"140":{"tf":2.23606797749979},"160":{"tf":1.4142135623730951},"259":{"tf":1.0},"289":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"642":{"tf":1.0},"677":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":66,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":2.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"145":{"tf":1.0},"160":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"203":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.7320508075688772},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"236":{"tf":2.0},"242":{"tf":2.0},"258":{"tf":2.23606797749979},"259":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"330":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.4142135623730951},"560":{"tf":1.0},"6":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"716":{"tf":1.0},"747":{"tf":1.0},"755":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"807":{"tf":1.0},"82":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"867":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":1.0}},"p":{"df":2,"docs":{"224":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":6,"docs":{"103":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"289":{"tf":2.0},"546":{"tf":1.0},"958":{"tf":1.0}}}}},"t":{"df":121,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"145":{"tf":2.8284271247461903},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.23606797749979},"218":{"tf":1.0},"224":{"tf":2.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"549":{"tf":1.0},"561":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"590":{"tf":1.4142135623730951},"591":{"tf":1.0},"614":{"tf":1.0},"618":{"tf":1.0},"632":{"tf":1.0},"651":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"716":{"tf":1.0},"727":{"tf":1.4142135623730951},"73":{"tf":1.0},"752":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"806":{"tf":2.0},"83":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.7320508075688772},"865":{"tf":1.0},"873":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.0},"231":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.4142135623730951},"653":{"tf":1.0},"692":{"tf":1.0},"775":{"tf":1.0},"79":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"770":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"570":{"tf":1.0},"644":{"tf":1.0},"697":{"tf":1.0},"755":{"tf":1.0},"770":{"tf":1.0}}}},"df":5,"docs":{"34":{"tf":1.0},"376":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0}}},"v":{"df":11,"docs":{"199":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"62":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"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":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":64,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":2.23606797749979},"212":{"tf":2.449489742783178},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"258":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.0},"53":{"tf":2.0},"54":{"tf":2.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"66":{"tf":1.0},"674":{"tf":1.0},"727":{"tf":1.7320508075688772},"74":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.4142135623730951},"922":{"tf":1.0},"95":{"tf":1.0}},"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":{"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":8,"docs":{"267":{"tf":1.4142135623730951},"270":{"tf":1.0},"289":{"tf":1.0},"54":{"tf":1.4142135623730951},"687":{"tf":1.0},"704":{"tf":1.4142135623730951},"721":{"tf":1.0},"736":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":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":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"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":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"895":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"241":{"tf":1.0},"289":{"tf":1.0},"454":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"890":{"tf":1.0},"895":{"tf":1.0},"905":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"905":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"803":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"126":{"tf":1.0},"802":{"tf":1.0},"914":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":145,"docs":{"100":{"tf":2.8284271247461903},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"128":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":2.6457513110645907},"136":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"173":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":2.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"24":{"tf":1.4142135623730951},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":2.6457513110645907},"316":{"tf":2.23606797749979},"318":{"tf":1.0},"32":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"330":{"tf":2.23606797749979},"348":{"tf":1.0},"35":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"373":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.0},"377":{"tf":1.7320508075688772},"383":{"tf":1.7320508075688772},"393":{"tf":1.7320508075688772},"402":{"tf":1.0},"41":{"tf":1.4142135623730951},"425":{"tf":1.7320508075688772},"435":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"457":{"tf":1.0},"460":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":3.4641016151377544},"540":{"tf":1.7320508075688772},"541":{"tf":1.0},"551":{"tf":2.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"598":{"tf":1.7320508075688772},"609":{"tf":1.7320508075688772},"619":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.7320508075688772},"640":{"tf":1.7320508075688772},"649":{"tf":1.4142135623730951},"651":{"tf":1.0},"653":{"tf":1.4142135623730951},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"665":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"676":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"690":{"tf":1.7320508075688772},"691":{"tf":1.0},"710":{"tf":1.0},"715":{"tf":1.4142135623730951},"72":{"tf":1.0},"720":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.8284271247461903},"801":{"tf":1.4142135623730951},"804":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.4142135623730951},"84":{"tf":1.0},"842":{"tf":1.0},"85":{"tf":1.0},"858":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"921":{"tf":1.0},"923":{"tf":1.4142135623730951},"925":{"tf":1.0},"927":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.0},"328":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.0},"329":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"359":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"727":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"462":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"460":{"tf":1.4142135623730951},"938":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"373":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"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":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"919":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":9,"docs":{"12":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"43":{"tf":1.0},"673":{"tf":1.0},"676":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"307":{"tf":1.0},"715":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"858":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"541":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"225":{"tf":1.0},"265":{"tf":1.0},"626":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"772":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"431":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"969":{"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":8,"docs":{"103":{"tf":1.0},"128":{"tf":1.0},"192":{"tf":1.0},"626":{"tf":1.4142135623730951},"738":{"tf":1.0},"82":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"11":{"tf":1.0},"665":{"tf":1.0},"751":{"tf":1.0},"775":{"tf":1.0},"804":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"958":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}}}},"df":2,"docs":{"655":{"tf":1.0},"658":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":13,"docs":{"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"151":{"tf":1.0},"184":{"tf":1.0},"218":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"678":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"939":{"tf":1.0},"969":{"tf":2.449489742783178}},"n":{"df":5,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":24,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"184":{"tf":1.0},"342":{"tf":1.7320508075688772},"715":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.0},"739":{"tf":1.4142135623730951},"743":{"tf":1.0},"747":{"tf":1.4142135623730951},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"806":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.4142135623730951},"931":{"tf":1.0}}}}}},"df":8,"docs":{"184":{"tf":1.0},"22":{"tf":1.0},"339":{"tf":2.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.0},"814":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"268":{"tf":1.0},"318":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"73":{"tf":1.0},"854":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"762":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"df":7,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"494":{"tf":1.7320508075688772},"621":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"258":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"734":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"318":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"103":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"381":{"tf":1.0},"674":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"900":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"i":{"df":10,"docs":{"142":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"677":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"503":{"tf":1.0},"514":{"tf":1.4142135623730951},"515":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"473":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":33,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.4142135623730951},"494":{"tf":1.0},"549":{"tf":1.0},"568":{"tf":1.0},"595":{"tf":1.0},"629":{"tf":1.0},"70":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.7320508075688772},"76":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"78":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"852":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"348":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"129":{"tf":1.0},"135":{"tf":2.8284271247461903},"190":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"326":{"tf":1.0},"376":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"510":{"tf":1.0},"511":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"693":{"tf":1.0},"720":{"tf":1.0},"818":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"916":{"tf":1.4142135623730951},"929":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"232":{"tf":1.0},"306":{"tf":1.0},"782":{"tf":1.0},"799":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"456":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"830":{"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":2,"docs":{"121":{"tf":1.4142135623730951},"864":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"568":{"tf":1.0},"626":{"tf":1.0},"816":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"145":{"tf":1.0},"289":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"267":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"557":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":2.23606797749979},"823":{"tf":1.0},"834":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"480":{"tf":2.23606797749979},"496":{"tf":1.0},"507":{"tf":2.23606797749979},"577":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"642":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"s":{"df":2,"docs":{"565":{"tf":1.4142135623730951},"642":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"480":{"tf":2.23606797749979},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"577":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"1":{"9":{"df":1,"docs":{"577":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"[":{"0":{"df":1,"docs":{"565":{"tf":2.0}}},"df":0,"docs":{}},"df":8,"docs":{"112":{"tf":2.23606797749979},"13":{"tf":1.0},"480":{"tf":3.3166247903554},"496":{"tf":1.4142135623730951},"507":{"tf":3.4641016151377544},"565":{"tf":2.449489742783178},"577":{"tf":2.449489742783178},"642":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":3.872983346207417}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"289":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"815":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"112":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"1":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"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":{},"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":{},"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"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":{"563":{"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":0,"docs":{},"e":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}},"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":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"799":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"190":{"tf":1.0},"376":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"596":{"tf":1.0},"618":{"tf":1.4142135623730951},"67":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"692":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"915":{"tf":1.0},"969":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"195":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"261":{"tf":1.4142135623730951},"308":{"tf":1.0},"316":{"tf":1.0},"867":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"878":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":31,"docs":{"118":{"tf":1.4142135623730951},"129":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"219":{"tf":1.4142135623730951},"27":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"353":{"tf":1.4142135623730951},"370":{"tf":2.23606797749979},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"493":{"tf":1.0},"567":{"tf":1.0},"7":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"77":{"tf":1.0},"801":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"98":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"563":{"tf":1.7320508075688772},"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"$":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"683":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"686":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"224":{"tf":1.0},"231":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"264":{"tf":1.7320508075688772},"580":{"tf":1.0},"591":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"861":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"538":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":36,"docs":{"120":{"tf":1.0},"140":{"tf":1.0},"224":{"tf":1.4142135623730951},"252":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.7320508075688772},"414":{"tf":2.0},"419":{"tf":1.7320508075688772},"435":{"tf":2.0},"440":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.7320508075688772},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"616":{"tf":1.4142135623730951},"630":{"tf":1.0},"65":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":115,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"118":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"367":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.7320508075688772},"406":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"488":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"529":{"tf":1.7320508075688772},"531":{"tf":1.0},"538":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.0},"565":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.4142135623730951},"632":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"690":{"tf":1.0},"693":{"tf":1.4142135623730951},"697":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"776":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"858":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"926":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.0},"951":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":2.0},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":66,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.4142135623730951},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"448":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.7320508075688772},"524":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"670":{"tf":1.0},"76":{"tf":1.4142135623730951},"789":{"tf":1.0},"823":{"tf":1.0},"839":{"tf":1.0},"858":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.4142135623730951},"466":{"tf":1.0},"484":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"793":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"590":{"tf":1.0}},"s":{"_":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"590":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"l":{".":{"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"925":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"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":{},"r":{"df":1,"docs":{"27":{"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":0,"docs":{},"{":{"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":{"17":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"698":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"909":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"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":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"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":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{")":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"417":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"752":{"tf":1.0},"881":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"646":{"tf":1.0},"65":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"376":{"tf":1.0},"439":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}},"r":{"d":{"df":10,"docs":{"110":{"tf":2.0},"231":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"572":{"tf":1.0},"62":{"tf":1.0},"823":{"tf":1.0},"837":{"tf":1.0},"89":{"tf":2.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"179":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"7":{"/":{"1":{"5":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"/":{"0":{"4":{":":{"3":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":55,"docs":{"0":{"tf":2.8284271247461903},"100":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":2.0},"2":{"tf":1.0},"203":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"241":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"269":{"tf":1.0},"285":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":2.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"478":{"tf":1.4142135623730951},"490":{"tf":2.23606797749979},"492":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.0},"618":{"tf":1.0},"675":{"tf":1.4142135623730951},"678":{"tf":1.0},"711":{"tf":1.4142135623730951},"736":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"818":{"tf":1.0},"853":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"880":{"tf":1.0},"969":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":38,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"146":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"678":{"tf":1.0},"752":{"tf":1.4142135623730951},"760":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"807":{"tf":1.4142135623730951},"818":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.0},"876":{"tf":1.0},"9":{"tf":1.0},"929":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"120":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"203":{"tf":2.8284271247461903},"32":{"tf":1.0},"324":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"674":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"76":{"tf":1.0},"838":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0},"923":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.0},"678":{"tf":1.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":11,"docs":{"377":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"664":{"tf":1.0},"684":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"585":{"tf":2.449489742783178},"586":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":12,"docs":{"289":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":2.23606797749979},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"342":{"tf":1.0},"742":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"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":{"_":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"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":{"_":{"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"d":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"0":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"565":{"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":{},"m":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"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":2,"docs":{"844":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":36,"docs":{"10":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"14":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":2.0},"195":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":2.0},"23":{"tf":2.0},"247":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":2.0},"290":{"tf":1.0},"299":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":2.0},"441":{"tf":1.0},"45":{"tf":1.4142135623730951},"57":{"tf":2.0},"64":{"tf":1.0},"677":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"701":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"924":{"tf":1.0},"926":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":34,"docs":{"118":{"tf":1.4142135623730951},"127":{"tf":1.0},"136":{"tf":1.0},"19":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"37":{"tf":1.0},"393":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"46":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"694":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.4142135623730951},"805":{"tf":1.0},"905":{"tf":1.0},"912":{"tf":1.0},"923":{"tf":1.4142135623730951},"969":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"471":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"494":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":17,"docs":{"149":{"tf":1.0},"203":{"tf":1.0},"454":{"tf":1.4142135623730951},"457":{"tf":2.0},"459":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.7320508075688772},"716":{"tf":1.0},"77":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"921":{"tf":1.0},"969":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"129":{"tf":1.0},"135":{"tf":2.449489742783178},"17":{"tf":1.0},"264":{"tf":1.4142135623730951},"31":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"678":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"789":{"tf":1.0},"834":{"tf":1.0},"909":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":52,"docs":{"114":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"464":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"565":{"tf":1.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.0},"74":{"tf":1.0},"752":{"tf":1.0},"837":{"tf":1.0},"842":{"tf":1.0},"882":{"tf":1.0},"905":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"951":{"tf":1.0}}},"i":{"df":2,"docs":{"289":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"144":{"tf":1.7320508075688772},"340":{"tf":1.0},"674":{"tf":1.0}}}}}}},"df":1,"docs":{"752":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"136":{"tf":1.0},"234":{"tf":1.4142135623730951},"297":{"tf":1.0},"698":{"tf":1.0},"923":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"964":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"862":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":95,"docs":{"120":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":3.605551275463989},"136":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"170":{"tf":1.4142135623730951},"198":{"tf":1.0},"224":{"tf":2.0},"231":{"tf":1.0},"285":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"347":{"tf":2.449489742783178},"376":{"tf":2.8284271247461903},"377":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"425":{"tf":2.6457513110645907},"426":{"tf":1.0},"427":{"tf":2.8284271247461903},"428":{"tf":2.8284271247461903},"429":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":2.6457513110645907},"436":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.449489742783178},"444":{"tf":1.0},"445":{"tf":2.8284271247461903},"446":{"tf":2.8284271247461903},"447":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"529":{"tf":1.4142135623730951},"532":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"554":{"tf":1.7320508075688772},"560":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":2.23606797749979},"580":{"tf":1.4142135623730951},"603":{"tf":1.0},"614":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.4142135623730951},"634":{"tf":1.0},"635":{"tf":2.23606797749979},"644":{"tf":1.0},"645":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"697":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":2.449489742783178},"738":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"78":{"tf":1.0},"799":{"tf":1.0},"813":{"tf":1.0},"818":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.7320508075688772},"842":{"tf":1.0},"862":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"738":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"442":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.0},"282":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"340":{"tf":1.0},"376":{"tf":1.0},"638":{"tf":1.0},"640":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"645":{"tf":1.0},"87":{"tf":1.0},"956":{"tf":1.0},"964":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"816":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"226":{"tf":1.7320508075688772},"675":{"tf":1.4142135623730951},"677":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"377":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"135":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"129":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"312":{"tf":1.0},"354":{"tf":1.0},"561":{"tf":1.4142135623730951},"648":{"tf":1.4142135623730951},"652":{"tf":1.0},"66":{"tf":2.0},"710":{"tf":1.7320508075688772},"711":{"tf":1.0},"752":{"tf":1.0},"864":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"929":{"tf":1.0},"956":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"184":{"tf":1.0},"272":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"801":{"tf":1.0}}}},"df":53,"docs":{"100":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"561":{"tf":1.0},"60":{"tf":1.0},"647":{"tf":1.4142135623730951},"649":{"tf":2.6457513110645907},"652":{"tf":3.4641016151377544},"710":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"801":{"tf":1.0},"804":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"917":{"tf":1.0},"919":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"22":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"847":{"tf":1.0},"859":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":15,"docs":{"100":{"tf":1.7320508075688772},"142":{"tf":1.0},"224":{"tf":1.0},"243":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"560":{"tf":1.0},"736":{"tf":1.0},"79":{"tf":1.7320508075688772}}}},"t":{"df":8,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0},"715":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"62":{"tf":1.0},"710":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"698":{"tf":1.0},"913":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":40,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":3.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"443":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"63":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"66":{"tf":1.0},"692":{"tf":1.0},"78":{"tf":1.4142135623730951},"811":{"tf":1.0},"840":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"379":{"tf":1.0},"838":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"145":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":1.0},"117":{"tf":1.0},"318":{"tf":1.0}}}},"m":{"df":7,"docs":{"412":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.6457513110645907},"519":{"tf":1.4142135623730951},"577":{"tf":2.23606797749979},"588":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"254":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"968":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"315":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"830":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"492":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":85,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"34":{"tf":1.4142135623730951},"422":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"572":{"tf":1.0},"62":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"671":{"tf":1.0},"697":{"tf":1.0},"705":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"730":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0},"776":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0},"812":{"tf":1.0},"834":{"tf":2.0},"835":{"tf":1.0},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"846":{"tf":1.0},"85":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"925":{"tf":1.0},"938":{"tf":1.4142135623730951},"947":{"tf":1.0},"950":{"tf":2.0},"951":{"tf":1.0},"958":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"100":{"tf":1.0},"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"107":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"288":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.7320508075688772},"443":{"tf":1.0},"538":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"847":{"tf":1.0},"86":{"tf":1.7320508075688772},"882":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"540":{"tf":1.0}}},"df":62,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"14":{"tf":2.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":2.0},"161":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.7320508075688772},"174":{"tf":1.0},"223":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"354":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"513":{"tf":1.0},"536":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"605":{"tf":1.0},"653":{"tf":1.0},"657":{"tf":1.7320508075688772},"681":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"738":{"tf":1.4142135623730951},"760":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.7320508075688772},"798":{"tf":1.0},"799":{"tf":1.0},"804":{"tf":1.0},"818":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"969":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"224":{"tf":1.0},"324":{"tf":1.0},"735":{"tf":1.0},"772":{"tf":1.0},"793":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"844":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"289":{"tf":1.0},"692":{"tf":1.0},"907":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"759":{"tf":1.0},"900":{"tf":1.0},"909":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"105":{"tf":1.0},"115":{"tf":1.7320508075688772},"132":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"184":{"tf":1.0},"234":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"735":{"tf":1.0},"78":{"tf":1.0},"791":{"tf":1.0},"804":{"tf":1.0},"817":{"tf":1.0},"84":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"17":{"tf":1.0},"198":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"289":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"960":{"tf":1.4142135623730951},"963":{"tf":1.0},"964":{"tf":1.7320508075688772},"969":{"tf":4.58257569495584}},"l":{"df":7,"docs":{"103":{"tf":1.0},"129":{"tf":1.4142135623730951},"136":{"tf":1.0},"70":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}}}},"df":52,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":2.0},"218":{"tf":1.7320508075688772},"219":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":3.1622776601683795},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.7320508075688772},"289":{"tf":2.0},"297":{"tf":1.7320508075688772},"299":{"tf":2.23606797749979},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":2.23606797749979},"304":{"tf":1.7320508075688772},"305":{"tf":1.4142135623730951},"326":{"tf":1.0},"352":{"tf":1.7320508075688772},"353":{"tf":2.0},"359":{"tf":1.0},"363":{"tf":2.6457513110645907},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":2.6457513110645907},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":3.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":4.242640687119285},"374":{"tf":1.0},"375":{"tf":2.23606797749979},"801":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"837":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"843":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"933":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"969":{"tf":1.0}},"p":{"df":1,"docs":{"224":{"tf":1.0}}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"17":{"tf":1.0},"279":{"tf":1.7320508075688772},"299":{"tf":1.0},"300":{"tf":1.0},"783":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":24,"docs":{"117":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"44":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"592":{"tf":1.0},"644":{"tf":1.4142135623730951},"674":{"tf":1.0},"675":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.0},"805":{"tf":1.0},"830":{"tf":1.0},"864":{"tf":1.0},"884":{"tf":1.0},"97":{"tf":1.0}},"n":{"df":14,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"83":{"tf":1.0},"847":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}},"r":{"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":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"756":{"tf":1.0},"762":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"110":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"34":{"tf":1.0},"342":{"tf":1.4142135623730951},"653":{"tf":1.0},"667":{"tf":1.0},"731":{"tf":1.0},"862":{"tf":1.0},"874":{"tf":1.0},"89":{"tf":1.0},"927":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":31,"docs":{"127":{"tf":1.4142135623730951},"151":{"tf":1.0},"2":{"tf":1.0},"271":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"321":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":2.23606797749979},"376":{"tf":1.0},"454":{"tf":1.0},"678":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"736":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"812":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"881":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"97":{"tf":1.0}}}}},"b":{"df":2,"docs":{"505":{"tf":1.0},"517":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"6":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"132":{"tf":1.4142135623730951},"223":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"344":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"537":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"712":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"860":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"160":{"tf":1.0},"223":{"tf":1.0},"289":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"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":38,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.4142135623730951},"145":{"tf":1.0},"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"224":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"288":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"674":{"tf":1.0},"680":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"77":{"tf":1.4142135623730951},"775":{"tf":1.0},"839":{"tf":1.4142135623730951},"847":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.7320508075688772},"936":{"tf":1.0},"958":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951}}},"y":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":12,"docs":{"249":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":3,"docs":{"13":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"744":{"tf":1.0}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"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":{},"t":{"df":1,"docs":{"545":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"318":{"tf":1.4142135623730951},"837":{"tf":1.0},"860":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"289":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"511":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":5,"docs":{"272":{"tf":1.0},"340":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"149":{"tf":1.0},"233":{"tf":1.0},"276":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"s":{"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":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"318":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"765":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"772":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"772":{"tf":1.0}}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":76,"docs":{"107":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":3.3166247903554},"112":{"tf":3.0},"113":{"tf":2.23606797749979},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"136":{"tf":1.0},"143":{"tf":2.449489742783178},"144":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"318":{"tf":6.48074069840786},"328":{"tf":2.0},"331":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"405":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"518":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"564":{"tf":1.4142135623730951},"565":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"622":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"641":{"tf":1.4142135623730951},"650":{"tf":1.4142135623730951},"652":{"tf":1.0},"720":{"tf":1.4142135623730951},"728":{"tf":1.0},"742":{"tf":1.0},"763":{"tf":1.4142135623730951},"768":{"tf":1.0},"776":{"tf":1.0},"784":{"tf":1.0},"801":{"tf":1.0},"804":{"tf":1.0},"810":{"tf":1.0},"814":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.0},"853":{"tf":1.0},"86":{"tf":2.0},"863":{"tf":1.0},"867":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"888":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"924":{"tf":2.0},"927":{"tf":1.7320508075688772},"937":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"952":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"347":{"tf":2.449489742783178}}}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":27,"docs":{"107":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"643":{"tf":1.4142135623730951},"86":{"tf":1.0},"879":{"tf":1.0},"933":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":28,"docs":{"107":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"427":{"tf":1.7320508075688772},"437":{"tf":1.7320508075688772},"448":{"tf":2.0},"464":{"tf":1.7320508075688772},"480":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.7320508075688772},"543":{"tf":1.4142135623730951},"553":{"tf":1.7320508075688772},"565":{"tf":2.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"611":{"tf":1.4142135623730951},"623":{"tf":1.7320508075688772},"634":{"tf":1.4142135623730951},"642":{"tf":1.7320508075688772},"765":{"tf":1.0},"772":{"tf":2.449489742783178},"805":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":2,"docs":{"496":{"tf":1.0},"519":{"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"765":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951}}}}}}}}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"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":{},"i":{"d":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"887":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"886":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"885":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"883":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"882":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"332":{"tf":1.4142135623730951}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.7320508075688772},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":19,"docs":{"254":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"629":{"tf":2.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":2.6457513110645907},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"636":{"tf":1.7320508075688772},"637":{"tf":1.0},"643":{"tf":1.0},"677":{"tf":1.0},"684":{"tf":2.0},"740":{"tf":1.0},"770":{"tf":1.4142135623730951},"929":{"tf":1.0},"969":{"tf":3.7416573867739413}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"288":{"tf":1.0},"765":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"153":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"297":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"963":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"103":{"tf":1.0},"318":{"tf":1.0},"519":{"tf":1.0},"588":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.7320508075688772},"468":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"95":{"tf":1.0}}}}},"’":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}},"g":{"df":24,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"289":{"tf":1.4142135623730951},"306":{"tf":1.0},"376":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.0},"75":{"tf":2.449489742783178},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":2.449489742783178},"99":{"tf":1.4142135623730951}}},"k":{"df":7,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"618":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"184":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":1.0},"297":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"686":{"tf":1.0},"908":{"tf":1.0},"919":{"tf":1.0},"969":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"342":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"679":{"tf":1.0}}}}}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"679":{"tf":1.7320508075688772}}}},"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":1,"docs":{"840":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":24,"docs":{"22":{"tf":3.0},"318":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"454":{"tf":1.0},"471":{"tf":1.0},"679":{"tf":1.0},"718":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"76":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"833":{"tf":1.4142135623730951},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":12,"docs":{"113":{"tf":1.0},"117":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"29":{"tf":1.0},"318":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"78":{"tf":1.0},"958":{"tf":1.4142135623730951},"969":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"258":{"tf":1.0},"570":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"807":{"tf":1.0},"823":{"tf":1.0},"919":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":67,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":2.0},"198":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.7320508075688772},"221":{"tf":2.0},"223":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"240":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":1.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"330":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.7320508075688772},"35":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"471":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0},"522":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"621":{"tf":2.23606797749979},"673":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"736":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"9":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"968":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"142":{"tf":1.7320508075688772},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"802":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"448":{"tf":1.4142135623730951},"464":{"tf":1.0},"531":{"tf":1.0},"553":{"tf":1.0},"600":{"tf":1.0},"623":{"tf":1.0},"642":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951},"925":{"tf":1.0}},"n":{"df":2,"docs":{"698":{"tf":1.0},"805":{"tf":1.0}}}}}},"u":{"df":7,"docs":{"142":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"449":{"tf":1.0},"578":{"tf":1.0},"772":{"tf":1.0},"963":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":3,"docs":{"173":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"289":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"n":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":3,"docs":{"456":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"158":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"857":{"tf":1.0}}}}}}},"df":172,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"131":{"tf":2.6457513110645907},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.6457513110645907},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":3.3166247903554},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"248":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":2.23606797749979},"257":{"tf":1.0},"258":{"tf":2.23606797749979},"259":{"tf":1.7320508075688772},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.7320508075688772},"280":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"401":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"454":{"tf":1.7320508075688772},"456":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":3.872983346207417},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":2.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":2.8284271247461903},"481":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"484":{"tf":2.8284271247461903},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.23606797749979},"488":{"tf":2.6457513110645907},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"492":{"tf":1.0},"493":{"tf":2.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.4142135623730951},"498":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":2.0},"502":{"tf":1.0},"507":{"tf":1.0},"549":{"tf":2.0},"551":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"596":{"tf":1.0},"607":{"tf":1.0},"619":{"tf":1.0},"644":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"70":{"tf":1.0},"711":{"tf":2.23606797749979},"718":{"tf":1.4142135623730951},"720":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.7320508075688772},"734":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":3.3166247903554},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"803":{"tf":1.4142135623730951},"805":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.4142135623730951},"811":{"tf":1.0},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"83":{"tf":1.0},"830":{"tf":1.0},"847":{"tf":1.4142135623730951},"85":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":2.449489742783178},"862":{"tf":1.4142135623730951},"866":{"tf":1.0},"880":{"tf":1.4142135623730951},"9":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"919":{"tf":1.4142135623730951},"929":{"tf":1.0},"951":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":3.3166247903554},"98":{"tf":2.23606797749979},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"184":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"739":{"tf":1.0}}}}},"r":{"df":12,"docs":{"142":{"tf":1.0},"456":{"tf":1.7320508075688772},"471":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"728":{"tf":1.0},"872":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"473":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"772":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"454":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"803":{"tf":1.0}}},"df":34,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"158":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":2.449489742783178},"455":{"tf":1.0},"456":{"tf":1.4142135623730951},"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.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"483":{"tf":1.0},"549":{"tf":1.4142135623730951},"76":{"tf":2.0},"816":{"tf":1.7320508075688772},"863":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"834":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"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":19,"docs":{"131":{"tf":1.4142135623730951},"142":{"tf":5.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"272":{"tf":1.0},"315":{"tf":1.0},"560":{"tf":1.7320508075688772},"729":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.0},"804":{"tf":2.449489742783178},"878":{"tf":1.4142135623730951},"894":{"tf":1.0},"915":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"929":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"180":{"tf":2.0},"181":{"tf":1.4142135623730951},"182":{"tf":2.0},"183":{"tf":2.8284271247461903},"184":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.4142135623730951},"881":{"tf":1.0},"97":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":2.0},"482":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"725":{"tf":1.0},"813":{"tf":1.0},"870":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"502":{"tf":1.0},"834":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"249":{"tf":1.0},"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"964":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":2.23606797749979}}}}},"l":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"318":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"127":{"tf":1.0},"175":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":30,"docs":{"246":{"tf":2.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"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.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"561":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"224":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":2.23606797749979},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"79":{"tf":1.7320508075688772},"872":{"tf":1.0},"934":{"tf":1.0}}}}},"l":{"d":{"df":2,"docs":{"126":{"tf":1.0},"802":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"127":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"496":{"tf":1.0}}},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.0},"567":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"498":{"tf":1.0},"500":{"tf":1.0}}}}},"df":30,"docs":{"115":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.0},"299":{"tf":1.0},"34":{"tf":1.0},"348":{"tf":1.0},"43":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"703":{"tf":1.0},"707":{"tf":1.7320508075688772},"73":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.0},"956":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"379":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"960":{"tf":1.0},"969":{"tf":2.23606797749979}}}}}}},"p":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"254":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"965":{"tf":1.0}},"i":{"c":{"df":11,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"86":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"127":{"tf":1.4142135623730951},"376":{"tf":1.0},"396":{"tf":1.0},"412":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"267":{"tf":1.0},"315":{"tf":1.0},"859":{"tf":1.0},"925":{"tf":1.0}}},"k":{"df":20,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"377":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"673":{"tf":1.0},"74":{"tf":1.0},"806":{"tf":1.0},"818":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.0},"206":{"tf":1.7320508075688772},"258":{"tf":1.0},"263":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"912":{"tf":1.0}}},"n":{"df":5,"docs":{"119":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":4,"docs":{"729":{"tf":1.0},"738":{"tf":1.4142135623730951},"811":{"tf":1.0},"823":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"110":{"tf":1.0},"21":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"829":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"21":{"tf":2.0},"276":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"862":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"131":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0}}}},"t":{"df":6,"docs":{"128":{"tf":1.0},"213":{"tf":1.0},"248":{"tf":1.0},"709":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"704":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"166":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"665":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"379":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":29,"docs":{"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"565":{"tf":1.4142135623730951},"600":{"tf":1.0},"63":{"tf":1.0},"642":{"tf":1.0},"652":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"71":{"tf":1.0},"712":{"tf":1.0},"737":{"tf":1.0},"756":{"tf":1.0},"786":{"tf":1.0},"807":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"957":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"144":{"tf":1.4142135623730951},"155":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":2.23606797749979},"231":{"tf":2.0},"233":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"342":{"tf":1.0},"66":{"tf":1.0},"716":{"tf":1.0},"734":{"tf":1.0},"752":{"tf":1.0},"869":{"tf":1.0},"938":{"tf":1.0},"951":{"tf":2.0}}}}}},"m":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"752":{"tf":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":{"752":{"tf":1.0}}},"p":{"df":1,"docs":{"881":{"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":2,"docs":{"218":{"tf":1.0},"49":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":29,"docs":{"100":{"tf":2.0},"13":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":2.6457513110645907},"665":{"tf":1.0},"666":{"tf":1.4142135623730951},"678":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":2.0},"94":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"131":{"tf":1.0},"328":{"tf":2.449489742783178},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"468":{"tf":2.0},"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"524":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":2.23606797749979},"761":{"tf":1.0},"873":{"tf":1.0},"897":{"tf":1.4142135623730951},"912":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}}}},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"773":{"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":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.4142135623730951}}}},"df":2,"docs":{"912":{"tf":1.4142135623730951},"913":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"191":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"100":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"258":{"tf":1.7320508075688772},"297":{"tf":1.0},"663":{"tf":1.0},"701":{"tf":1.0},"79":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"968":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"183":{"tf":1.4142135623730951},"79":{"tf":1.0},"814":{"tf":1.0},"876":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"712":{"tf":1.4142135623730951},"957":{"tf":1.4142135623730951}}}},"o":{"df":21,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.4142135623730951},"173":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.0},"377":{"tf":1.4142135623730951},"44":{"tf":1.0},"613":{"tf":1.0},"677":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"814":{"tf":1.0},"875":{"tf":1.4142135623730951},"958":{"tf":1.0},"959":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"/":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}},"df":369,"docs":{"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"132":{"tf":3.872983346207417},"134":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":2.6457513110645907},"289":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"376":{"tf":2.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":2.449489742783178},"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},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"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},"407":{"tf":1.0},"408":{"tf":1.7320508075688772},"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.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"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.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"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.7320508075688772},"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.0},"464":{"tf":1.0},"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.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.7320508075688772},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.7320508075688772},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.4142135623730951},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"52":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"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.4142135623730951},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.7320508075688772},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.7320508075688772},"564":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":1.7320508075688772},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.4142135623730951},"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.4142135623730951},"580":{"tf":1.0},"581":{"tf":1.0},"582":{"tf":1.4142135623730951},"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},"590":{"tf":1.4142135623730951},"591":{"tf":1.0},"592":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.7320508075688772},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.7320508075688772},"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.7320508075688772},"626":{"tf":2.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"632":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.7320508075688772},"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":2.449489742783178},"645":{"tf":2.6457513110645907},"646":{"tf":1.0},"67":{"tf":2.449489742783178},"677":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"72":{"tf":1.7320508075688772},"721":{"tf":1.0},"727":{"tf":1.7320508075688772},"73":{"tf":1.0},"730":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"740":{"tf":1.0},"772":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.7320508075688772},"804":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.7320508075688772},"818":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"834":{"tf":1.7320508075688772},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772},"913":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":2.0},"92":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.7320508075688772},"932":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"954":{"tf":1.0},"956":{"tf":2.449489742783178},"958":{"tf":1.4142135623730951},"961":{"tf":1.0},"99":{"tf":1.7320508075688772}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":5,"docs":{"134":{"tf":1.0},"184":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"264":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"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":{},"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":{"553":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":5,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"136":{"tf":1.0}}},"df":2,"docs":{"531":{"tf":1.0},"692":{"tf":1.0}},"i":{"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":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"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":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"151":{"tf":1.0},"316":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"324":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"6":{"4":{"df":2,"docs":{"461":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"933":{"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":{"d":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"184":{"tf":1.0},"239":{"tf":1.0},"791":{"tf":1.0},"917":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"844":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"127":{"tf":1.0},"807":{"tf":1.0},"929":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"310":{"tf":1.0},"697":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"796":{"tf":1.0},"815":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"376":{"tf":1.0},"414":{"tf":2.449489742783178},"418":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"679":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.0}},"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":1,"docs":{"679":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"865":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"904":{"tf":1.0},"923":{"tf":1.0},"946":{"tf":1.0}}}}},"r":{"df":21,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"963":{"tf":1.0},"965":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"252":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"456":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"117":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"173":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"543":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"677":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"376":{"tf":2.0},"422":{"tf":1.0},"433":{"tf":1.0},"443":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"719":{"tf":1.0},"728":{"tf":1.0},"733":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"748":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"768":{"tf":1.0},"772":{"tf":1.0},"958":{"tf":1.0}}}},"i":{"df":1,"docs":{"234":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"310":{"tf":1.4142135623730951},"763":{"tf":1.0},"766":{"tf":1.0},"812":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"342":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"862":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"160":{"tf":1.0},"376":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"697":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"t":{"df":37,"docs":{"107":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"143":{"tf":1.0},"318":{"tf":2.449489742783178},"460":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":2.23606797749979},"483":{"tf":1.0},"487":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":2.0},"522":{"tf":1.0},"554":{"tf":1.0},"557":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":1.4142135623730951},"734":{"tf":1.0},"818":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.0},"86":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"958":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"751":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"376":{"tf":1.0},"572":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":13,"docs":{"132":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"674":{"tf":1.0},"791":{"tf":1.0},"839":{"tf":1.0},"923":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"377":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"224":{"tf":1.0},"289":{"tf":1.4142135623730951},"330":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"680":{"tf":1.0},"710":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"907":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"137":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"929":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"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":{"732":{"tf":1.0},"858":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}}}}},"l":{"df":2,"docs":{"960":{"tf":1.0},"968":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"714":{"tf":1.4142135623730951},"889":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"173":{"tf":1.0},"752":{"tf":1.0}}}},"t":{"df":2,"docs":{"673":{"tf":1.4142135623730951},"686":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"339":{"tf":1.0},"50":{"tf":1.0},"721":{"tf":1.0},"731":{"tf":1.0},"79":{"tf":1.0},"795":{"tf":1.0},"953":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"265":{"tf":1.0},"266":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":76,"docs":{"108":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"289":{"tf":1.0},"32":{"tf":1.0},"626":{"tf":1.0},"719":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"727":{"tf":1.0},"728":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.7320508075688772},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.4142135623730951},"783":{"tf":1.0},"786":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.4142135623730951},"862":{"tf":1.0},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"897":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.4142135623730951},"912":{"tf":2.0},"914":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":42,"docs":{"11":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"184":{"tf":2.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"404":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"747":{"tf":1.0},"757":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"848":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"904":{"tf":1.0},"929":{"tf":1.4142135623730951},"939":{"tf":1.0},"969":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":26,"docs":{"127":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"730":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.4142135623730951},"808":{"tf":1.0},"815":{"tf":1.0},"842":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"872":{"tf":1.0},"880":{"tf":1.0},"883":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"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":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":76,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"135":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"312":{"tf":1.7320508075688772},"313":{"tf":2.0},"315":{"tf":2.6457513110645907},"316":{"tf":1.7320508075688772},"317":{"tf":3.4641016151377544},"318":{"tf":2.0},"320":{"tf":2.23606797749979},"321":{"tf":2.6457513110645907},"322":{"tf":2.23606797749979},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"471":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"649":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"710":{"tf":1.4142135623730951},"715":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.7320508075688772},"741":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"766":{"tf":1.0},"786":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"807":{"tf":1.0},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.7320508075688772},"834":{"tf":1.7320508075688772},"836":{"tf":1.0},"838":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"854":{"tf":2.6457513110645907},"859":{"tf":1.7320508075688772},"860":{"tf":1.0},"861":{"tf":1.7320508075688772},"875":{"tf":1.0},"880":{"tf":1.0},"895":{"tf":1.4142135623730951},"913":{"tf":1.0},"919":{"tf":2.23606797749979},"921":{"tf":1.7320508075688772},"922":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":2.449489742783178},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"947":{"tf":1.0},"956":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"917":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"338":{"tf":1.0},"923":{"tf":1.7320508075688772}}},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"715":{"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":{"317":{"tf":1.0},"922":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"317":{"tf":1.0},"922":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"693":{"tf":1.0},"701":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"324":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":1,"docs":{"324":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"217":{"tf":1.0},"254":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"710":{"tf":1.0},"929":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"541":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"540":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":{"912":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{".":{"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"254":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"190":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":34,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"223":{"tf":1.0},"230":{"tf":2.23606797749979},"231":{"tf":3.1622776601683795},"232":{"tf":3.872983346207417},"233":{"tf":3.0},"288":{"tf":1.0},"289":{"tf":2.0},"297":{"tf":1.0},"376":{"tf":1.4142135623730951},"537":{"tf":2.449489742783178},"538":{"tf":1.7320508075688772},"539":{"tf":1.0},"540":{"tf":2.23606797749979},"541":{"tf":2.8284271247461903},"542":{"tf":1.0},"543":{"tf":1.7320508075688772},"544":{"tf":1.0},"545":{"tf":2.0},"546":{"tf":2.0},"547":{"tf":1.0},"548":{"tf":1.4142135623730951},"761":{"tf":1.7320508075688772},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"837":{"tf":1.0},"864":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.7320508075688772},"932":{"tf":1.0},"946":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"786":{"tf":1.0}}}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":13,"docs":{"135":{"tf":1.0},"289":{"tf":1.0},"346":{"tf":1.4142135623730951},"371":{"tf":1.0},"4":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"678":{"tf":1.0},"699":{"tf":1.4142135623730951},"707":{"tf":1.0},"770":{"tf":1.0},"878":{"tf":1.0},"941":{"tf":1.0}}}},"df":411,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"11":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"136":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"203":{"tf":2.6457513110645907},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":2.23606797749979},"223":{"tf":1.7320508075688772},"224":{"tf":3.4641016151377544},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":3.1622776601683795},"234":{"tf":2.0},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":2.449489742783178},"289":{"tf":3.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"299":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"31":{"tf":1.7320508075688772},"315":{"tf":3.0},"316":{"tf":3.0},"318":{"tf":3.0},"32":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"338":{"tf":2.0},"34":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.4142135623730951},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":3.7416573867739413},"377":{"tf":2.23606797749979},"38":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":2.0},"4":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"419":{"tf":2.0},"423":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":2.0},"443":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"456":{"tf":3.0},"457":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":2.449489742783178},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.4142135623730951},"47":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"484":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.4142135623730951},"499":{"tf":2.0},"5":{"tf":2.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"515":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"52":{"tf":2.0},"520":{"tf":1.4142135623730951},"522":{"tf":2.0},"526":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"538":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"566":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":2.0},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"598":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.4142135623730951},"606":{"tf":1.0},"607":{"tf":1.7320508075688772},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":2.0},"618":{"tf":1.7320508075688772},"619":{"tf":1.4142135623730951},"621":{"tf":2.6457513110645907},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.4142135623730951},"644":{"tf":1.0},"649":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.4142135623730951},"657":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.7320508075688772},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":2.6457513110645907},"673":{"tf":2.6457513110645907},"674":{"tf":2.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.4142135623730951},"68":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"684":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"690":{"tf":1.4142135623730951},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"697":{"tf":1.0},"70":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.0},"721":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"74":{"tf":1.4142135623730951},"742":{"tf":1.0},"75":{"tf":2.0},"752":{"tf":1.4142135623730951},"754":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"763":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":2.0},"773":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"786":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.4142135623730951},"796":{"tf":1.0},"80":{"tf":1.7320508075688772},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":2.0},"804":{"tf":1.0},"807":{"tf":2.0},"809":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"82":{"tf":1.7320508075688772},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"834":{"tf":2.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"86":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":1.7320508075688772},"880":{"tf":1.4142135623730951},"881":{"tf":1.0},"89":{"tf":1.7320508075688772},"898":{"tf":1.0},"9":{"tf":2.23606797749979},"908":{"tf":1.0},"909":{"tf":1.7320508075688772},"91":{"tf":1.0},"916":{"tf":2.0},"919":{"tf":1.0},"92":{"tf":1.0},"920":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"942":{"tf":1.0},"95":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":2.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":3.605551275463989},"97":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":6,"docs":{"289":{"tf":1.7320508075688772},"697":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}},".":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.7320508075688772}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"529":{"tf":1.4142135623730951}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{".":{"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":{"d":{"(":{")":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{".":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"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":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"532":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"531":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{")":{"[":{"0":{"]":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":84,"docs":{"100":{"tf":3.0},"117":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":2.23606797749979},"151":{"tf":2.0},"160":{"tf":1.7320508075688772},"169":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"233":{"tf":1.0},"242":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":2.449489742783178},"276":{"tf":1.0},"289":{"tf":2.6457513110645907},"3":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":2.449489742783178},"316":{"tf":2.0},"317":{"tf":1.4142135623730951},"320":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"423":{"tf":1.0},"443":{"tf":1.0},"46":{"tf":1.0},"469":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"538":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"63":{"tf":1.0},"637":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0},"694":{"tf":1.0},"70":{"tf":1.0},"710":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":2.0},"775":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":3.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"858":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.4142135623730951},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":2.0},"951":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"289":{"tf":1.0},"964":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"663":{"tf":1.0},"673":{"tf":1.0},"682":{"tf":1.0},"697":{"tf":1.0},"74":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}},"df":2,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":11,"docs":{"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.0},"288":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":10,"docs":{"170":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"791":{"tf":1.0},"802":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"234":{"tf":1.0},"51":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":22,"docs":{"132":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"376":{"tf":1.4142135623730951},"526":{"tf":2.0},"527":{"tf":1.0},"528":{"tf":3.3166247903554},"529":{"tf":3.7416573867739413},"530":{"tf":1.0},"531":{"tf":2.6457513110645907},"532":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"762":{"tf":1.0},"78":{"tf":1.0},"817":{"tf":1.7320508075688772},"852":{"tf":1.0},"869":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"0":{".":{"1":{"df":6,"docs":{"882":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"955":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"942":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"941":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"940":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"939":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"938":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"136":{"tf":1.0},"937":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"936":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"935":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"934":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"933":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"932":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"931":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"930":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"754":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":2,"docs":{"929":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"954":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"927":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"926":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"924":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"923":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"922":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"921":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"920":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"919":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"918":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"953":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"917":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"916":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"915":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"952":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"951":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"950":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"949":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"948":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"947":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"946":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"945":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"944":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"943":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"914":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"913":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"2":{"df":1,"docs":{"858":{"tf":1.0}}},"4":{"df":1,"docs":{"857":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"df":1,"docs":{"838":{"tf":1.0}}},"3":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"911":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"910":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"3":{"df":1,"docs":{"903":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"950":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{".":{"3":{".":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{".":{"0":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"881":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"880":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"908":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"565":{"tf":1.0},"907":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"906":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"905":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"904":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"879":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"878":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"877":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"876":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"875":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"874":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"872":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"871":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"870":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"869":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"868":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"867":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"866":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"865":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"864":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"863":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"862":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"860":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"859":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"858":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"857":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"856":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"855":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":3,"docs":{"901":{"tf":1.7320508075688772},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"854":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"853":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"852":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"851":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"834":{"tf":1.0},"849":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"848":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"847":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"846":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"844":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"842":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"841":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"840":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"839":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"838":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"837":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"836":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"835":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"834":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"833":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"832":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"831":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"830":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"829":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"828":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"827":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"825":{"tf":1.0},"826":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"825":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"824":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"822":{"tf":1.0},"823":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"821":{"tf":1.0},"822":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"821":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"0":{"df":2,"docs":{"810":{"tf":1.0},"811":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"810":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"809":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"808":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"820":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"818":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"817":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"816":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"815":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"814":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"813":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"812":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"807":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"806":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"805":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"803":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":2,"docs":{"380":{"tf":1.0},"802":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"801":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"800":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"752":{"tf":1.0}}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"799":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"798":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"797":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"796":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"795":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":5,"docs":{"896":{"tf":1.7320508075688772},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"824":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"895":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"792":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"791":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"790":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"789":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"788":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"787":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"785":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"784":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"782":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"781":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"780":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"779":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"778":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"777":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":2,"docs":{"136":{"tf":1.0},"776":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"774":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"528":{"tf":1.0}}},"5":{".":{"0":{".":{"0":{"df":2,"docs":{"893":{"tf":1.7320508075688772},"894":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"892":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"891":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"890":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":3,"docs":{"764":{"tf":1.0},"767":{"tf":1.0},"772":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"770":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"769":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"768":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"766":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":3,"docs":{"764":{"tf":1.0},"765":{"tf":1.4142135623730951},"767":{"tf":1.0}}},"1":{"df":1,"docs":{"764":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"763":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"762":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"761":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"759":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"758":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"757":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"756":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"753":{"tf":1.0},"755":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"754":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"753":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"716":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"752":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"751":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"750":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"749":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"748":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"746":{"tf":1.0},"747":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"746":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"745":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"744":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"743":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"741":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"740":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"739":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"738":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"737":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"736":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"735":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"733":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"732":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"731":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"729":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"728":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"772":{"tf":1.0}}},"1":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"756":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"727":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"726":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"725":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"724":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"723":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"722":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":2,"docs":{"425":{"tf":1.0},"721":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"718":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"717":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"716":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"715":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{".":{"0":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"735":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"731":{"tf":1.0}}},"8":{"df":1,"docs":{"721":{"tf":1.0}}},"9":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"347":{"tf":1.4142135623730951},"360":{"tf":1.0},"367":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.0},"507":{"tf":1.4142135623730951},"565":{"tf":2.0},"577":{"tf":1.4142135623730951},"642":{"tf":1.0},"651":{"tf":1.0},"803":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":2.8284271247461903}}}}}}}}},"df":34,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"618":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":3.872983346207417},"698":{"tf":1.0},"772":{"tf":1.0},"802":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"913":{"tf":1.4142135623730951},"915":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":176,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"202":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"298":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.7320508075688772},"352":{"tf":1.0},"357":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":2.23606797749979},"373":{"tf":1.0},"376":{"tf":3.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"393":{"tf":1.4142135623730951},"395":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"401":{"tf":2.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.7320508075688772},"406":{"tf":1.7320508075688772},"412":{"tf":1.7320508075688772},"414":{"tf":1.7320508075688772},"416":{"tf":3.0},"419":{"tf":1.4142135623730951},"422":{"tf":1.0},"425":{"tf":3.7416573867739413},"427":{"tf":3.3166247903554},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":3.0},"440":{"tf":1.4142135623730951},"443":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.0},"457":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.7320508075688772},"471":{"tf":2.0},"476":{"tf":2.23606797749979},"480":{"tf":3.872983346207417},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":2.23606797749979},"497":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":4.0},"508":{"tf":2.0},"510":{"tf":1.4142135623730951},"514":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"522":{"tf":2.0},"526":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":2.23606797749979},"531":{"tf":3.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"543":{"tf":1.7320508075688772},"549":{"tf":1.0},"551":{"tf":1.7320508075688772},"553":{"tf":2.449489742783178},"554":{"tf":1.4142135623730951},"557":{"tf":1.0},"560":{"tf":1.7320508075688772},"563":{"tf":1.7320508075688772},"565":{"tf":2.0},"568":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"572":{"tf":1.0},"575":{"tf":1.7320508075688772},"577":{"tf":3.1622776601683795},"578":{"tf":2.0},"580":{"tf":1.7320508075688772},"583":{"tf":1.0},"588":{"tf":1.7320508075688772},"589":{"tf":1.0},"591":{"tf":2.0},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.7320508075688772},"600":{"tf":2.8284271247461903},"601":{"tf":2.0},"606":{"tf":1.0},"609":{"tf":1.7320508075688772},"611":{"tf":2.0},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.7320508075688772},"623":{"tf":1.7320508075688772},"632":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"642":{"tf":1.7320508075688772},"644":{"tf":1.0},"652":{"tf":1.4142135623730951},"664":{"tf":1.0},"677":{"tf":1.0},"684":{"tf":1.0},"73":{"tf":2.449489742783178},"756":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":3.4641016151377544},"791":{"tf":1.0},"799":{"tf":1.0},"80":{"tf":1.0},"801":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"82":{"tf":1.0},"830":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"857":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.4142135623730951},"88":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"914":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.0},"94":{"tf":2.449489742783178},"952":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"553":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":6,"docs":{"324":{"tf":1.0},"347":{"tf":2.0},"473":{"tf":1.0},"565":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"203":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"229":{"tf":2.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"348":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":2.0},"368":{"tf":1.4142135623730951},"369":{"tf":2.0},"374":{"tf":1.4142135623730951},"375":{"tf":2.0},"402":{"tf":1.0},"619":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":2.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.0},"841":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"665":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"665":{"tf":1.0}}}}},"df":2,"docs":{"315":{"tf":1.0},"318":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"655":{"tf":1.0},"658":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"184":{"tf":1.0},"234":{"tf":1.0},"246":{"tf":1.0},"704":{"tf":1.0},"924":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"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":{"448":{"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":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"690":{"tf":1.0},"921":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"739":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"117":{"tf":1.0},"173":{"tf":1.0},"674":{"tf":1.0},"693":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"652":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"5":{"df":1,"docs":{"44":{"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":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":103,"docs":{"11":{"tf":2.6457513110645907},"117":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"173":{"tf":1.7320508075688772},"175":{"tf":2.0},"224":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":2.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"288":{"tf":2.6457513110645907},"289":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":2.449489742783178},"44":{"tf":2.23606797749979},"456":{"tf":1.0},"48":{"tf":1.7320508075688772},"484":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"529":{"tf":1.0},"561":{"tf":1.0},"63":{"tf":1.0},"669":{"tf":2.449489742783178},"673":{"tf":2.0},"685":{"tf":3.0},"692":{"tf":2.23606797749979},"721":{"tf":1.0},"727":{"tf":1.0},"731":{"tf":1.4142135623730951},"735":{"tf":1.0},"739":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":2.23606797749979},"763":{"tf":1.7320508075688772},"768":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"78":{"tf":1.0},"783":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"843":{"tf":1.0},"848":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":2.23606797749979},"862":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"897":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":1.0},"915":{"tf":1.7320508075688772},"916":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"936":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"a":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}}},"df":13,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"354":{"tf":1.0},"656":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"742":{"tf":1.0},"837":{"tf":1.0},"906":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"1":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":34,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"136":{"tf":1.0},"218":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.0},"352":{"tf":1.7320508075688772},"356":{"tf":1.0},"363":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.7320508075688772},"569":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"890":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"563":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"566":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"566":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"566":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"566":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"565":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"690":{"tf":1.0},"691":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"19":{"tf":1.7320508075688772},"689":{"tf":1.0},"690":{"tf":2.0},"691":{"tf":1.7320508075688772},"692":{"tf":1.0},"915":{"tf":1.4142135623730951},"939":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":4,"docs":{"670":{"tf":1.7320508075688772},"672":{"tf":1.7320508075688772},"673":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"41":{"tf":1.0},"968":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}},"d":{"df":9,"docs":{"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"n":{"df":1,"docs":{"738":{"tf":1.0}}}},"s":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"744":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"127":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"652":{"tf":1.0},"715":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"801":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"861":{"tf":1.0},"958":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"867":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"203":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"880":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":30,"docs":{"246":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"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.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}}}}}}}}}},"l":{"df":4,"docs":{"315":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"894":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"834":{"tf":1.0},"915":{"tf":1.0},"94":{"tf":1.4142135623730951},"958":{"tf":1.0},"96":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"315":{"tf":1.0},"328":{"tf":1.0},"356":{"tf":1.0},"830":{"tf":1.7320508075688772},"858":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"969":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"958":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"861":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"50":{"tf":1.0},"669":{"tf":1.4142135623730951},"674":{"tf":1.0},"677":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"776":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"924":{"tf":1.0},"948":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"545":{"tf":1.0},"632":{"tf":1.0},"636":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"df":23,"docs":{"0":{"tf":1.0},"218":{"tf":1.0},"233":{"tf":1.7320508075688772},"243":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"894":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"909":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.7320508075688772},"952":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"342":{"tf":1.0},"912":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"241":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":11,"docs":{"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"218":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"712":{"tf":1.7320508075688772},"9":{"tf":1.0},"957":{"tf":2.0},"958":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"131":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"31":{"tf":1.0},"379":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"679":{"tf":1.0},"786":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"5":{"tf":1.0},"957":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"19":{"tf":1.4142135623730951},"673":{"tf":2.23606797749979},"751":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.4142135623730951},"815":{"tf":1.0},"820":{"tf":1.4142135623730951},"831":{"tf":1.0},"832":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"867":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"195":{"tf":1.0},"82":{"tf":1.0},"960":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"110":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"89":{"tf":1.0},"968":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.0},"387":{"tf":1.0},"801":{"tf":1.0},"862":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"233":{"tf":1.0},"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"190":{"tf":1.0},"258":{"tf":1.0},"371":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"79":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"655":{"tf":1.0},"658":{"tf":1.0},"715":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"376":{"tf":1.0},"595":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"289":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"n":{"d":{"df":1,"docs":{"342":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"890":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"241":{"tf":1.4142135623730951},"905":{"tf":1.4142135623730951},"906":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":2.0},"19":{"tf":1.0},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"272":{"tf":1.0},"289":{"tf":1.0},"673":{"tf":1.0},"690":{"tf":1.4142135623730951},"711":{"tf":2.449489742783178},"749":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"804":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"867":{"tf":1.0},"886":{"tf":1.0},"904":{"tf":1.0},"910":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.0},"929":{"tf":1.4142135623730951},"958":{"tf":1.0}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"129":{"tf":1.0},"132":{"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":{}},"s":{"df":0,"docs":{},"h":{"df":30,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"315":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":26,"docs":{"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.4142135623730951},"259":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"330":{"tf":1.0},"379":{"tf":1.0},"454":{"tf":1.0},"677":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.4142135623730951},"853":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"289":{"tf":1.0},"342":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"618":{"tf":1.0},"693":{"tf":1.0},"698":{"tf":1.0},"730":{"tf":1.0},"751":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"915":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"803":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"105":{"tf":1.0},"294":{"tf":1.4142135623730951},"697":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"927":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":47,"docs":{"100":{"tf":1.0},"107":{"tf":1.7320508075688772},"114":{"tf":1.0},"19":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":3.0},"224":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":2.0},"673":{"tf":1.4142135623730951},"680":{"tf":1.0},"70":{"tf":1.0},"712":{"tf":1.0},"725":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"79":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"834":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"86":{"tf":1.7320508075688772},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.0},"91":{"tf":1.0},"929":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"22":{"tf":2.0},"834":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"113":{"tf":1.0},"118":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"958":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"736":{"tf":1.0},"867":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"d":{"!":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"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":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"710":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":1.0},"652":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.0},"653":{"tf":1.0},"665":{"tf":1.0},"761":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"127":{"tf":1.0},"315":{"tf":1.0},"340":{"tf":1.0},"694":{"tf":1.7320508075688772},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"753":{"tf":1.0},"79":{"tf":1.0},"809":{"tf":1.0},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"570":{"tf":1.0},"968":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"877":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"782":{"tf":1.0}}}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"19":{"tf":1.7320508075688772},"751":{"tf":1.0},"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"132":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"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":{"798":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":18,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"657":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"786":{"tf":1.0},"833":{"tf":1.0},"855":{"tf":1.4142135623730951},"858":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"652":{"tf":1.0}}}}}}}}}},"0":{"df":17,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"416":{"tf":1.0},"642":{"tf":1.0}}},"2":{"df":3,"docs":{"480":{"tf":1.0},"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"333":{"tf":1.0},"334":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":17,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"136":{"tf":2.0},"205":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":2.0},"484":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"701":{"tf":1.0},"775":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"916":{"tf":1.4142135623730951},"936":{"tf":1.0}},"l":{"df":1,"docs":{"132":{"tf":1.0}}},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"701":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":59,"docs":{"108":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"138":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"276":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":2.0},"281":{"tf":1.4142135623730951},"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.0},"289":{"tf":1.0},"290":{"tf":2.0},"291":{"tf":1.4142135623730951},"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":2.0},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"387":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"678":{"tf":1.4142135623730951},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":2.0},"857":{"tf":1.0}}}}}}}}},"df":1,"docs":{"701":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"795":{"tf":1.0},"830":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":3,"docs":{"226":{"tf":1.0},"422":{"tf":1.0},"537":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"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":{},"p":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"402":{"tf":1.0},"493":{"tf":1.0},"619":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"z":{"0":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"a":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}},"title":{"root":{"0":{"1":{"df":28,"docs":{"732":{"tf":1.0},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"766":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"817":{"tf":1.0},"829":{"tf":1.0},"855":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"896":{"tf":1.0},"899":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0}}},"2":{"df":18,"docs":{"730":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"791":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"816":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}}},"3":{"df":27,"docs":{"728":{"tf":1.0},"729":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.0},"804":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"872":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"909":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.0},"934":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0}}},"4":{":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"727":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"760":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"798":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"892":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0}}},"5":{"df":30,"docs":{"716":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"871":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.0},"910":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}}},"6":{"df":24,"docs":{"720":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"775":{"tf":1.0},"786":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"898":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0}}},"7":{"df":26,"docs":{"717":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"869":{"tf":1.0},"886":{"tf":1.0},"913":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0}}},"8":{"df":21,"docs":{"719":{"tf":1.0},"720":{"tf":1.0},"736":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"766":{"tf":1.0},"768":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"919":{"tf":1.0}}},"9":{"df":30,"docs":{"718":{"tf":1.0},"735":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"796":{"tf":1.0},"803":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"860":{"tf":1.0},"884":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":33,"docs":{"275":{"tf":1.0},"717":{"tf":1.0},"734":{"tf":1.0},"739":{"tf":1.0},"744":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"829":{"tf":1.0},"842":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"917":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"952":{"tf":1.0}}},"1":{"df":37,"docs":{"715":{"tf":1.0},"716":{"tf":1.0},"733":{"tf":1.0},"741":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"831":{"tf":1.0},"849":{"tf":1.0},"857":{"tf":1.0},"865":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"938":{"tf":1.0}}},"2":{"df":24,"docs":{"729":{"tf":1.0},"731":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"801":{"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},"819":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0}}},"3":{"df":4,"docs":{"752":{"tf":1.0},"789":{"tf":1.0},"854":{"tf":1.0},"947":{"tf":1.0}}},"4":{"df":4,"docs":{"774":{"tf":1.0},"867":{"tf":1.0},"907":{"tf":1.0},"946":{"tf":1.0}}},"5":{"df":8,"docs":{"743":{"tf":1.0},"755":{"tf":1.0},"770":{"tf":1.0},"780":{"tf":1.0},"809":{"tf":1.0},"813":{"tf":1.0},"902":{"tf":1.0},"922":{"tf":1.0}}},"6":{"df":9,"docs":{"732":{"tf":1.0},"773":{"tf":1.0},"788":{"tf":1.0},"804":{"tf":1.0},"841":{"tf":1.0},"866":{"tf":1.0},"901":{"tf":1.0},"904":{"tf":1.0},"932":{"tf":1.0}}},"7":{"df":15,"docs":{"754":{"tf":1.0},"769":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"800":{"tf":1.0},"812":{"tf":1.0},"818":{"tf":1.0},"836":{"tf":1.0},"864":{"tf":1.0},"870":{"tf":1.0},"914":{"tf":1.0},"928":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}}},"8":{"df":10,"docs":{"759":{"tf":1.0},"784":{"tf":1.0},"808":{"tf":1.0},"830":{"tf":1.0},"876":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.0}}},"9":{"df":6,"docs":{"751":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0}}},"df":5,"docs":{"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0}}},"2":{"0":{"1":{"9":{"df":18,"docs":{"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":57,"docs":{"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.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0}}},"1":{"df":71,"docs":{"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"855":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0}}},"2":{"df":36,"docs":{"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.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},"765":{"tf":1.0},"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},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0}}},"3":{"df":33,"docs":{"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},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0}}},"4":{"df":25,"docs":{"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},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"740":{"tf":1.0},"772":{"tf":1.0},"840":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"931":{"tf":1.0},"942":{"tf":1.0}}},"1":{"df":5,"docs":{"719":{"tf":1.0},"873":{"tf":1.0},"894":{"tf":1.0},"912":{"tf":1.0},"935":{"tf":1.0}}},"2":{"df":13,"docs":{"727":{"tf":1.0},"765":{"tf":1.0},"805":{"tf":1.0},"828":{"tf":1.0},"839":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.0},"920":{"tf":1.0},"930":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0}}},"3":{"df":8,"docs":{"721":{"tf":1.0},"723":{"tf":1.0},"734":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"859":{"tf":1.0},"891":{"tf":1.0},"954":{"tf":1.0}}},"4":{"df":9,"docs":{"718":{"tf":1.0},"742":{"tf":1.0},"758":{"tf":1.0},"827":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"846":{"tf":1.0},"896":{"tf":1.0},"953":{"tf":1.0}}},"5":{"df":10,"docs":{"753":{"tf":1.0},"757":{"tf":1.0},"771":{"tf":1.0},"792":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"834":{"tf":1.0},"845":{"tf":1.0},"893":{"tf":1.0},"916":{"tf":1.0}}},"6":{"df":12,"docs":{"749":{"tf":1.0},"750":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"844":{"tf":1.0},"855":{"tf":1.0},"863":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"948":{"tf":1.0}}},"7":{"df":4,"docs":{"833":{"tf":1.0},"862":{"tf":1.0},"900":{"tf":1.0},"906":{"tf":1.0}}},"8":{"df":7,"docs":{"715":{"tf":1.0},"728":{"tf":1.0},"737":{"tf":1.0},"761":{"tf":1.0},"793":{"tf":1.0},"824":{"tf":1.0},"852":{"tf":1.0}}},"9":{"df":7,"docs":{"730":{"tf":1.0},"787":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"880":{"tf":1.0}}},"df":5,"docs":{"191":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"259":{"tf":1.0},"267":{"tf":1.0}}},"3":{"0":{"df":6,"docs":{"733":{"tf":1.0},"748":{"tf":1.0},"802":{"tf":1.0},"892":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0}}},"1":{"df":4,"docs":{"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"799":{"tf":1.0}}},"df":1,"docs":{"268":{"tf":1.0}}},"4":{"df":1,"docs":{"269":{"tf":1.0}}},"5":{"df":1,"docs":{"270":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"8":{"df":1,"docs":{"273":{"tf":1.0}}},"9":{"df":1,"docs":{"274":{"tf":1.0}}},"a":{".":{"df":0,"docs":{},"k":{".":{"a":{"df":2,"docs":{"187":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"356":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"475":{"tf":1.0},"493":{"tf":1.0},"574":{"tf":1.0},"585":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"476":{"tf":1.0},"494":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"505":{"tf":1.0},"517":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"257":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"691":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"d":{"df":10,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"445":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"961":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}}},"df":13,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"379":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0}}},"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":{},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"316":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"671":{"tf":1.0},"674":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":66,"docs":{"112":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.0},"318":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"372":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"403":{"tf":1.0},"405":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"444":{"tf":1.0},"447":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.0},"479":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"516":{"tf":1.0},"518":{"tf":1.0},"527":{"tf":1.0},"530":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"550":{"tf":1.0},"552":{"tf":1.0},"562":{"tf":1.0},"564":{"tf":1.0},"573":{"tf":1.0},"576":{"tf":1.0},"584":{"tf":1.0},"587":{"tf":1.0},"597":{"tf":1.0},"599":{"tf":1.0},"608":{"tf":1.0},"610":{"tf":1.0},"620":{"tf":1.0},"622":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"648":{"tf":1.0},"650":{"tf":1.0},"964":{"tf":1.0}}},"p":{"df":1,"docs":{"679":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"5":{"tf":1.0},"966":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":15,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"142":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"51":{"tf":1.0},"671":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"101":{"tf":1.0},"80":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"205":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"692":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}},"df":3,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"695":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"245":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"125":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"561":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"684":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"140":{"tf":1.0},"675":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"310":{"tf":1.0},"311":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"958":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"706":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"381":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"241":{"tf":1.0},"245":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"26":{"tf":1.0},"268":{"tf":1.0},"63":{"tf":1.0},"663":{"tf":1.0},"671":{"tf":1.0},"676":{"tf":1.0},"682":{"tf":1.0},"684":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"691":{"tf":1.0},"81":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"458":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"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":1,"docs":{"285":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"50":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"204":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"118":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"270":{"tf":1.0},"379":{"tf":1.0},"714":{"tf":1.0},"889":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"713":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"72":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"78":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"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":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"117":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"689":{"tf":1.0},"691":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"258":{"tf":1.0},"663":{"tf":1.0},"676":{"tf":1.0},"682":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"260":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"20":{"tf":1.0},"316":{"tf":1.0},"43":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"967":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"959":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"654":{"tf":1.0},"659":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"402":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"619":{"tf":1.0},"75":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"401":{"tf":1.0},"412":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"50":{"tf":1.0},"674":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"317":{"tf":1.0},"336":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"546":{"tf":1.0}}}}}}}}},"df":29,"docs":{"117":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"389":{"tf":1.0},"399":{"tf":1.0},"410":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":1.0},"535":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.4142135623730951},"592":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.0},"627":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"183":{"tf":1.0},"684":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"549":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":18,"docs":{"215":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"348":{"tf":1.0},"352":{"tf":1.0},"363":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"138":{"tf":1.0},"147":{"tf":1.0},"256":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"645":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"159":{"tf":1.0},"164":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"626":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"153":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"272":{"tf":1.0},"462":{"tf":1.0},"52":{"tf":1.0}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"321":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"471":{"tf":1.0},"488":{"tf":1.0},"503":{"tf":1.0},"515":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"182":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"339":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"179":{"tf":1.0},"180":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"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":{"969":{"tf":1.0}}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"57":{"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":{"698":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"229":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"273":{"tf":1.0},"34":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"165":{"tf":1.0},"171":{"tf":1.0},"213":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"344":{"tf":1.0},"55":{"tf":1.0},"560":{"tf":1.0},"679":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"347":{"tf":1.0},"645":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"340":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"254":{"tf":1.0},"326":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"209":{"tf":1.0},"330":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"685":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"626":{"tf":1.0},"672":{"tf":1.0}}}}},"r":{"a":{"df":20,"docs":{"388":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"510":{"tf":1.0},"522":{"tf":1.0},"534":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"568":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"350":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":15,"docs":{"108":{"tf":1.0},"20":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"85":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"231":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"378":{"tf":1.0},"967":{"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":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"687":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"306":{"tf":1.0},"35":{"tf":1.0},"888":{"tf":1.0},"968":{"tf":1.0}}}}},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"j":{"df":1,"docs":{"240":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.0}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"369":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"44":{"tf":1.0},"692":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"375":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":54,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"29":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"39":{"tf":1.0},"402":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"619":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"671":{"tf":1.0},"674":{"tf":1.0},"68":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"691":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"712":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"957":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"670":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"702":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"959":{"tf":1.0},"968":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"259":{"tf":1.0},"561":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"34":{"tf":1.0},"423":{"tf":1.0},"538":{"tf":1.0},"630":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"222":{"tf":1.0},"349":{"tf":1.0},"4":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"965":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"263":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"691":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"692":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"232":{"tf":1.0},"674":{"tf":1.0},"679":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"685":{"tf":1.0}},"r":{"df":12,"docs":{"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},"208":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"673":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"o":{"df":7,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"50":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"267":{"tf":1.0}}}},"t":{"df":0,"docs":{},"’":{"df":1,"docs":{"182":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"121":{"tf":1.0},"169":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"698":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"b":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"225":{"tf":1.0},"656":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"377":{"tf":1.0},"378":{"tf":1.0},"391":{"tf":1.0},"412":{"tf":1.0},"433":{"tf":1.0},"488":{"tf":1.0},"515":{"tf":1.0},"583":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"’":{"df":1,"docs":{"253":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"270":{"tf":1.0},"309":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"135":{"tf":1.0},"357":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"227":{"tf":1.0},"689":{"tf":1.0}}},"t":{"df":2,"docs":{"38":{"tf":1.0},"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"344":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":10,"docs":{"217":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"44":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"62":{"tf":1.0},"672":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":1,"docs":{"686":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"459":{"tf":1.0},"477":{"tf":1.0},"711":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"503":{"tf":1.0},"515":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"204":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"225":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"221":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":84,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"35":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"619":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"67":{"tf":1.0},"677":{"tf":1.0},"69":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"277":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"196":{"tf":1.0},"274":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"262":{"tf":1.0},"263":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"202":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"281":{"tf":1.0},"286":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"687":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"w":{"df":7,"docs":{"102":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0},"961":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"680":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"546":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"638":{"tf":1.0},"645":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"683":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"671":{"tf":1.0}}}}}}},"n":{"c":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0}}}}}}},"s":{"/":{"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":{"271":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"184":{"tf":1.0},"653":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0},"962":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":51,"docs":{"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"545":{"tf":1.0},"547":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"644":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"683":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"223":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":44,"docs":{"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.4142135623730951},"275":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"336":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"647":{"tf":1.0},"66":{"tf":1.0},"678":{"tf":1.0},"709":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"696":{"tf":1.0},"697":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"704":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}},"e":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":11,"docs":{"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"700":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"115":{"tf":1.0},"958":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{".":{"0":{"df":4,"docs":{"894":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"903":{"tf":1.0}}},"1":{"df":2,"docs":{"899":{"tf":1.0},"902":{"tf":1.0}}},"2":{"df":1,"docs":{"898":{"tf":1.0}}},"3":{"df":1,"docs":{"897":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"967":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"692":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":2,"docs":{"59":{"tf":1.0},"61":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"115":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"119":{"tf":1.0},"192":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.0},"268":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"121":{"tf":1.0},"267":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"169":{"tf":1.0},"18":{"tf":1.0},"235":{"tf":1.0},"658":{"tf":1.0},"673":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"661":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"595":{"tf":1.0},"596":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"157":{"tf":1.0},"177":{"tf":1.0},"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":23,"docs":{"205":{"tf":1.0},"389":{"tf":1.0},"399":{"tf":1.0},"410":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":1.0},"535":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"569":{"tf":1.0},"592":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.0},"627":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"618":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"563":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":27,"docs":{"114":{"tf":1.0},"258":{"tf":1.0},"327":{"tf":1.0},"382":{"tf":1.0},"392":{"tf":1.0},"403":{"tf":1.0},"413":{"tf":1.0},"424":{"tf":1.0},"434":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"516":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"550":{"tf":1.0},"562":{"tf":1.0},"573":{"tf":1.0},"584":{"tf":1.0},"597":{"tf":1.0},"608":{"tf":1.0},"620":{"tf":1.0},"631":{"tf":1.0},"639":{"tf":1.0},"679":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"182":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":26,"docs":{"3":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"502":{"tf":1.0},"513":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"581":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"964":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"336":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"20":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"113":{"tf":1.0},"120":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.0},"159":{"tf":1.0},"164":{"tf":1.0},"262":{"tf":1.0},"698":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":11,"docs":{"15":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"58":{"tf":1.0},"673":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"295":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"181":{"tf":1.0},"182":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"183":{"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":3,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"283":{"tf":1.0},"293":{"tf":1.0},"302":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"663":{"tf":1.0},"682":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":22,"docs":{"121":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"340":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"674":{"tf":1.0},"688":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"78":{"tf":1.0},"965":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"354":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"267":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"366":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":24,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"330":{"tf":1.0},"35":{"tf":1.0},"383":{"tf":1.0},"393":{"tf":1.0},"41":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"446":{"tf":1.0},"529":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"460":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"254":{"tf":1.0},"676":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"541":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":1,"docs":{"339":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"118":{"tf":1.0},"219":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"105":{"tf":1.0},"222":{"tf":1.0},"31":{"tf":1.0},"349":{"tf":1.0},"4":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"84":{"tf":1.0},"965":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"253":{"tf":1.0},"456":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"675":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}},"u":{"df":1,"docs":{"320":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"680":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"474":{"tf":1.0},"491":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"457":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"422":{"tf":1.0},"433":{"tf":1.0},"443":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"130":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"301":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"133":{"tf":1.0},"561":{"tf":1.0},"648":{"tf":1.0},"66":{"tf":1.0},"710":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"136":{"tf":1.0},"259":{"tf":1.0},"649":{"tf":1.0}},"p":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"107":{"tf":1.0},"44":{"tf":1.0},"86":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"232":{"tf":1.0},"657":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":9,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"340":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"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":{"63":{"tf":1.0}}},"y":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":32,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"318":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.0},"394":{"tf":1.0},"405":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"463":{"tf":1.0},"479":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"542":{"tf":1.0},"552":{"tf":1.0},"564":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"599":{"tf":1.0},"610":{"tf":1.0},"622":{"tf":1.0},"633":{"tf":1.0},"641":{"tf":1.0},"650":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":23,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":23,"docs":{"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"887":{"tf":1.0}}},"2":{"df":1,"docs":{"886":{"tf":1.0}}},"3":{"df":1,"docs":{"885":{"tf":1.0}}},"4":{"df":1,"docs":{"884":{"tf":1.0}}},"5":{"df":1,"docs":{"883":{"tf":1.0}}},"6":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"629":{"tf":1.0},"684":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"75":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"316":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"272":{"tf":1.0},"471":{"tf":1.0},"488":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"o":{"df":1,"docs":{"246":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"320":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"707":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"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":1,"docs":{"49":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"468":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"712":{"tf":1.0},"957":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"379":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"310":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"714":{"tf":1.0},"889":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"116":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"230":{"tf":1.0},"537":{"tf":1.0},"546":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"346":{"tf":1.0},"699":{"tf":1.0}}}},"df":19,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"28":{"tf":1.0},"326":{"tf":1.0},"461":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"671":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"183":{"tf":1.0},"2":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"963":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"526":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"0":{".":{"1":{"df":6,"docs":{"882":{"tf":1.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"956":{"tf":1.0}}},"1":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"942":{"tf":1.0}}},"1":{"df":1,"docs":{"941":{"tf":1.0}}},"2":{"df":1,"docs":{"940":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"938":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"937":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"936":{"tf":1.0}}},"1":{"df":1,"docs":{"935":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"931":{"tf":1.0}}},"1":{"df":1,"docs":{"930":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"954":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"927":{"tf":1.0}}},"1":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"920":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"919":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"918":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"953":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"917":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"950":{"tf":1.0}}},"1":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"947":{"tf":1.0}}},"1":{"df":1,"docs":{"946":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"945":{"tf":1.0}}},"1":{"df":1,"docs":{"944":{"tf":1.0}}},"2":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"910":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"880":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"909":{"tf":1.0}}},"1":{"df":1,"docs":{"908":{"tf":1.0}}},"2":{"df":1,"docs":{"907":{"tf":1.0}}},"3":{"df":1,"docs":{"906":{"tf":1.0}}},"4":{"df":1,"docs":{"905":{"tf":1.0}}},"5":{"df":1,"docs":{"904":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"878":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"877":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"875":{"tf":1.0}}},"1":{"df":1,"docs":{"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"871":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"870":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"869":{"tf":1.0}}},"1":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"866":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"863":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"861":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"857":{"tf":1.0}}},"1":{"df":1,"docs":{"856":{"tf":1.0}}},"2":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":3,"docs":{"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"854":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"853":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"852":{"tf":1.0}}},"1":{"df":1,"docs":{"851":{"tf":1.0}}},"2":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"849":{"tf":1.0}}},"1":{"df":1,"docs":{"848":{"tf":1.0}}},"2":{"df":1,"docs":{"847":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"846":{"tf":1.0}}},"1":{"df":1,"docs":{"845":{"tf":1.0}}},"2":{"df":1,"docs":{"844":{"tf":1.0}}},"3":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"841":{"tf":1.0}}},"1":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"839":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"837":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"836":{"tf":1.0}}},"1":{"df":1,"docs":{"835":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"833":{"tf":1.0}}},"1":{"df":1,"docs":{"832":{"tf":1.0}}},"2":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"830":{"tf":1.0}}},"1":{"df":1,"docs":{"829":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"828":{"tf":1.0}}},"1":{"df":1,"docs":{"827":{"tf":1.0}}},"2":{"df":1,"docs":{"826":{"tf":1.0}}},"3":{"df":1,"docs":{"825":{"tf":1.0}}},"4":{"df":1,"docs":{"824":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"1":{"df":1,"docs":{"822":{"tf":1.0}}},"2":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"811":{"tf":1.0}}},"1":{"df":1,"docs":{"810":{"tf":1.0}}},"2":{"df":1,"docs":{"809":{"tf":1.0}}},"3":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"819":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"818":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"816":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"814":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"813":{"tf":1.0}}},"1":{"df":1,"docs":{"812":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"1":{"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"1":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"799":{"tf":1.0}}},"1":{"df":1,"docs":{"798":{"tf":1.0}}},"2":{"df":1,"docs":{"797":{"tf":1.0}}},"3":{"df":1,"docs":{"796":{"tf":1.0}}},"4":{"df":1,"docs":{"795":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":5,"docs":{"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"792":{"tf":1.0}}},"1":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"788":{"tf":1.0}}},"1":{"df":1,"docs":{"787":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.0}}},"1":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"783":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"782":{"tf":1.0}}},"1":{"df":1,"docs":{"781":{"tf":1.0}}},"2":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"779":{"tf":1.0}}},"1":{"df":1,"docs":{"778":{"tf":1.0}}},"2":{"df":1,"docs":{"777":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"775":{"tf":1.0}}},"1":{"df":1,"docs":{"774":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":2,"docs":{"893":{"tf":1.0},"894":{"tf":1.0}}},"1":{"df":1,"docs":{"892":{"tf":1.0}}},"2":{"df":1,"docs":{"891":{"tf":1.0}}},"3":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"772":{"tf":1.0}}},"1":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"770":{"tf":1.0}}},"1":{"df":1,"docs":{"769":{"tf":1.0}}},"2":{"df":1,"docs":{"768":{"tf":1.0}}},"3":{"df":1,"docs":{"767":{"tf":1.0}}},"4":{"df":1,"docs":{"766":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"765":{"tf":1.0}}},"1":{"df":1,"docs":{"764":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"756":{"tf":1.0}}},"1":{"df":1,"docs":{"755":{"tf":1.0}}},"2":{"df":1,"docs":{"754":{"tf":1.0}}},"3":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"1":{"df":1,"docs":{"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"750":{"tf":1.0}}},"1":{"df":1,"docs":{"749":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"748":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"747":{"tf":1.0}}},"1":{"df":1,"docs":{"746":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"745":{"tf":1.0}}},"1":{"df":1,"docs":{"744":{"tf":1.0}}},"2":{"df":1,"docs":{"743":{"tf":1.0}}},"3":{"df":1,"docs":{"742":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"735":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"729":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{".":{"0":{".":{"0":{"df":1,"docs":{"727":{"tf":1.0}}},"1":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"725":{"tf":1.0}}},"1":{"df":1,"docs":{"724":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"722":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"718":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"117":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"468":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"685":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"218":{"tf":1.0},"352":{"tf":1.0},"363":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"690":{"tf":1.0},"691":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"672":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"272":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"247":{"tf":1.0},"250":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"711":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"256":{"tf":1.0},"83":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"107":{"tf":1.0},"86":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"694":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":8,"docs":{"20":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}});
\ No newline at end of file
+Object.assign(window.search, {"doc_urls":["index.html#introduction","index.html#sections","index.html#user-guides","index.html#api-reference","index.html#sdk-specific-information","index.html#appendix","index.html#contact","index.html#license","user/adding-glean-to-your-project/index.html#adding-glean-to-your-project","user/adding-glean-to-your-project/index.html#glean-integration-checklist","user/adding-glean-to-your-project/kotlin.html#adding-glean-to-your-kotlin-project","user/adding-glean-to-your-project/kotlin.html#setting-up-the-dependency","user/adding-glean-to-your-project/kotlin.html#dependency-for-local-testing","user/adding-glean-to-your-project/kotlin.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/swift.html#adding-glean-to-your-swift-project","user/adding-glean-to-your-project/swift.html#requirements","user/adding-glean-to-your-project/swift.html#setting-up-the-dependency","user/adding-glean-to-your-project/swift.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/python.html#adding-glean-to-your-python-project","user/adding-glean-to-your-project/python.html#setting-up-the-dependency","user/adding-glean-to-your-project/python.html#consuming-yaml-registry-files","user/adding-glean-to-your-project/python.html#automation-steps","user/adding-glean-to-your-project/python.html#parallelism","user/adding-glean-to-your-project/rust.html#adding-glean-to-your-rust-project","user/adding-glean-to-your-project/rust.html#setting-up-the-dependency","user/adding-glean-to-your-project/rust.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/rust.html#glean-build-is-in-beta","user/adding-glean-to-your-project/rust.html#include-the-generated-code","user/adding-glean-to-your-project/rust.html#use-the-metrics","user/adding-glean-to-your-project/javascript.html#adding-glean-to-your-javascript-project","user/adding-glean-to-your-project/javascript.html#requirements","user/adding-glean-to-your-project/javascript.html#browser-extension-specific-requirements","user/adding-glean-to-your-project/javascript.html#setting-up-the-dependency","user/adding-glean-to-your-project/javascript.html#browser-extension-security-considerations","user/adding-glean-to-your-project/javascript.html#common-import-errors","user/adding-glean-to-your-project/javascript.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/javascript.html#automation-steps","user/adding-glean-to-your-project/javascript.html#documentation","user/adding-glean-to-your-project/javascript.html#yaml-registry-files-linting","user/adding-glean-to-your-project/qt.html#adding-glean-to-your-qtqml-project","user/adding-glean-to-your-project/qt.html#requirements","user/adding-glean-to-your-project/qt.html#setting-up-the-dependency","user/adding-glean-to-your-project/qt.html#picking-the-correct-version","user/adding-glean-to-your-project/qt.html#consuming-yaml-registry-files","user/adding-glean-to-your-project/qt.html#make-sure-you-have-the-correct-glean_parser-version","user/adding-glean-to-your-project/qt.html#automation-steps","user/adding-glean-to-your-project/qt.html#documentation","user/adding-glean-to-your-project/qt.html#yaml-registry-files-linting","user/adding-glean-to-your-project/qt.html#debugging","user/adding-glean-to-your-project/qt.html#troubleshooting","user/adding-glean-to-your-project/qt.html#submitping-may-cause-crashes-when-debugging-ios-devices","user/adding-glean-to-your-project/server.html#adding-glean-to-your-server-application","user/adding-glean-to-your-project/server.html#differences-from-using-the-glean-sdk","user/adding-glean-to-your-project/server.html#when-to-use-server-side-collection","user/adding-glean-to-your-project/server.html#how-to-add-glean-server-side-collection-to-your-service","user/adding-glean-to-your-project/server.html#how-to-add-a-new-event-to-your-server-side-collection","user/adding-glean-to-your-project/server.html#technical-details---ingestion","user/adding-glean-to-your-project/enable-data-ingestion.html#enabling-data-to-be-ingested-by-the-data-platform","user/adding-glean-to-your-project/enable-data-ingestion.html#requirements","user/adding-glean-to-your-project/enable-data-ingestion.html#add-your-product-to-probe-scraper","user/adding-glean-to-your-project/enable-data-ingestion.html#validate-and-publish-metrics","user/adding-glean-to-your-project/enable-data-ingestion.html#add-your-library-to-probe-scraper","user/integrating-glean-for-product-managers.html#integrating-glean-for-product-managers","user/integrating-glean-for-product-managers.html#building-a-telemetry-plan","user/integrating-glean-for-product-managers.html#integrating-glean-into-your-product","user/integrating-glean-for-product-managers.html#optional-adapting-glean-to-your-platform","user/integrating-glean-for-product-managers.html#optional-designing-ping-submission","user/integrating-glean-for-product-managers.html#optional-new-metric-types","user/integrating-glean-for-product-managers.html#integrating-glean-into-glam","user/metrics/adding-new-metrics.html#adding-new-metrics","user/metrics/adding-new-metrics.html#table-of-contents","user/metrics/adding-new-metrics.html#process-overview","user/metrics/adding-new-metrics.html#choosing-a-metric-type","user/metrics/adding-new-metrics.html#is-it-a-single-measurement","user/metrics/adding-new-metrics.html#are-you-measuring-user-behavior","user/metrics/adding-new-metrics.html#are-you-counting-things","user/metrics/adding-new-metrics.html#are-you-measuring-time","user/metrics/adding-new-metrics.html#for-how-long-do-you-need-to-collect-this-data","user/metrics/adding-new-metrics.html#when-should-the-glean-sdk-automatically-clear-the-measurement","user/metrics/adding-new-metrics.html#a-lifetime-example","user/metrics/adding-new-metrics.html#what-if-none-of-these-lifetimes-are-appropriate","user/metrics/adding-new-metrics.html#what-should-this-new-metric-be-called","user/metrics/adding-new-metrics.html#reuse-names-from-other-applications","user/metrics/adding-new-metrics.html#make-names-unique-within-an-application","user/metrics/adding-new-metrics.html#be-as-specific-as-possible","user/metrics/adding-new-metrics.html#what-if-none-of-these-metric-types-is-the-right-fit","user/metrics/adding-new-metrics.html#how-do-i-make-sure-my-metric-is-working","user/metrics/adding-new-metrics.html#adding-the-metric-to-the-metricsyaml-file","user/metrics/adding-new-metrics.html#using-the-metric-from-your-code","user/metrics/adding-new-metrics.html#capitalization","user/metrics/adding-new-metrics.html#adding-new-metrics","user/metrics/adding-new-metrics.html#table-of-contents","user/metrics/adding-new-metrics.html#process-overview","user/metrics/adding-new-metrics.html#choosing-a-metric-type","user/metrics/adding-new-metrics.html#is-it-a-single-measurement","user/metrics/adding-new-metrics.html#are-you-measuring-user-behavior","user/metrics/adding-new-metrics.html#are-you-counting-things","user/metrics/adding-new-metrics.html#are-you-measuring-time","user/metrics/adding-new-metrics.html#for-how-long-do-you-need-to-collect-this-data","user/metrics/adding-new-metrics.html#when-should-the-glean-sdk-automatically-clear-the-measurement","user/metrics/adding-new-metrics.html#a-lifetime-example","user/metrics/adding-new-metrics.html#what-if-none-of-these-lifetimes-are-appropriate","user/metrics/adding-new-metrics.html#what-should-this-new-metric-be-called","user/metrics/adding-new-metrics.html#reuse-names-from-other-applications","user/metrics/adding-new-metrics.html#make-names-unique-within-an-application","user/metrics/adding-new-metrics.html#be-as-specific-as-possible","user/metrics/adding-new-metrics.html#what-if-none-of-these-metric-types-is-the-right-fit","user/metrics/adding-new-metrics.html#how-do-i-make-sure-my-metric-is-working","user/metrics/adding-new-metrics.html#adding-the-metric-to-the-metricsyaml-file","user/metrics/adding-new-metrics.html#using-the-metric-from-your-code","user/metrics/adding-new-metrics.html#capitalization","user/metrics/testing-metrics.html#unit-testing-glean-metrics","user/metrics/testing-metrics.html#example-of-using-the-test-api","user/metrics/testing-metrics.html#generating-testing-coverage-reports","user/metrics/testing-metrics.html#recording-coverage","user/metrics/testing-metrics.html#post-processing-the-results","user/metrics/testing-metrics.html#uploading-coverage","user/metrics/validation-checklist.html#validating-the-collected-data","user/metrics/validation-checklist.html#how-to-annotate-metrics-without-changing-the-source-code","user/metrics/validation-checklist.html#does-the-product-support-multiple-release-channels","user/metrics/error-reporting.html#error-reporting","user/collected-metrics/metrics.html#the-glean-javascript-sdk-provides-a-slightly-different-set-of-metrics-and-pings","user/collected-metrics/metrics.html#metrics","user/collected-metrics/metrics.html#pings","user/collected-metrics/metrics.html#all-pings","user/collected-metrics/metrics.html#baseline","user/collected-metrics/metrics.html#deletion-request","user/collected-metrics/metrics.html#metrics-1","user/pings/index.html#pings","user/pings/index.html#table-of-contents","user/pings/index.html#payload-structure","user/pings/index.html#the-ping_info-section","user/pings/index.html#the-client_info-section","user/pings/index.html#ping-submission","user/pings/index.html#url","user/pings/index.html#limitations","user/pings/index.html#submitted-headers","user/pings/custom.html#custom-pings","user/pings/custom.html#defining-a-custom-ping","user/pings/custom.html#sending-metrics-in-a-custom-ping","user/pings/custom.html#ping-metadata-must-be-loaded-before-sending","user/pings/custom.html#the-gleanrestarted-event","user/pings/custom.html#event-timestamps-throughout-application-restarts","user/pings/testing-custom-pings.html#testing-custom-pings","user/pings/testing-custom-pings.html#general-testing-strategy","user/pings/sent-by-glean.html#pings-sent-by-glean","user/pings/sent-by-glean.html#available-pings-per-platform","user/pings/sent-by-glean.html#defining-foreground-and-background-state","user/pings/sent-by-glean.html#foreground","user/pings/sent-by-glean.html#background","user/pings/sent-by-glean.html#foreground-1","user/pings/sent-by-glean.html#background-1","user/pings/baseline.html#the-baseline-ping","user/pings/baseline.html#description","user/pings/baseline.html#platform-availability","user/pings/baseline.html#scheduling","user/pings/baseline.html#contents","user/pings/baseline.html#querying-ping-contents","user/pings/baseline.html#example-baseline-ping","user/pings/deletion-request.html#the-deletion-request-ping","user/pings/deletion-request.html#description","user/pings/deletion-request.html#platform-availability","user/pings/deletion-request.html#scheduling","user/pings/deletion-request.html#contents","user/pings/deletion-request.html#example-deletion-request-ping","user/pings/events.html#the-events-ping","user/pings/events.html#description","user/pings/events.html#platform-availability","user/pings/events.html#scheduling","user/pings/events.html#python-and-javascript-caveats","user/pings/events.html#contents","user/pings/events.html#example-event-json","user/pings/metrics.html#the-metrics-ping","user/pings/metrics.html#description","user/pings/metrics.html#platform-availability","user/pings/metrics.html#scheduling","user/pings/metrics.html#contents","user/pings/metrics.html#querying-ping-contents","user/pings/metrics.html#scheduling-examples","user/pings/metrics.html#crossing-due-time-with-the-application-closed","user/pings/metrics.html#crossing-due-time-and-changing-timezones","user/pings/metrics.html#the-application-doesnt-run-in-a-week","user/pings/metrics.html#the-application-doesnt-run-for-a-week-and-when-its-finally-re-opened-the-timezone-has-changed","user/pings/metrics.html#the-user-changes-timezone-in-an-extreme-enough-fashion-that-they-cross-0400-twice-on-the-same-date","user/pings/ping-schedules-and-timings.html#ping-schedules-and-timings-overview","user/server-knobs/index.html#server-knobs-glean-data-control-plane","user/server-knobs/index.html#contents","user/server-knobs/metrics/index.html#data-control-plane-aka-server-knobs","user/server-knobs/metrics/index.html#contents","user/server-knobs/metrics/example-scenarios.html#example-scenarios","user/server-knobs/metrics/example-scenarios.html#scenario-1","user/server-knobs/metrics/example-scenarios.html#scenario-2","user/server-knobs/metrics/product-integration.html#product-integration","user/server-knobs/metrics/product-integration.html#desktop-feature-integration","user/server-knobs/metrics/product-integration.html#integration-option-1","user/server-knobs/metrics/product-integration.html#integration-option-2-advanced-use","user/server-knobs/metrics/product-integration.html#mobile-feature-integration","user/server-knobs/metrics/product-integration.html#integration-option-1-1","user/server-knobs/metrics/product-integration.html#integration-option-2-advanced-use-1","user/server-knobs/metrics/experimenter-configuration.html#experimenter-configuration","user/server-knobs/metrics/experimenter-configuration.html#example-configuration","user/server-knobs/metrics/advanced-topics.html#advanced-topics","user/server-knobs/metrics/advanced-topics.html#merging-of-configurations-from-multiple-features","user/server-knobs/metrics/advanced-topics.html#example","user/server-knobs/metrics/advanced-topics.html#merging-caveats","user/server-knobs/metrics/faq.html#frequently-asked-questions","user/server-knobs/pings/index.html#data-control-plane-aka-server-knobs","user/server-knobs/pings/index.html#contents","user/server-knobs/pings/product-integration.html#product-integration","user/server-knobs/pings/experimenter-configuration.html#experimenter-configuration","user/server-knobs/pings/experimenter-configuration.html#example-configuration","user/server-knobs/other/index.html#other-server-knobs","user/server-knobs/other/index.html#contents","user/server-knobs/other/max-events.html#max-events","user/server-knobs/other/max-events.html#example-configuration","user/debugging/index.html#debugging-products-using-the-glean-sdk","user/debugging/index.html#features","user/debugging/index.html#log-pings","user/debugging/index.html#debug-view-tag","user/debugging/index.html#source-tags","user/debugging/index.html#send-ping","user/debugging/index.html#debugging-methods","user/debugging/index.html#platform-specific-information","user/debugging/index.html#available-debugging-methods-per-platform","user/debugging/android.html#debugging-android-applications-using-the-glean-sdk","user/debugging/android.html#glean-kotlin-sdk-log-messages","user/debugging/android.html#android-studio","user/debugging/android.html#command-line","user/debugging/ios.html#debugging-ios-applications-using-the-glean-sdk","user/debugging/ios.html#enabling-debugging-features-in-ios-through-environment-variables","user/debugging/ios.html#enabling-debugging-features-in-ios-through-a-custom-url-scheme","user/debugging/ios.html#available-commands-and-query-format","user/debugging/ios.html#instrumenting-the-application-for-glean-swift-sdk-debug-functionality","user/debugging/ios.html#invoking-the-glean-ios-debug-commands","user/debugging/ios.html#glean-log-messages","user/debugging/python.html#debugging-python-applications-using-the-glean-sdk","user/debugging/python.html#sending-pings","user/debugging/python.html#logging-pings","user/debugging/python.html#simple-logging-api","user/debugging/python.html#flexible-logging-api","user/debugging/javascript.html#debugging-javascript-applications-using-gleanjs","user/debugging/javascript.html#debugging-in-the-browser","user/debugging/javascript.html#sending-pings","user/debugging/javascript.html#logging-pings","user/debugging/javascript.html#firefox","user/debugging/javascript.html#chromium-based-browsers","user/howto/index.html#how-tos","user/howto/index.html#server-knobs-walkthrough","user/howto/index.html#real-time-events","user/howto/index.html#telemetrydata-bug-investigation-recommendations","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#server-knobs-a-complete-walkthrough","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#purpose","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#audience","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#lets-get-started","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#experiment-setup","user/howto/real-time-events/real-time-events.html#real-time-events","user/howto/real-time-events/real-time-events.html#defining-real-time-events-within-the-glean-sdk","user/howto/real-time-events/real-time-events.html#methods-to-achieve-this-with-glean","user/howto/real-time-events/real-time-events.html#option-1-configuring-glean-to-send-all-events-as-soon-as-they-are-recorded","user/howto/real-time-events/real-time-events.html#option-2-using-a-custom-ping-and-submitting-it-immediately-pings-as-events","user/howto/real-time-events/real-time-events.html#considerations","user/howto/real-time-events/real-time-events.html#what-real-time-glean-eventspings-are--not","user/howto/real-time-events/real-time-events.html#more-network-requests","user/howto/real-time-events/real-time-events.html#more-ingestion-endpoint-traffic","user/howto/real-time-events/real-time-events.html#storage-space-requirements","user/howto/investigating-data-issues/investigating-data-issues.html#telemetrydata-bug-investigation-recommendations","user/howto/investigating-data-issues/investigating-data-issues.html#1-countries","user/howto/investigating-data-issues/investigating-data-issues.html#2-isp-internet-service-provider","user/howto/investigating-data-issues/investigating-data-issues.html#3-product-version--build-id","user/howto/investigating-data-issues/investigating-data-issues.html#4-glean-sdk-version","user/howto/investigating-data-issues/investigating-data-issues.html#5-other-library-version-changes","user/howto/investigating-data-issues/investigating-data-issues.html#6-osplatform-sdk-version","user/howto/investigating-data-issues/investigating-data-issues.html#7-time-differences-startend_time-vs-submission_timestamp","user/howto/investigating-data-issues/investigating-data-issues.html#8-glean-errors","user/howto/investigating-data-issues/investigating-data-issues.html#9-hardware-details-manufacturerversion-mobile-platforms-only","user/howto/investigating-data-issues/investigating-data-issues.html#10-ping-reason","reference/yaml/index.html#yaml-registry-format","reference/yaml/index.html#metricsyaml-file","reference/yaml/index.html#pingsyaml-file","reference/yaml/index.html#tagsyaml-file","reference/yaml/metrics.html#metrics-yaml-registry-format","reference/yaml/metrics.html#note-on-the-naming-of-these-files","reference/yaml/metrics.html#file-structure","reference/yaml/metrics.html#schema","reference/yaml/metrics.html#tags","reference/yaml/metrics.html#category","reference/yaml/metrics.html#name","reference/yaml/metrics.html#metric-parameters","reference/yaml/metrics.html#required-parameters","reference/yaml/metrics.html#optional-parameters","reference/yaml/pings.html#pings-yaml-registry-format","reference/yaml/pings.html#note-on-the-naming-of-these-files","reference/yaml/pings.html#file-structure","reference/yaml/pings.html#schema","reference/yaml/pings.html#name","reference/yaml/pings.html#reserved-ping-names","reference/yaml/pings.html#ping-parameters","reference/yaml/pings.html#required-parameters","reference/yaml/pings.html#optional-parameters","reference/yaml/tags.html#tags-yaml-registry-format","reference/yaml/tags.html#note-on-the-naming-of-these-files","reference/yaml/tags.html#file-structure","reference/yaml/tags.html#schema","reference/yaml/tags.html#name","reference/yaml/tags.html#tag-parameters","reference/yaml/tags.html#required-parameters","reference/general/index.html#the-general-api","reference/general/index.html#the-api","reference/general/initializing.html#initializing","reference/general/initializing.html#libraries-are-not-required-to-initialize-glean","reference/general/initializing.html#behavior-when-uninitialized","reference/general/initializing.html#behavior-once-initialized","reference/general/initializing.html#when-upload-is-enabled","reference/general/initializing.html#when-upload-is-disabled","reference/general/initializing.html#api","reference/general/initializing.html#gleaninitializeconfiguration","reference/general/initializing.html#consuming-glean-through-android-components","reference/general/initializing.html#custom-uploaders","reference/general/initializing.html#testing-api","reference/general/initializing.html#reference","reference/general/toggling-upload-status.html#toggling-upload-status","reference/general/toggling-upload-status.html#disabling-upload","reference/general/toggling-upload-status.html#enabling-upload","reference/general/toggling-upload-status.html#api","reference/general/toggling-upload-status.html#gleansetuploadenabledboolean","reference/general/toggling-upload-status.html#reference","reference/general/experiments-api.html#using-the-experiments-api","reference/general/experiments-api.html#recording-api","reference/general/experiments-api.html#setexperimentactive","reference/general/experiments-api.html#setexperimentinactive","reference/general/experiments-api.html#set-an-experimentation-identifier","reference/general/experiments-api.html#testing-api","reference/general/experiments-api.html#testisexperimentactive","reference/general/experiments-api.html#testgetexperimentdata","reference/general/experiments-api.html#testgetexperimentationid","reference/general/experiments-api.html#reference","reference/general/register-custom-pings.html#registering-custom-pings","reference/general/register-custom-pings.html#api","reference/general/register-custom-pings.html#registerpings","reference/general/shutdown.html#shut-down","reference/general/shutdown.html#how-the-glean-sdks-execute-tasks","reference/general/shutdown.html#api","reference/general/shutdown.html#shutdown","reference/general/shutdown.html#reference","reference/general/glean-event-listener.html#glean-event-listener","reference/general/glean-event-listener.html#summary","reference/general/glean-event-listener.html#usage","reference/general/glean-event-listener.html#examples","reference/debug/index.html#debugging","reference/debug/index.html#platform-specific-information","reference/debug/index.html#features","reference/debug/index.html#log-pings","reference/debug/index.html#debug-view-tag","reference/debug/index.html#source-tags","reference/debug/index.html#send-pings","reference/debug/logPings.html#log-pings","reference/debug/logPings.html#on-how-to-access-logs","reference/debug/logPings.html#limits","reference/debug/logPings.html#api","reference/debug/logPings.html#setlogpings","reference/debug/logPings.html#getlogpings","reference/debug/logPings.html#environment-variable","reference/debug/logPings.html#glean_log_pings","reference/debug/debugViewTag.html#debug-view-tag","reference/debug/debugViewTag.html#limits","reference/debug/debugViewTag.html#api","reference/debug/debugViewTag.html#setdebugviewtag","reference/debug/debugViewTag.html#getdebugviewtag","reference/debug/debugViewTag.html#environment-variable","reference/debug/debugViewTag.html#glean_debug_view_tag","reference/debug/sourceTags.html#source-tags","reference/debug/sourceTags.html#limits","reference/debug/sourceTags.html#api","reference/debug/sourceTags.html#setsourcetags","reference/debug/sourceTags.html#environment-variable","reference/debug/sourceTags.html#glean_source_tags","reference/metrics/index.html#metrics","reference/metrics/index.html#labeled-metrics","reference/metrics/index.html#label-format","reference/metrics/index.html#adding-or-changing-metric-types","reference/metrics/index.html#deprecated-metrics","reference/metrics/boolean.html#boolean","reference/metrics/boolean.html#recording-api","reference/metrics/boolean.html#set","reference/metrics/boolean.html#testing-api","reference/metrics/boolean.html#testgetvalue","reference/metrics/boolean.html#testgetnumrecordederrors","reference/metrics/boolean.html#metric-parameters","reference/metrics/boolean.html#extra-metric-parameters","reference/metrics/boolean.html#data-questions","reference/metrics/boolean.html#reference","reference/metrics/labeled_booleans.html#labeled-booleans","reference/metrics/labeled_booleans.html#recording-api","reference/metrics/labeled_booleans.html#set","reference/metrics/labeled_booleans.html#testing-api","reference/metrics/labeled_booleans.html#testgetvalue","reference/metrics/labeled_booleans.html#testgetnumrecordederrors","reference/metrics/labeled_booleans.html#metric-parameters","reference/metrics/labeled_booleans.html#extra-metric-parameters","reference/metrics/labeled_booleans.html#data-questions","reference/metrics/labeled_booleans.html#reference","reference/metrics/counter.html#counter","reference/metrics/counter.html#let-the-glean-metric-do-the-counting","reference/metrics/counter.html#recording-api","reference/metrics/counter.html#add","reference/metrics/counter.html#testing-api","reference/metrics/counter.html#testgetvalue","reference/metrics/counter.html#testgetnumrecordederrors","reference/metrics/counter.html#metric-parameters","reference/metrics/counter.html#extra-metric-parameters","reference/metrics/counter.html#data-questions","reference/metrics/counter.html#reference","reference/metrics/labeled_counters.html#labeled-counters","reference/metrics/labeled_counters.html#recording-api","reference/metrics/labeled_counters.html#add","reference/metrics/labeled_counters.html#testing-api","reference/metrics/labeled_counters.html#testgetvalue","reference/metrics/labeled_counters.html#testgetnumrecordederrors","reference/metrics/labeled_counters.html#metric-parameters","reference/metrics/labeled_counters.html#extra-metric-parameters","reference/metrics/labeled_counters.html#data-questions","reference/metrics/labeled_counters.html#reference","reference/metrics/string.html#strings","reference/metrics/string.html#important","reference/metrics/string.html#recording-api","reference/metrics/string.html#set","reference/metrics/string.html#testing-api","reference/metrics/string.html#testgetvalue","reference/metrics/string.html#testgetnumrecordederrors","reference/metrics/string.html#metric-parameters","reference/metrics/string.html#extra-metric-parameters","reference/metrics/string.html#data-questions","reference/metrics/string.html#reference","reference/metrics/labeled_strings.html#labeled-strings","reference/metrics/labeled_strings.html#recording-api","reference/metrics/labeled_strings.html#set","reference/metrics/labeled_strings.html#testing-api","reference/metrics/labeled_strings.html#testgetvalue","reference/metrics/labeled_strings.html#testgetnumrecordederrors","reference/metrics/labeled_strings.html#metric-parameters","reference/metrics/labeled_strings.html#extra-metric-parameters","reference/metrics/labeled_strings.html#data-questions","reference/metrics/labeled_strings.html#reference","reference/metrics/string_list.html#string-list","reference/metrics/string_list.html#recording-api","reference/metrics/string_list.html#add","reference/metrics/string_list.html#set","reference/metrics/string_list.html#testing-api","reference/metrics/string_list.html#testgetvalue","reference/metrics/string_list.html#testgetnumrecordederrors","reference/metrics/string_list.html#metric-parameters","reference/metrics/string_list.html#extra-metric-parameters","reference/metrics/string_list.html#data-questions","reference/metrics/string_list.html#reference","reference/metrics/timespan.html#timespan","reference/metrics/timespan.html#recording-api","reference/metrics/timespan.html#start","reference/metrics/timespan.html#stop","reference/metrics/timespan.html#cancel","reference/metrics/timespan.html#measure","reference/metrics/timespan.html#setrawnanos","reference/metrics/timespan.html#only-use-this-if-you-have-to","reference/metrics/timespan.html#these-are-different","reference/metrics/timespan.html#testing-api","reference/metrics/timespan.html#testgetvalue","reference/metrics/timespan.html#testgetnumrecordederrors","reference/metrics/timespan.html#metric-parameters","reference/metrics/timespan.html#extra-metric-parameters","reference/metrics/timespan.html#values-are-truncated","reference/metrics/timespan.html#data-questions","reference/metrics/timespan.html#reference","reference/metrics/timing_distribution.html#timing-distribution","reference/metrics/timing_distribution.html#recording-api","reference/metrics/timing_distribution.html#start","reference/metrics/timing_distribution.html#stopandaccumulate","reference/metrics/timing_distribution.html#accumulatesamples","reference/metrics/timing_distribution.html#accumulatesinglesample","reference/metrics/timing_distribution.html#measure","reference/metrics/timing_distribution.html#cancel","reference/metrics/timing_distribution.html#testing-api","reference/metrics/timing_distribution.html#testgetvalue","reference/metrics/timing_distribution.html#testgetnumrecordederrors","reference/metrics/timing_distribution.html#metric-parameters","reference/metrics/timing_distribution.html#extra-metric-parameters","reference/metrics/timing_distribution.html#limits","reference/metrics/timing_distribution.html#data-questions","reference/metrics/timing_distribution.html#reference","reference/metrics/timing_distribution.html#simulator","reference/metrics/labeled_timing_distributions.html#labeled-timing-distributions","reference/metrics/labeled_timing_distributions.html#recording-api","reference/metrics/labeled_timing_distributions.html#start","reference/metrics/labeled_timing_distributions.html#stopandaccumulate","reference/metrics/labeled_timing_distributions.html#cancel","reference/metrics/labeled_timing_distributions.html#accumulatesamples","reference/metrics/labeled_timing_distributions.html#accumulatesinglesample","reference/metrics/labeled_timing_distributions.html#testing-api","reference/metrics/labeled_timing_distributions.html#testgetvalue","reference/metrics/labeled_timing_distributions.html#testgetnumrecordederrors","reference/metrics/labeled_timing_distributions.html#metric-parameters","reference/metrics/labeled_timing_distributions.html#extra-metric-parameters","reference/metrics/labeled_timing_distributions.html#data-questions","reference/metrics/labeled_timing_distributions.html#limits","reference/metrics/labeled_timing_distributions.html#reference","reference/metrics/memory_distribution.html#memory-distribution","reference/metrics/memory_distribution.html#recording-api","reference/metrics/memory_distribution.html#accumulate","reference/metrics/memory_distribution.html#testing-api","reference/metrics/memory_distribution.html#testgetvalue","reference/metrics/memory_distribution.html#testgetnumrecordederrors","reference/metrics/memory_distribution.html#metric-parameters","reference/metrics/memory_distribution.html#extra-metric-parameters","reference/metrics/memory_distribution.html#limits","reference/metrics/memory_distribution.html#data-questions","reference/metrics/memory_distribution.html#reference","reference/metrics/memory_distribution.html#simulator","reference/metrics/labeled_memory_distributions.html#labeled-memory-distributions","reference/metrics/labeled_memory_distributions.html#recording-api","reference/metrics/labeled_memory_distributions.html#accumulate","reference/metrics/labeled_memory_distributions.html#testing-api","reference/metrics/labeled_memory_distributions.html#testgetvalue","reference/metrics/labeled_memory_distributions.html#testgetnumrecordederrors","reference/metrics/labeled_memory_distributions.html#metric-parameters","reference/metrics/labeled_memory_distributions.html#extra-metric-parameters","reference/metrics/labeled_memory_distributions.html#data-questions","reference/metrics/labeled_memory_distributions.html#limits","reference/metrics/labeled_memory_distributions.html#reference","reference/metrics/uuid.html#uuid","reference/metrics/uuid.html#recording-api","reference/metrics/uuid.html#generateandset","reference/metrics/uuid.html#set","reference/metrics/uuid.html#testing-api","reference/metrics/uuid.html#testgetvalue","reference/metrics/uuid.html#testgetnumrecordederrors","reference/metrics/uuid.html#metric-parameters","reference/metrics/uuid.html#extra-metric-parameters","reference/metrics/uuid.html#data-questions","reference/metrics/uuid.html#reference","reference/metrics/url.html#url","reference/metrics/url.html#important","reference/metrics/url.html#recording-api","reference/metrics/url.html#set","reference/metrics/url.html#seturl","reference/metrics/url.html#testing-api","reference/metrics/url.html#testgetvalue","reference/metrics/url.html#testgetnumrecordederrors","reference/metrics/url.html#metric-parameters","reference/metrics/url.html#note-on-data_sensitivity-of-url-metrics","reference/metrics/url.html#extra-metric-parameters","reference/metrics/url.html#data-questions","reference/metrics/datetime.html#datetime","reference/metrics/datetime.html#recording-api","reference/metrics/datetime.html#set","reference/metrics/datetime.html#testing-api","reference/metrics/datetime.html#testgetvalue","reference/metrics/datetime.html#testgetvalueasstring","reference/metrics/datetime.html#testgetnumrecordederrors","reference/metrics/datetime.html#metric-parameters","reference/metrics/datetime.html#extra-metric-parameters","reference/metrics/datetime.html#data-questions","reference/metrics/datetime.html#reference","reference/metrics/event.html#events","reference/metrics/event.html#immediate-submission-or-batching","reference/metrics/event.html#recording-api","reference/metrics/event.html#recordobject","reference/metrics/event.html#testing-api","reference/metrics/event.html#testgetvalue","reference/metrics/event.html#testgetnumrecordederrors","reference/metrics/event.html#metric-parameters","reference/metrics/event.html#extra-metric-parameters","reference/metrics/event.html#data-questions","reference/metrics/event.html#limits","reference/metrics/event.html#reference","reference/metrics/custom_distribution.html#custom-distribution","reference/metrics/custom_distribution.html#recording-api","reference/metrics/custom_distribution.html#accumulatesamples","reference/metrics/custom_distribution.html#accumulatesinglesample","reference/metrics/custom_distribution.html#testing-api","reference/metrics/custom_distribution.html#testgetvalue","reference/metrics/custom_distribution.html#testgetnumrecordederrors","reference/metrics/custom_distribution.html#metric-parameters","reference/metrics/custom_distribution.html#extra-metric-parameters","reference/metrics/custom_distribution.html#reference","reference/metrics/custom_distribution.html#simulator","reference/metrics/labeled_custom_distributions.html#labeled-custom-distributions","reference/metrics/labeled_custom_distributions.html#recording-api","reference/metrics/labeled_custom_distributions.html#accumulatesamples","reference/metrics/labeled_custom_distributions.html#accumulatesinglesample","reference/metrics/labeled_custom_distributions.html#testing-api","reference/metrics/labeled_custom_distributions.html#testgetvalue","reference/metrics/labeled_custom_distributions.html#testgetnumrecordederrors","reference/metrics/labeled_custom_distributions.html#metric-parameters","reference/metrics/labeled_custom_distributions.html#extra-metric-parameters","reference/metrics/labeled_custom_distributions.html#data-questions","reference/metrics/labeled_custom_distributions.html#limits","reference/metrics/labeled_custom_distributions.html#reference","reference/metrics/quantity.html#quantity","reference/metrics/quantity.html#do-not-use-quantity-for-counting","reference/metrics/quantity.html#recording-api","reference/metrics/quantity.html#set","reference/metrics/quantity.html#testing-api","reference/metrics/quantity.html#testgetvalue","reference/metrics/quantity.html#testgetnumrecordederrors","reference/metrics/quantity.html#metric-parameters","reference/metrics/quantity.html#extra-metric-parameters","reference/metrics/quantity.html#data-questions","reference/metrics/quantity.html#reference","reference/metrics/labeled_quantity.html#labeled-quantities","reference/metrics/labeled_quantity.html#do-not-use-labeled-quantity-metrics-for-counting","reference/metrics/labeled_quantity.html#recording-api","reference/metrics/labeled_quantity.html#set","reference/metrics/labeled_quantity.html#testing-api","reference/metrics/labeled_quantity.html#testgetvalue","reference/metrics/labeled_quantity.html#testgetnumrecordederrors","reference/metrics/labeled_quantity.html#metric-parameters","reference/metrics/labeled_quantity.html#extra-metric-parameters","reference/metrics/labeled_quantity.html#data-questions","reference/metrics/labeled_quantity.html#limits","reference/metrics/labeled_quantity.html#reference","reference/metrics/rate.html#rate","reference/metrics/rate.html#let-the-glean-metric-do-the-counting","reference/metrics/rate.html#recording-api","reference/metrics/rate.html#addtonumerator--addtodenominator","reference/metrics/rate.html#testing-api","reference/metrics/rate.html#testgetvalue","reference/metrics/rate.html#testgetnumrecordederrors","reference/metrics/rate.html#metric-parameters","reference/metrics/rate.html#external-denominators","reference/metrics/rate.html#data-questions","reference/metrics/rate.html#reference","reference/metrics/text.html#text","reference/metrics/text.html#important","reference/metrics/text.html#recording-api","reference/metrics/text.html#set","reference/metrics/text.html#testing-api","reference/metrics/text.html#testgetvalue","reference/metrics/text.html#testgetnumrecordederrors","reference/metrics/text.html#metric-parameters","reference/metrics/text.html#data-questions","reference/metrics/object.html#object","reference/metrics/object.html#recording-api","reference/metrics/object.html#set","reference/metrics/object.html#testing-api","reference/metrics/object.html#testgetvalue","reference/metrics/object.html#testgetnumrecordederrors","reference/metrics/object.html#metric-parameters","reference/metrics/object.html#example-object-metric-definition","reference/metrics/object.html#data-questions","reference/pings/index.html#pings","reference/pings/index.html#submission-api","reference/pings/index.html#submit","reference/pings/index.html#testing-api","reference/pings/index.html#getregisteredpingnames","reference/pings/index.html#testbeforenextsubmit","language-bindings/index.html#overview","language-bindings/index.html#rust-core-based-sdks","language-bindings/index.html#rust","language-bindings/index.html#kotlin","language-bindings/index.html#swift","language-bindings/index.html#python","language-bindings/index.html#javascript-core-based-sdks","language-bindings/index.html#javascript","language-bindings/index.html#qml","language-bindings/android/index.html#android-specific-information","language-bindings/android/android-build-configuration-options.html#android-build-script-configuration-options","language-bindings/android/android-build-configuration-options.html#gleanbuilddate","language-bindings/android/android-build-configuration-options.html#allowmetricsfromaar","language-bindings/android/android-build-configuration-options.html#gleangeneratemarkdowndocs","language-bindings/android/android-build-configuration-options.html#gleandocsdirectory","language-bindings/android/android-build-configuration-options.html#gleanyamlfiles","language-bindings/android/android-build-configuration-options.html#gleanexpirebyversion","language-bindings/android/android-build-configuration-options.html#gleanpythonenvdir","language-bindings/android/android-offline-builds.html#offline-builds-of-android-applications-that-use-glean","language-bindings/android/android-offline-builds.html#provide-an-externally-managed-virtualenv","language-bindings/android/android-offline-builds.html#provide-a-python-interpreter-and-the-required-wheels","language-bindings/android/instrument-android-crashes-example.html#instrumenting-android-crashes-with-the-glean-sdk","language-bindings/android/instrument-android-crashes-example.html#before-you-start","language-bindings/android/instrument-android-crashes-example.html#setup-build-configuration","language-bindings/android/instrument-android-crashes-example.html#add-a-custom-metric","language-bindings/android/instrument-android-crashes-example.html#add-a-custom-ping","language-bindings/android/instrument-android-crashes-example.html#instrument-the-app-to-record-the-event","language-bindings/android/instrument-android-crashes-example.html#next-steps","language-bindings/ios/index.html#ios-specific-information","language-bindings/ios/ios-build-configuration-options.html#ios-build-script-configuration-options","language-bindings/ios/ios-build-configuration-options.html#--output----o-path","language-bindings/ios/ios-build-configuration-options.html#--build-date----b","language-bindings/ios/ios-build-configuration-options.html#--expire-by-version","language-bindings/ios/ios-build-configuration-options.html#--markdown----m","language-bindings/ios/ios-build-configuration-options.html#--glean-namespace----g","language-bindings/javascript/index.html#glean-javascript-sdk","language-bindings/javascript/cli.html#command-line-interface","language-bindings/javascript/cli.html#customizing-virtual-environment","language-bindings/javascript/cli.html#what-if-the-glean-command-is-called-from-inside-an-active-virtual-environment","language-bindings/javascript/cli.html#preventing-automatic-installation-of-glean_parser","language-bindings/javascript/plugins/index.html#plugins","language-bindings/javascript/plugins/index.html#on-writing-your-own-plugins","language-bindings/javascript/plugins/index.html#available-plugins","language-bindings/javascript/plugins/index.html#pingencryptionplugin","language-bindings/javascript/plugins/encryption.html#pingencryptionplugin","language-bindings/javascript/plugins/encryption.html#requesting-an-encryption-key","language-bindings/javascript/plugins/encryption.html#usage","language-bindings/javascript/plugins/encryption.html#entry-point","language-bindings/javascript/plugins/encryption.html#instantiating","appendix/glossary.html#glossary","appendix/glossary.html#glean","appendix/glossary.html#glean-pipeline","appendix/glossary.html#glean-sdks","appendix/glossary.html#glean-sdks-book","appendix/glossary.html#glean-tools","appendix/glossary.html#metric","appendix/glossary.html#ping","appendix/glossary.html#submission","appendix/glossary.html#measurement-window","appendix/glossary.html#this-week-in-glean-twig","appendix/changelog/index.html#changelog","appendix/changelog/sdk.html#unreleased-changes","appendix/changelog/sdk.html#v6300-2024-11-28","appendix/changelog/sdk.html#v6200-2024-11-05","appendix/changelog/sdk.html#v6120-2024-10-07","appendix/changelog/sdk.html#v6110-2024-09-24","appendix/changelog/sdk.html#v6100-2024-08-21","appendix/changelog/sdk.html#v6050-2024-08-06","appendix/changelog/sdk.html#v6040-2024-07-23","appendix/changelog/sdk.html#v6030-2024-05-31","appendix/changelog/sdk.html#v6020-2024-05-23","appendix/changelog/sdk.html#v6011-2024-05-31","appendix/changelog/sdk.html#v6010-2024-05-06","appendix/changelog/sdk.html#v6001-2024-05-31","appendix/changelog/sdk.html#v6000-2024-04-22","appendix/changelog/sdk.html#v5900-2024-03-28","appendix/changelog/sdk.html#v5810-2024-03-12","appendix/changelog/sdk.html#v5800-2024-02-29","appendix/changelog/sdk.html#v5700-2024-02-12","appendix/changelog/sdk.html#v5610-2024-01-16","appendix/changelog/sdk.html#v5600-2023-11-30","appendix/changelog/sdk.html#v5500-2023-10-23","appendix/changelog/sdk.html#v5400-2023-09-12","appendix/changelog/sdk.html#v5320-2023-08-02","appendix/changelog/sdk.html#v5310-2023-06-28","appendix/changelog/sdk.html#v5300-2023-06-07","appendix/changelog/sdk.html#v5270-2023-05-10","appendix/changelog/sdk.html#v5260-2023-04-20","appendix/changelog/sdk.html#v5250-2023-04-11","appendix/changelog/sdk.html#v5243-2023-03-24","appendix/changelog/sdk.html#v5242-2023-03-15","appendix/changelog/sdk.html#v5241-2023-03-10","appendix/changelog/sdk.html#v5240-2023-03-09","appendix/changelog/sdk.html#v5231-2023-03-01","appendix/changelog/sdk.html#v5230-2023-02-23","appendix/changelog/sdk.html#v5220-2023-01-30","appendix/changelog/sdk.html#v5211-2023-01-26","appendix/changelog/sdk.html#v5210-2023-01-26","appendix/changelog/sdk.html#v5201-2023-01-19","appendix/changelog/sdk.html#v5200-2022-12-13","appendix/changelog/sdk.html#v5183-2022-11-25","appendix/changelog/sdk.html#v5182-2022-11-17","appendix/changelog/sdk.html#v5181-2022-11-15","appendix/changelog/sdk.html#v5180-2022-11-03","appendix/changelog/sdk.html#v5170-2022-10-25","appendix/changelog/sdk.html#v5160-2022-10-24","appendix/changelog/sdk.html#v5150-2022-10-18","appendix/changelog/sdk.html#v5140-2022-10-04","appendix/changelog/sdk.html#v5130-2022-09-28","appendix/changelog/sdk.html#v5120-2022-09-08","appendix/changelog/sdk.html#v5110-2022-08-08","appendix/changelog/sdk.html#v5101-2022-07-26","appendix/changelog/sdk.html#v5100-2022-07-22","appendix/changelog/sdk.html#v5014-2022-08-01","appendix/changelog/sdk.html#v5013-2022-07-26","appendix/changelog/sdk.html#v5012-2022-07-08","appendix/changelog/sdk.html#v5011-2022-06-17","appendix/changelog/sdk.html#v5010-2022-06-15","appendix/changelog/sdk.html#v5001-2022-05-25","appendix/changelog/sdk.html#v5000-2022-05-20","appendix/changelog/sdk.html#v4420-2022-05-16","appendix/changelog/sdk.html#v4411-2022-04-14","appendix/changelog/sdk.html#v4410-2022-04-06","appendix/changelog/sdk.html#v4400-2022-02-09","appendix/changelog/sdk.html#v4302-2022-01-17","appendix/changelog/sdk.html#v4301-2022-01-17","appendix/changelog/sdk.html#v4300-2022-01-17","appendix/changelog/sdk.html#v4232-2021-12-15","appendix/changelog/sdk.html#v4231-2021-12-07","appendix/changelog/sdk.html#v4230-2021-12-07","appendix/changelog/sdk.html#v4220-2021-11-03","appendix/changelog/sdk.html#v4210-2021-10-18","appendix/changelog/sdk.html#v4201-2021-10-11","appendix/changelog/sdk.html#v4200-2021-10-06","appendix/changelog/sdk.html#v4111-2021-09-29","appendix/changelog/sdk.html#v4110-2021-09-16","appendix/changelog/sdk.html#v4100-2021-09-13","appendix/changelog/sdk.html#v4020-2021-09-08","appendix/changelog/sdk.html#v4011-2021-09-02","appendix/changelog/sdk.html#v4010-2021-08-25","appendix/changelog/sdk.html#v4000-2021-07-28","appendix/changelog/sdk.html#v3910-2021-07-26","appendix/changelog/sdk.html#v3904-2021-07-26","appendix/changelog/sdk.html#v3903-2021-06-09","appendix/changelog/sdk.html#v3902-2021-06-07","appendix/changelog/sdk.html#v3901-2021-06-04","appendix/changelog/sdk.html#v3900-2021-05-31","appendix/changelog/sdk.html#v3801-2021-05-17","appendix/changelog/sdk.html#v3800-2021-05-12","appendix/changelog/sdk.html#v3700-2021-04-30","appendix/changelog/sdk.html#v3601-2021-04-09","appendix/changelog/sdk.html#v3600-2021-03-16","appendix/changelog/sdk.html#v3500-2021-02-22","appendix/changelog/sdk.html#v3410-2021-02-04","appendix/changelog/sdk.html#v3400-2021-01-29","appendix/changelog/sdk.html#v33103-2021-01-18","appendix/changelog/sdk.html#v33102-2021-01-15","appendix/changelog/sdk.html#v33101-2021-01-06","appendix/changelog/sdk.html#v33100-2021-01-06","appendix/changelog/sdk.html#v3391-2020-12-17","appendix/changelog/sdk.html#v3390-2020-12-15","appendix/changelog/sdk.html#v3380-2020-12-10","appendix/changelog/sdk.html#v3370-2020-12-07","appendix/changelog/sdk.html#v3360-2020-12-02","appendix/changelog/sdk.html#v3350-2020-12-01","appendix/changelog/sdk.html#v3340-2020-11-17","appendix/changelog/sdk.html#v3330-2020-11-12","appendix/changelog/sdk.html#v3320-2020-11-10","appendix/changelog/sdk.html#v3312-2020-11-04","appendix/changelog/sdk.html#v3311-2020-11-04","appendix/changelog/sdk.html#v3310-2020-11-04","appendix/changelog/sdk.html#v3304-2020-09-28","appendix/changelog/sdk.html#v3303-2020-09-25","appendix/changelog/sdk.html#v3302-2020-09-25","appendix/changelog/sdk.html#v3301-2020-09-24","appendix/changelog/sdk.html#v3300-2020-09-22","appendix/changelog/sdk.html#v3241-2020-10-01","appendix/changelog/sdk.html#v3240-2020-09-18","appendix/changelog/sdk.html#v3232-2020-09-11","appendix/changelog/sdk.html#v3231-2020-09-09","appendix/changelog/sdk.html#v3230-2020-08-27","appendix/changelog/sdk.html#v3220-2020-08-25","appendix/changelog/sdk.html#v3211-2020-08-24","appendix/changelog/sdk.html#v3210-2020-08-17","appendix/changelog/sdk.html#v3200-2020-08-03","appendix/changelog/sdk.html#v3160-2020-07-24","appendix/changelog/sdk.html#v3150-2020-07-22","appendix/changelog/sdk.html#v3141-2020-07-20","appendix/changelog/sdk.html#v3140-2020-07-16","appendix/changelog/sdk.html#v3130-2020-07-10","appendix/changelog/sdk.html#v3123-2020-06-29","appendix/changelog/sdk.html#v3122-2020-06-26","appendix/changelog/sdk.html#v3121-2020-06-25","appendix/changelog/sdk.html#v3120-2020-06-24","appendix/changelog/sdk.html#v3112-2020-06-23","appendix/changelog/sdk.html#v3111-2020-06-12","appendix/changelog/sdk.html#v3110-2020-06-11","appendix/changelog/sdk.html#v3102-2020-05-29","appendix/changelog/sdk.html#v3101-2020-05-29","appendix/changelog/sdk.html#v3100-2020-05-28","appendix/changelog/sdk.html#v3010-2020-05-22","appendix/changelog/sdk.html#v3000-2020-05-13","appendix/changelog/sdk.html#v2912-2021-01-26","appendix/changelog/sdk.html#v2911-2020-05-22","appendix/changelog/sdk.html#v2910-2020-05-11","appendix/changelog/sdk.html#v2900-2020-05-05","appendix/changelog/sdk.html#v2800-2020-04-23","appendix/changelog/sdk.html#v2710-2020-04-09","appendix/changelog/sdk.html#v2700-2020-04-08","appendix/changelog/sdk.html#v2600-2020-03-27","appendix/changelog/sdk.html#v2510-2020-02-26","appendix/changelog/sdk.html#v2500-2020-02-17","appendix/changelog/sdk.html#v2420-2020-02-11","appendix/changelog/sdk.html#v2410-2020-01-16","appendix/changelog/sdk.html#v2400-2020-01-14","appendix/changelog/sdk.html#v2301-2020-01-08","appendix/changelog/sdk.html#v2300-2020-01-07","appendix/changelog/sdk.html#v2210-2019-12-17","appendix/changelog/sdk.html#v2200-2019-12-05","appendix/changelog/sdk.html#v2130-2019-12-03","appendix/changelog/sdk.html#v2120-2019-11-21","appendix/changelog/sdk.html#v2111-2019-11-20","appendix/changelog/sdk.html#v2110-2019-11-20","appendix/changelog/sdk.html#v2100-2019-11-18","appendix/changelog/sdk.html#v2020-2019-11-11","appendix/changelog/sdk.html#v2010-2019-11-11","appendix/changelog/sdk.html#v2000-2019-11-11","appendix/changelog/sdk.html#v1910-2019-10-29","appendix/changelog/sdk.html#v1900-2019-10-22","appendix/changelog/sdk.html#v001-testing6-2019-10-18","appendix/changelog/sdk.html#v001-testing5-2019-10-10","appendix/changelog/sdk.html#v001-testing4-2019-10-09","appendix/changelog/sdk.html#v001-testing3-2019-10-08","appendix/changelog/sdk.html#v001-testing2-2019-10-07","appendix/changelog/sdk.html#v001-testing1-2019-10-02","appendix/changelog/sdk.html#general","appendix/changelog/js.html#unreleased-changes","appendix/changelog/js.html#v503-2024-08-02","appendix/changelog/js.html#v502-2024-05-23","appendix/changelog/js.html#v501-2024-04-30","appendix/changelog/js.html#v500-2024-03-25","appendix/changelog/js.html#v500-pre0-2024-03-21","appendix/changelog/js.html#v410-pre0-2024-03-05","appendix/changelog/js.html#v400-2024-01-24","appendix/changelog/js.html#v400-pre3-2023-12-22","appendix/changelog/js.html#v400-pre2-2023-12-06","appendix/changelog/js.html#v400-pre1-2023-12-01","appendix/changelog/js.html#v400-pre0-2023-11-27","appendix/changelog/js.html#v300-2023-11-16","appendix/changelog/js.html#v300-pre1-2023-11-15","appendix/changelog/js.html#v300-pre0-2023-11-10","appendix/changelog/js.html#v205-2023-10-16","appendix/changelog/js.html#v204-2023-10-10","appendix/changelog/js.html#v203-2023-09-27","appendix/changelog/js.html#v202-2023-09-14","appendix/changelog/js.html#v201-2023-08-11","appendix/changelog/js.html#v200-2023-08-03","appendix/changelog/js.html#v140-2023-05-10","appendix/changelog/js.html#v130-2022-10-18","appendix/changelog/js.html#v120-2022-09-21","appendix/changelog/js.html#v110-2022-07-18","appendix/changelog/js.html#v100-2022-03-17","appendix/changelog/js.html#v0320-2022-03-01","appendix/changelog/js.html#v0310-2022-01-25","appendix/changelog/js.html#v0300-2022-01-10","appendix/changelog/js.html#v0290-2022-01-04","appendix/changelog/js.html#v0280-2021-12-08","appendix/changelog/js.html#v0270-2021-11-22","appendix/changelog/js.html#v0260-2021-11-19","appendix/changelog/js.html#v0250-2021-11-15","appendix/changelog/js.html#v0240-2021-11-04","appendix/changelog/js.html#v0230-2021-10-12","appendix/changelog/js.html#v0220-2021-10-06","appendix/changelog/js.html#v0211-2021-09-30","appendix/changelog/js.html#v0210-2021-09-30","appendix/changelog/js.html#v0200-2021-09-17","appendix/changelog/js.html#v0190-2021-09-03","appendix/changelog/js.html#v0181-2021-07-22","appendix/changelog/js.html#v0180-2021-07-20","appendix/changelog/js.html#v0170-2021-07-16","appendix/changelog/js.html#v0160-2021-07-06","appendix/changelog/js.html#v0150-2021-06-03","appendix/changelog/js.html#v0141-2021-05-21","appendix/changelog/js.html#v0140-2021-05-19","appendix/changelog/js.html#v0130-2021-05-18","appendix/changelog/js.html#v0120-2021-05-11","appendix/changelog/js.html#v0110-2021-05-03","appendix/changelog/js.html#v0102-2021-04-26","appendix/changelog/js.html#v0101-2021-04-26","appendix/changelog/js.html#v0100-2021-04-20","appendix/changelog/js.html#v092-2021-04-19","appendix/changelog/js.html#v091-2021-04-19","appendix/changelog/js.html#v090-2021-04-19","appendix/changelog/js.html#v081-2021-04-14","appendix/changelog/js.html#v080-2021-04-13","appendix/changelog/js.html#v070-2021-03-26","appendix/changelog/js.html#v061-2021-03-22","appendix/changelog/js.html#v060-2021-03-22","appendix/changelog/js.html#v050-2021-03-18","appendix/changelog/js.html#v040-2021-03-10","appendix/changelog/js.html#v030-2021-02-24","appendix/changelog/js.html#v020-2021-02-23","appendix/changelog/js.html#v011-2021-02-17","appendix/changelog/js.html#v010-2021-02-17","appendix/twig.html#this-week-in-glean-twig","appendix/twig.html#blog-posts","appendix/contribution-guidelines.html#contribution-guidelines","appendix/contribution-guidelines.html#table-of-contents","appendix/contribution-guidelines.html#where-to-add-new-content","appendix/contribution-guidelines.html#overview","appendix/contribution-guidelines.html#user-guides","appendix/contribution-guidelines.html#api-reference","appendix/contribution-guidelines.html#sdk-specific-information","appendix/contribution-guidelines.html#appendix","appendix/contribution-guidelines.html#in-which-format-to-present-content","appendix/contribution-guidelines.html#general-guidelines","appendix/contribution-guidelines.html#custom-elements"],"index":{"documentStore":{"docInfo":{"0":{"body":106,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":33,"breadcrumbs":8,"title":4},"100":{"body":275,"breadcrumbs":6,"title":2},"101":{"body":50,"breadcrumbs":7,"title":3},"102":{"body":6,"breadcrumbs":7,"title":3},"103":{"body":60,"breadcrumbs":7,"title":3},"104":{"body":71,"breadcrumbs":9,"title":5},"105":{"body":37,"breadcrumbs":6,"title":2},"106":{"body":26,"breadcrumbs":9,"title":5},"107":{"body":64,"breadcrumbs":8,"title":4},"108":{"body":57,"breadcrumbs":8,"title":4},"109":{"body":43,"breadcrumbs":7,"title":3},"11":{"body":94,"breadcrumbs":7,"title":3},"110":{"body":155,"breadcrumbs":5,"title":1},"111":{"body":64,"breadcrumbs":7,"title":4},"112":{"body":142,"breadcrumbs":7,"title":4},"113":{"body":23,"breadcrumbs":7,"title":4},"114":{"body":31,"breadcrumbs":5,"title":2},"115":{"body":105,"breadcrumbs":6,"title":3},"116":{"body":29,"breadcrumbs":5,"title":2},"117":{"body":179,"breadcrumbs":6,"title":3},"118":{"body":34,"breadcrumbs":9,"title":6},"119":{"body":28,"breadcrumbs":8,"title":5},"12":{"body":44,"breadcrumbs":7,"title":3},"120":{"body":123,"breadcrumbs":5,"title":2},"121":{"body":9,"breadcrumbs":14,"title":9},"122":{"body":24,"breadcrumbs":6,"title":1},"123":{"body":5,"breadcrumbs":6,"title":1},"124":{"body":132,"breadcrumbs":6,"title":1},"125":{"body":165,"breadcrumbs":6,"title":1},"126":{"body":76,"breadcrumbs":7,"title":2},"127":{"body":424,"breadcrumbs":6,"title":1},"128":{"body":36,"breadcrumbs":2,"title":1},"129":{"body":67,"breadcrumbs":3,"title":2},"13":{"body":153,"breadcrumbs":10,"title":6},"130":{"body":84,"breadcrumbs":3,"title":2},"131":{"body":160,"breadcrumbs":3,"title":2},"132":{"body":319,"breadcrumbs":3,"title":2},"133":{"body":18,"breadcrumbs":3,"title":2},"134":{"body":54,"breadcrumbs":2,"title":1},"135":{"body":122,"breadcrumbs":2,"title":1},"136":{"body":182,"breadcrumbs":3,"title":2},"137":{"body":65,"breadcrumbs":7,"title":2},"138":{"body":74,"breadcrumbs":8,"title":3},"139":{"body":12,"breadcrumbs":9,"title":4},"14":{"body":33,"breadcrumbs":8,"title":4},"140":{"body":61,"breadcrumbs":10,"title":5},"141":{"body":24,"breadcrumbs":7,"title":2},"142":{"body":259,"breadcrumbs":10,"title":5},"143":{"body":13,"breadcrumbs":7,"title":3},"144":{"body":52,"breadcrumbs":7,"title":3},"145":{"body":90,"breadcrumbs":7,"title":3},"146":{"body":30,"breadcrumbs":8,"title":4},"147":{"body":8,"breadcrumbs":8,"title":4},"148":{"body":14,"breadcrumbs":5,"title":1},"149":{"body":52,"breadcrumbs":5,"title":1},"15":{"body":2,"breadcrumbs":5,"title":1},"150":{"body":19,"breadcrumbs":5,"title":1},"151":{"body":50,"breadcrumbs":5,"title":1},"152":{"body":0,"breadcrumbs":8,"title":2},"153":{"body":15,"breadcrumbs":7,"title":1},"154":{"body":10,"breadcrumbs":8,"title":2},"155":{"body":57,"breadcrumbs":7,"title":1},"156":{"body":15,"breadcrumbs":7,"title":1},"157":{"body":32,"breadcrumbs":9,"title":3},"158":{"body":64,"breadcrumbs":9,"title":3},"159":{"body":0,"breadcrumbs":10,"title":3},"16":{"body":34,"breadcrumbs":7,"title":3},"160":{"body":84,"breadcrumbs":8,"title":1},"161":{"body":11,"breadcrumbs":9,"title":2},"162":{"body":13,"breadcrumbs":8,"title":1},"163":{"body":9,"breadcrumbs":8,"title":1},"164":{"body":59,"breadcrumbs":11,"title":4},"165":{"body":0,"breadcrumbs":8,"title":2},"166":{"body":20,"breadcrumbs":7,"title":1},"167":{"body":10,"breadcrumbs":8,"title":2},"168":{"body":45,"breadcrumbs":7,"title":1},"169":{"body":33,"breadcrumbs":9,"title":3},"17":{"body":194,"breadcrumbs":10,"title":6},"170":{"body":74,"breadcrumbs":7,"title":1},"171":{"body":73,"breadcrumbs":9,"title":3},"172":{"body":0,"breadcrumbs":8,"title":2},"173":{"body":91,"breadcrumbs":7,"title":1},"174":{"body":10,"breadcrumbs":8,"title":2},"175":{"body":172,"breadcrumbs":7,"title":1},"176":{"body":39,"breadcrumbs":7,"title":1},"177":{"body":11,"breadcrumbs":9,"title":3},"178":{"body":0,"breadcrumbs":8,"title":2},"179":{"body":42,"breadcrumbs":11,"title":5},"18":{"body":28,"breadcrumbs":8,"title":4},"180":{"body":45,"breadcrumbs":11,"title":5},"181":{"body":45,"breadcrumbs":10,"title":4},"182":{"body":45,"breadcrumbs":16,"title":10},"183":{"body":120,"breadcrumbs":17,"title":11},"184":{"body":249,"breadcrumbs":11,"title":4},"185":{"body":96,"breadcrumbs":12,"title":6},"186":{"body":15,"breadcrumbs":7,"title":1},"187":{"body":95,"breadcrumbs":16,"title":6},"188":{"body":16,"breadcrumbs":11,"title":1},"189":{"body":0,"breadcrumbs":14,"title":2},"19":{"body":126,"breadcrumbs":7,"title":3},"190":{"body":150,"breadcrumbs":14,"title":2},"191":{"body":79,"breadcrumbs":14,"title":2},"192":{"body":29,"breadcrumbs":14,"title":2},"193":{"body":12,"breadcrumbs":15,"title":3},"194":{"body":71,"breadcrumbs":15,"title":3},"195":{"body":181,"breadcrumbs":17,"title":5},"196":{"body":0,"breadcrumbs":15,"title":3},"197":{"body":71,"breadcrumbs":15,"title":3},"198":{"body":138,"breadcrumbs":17,"title":5},"199":{"body":42,"breadcrumbs":14,"title":2},"2":{"body":42,"breadcrumbs":3,"title":2},"20":{"body":59,"breadcrumbs":8,"title":4},"200":{"body":13,"breadcrumbs":14,"title":2},"201":{"body":0,"breadcrumbs":14,"title":2},"202":{"body":42,"breadcrumbs":16,"title":4},"203":{"body":347,"breadcrumbs":13,"title":1},"204":{"body":40,"breadcrumbs":14,"title":2},"205":{"body":49,"breadcrumbs":16,"title":3},"206":{"body":94,"breadcrumbs":16,"title":6},"207":{"body":9,"breadcrumbs":11,"title":1},"208":{"body":71,"breadcrumbs":14,"title":2},"209":{"body":35,"breadcrumbs":14,"title":2},"21":{"body":126,"breadcrumbs":6,"title":2},"210":{"body":13,"breadcrumbs":14,"title":2},"211":{"body":13,"breadcrumbs":10,"title":2},"212":{"body":35,"breadcrumbs":9,"title":1},"213":{"body":34,"breadcrumbs":14,"title":2},"214":{"body":8,"breadcrumbs":14,"title":2},"215":{"body":10,"breadcrumbs":9,"title":5},"216":{"body":0,"breadcrumbs":5,"title":1},"217":{"body":6,"breadcrumbs":6,"title":2},"218":{"body":79,"breadcrumbs":7,"title":3},"219":{"body":8,"breadcrumbs":6,"title":2},"22":{"body":228,"breadcrumbs":5,"title":1},"220":{"body":3,"breadcrumbs":6,"title":2},"221":{"body":58,"breadcrumbs":6,"title":2},"222":{"body":23,"breadcrumbs":7,"title":3},"223":{"body":70,"breadcrumbs":9,"title":5},"224":{"body":358,"breadcrumbs":11,"title":6},"225":{"body":17,"breadcrumbs":10,"title":5},"226":{"body":50,"breadcrumbs":7,"title":2},"227":{"body":69,"breadcrumbs":7,"title":2},"228":{"body":0,"breadcrumbs":11,"title":6},"229":{"body":25,"breadcrumbs":12,"title":7},"23":{"body":28,"breadcrumbs":8,"title":4},"230":{"body":40,"breadcrumbs":13,"title":8},"231":{"body":210,"breadcrumbs":9,"title":4},"232":{"body":226,"breadcrumbs":12,"title":7},"233":{"body":208,"breadcrumbs":10,"title":5},"234":{"body":85,"breadcrumbs":8,"title":3},"235":{"body":16,"breadcrumbs":11,"title":6},"236":{"body":20,"breadcrumbs":7,"title":2},"237":{"body":51,"breadcrumbs":7,"title":2},"238":{"body":27,"breadcrumbs":8,"title":3},"239":{"body":59,"breadcrumbs":8,"title":3},"24":{"body":11,"breadcrumbs":7,"title":3},"240":{"body":18,"breadcrumbs":10,"title":5},"241":{"body":40,"breadcrumbs":7,"title":2},"242":{"body":30,"breadcrumbs":7,"title":2},"243":{"body":11,"breadcrumbs":7,"title":2},"244":{"body":10,"breadcrumbs":6,"title":1},"245":{"body":15,"breadcrumbs":8,"title":3},"246":{"body":9,"breadcrumbs":3,"title":1},"247":{"body":9,"breadcrumbs":5,"title":3},"248":{"body":12,"breadcrumbs":5,"title":3},"249":{"body":10,"breadcrumbs":6,"title":4},"25":{"body":0,"breadcrumbs":10,"title":6},"250":{"body":0,"breadcrumbs":9,"title":4},"251":{"body":31,"breadcrumbs":6,"title":1},"252":{"body":38,"breadcrumbs":6,"title":1},"253":{"body":19,"breadcrumbs":7,"title":2},"254":{"body":476,"breadcrumbs":7,"title":2},"255":{"body":0,"breadcrumbs":8,"title":3},"256":{"body":20,"breadcrumbs":12,"title":7},"257":{"body":0,"breadcrumbs":8,"title":3},"258":{"body":182,"breadcrumbs":13,"title":8},"259":{"body":80,"breadcrumbs":14,"title":9},"26":{"body":69,"breadcrumbs":7,"title":3},"260":{"body":0,"breadcrumbs":6,"title":1},"261":{"body":51,"breadcrumbs":9,"title":4},"262":{"body":35,"breadcrumbs":8,"title":3},"263":{"body":19,"breadcrumbs":9,"title":4},"264":{"body":44,"breadcrumbs":8,"title":3},"265":{"body":13,"breadcrumbs":10,"title":4},"266":{"body":23,"breadcrumbs":8,"title":2},"267":{"body":37,"breadcrumbs":11,"title":5},"268":{"body":35,"breadcrumbs":11,"title":5},"269":{"body":23,"breadcrumbs":10,"title":4},"27":{"body":33,"breadcrumbs":7,"title":3},"270":{"body":20,"breadcrumbs":10,"title":4},"271":{"body":35,"breadcrumbs":10,"title":4},"272":{"body":24,"breadcrumbs":12,"title":6},"273":{"body":17,"breadcrumbs":9,"title":3},"274":{"body":17,"breadcrumbs":12,"title":6},"275":{"body":38,"breadcrumbs":9,"title":3},"276":{"body":72,"breadcrumbs":6,"title":3},"277":{"body":10,"breadcrumbs":5,"title":2},"278":{"body":10,"breadcrumbs":5,"title":2},"279":{"body":15,"breadcrumbs":5,"title":2},"28":{"body":23,"breadcrumbs":6,"title":2},"280":{"body":47,"breadcrumbs":8,"title":4},"281":{"body":23,"breadcrumbs":7,"title":3},"282":{"body":36,"breadcrumbs":6,"title":2},"283":{"body":13,"breadcrumbs":5,"title":1},"284":{"body":8,"breadcrumbs":5,"title":1},"285":{"body":62,"breadcrumbs":5,"title":1},"286":{"body":30,"breadcrumbs":5,"title":1},"287":{"body":19,"breadcrumbs":6,"title":2},"288":{"body":318,"breadcrumbs":6,"title":2},"289":{"body":579,"breadcrumbs":6,"title":2},"29":{"body":42,"breadcrumbs":8,"title":4},"290":{"body":49,"breadcrumbs":8,"title":4},"291":{"body":23,"breadcrumbs":7,"title":3},"292":{"body":24,"breadcrumbs":6,"title":2},"293":{"body":13,"breadcrumbs":5,"title":1},"294":{"body":50,"breadcrumbs":5,"title":1},"295":{"body":13,"breadcrumbs":7,"title":3},"296":{"body":0,"breadcrumbs":6,"title":2},"297":{"body":155,"breadcrumbs":6,"title":2},"298":{"body":36,"breadcrumbs":6,"title":2},"299":{"body":44,"breadcrumbs":8,"title":4},"3":{"body":17,"breadcrumbs":3,"title":2},"30":{"body":16,"breadcrumbs":5,"title":1},"300":{"body":23,"breadcrumbs":7,"title":3},"301":{"body":11,"breadcrumbs":6,"title":2},"302":{"body":13,"breadcrumbs":5,"title":1},"303":{"body":24,"breadcrumbs":5,"title":1},"304":{"body":0,"breadcrumbs":6,"title":2},"305":{"body":12,"breadcrumbs":6,"title":2},"306":{"body":40,"breadcrumbs":4,"title":2},"307":{"body":75,"breadcrumbs":3,"title":1},"308":{"body":26,"breadcrumbs":4,"title":1},"309":{"body":13,"breadcrumbs":7,"title":4},"31":{"body":67,"breadcrumbs":8,"title":4},"310":{"body":28,"breadcrumbs":5,"title":2},"311":{"body":0,"breadcrumbs":6,"title":3},"312":{"body":19,"breadcrumbs":5,"title":2},"313":{"body":44,"breadcrumbs":5,"title":2},"314":{"body":0,"breadcrumbs":4,"title":1},"315":{"body":432,"breadcrumbs":4,"title":1},"316":{"body":324,"breadcrumbs":8,"title":5},"317":{"body":95,"breadcrumbs":5,"title":2},"318":{"body":412,"breadcrumbs":5,"title":2},"319":{"body":17,"breadcrumbs":4,"title":1},"32":{"body":106,"breadcrumbs":7,"title":3},"320":{"body":21,"breadcrumbs":8,"title":3},"321":{"body":30,"breadcrumbs":7,"title":2},"322":{"body":23,"breadcrumbs":7,"title":2},"323":{"body":0,"breadcrumbs":6,"title":1},"324":{"body":68,"breadcrumbs":6,"title":1},"325":{"body":17,"breadcrumbs":6,"title":1},"326":{"body":77,"breadcrumbs":7,"title":3},"327":{"body":0,"breadcrumbs":6,"title":2},"328":{"body":161,"breadcrumbs":5,"title":1},"329":{"body":41,"breadcrumbs":5,"title":1},"33":{"body":35,"breadcrumbs":8,"title":4},"330":{"body":67,"breadcrumbs":7,"title":3},"331":{"body":0,"breadcrumbs":6,"title":2},"332":{"body":22,"breadcrumbs":5,"title":1},"333":{"body":62,"breadcrumbs":5,"title":1},"334":{"body":36,"breadcrumbs":5,"title":1},"335":{"body":14,"breadcrumbs":5,"title":1},"336":{"body":15,"breadcrumbs":8,"title":3},"337":{"body":0,"breadcrumbs":6,"title":1},"338":{"body":147,"breadcrumbs":6,"title":1},"339":{"body":18,"breadcrumbs":6,"title":2},"34":{"body":55,"breadcrumbs":7,"title":3},"340":{"body":52,"breadcrumbs":8,"title":4},"341":{"body":0,"breadcrumbs":5,"title":1},"342":{"body":73,"breadcrumbs":5,"title":1},"343":{"body":8,"breadcrumbs":5,"title":1},"344":{"body":17,"breadcrumbs":9,"title":3},"345":{"body":11,"breadcrumbs":7,"title":1},"346":{"body":57,"breadcrumbs":7,"title":1},"347":{"body":67,"breadcrumbs":7,"title":1},"348":{"body":25,"breadcrumbs":2,"title":1},"349":{"body":33,"breadcrumbs":4,"title":3},"35":{"body":53,"breadcrumbs":10,"title":6},"350":{"body":6,"breadcrumbs":2,"title":1},"351":{"body":9,"breadcrumbs":3,"title":2},"352":{"body":11,"breadcrumbs":4,"title":3},"353":{"body":9,"breadcrumbs":3,"title":2},"354":{"body":20,"breadcrumbs":3,"title":2},"355":{"body":17,"breadcrumbs":5,"title":2},"356":{"body":18,"breadcrumbs":5,"title":2},"357":{"body":6,"breadcrumbs":4,"title":1},"358":{"body":0,"breadcrumbs":4,"title":1},"359":{"body":21,"breadcrumbs":4,"title":1},"36":{"body":0,"breadcrumbs":6,"title":2},"360":{"body":14,"breadcrumbs":4,"title":1},"361":{"body":0,"breadcrumbs":5,"title":2},"362":{"body":66,"breadcrumbs":4,"title":1},"363":{"body":35,"breadcrumbs":7,"title":3},"364":{"body":19,"breadcrumbs":5,"title":1},"365":{"body":0,"breadcrumbs":5,"title":1},"366":{"body":31,"breadcrumbs":5,"title":1},"367":{"body":23,"breadcrumbs":5,"title":1},"368":{"body":0,"breadcrumbs":6,"title":2},"369":{"body":70,"breadcrumbs":5,"title":1},"37":{"body":69,"breadcrumbs":5,"title":1},"370":{"body":35,"breadcrumbs":5,"title":2},"371":{"body":60,"breadcrumbs":4,"title":1},"372":{"body":0,"breadcrumbs":4,"title":1},"373":{"body":44,"breadcrumbs":4,"title":1},"374":{"body":0,"breadcrumbs":5,"title":2},"375":{"body":76,"breadcrumbs":4,"title":1},"376":{"body":246,"breadcrumbs":3,"title":1},"377":{"body":131,"breadcrumbs":4,"title":2},"378":{"body":9,"breadcrumbs":4,"title":2},"379":{"body":51,"breadcrumbs":6,"title":4},"38":{"body":39,"breadcrumbs":8,"title":4},"380":{"body":8,"breadcrumbs":4,"title":2},"381":{"body":6,"breadcrumbs":4,"title":1},"382":{"body":0,"breadcrumbs":5,"title":2},"383":{"body":39,"breadcrumbs":4,"title":1},"384":{"body":0,"breadcrumbs":5,"title":2},"385":{"body":68,"breadcrumbs":4,"title":1},"386":{"body":31,"breadcrumbs":4,"title":1},"387":{"body":38,"breadcrumbs":5,"title":2},"388":{"body":1,"breadcrumbs":6,"title":3},"389":{"body":2,"breadcrumbs":5,"title":2},"39":{"body":28,"breadcrumbs":8,"title":4},"390":{"body":14,"breadcrumbs":4,"title":1},"391":{"body":8,"breadcrumbs":6,"title":2},"392":{"body":0,"breadcrumbs":6,"title":2},"393":{"body":119,"breadcrumbs":5,"title":1},"394":{"body":0,"breadcrumbs":6,"title":2},"395":{"body":99,"breadcrumbs":5,"title":1},"396":{"body":61,"breadcrumbs":5,"title":1},"397":{"body":27,"breadcrumbs":6,"title":2},"398":{"body":104,"breadcrumbs":7,"title":3},"399":{"body":3,"breadcrumbs":6,"title":2},"4":{"body":19,"breadcrumbs":4,"title":3},"40":{"body":4,"breadcrumbs":5,"title":1},"400":{"body":20,"breadcrumbs":5,"title":1},"401":{"body":45,"breadcrumbs":4,"title":1},"402":{"body":31,"breadcrumbs":6,"title":3},"403":{"body":0,"breadcrumbs":5,"title":2},"404":{"body":108,"breadcrumbs":4,"title":1},"405":{"body":0,"breadcrumbs":5,"title":2},"406":{"body":77,"breadcrumbs":4,"title":1},"407":{"body":48,"breadcrumbs":4,"title":1},"408":{"body":37,"breadcrumbs":5,"title":2},"409":{"body":1,"breadcrumbs":6,"title":3},"41":{"body":39,"breadcrumbs":7,"title":3},"410":{"body":3,"breadcrumbs":5,"title":2},"411":{"body":14,"breadcrumbs":4,"title":1},"412":{"body":35,"breadcrumbs":6,"title":2},"413":{"body":0,"breadcrumbs":6,"title":2},"414":{"body":192,"breadcrumbs":5,"title":1},"415":{"body":0,"breadcrumbs":6,"title":2},"416":{"body":110,"breadcrumbs":5,"title":1},"417":{"body":59,"breadcrumbs":5,"title":1},"418":{"body":28,"breadcrumbs":6,"title":2},"419":{"body":104,"breadcrumbs":7,"title":3},"42":{"body":18,"breadcrumbs":7,"title":3},"420":{"body":6,"breadcrumbs":6,"title":2},"421":{"body":20,"breadcrumbs":5,"title":1},"422":{"body":22,"breadcrumbs":4,"title":1},"423":{"body":15,"breadcrumbs":4,"title":1},"424":{"body":0,"breadcrumbs":5,"title":2},"425":{"body":134,"breadcrumbs":4,"title":1},"426":{"body":0,"breadcrumbs":5,"title":2},"427":{"body":110,"breadcrumbs":4,"title":1},"428":{"body":69,"breadcrumbs":4,"title":1},"429":{"body":37,"breadcrumbs":5,"title":2},"43":{"body":17,"breadcrumbs":8,"title":4},"430":{"body":1,"breadcrumbs":6,"title":3},"431":{"body":13,"breadcrumbs":5,"title":2},"432":{"body":14,"breadcrumbs":4,"title":1},"433":{"body":11,"breadcrumbs":6,"title":2},"434":{"body":0,"breadcrumbs":6,"title":2},"435":{"body":140,"breadcrumbs":5,"title":1},"436":{"body":0,"breadcrumbs":6,"title":2},"437":{"body":95,"breadcrumbs":5,"title":1},"438":{"body":60,"breadcrumbs":5,"title":1},"439":{"body":31,"breadcrumbs":6,"title":2},"44":{"body":83,"breadcrumbs":9,"title":5},"440":{"body":104,"breadcrumbs":7,"title":3},"441":{"body":7,"breadcrumbs":6,"title":2},"442":{"body":20,"breadcrumbs":5,"title":1},"443":{"body":29,"breadcrumbs":6,"title":2},"444":{"body":0,"breadcrumbs":6,"title":2},"445":{"body":94,"breadcrumbs":5,"title":1},"446":{"body":105,"breadcrumbs":5,"title":1},"447":{"body":0,"breadcrumbs":6,"title":2},"448":{"body":101,"breadcrumbs":5,"title":1},"449":{"body":41,"breadcrumbs":5,"title":1},"45":{"body":0,"breadcrumbs":6,"title":2},"450":{"body":39,"breadcrumbs":6,"title":2},"451":{"body":1,"breadcrumbs":7,"title":3},"452":{"body":3,"breadcrumbs":6,"title":2},"453":{"body":14,"breadcrumbs":5,"title":1},"454":{"body":45,"breadcrumbs":4,"title":1},"455":{"body":0,"breadcrumbs":5,"title":2},"456":{"body":128,"breadcrumbs":4,"title":1},"457":{"body":65,"breadcrumbs":4,"title":1},"458":{"body":49,"breadcrumbs":4,"title":1},"459":{"body":45,"breadcrumbs":4,"title":1},"46":{"body":57,"breadcrumbs":5,"title":1},"460":{"body":14,"breadcrumbs":4,"title":1},"461":{"body":55,"breadcrumbs":4,"title":1},"462":{"body":52,"breadcrumbs":4,"title":1},"463":{"body":0,"breadcrumbs":5,"title":2},"464":{"body":78,"breadcrumbs":4,"title":1},"465":{"body":42,"breadcrumbs":4,"title":1},"466":{"body":41,"breadcrumbs":5,"title":2},"467":{"body":39,"breadcrumbs":6,"title":3},"468":{"body":16,"breadcrumbs":5,"title":2},"469":{"body":4,"breadcrumbs":5,"title":2},"47":{"body":22,"breadcrumbs":8,"title":4},"470":{"body":14,"breadcrumbs":4,"title":1},"471":{"body":156,"breadcrumbs":6,"title":2},"472":{"body":0,"breadcrumbs":6,"title":2},"473":{"body":92,"breadcrumbs":5,"title":1},"474":{"body":63,"breadcrumbs":5,"title":1},"475":{"body":86,"breadcrumbs":5,"title":1},"476":{"body":154,"breadcrumbs":5,"title":1},"477":{"body":25,"breadcrumbs":5,"title":1},"478":{"body":53,"breadcrumbs":5,"title":1},"479":{"body":0,"breadcrumbs":6,"title":2},"48":{"body":44,"breadcrumbs":5,"title":1},"480":{"body":179,"breadcrumbs":5,"title":1},"481":{"body":57,"breadcrumbs":5,"title":1},"482":{"body":28,"breadcrumbs":6,"title":2},"483":{"body":23,"breadcrumbs":7,"title":3},"484":{"body":76,"breadcrumbs":5,"title":1},"485":{"body":4,"breadcrumbs":6,"title":2},"486":{"body":6,"breadcrumbs":5,"title":1},"487":{"body":82,"breadcrumbs":5,"title":1},"488":{"body":23,"breadcrumbs":8,"title":3},"489":{"body":0,"breadcrumbs":7,"title":2},"49":{"body":0,"breadcrumbs":5,"title":1},"490":{"body":61,"breadcrumbs":6,"title":1},"491":{"body":67,"breadcrumbs":6,"title":1},"492":{"body":46,"breadcrumbs":6,"title":1},"493":{"body":114,"breadcrumbs":6,"title":1},"494":{"body":116,"breadcrumbs":6,"title":1},"495":{"body":0,"breadcrumbs":7,"title":2},"496":{"body":81,"breadcrumbs":6,"title":1},"497":{"body":23,"breadcrumbs":6,"title":1},"498":{"body":35,"breadcrumbs":7,"title":2},"499":{"body":127,"breadcrumbs":8,"title":3},"5":{"body":62,"breadcrumbs":2,"title":1},"50":{"body":40,"breadcrumbs":10,"title":6},"500":{"body":17,"breadcrumbs":7,"title":2},"501":{"body":81,"breadcrumbs":6,"title":1},"502":{"body":10,"breadcrumbs":6,"title":1},"503":{"body":45,"breadcrumbs":6,"title":2},"504":{"body":0,"breadcrumbs":6,"title":2},"505":{"body":69,"breadcrumbs":5,"title":1},"506":{"body":0,"breadcrumbs":6,"title":2},"507":{"body":192,"breadcrumbs":5,"title":1},"508":{"body":60,"breadcrumbs":5,"title":1},"509":{"body":25,"breadcrumbs":6,"title":2},"51":{"body":26,"breadcrumbs":8,"title":4},"510":{"body":30,"breadcrumbs":7,"title":3},"511":{"body":13,"breadcrumbs":5,"title":1},"512":{"body":4,"breadcrumbs":6,"title":2},"513":{"body":9,"breadcrumbs":5,"title":1},"514":{"body":83,"breadcrumbs":5,"title":1},"515":{"body":19,"breadcrumbs":8,"title":3},"516":{"body":0,"breadcrumbs":7,"title":2},"517":{"body":60,"breadcrumbs":6,"title":1},"518":{"body":0,"breadcrumbs":7,"title":2},"519":{"body":80,"breadcrumbs":6,"title":1},"52":{"body":48,"breadcrumbs":8,"title":4},"520":{"body":24,"breadcrumbs":6,"title":1},"521":{"body":35,"breadcrumbs":7,"title":2},"522":{"body":134,"breadcrumbs":8,"title":3},"523":{"body":15,"breadcrumbs":7,"title":2},"524":{"body":59,"breadcrumbs":6,"title":1},"525":{"body":10,"breadcrumbs":6,"title":1},"526":{"body":11,"breadcrumbs":4,"title":1},"527":{"body":0,"breadcrumbs":5,"title":2},"528":{"body":65,"breadcrumbs":4,"title":1},"529":{"body":102,"breadcrumbs":4,"title":1},"53":{"body":21,"breadcrumbs":8,"title":4},"530":{"body":0,"breadcrumbs":5,"title":2},"531":{"body":110,"breadcrumbs":4,"title":1},"532":{"body":53,"breadcrumbs":4,"title":1},"533":{"body":39,"breadcrumbs":5,"title":2},"534":{"body":1,"breadcrumbs":6,"title":3},"535":{"body":3,"breadcrumbs":5,"title":2},"536":{"body":14,"breadcrumbs":4,"title":1},"537":{"body":20,"breadcrumbs":4,"title":1},"538":{"body":32,"breadcrumbs":4,"title":1},"539":{"body":0,"breadcrumbs":5,"title":2},"54":{"body":36,"breadcrumbs":10,"title":6},"540":{"body":41,"breadcrumbs":4,"title":1},"541":{"body":51,"breadcrumbs":4,"title":1},"542":{"body":0,"breadcrumbs":5,"title":2},"543":{"body":67,"breadcrumbs":4,"title":1},"544":{"body":64,"breadcrumbs":4,"title":1},"545":{"body":42,"breadcrumbs":5,"title":2},"546":{"body":12,"breadcrumbs":7,"title":4},"547":{"body":1,"breadcrumbs":6,"title":3},"548":{"body":13,"breadcrumbs":5,"title":2},"549":{"body":33,"breadcrumbs":4,"title":1},"55":{"body":9,"breadcrumbs":10,"title":6},"550":{"body":0,"breadcrumbs":5,"title":2},"551":{"body":143,"breadcrumbs":4,"title":1},"552":{"body":0,"breadcrumbs":5,"title":2},"553":{"body":146,"breadcrumbs":4,"title":1},"554":{"body":80,"breadcrumbs":4,"title":1},"555":{"body":48,"breadcrumbs":4,"title":1},"556":{"body":40,"breadcrumbs":5,"title":2},"557":{"body":32,"breadcrumbs":6,"title":3},"558":{"body":4,"breadcrumbs":5,"title":2},"559":{"body":14,"breadcrumbs":4,"title":1},"56":{"body":13,"breadcrumbs":7,"title":3},"560":{"body":58,"breadcrumbs":4,"title":1},"561":{"body":18,"breadcrumbs":6,"title":3},"562":{"body":0,"breadcrumbs":5,"title":2},"563":{"body":134,"breadcrumbs":4,"title":1},"564":{"body":0,"breadcrumbs":5,"title":2},"565":{"body":179,"breadcrumbs":4,"title":1},"566":{"body":52,"breadcrumbs":4,"title":1},"567":{"body":64,"breadcrumbs":5,"title":2},"568":{"body":69,"breadcrumbs":6,"title":3},"569":{"body":3,"breadcrumbs":5,"title":2},"57":{"body":28,"breadcrumbs":11,"title":5},"570":{"body":53,"breadcrumbs":4,"title":1},"571":{"body":14,"breadcrumbs":4,"title":1},"572":{"body":35,"breadcrumbs":6,"title":2},"573":{"body":0,"breadcrumbs":6,"title":2},"574":{"body":24,"breadcrumbs":5,"title":1},"575":{"body":40,"breadcrumbs":5,"title":1},"576":{"body":0,"breadcrumbs":6,"title":2},"577":{"body":130,"breadcrumbs":5,"title":1},"578":{"body":54,"breadcrumbs":5,"title":1},"579":{"body":40,"breadcrumbs":6,"title":2},"58":{"body":2,"breadcrumbs":7,"title":1},"580":{"body":72,"breadcrumbs":7,"title":3},"581":{"body":3,"breadcrumbs":5,"title":1},"582":{"body":45,"breadcrumbs":5,"title":1},"583":{"body":29,"breadcrumbs":8,"title":3},"584":{"body":0,"breadcrumbs":7,"title":2},"585":{"body":67,"breadcrumbs":6,"title":1},"586":{"body":68,"breadcrumbs":6,"title":1},"587":{"body":0,"breadcrumbs":7,"title":2},"588":{"body":84,"breadcrumbs":6,"title":1},"589":{"body":23,"breadcrumbs":6,"title":1},"59":{"body":21,"breadcrumbs":10,"title":4},"590":{"body":44,"breadcrumbs":7,"title":2},"591":{"body":142,"breadcrumbs":8,"title":3},"592":{"body":14,"breadcrumbs":7,"title":2},"593":{"body":56,"breadcrumbs":6,"title":1},"594":{"body":10,"breadcrumbs":6,"title":1},"595":{"body":12,"breadcrumbs":4,"title":1},"596":{"body":17,"breadcrumbs":6,"title":3},"597":{"body":0,"breadcrumbs":5,"title":2},"598":{"body":50,"breadcrumbs":4,"title":1},"599":{"body":0,"breadcrumbs":5,"title":2},"6":{"body":31,"breadcrumbs":2,"title":1},"60":{"body":61,"breadcrumbs":9,"title":3},"600":{"body":93,"breadcrumbs":4,"title":1},"601":{"body":66,"breadcrumbs":4,"title":1},"602":{"body":38,"breadcrumbs":5,"title":2},"603":{"body":10,"breadcrumbs":6,"title":3},"604":{"body":3,"breadcrumbs":5,"title":2},"605":{"body":14,"breadcrumbs":4,"title":1},"606":{"body":16,"breadcrumbs":6,"title":2},"607":{"body":18,"breadcrumbs":9,"title":5},"608":{"body":0,"breadcrumbs":6,"title":2},"609":{"body":53,"breadcrumbs":5,"title":1},"61":{"body":31,"breadcrumbs":10,"title":4},"610":{"body":0,"breadcrumbs":6,"title":2},"611":{"body":47,"breadcrumbs":5,"title":1},"612":{"body":23,"breadcrumbs":5,"title":1},"613":{"body":56,"breadcrumbs":6,"title":2},"614":{"body":115,"breadcrumbs":7,"title":3},"615":{"body":3,"breadcrumbs":6,"title":2},"616":{"body":46,"breadcrumbs":5,"title":1},"617":{"body":10,"breadcrumbs":5,"title":1},"618":{"body":37,"breadcrumbs":4,"title":1},"619":{"body":29,"breadcrumbs":6,"title":3},"62":{"body":56,"breadcrumbs":8,"title":4},"620":{"body":0,"breadcrumbs":5,"title":2},"621":{"body":168,"breadcrumbs":5,"title":2},"622":{"body":0,"breadcrumbs":5,"title":2},"623":{"body":103,"breadcrumbs":4,"title":1},"624":{"body":45,"breadcrumbs":4,"title":1},"625":{"body":42,"breadcrumbs":5,"title":2},"626":{"body":67,"breadcrumbs":5,"title":2},"627":{"body":9,"breadcrumbs":5,"title":2},"628":{"body":8,"breadcrumbs":4,"title":1},"629":{"body":9,"breadcrumbs":4,"title":1},"63":{"body":64,"breadcrumbs":7,"title":3},"630":{"body":16,"breadcrumbs":4,"title":1},"631":{"body":0,"breadcrumbs":5,"title":2},"632":{"body":72,"breadcrumbs":4,"title":1},"633":{"body":0,"breadcrumbs":5,"title":2},"634":{"body":66,"breadcrumbs":4,"title":1},"635":{"body":67,"breadcrumbs":4,"title":1},"636":{"body":43,"breadcrumbs":5,"title":2},"637":{"body":9,"breadcrumbs":5,"title":2},"638":{"body":3,"breadcrumbs":4,"title":1},"639":{"body":0,"breadcrumbs":5,"title":2},"64":{"body":19,"breadcrumbs":7,"title":3},"640":{"body":66,"breadcrumbs":4,"title":1},"641":{"body":0,"breadcrumbs":5,"title":2},"642":{"body":76,"breadcrumbs":4,"title":1},"643":{"body":26,"breadcrumbs":4,"title":1},"644":{"body":59,"breadcrumbs":5,"title":2},"645":{"body":43,"breadcrumbs":7,"title":4},"646":{"body":11,"breadcrumbs":5,"title":2},"647":{"body":21,"breadcrumbs":2,"title":1},"648":{"body":0,"breadcrumbs":3,"title":2},"649":{"body":74,"breadcrumbs":2,"title":1},"65":{"body":65,"breadcrumbs":8,"title":4},"650":{"body":0,"breadcrumbs":3,"title":2},"651":{"body":18,"breadcrumbs":2,"title":1},"652":{"body":269,"breadcrumbs":2,"title":1},"653":{"body":83,"breadcrumbs":2,"title":1},"654":{"body":21,"breadcrumbs":5,"title":4},"655":{"body":40,"breadcrumbs":2,"title":1},"656":{"body":36,"breadcrumbs":2,"title":1},"657":{"body":30,"breadcrumbs":2,"title":1},"658":{"body":27,"breadcrumbs":2,"title":1},"659":{"body":13,"breadcrumbs":5,"title":4},"66":{"body":47,"breadcrumbs":8,"title":4},"660":{"body":39,"breadcrumbs":2,"title":1},"661":{"body":26,"breadcrumbs":2,"title":1},"662":{"body":22,"breadcrumbs":4,"title":3},"663":{"body":29,"breadcrumbs":10,"title":5},"664":{"body":31,"breadcrumbs":6,"title":1},"665":{"body":62,"breadcrumbs":6,"title":1},"666":{"body":45,"breadcrumbs":6,"title":1},"667":{"body":21,"breadcrumbs":6,"title":1},"668":{"body":25,"breadcrumbs":6,"title":1},"669":{"body":49,"breadcrumbs":6,"title":1},"67":{"body":64,"breadcrumbs":8,"title":4},"670":{"body":32,"breadcrumbs":6,"title":1},"671":{"body":55,"breadcrumbs":10,"title":6},"672":{"body":9,"breadcrumbs":8,"title":4},"673":{"body":159,"breadcrumbs":9,"title":5},"674":{"body":60,"breadcrumbs":10,"title":5},"675":{"body":37,"breadcrumbs":7,"title":2},"676":{"body":13,"breadcrumbs":8,"title":3},"677":{"body":208,"breadcrumbs":8,"title":3},"678":{"body":172,"breadcrumbs":8,"title":3},"679":{"body":95,"breadcrumbs":9,"title":4},"68":{"body":23,"breadcrumbs":7,"title":3},"680":{"body":40,"breadcrumbs":7,"title":2},"681":{"body":22,"breadcrumbs":4,"title":3},"682":{"body":21,"breadcrumbs":10,"title":5},"683":{"body":6,"breadcrumbs":9,"title":4},"684":{"body":41,"breadcrumbs":10,"title":5},"685":{"body":53,"breadcrumbs":8,"title":3},"686":{"body":45,"breadcrumbs":9,"title":4},"687":{"body":35,"breadcrumbs":10,"title":5},"688":{"body":44,"breadcrumbs":4,"title":3},"689":{"body":24,"breadcrumbs":7,"title":3},"69":{"body":0,"breadcrumbs":4,"title":3},"690":{"body":61,"breadcrumbs":7,"title":3},"691":{"body":17,"breadcrumbs":11,"title":7},"692":{"body":57,"breadcrumbs":8,"title":4},"693":{"body":55,"breadcrumbs":3,"title":1},"694":{"body":8,"breadcrumbs":4,"title":2},"695":{"body":0,"breadcrumbs":4,"title":2},"696":{"body":12,"breadcrumbs":3,"title":1},"697":{"body":96,"breadcrumbs":6,"title":1},"698":{"body":37,"breadcrumbs":8,"title":3},"699":{"body":0,"breadcrumbs":6,"title":1},"7":{"body":14,"breadcrumbs":2,"title":1},"70":{"body":58,"breadcrumbs":3,"title":2},"700":{"body":9,"breadcrumbs":7,"title":2},"701":{"body":55,"breadcrumbs":6,"title":1},"702":{"body":7,"breadcrumbs":2,"title":1},"703":{"body":23,"breadcrumbs":2,"title":1},"704":{"body":32,"breadcrumbs":3,"title":2},"705":{"body":12,"breadcrumbs":3,"title":2},"706":{"body":1,"breadcrumbs":4,"title":3},"707":{"body":10,"breadcrumbs":3,"title":2},"708":{"body":19,"breadcrumbs":2,"title":1},"709":{"body":18,"breadcrumbs":2,"title":1},"71":{"body":41,"breadcrumbs":3,"title":2},"710":{"body":54,"breadcrumbs":2,"title":1},"711":{"body":45,"breadcrumbs":3,"title":2},"712":{"body":18,"breadcrumbs":4,"title":3},"713":{"body":7,"breadcrumbs":2,"title":1},"714":{"body":2,"breadcrumbs":4,"title":2},"715":{"body":56,"breadcrumbs":6,"title":4},"716":{"body":54,"breadcrumbs":6,"title":4},"717":{"body":16,"breadcrumbs":6,"title":4},"718":{"body":30,"breadcrumbs":6,"title":4},"719":{"body":25,"breadcrumbs":6,"title":4},"72":{"body":13,"breadcrumbs":4,"title":3},"720":{"body":45,"breadcrumbs":6,"title":4},"721":{"body":69,"breadcrumbs":6,"title":4},"722":{"body":16,"breadcrumbs":6,"title":4},"723":{"body":9,"breadcrumbs":6,"title":4},"724":{"body":18,"breadcrumbs":6,"title":4},"725":{"body":23,"breadcrumbs":6,"title":4},"726":{"body":18,"breadcrumbs":6,"title":4},"727":{"body":63,"breadcrumbs":6,"title":4},"728":{"body":35,"breadcrumbs":6,"title":4},"729":{"body":51,"breadcrumbs":6,"title":4},"73":{"body":105,"breadcrumbs":3,"title":2},"730":{"body":28,"breadcrumbs":6,"title":4},"731":{"body":47,"breadcrumbs":6,"title":4},"732":{"body":51,"breadcrumbs":6,"title":4},"733":{"body":13,"breadcrumbs":6,"title":4},"734":{"body":78,"breadcrumbs":6,"title":4},"735":{"body":39,"breadcrumbs":6,"title":4},"736":{"body":74,"breadcrumbs":6,"title":4},"737":{"body":33,"breadcrumbs":6,"title":4},"738":{"body":99,"breadcrumbs":6,"title":4},"739":{"body":39,"breadcrumbs":6,"title":4},"74":{"body":35,"breadcrumbs":4,"title":3},"740":{"body":12,"breadcrumbs":6,"title":4},"741":{"body":75,"breadcrumbs":6,"title":4},"742":{"body":25,"breadcrumbs":6,"title":4},"743":{"body":17,"breadcrumbs":6,"title":4},"744":{"body":12,"breadcrumbs":6,"title":4},"745":{"body":25,"breadcrumbs":6,"title":4},"746":{"body":8,"breadcrumbs":6,"title":4},"747":{"body":58,"breadcrumbs":6,"title":4},"748":{"body":7,"breadcrumbs":6,"title":4},"749":{"body":13,"breadcrumbs":6,"title":4},"75":{"body":48,"breadcrumbs":3,"title":2},"750":{"body":46,"breadcrumbs":6,"title":4},"751":{"body":18,"breadcrumbs":6,"title":4},"752":{"body":137,"breadcrumbs":6,"title":4},"753":{"body":37,"breadcrumbs":6,"title":4},"754":{"body":19,"breadcrumbs":6,"title":4},"755":{"body":23,"breadcrumbs":6,"title":4},"756":{"body":36,"breadcrumbs":6,"title":4},"757":{"body":25,"breadcrumbs":6,"title":4},"758":{"body":26,"breadcrumbs":6,"title":4},"759":{"body":32,"breadcrumbs":6,"title":4},"76":{"body":119,"breadcrumbs":3,"title":2},"760":{"body":19,"breadcrumbs":6,"title":4},"761":{"body":40,"breadcrumbs":6,"title":4},"762":{"body":95,"breadcrumbs":6,"title":4},"763":{"body":42,"breadcrumbs":6,"title":4},"764":{"body":20,"breadcrumbs":6,"title":4},"765":{"body":70,"breadcrumbs":6,"title":4},"766":{"body":11,"breadcrumbs":6,"title":4},"767":{"body":20,"breadcrumbs":6,"title":4},"768":{"body":12,"breadcrumbs":6,"title":4},"769":{"body":25,"breadcrumbs":6,"title":4},"77":{"body":105,"breadcrumbs":5,"title":4},"770":{"body":31,"breadcrumbs":6,"title":4},"771":{"body":14,"breadcrumbs":6,"title":4},"772":{"body":166,"breadcrumbs":6,"title":4},"773":{"body":45,"breadcrumbs":6,"title":4},"774":{"body":20,"breadcrumbs":6,"title":4},"775":{"body":30,"breadcrumbs":6,"title":4},"776":{"body":56,"breadcrumbs":6,"title":4},"777":{"body":8,"breadcrumbs":6,"title":4},"778":{"body":7,"breadcrumbs":6,"title":4},"779":{"body":46,"breadcrumbs":6,"title":4},"78":{"body":155,"breadcrumbs":6,"title":5},"780":{"body":9,"breadcrumbs":6,"title":4},"781":{"body":8,"breadcrumbs":6,"title":4},"782":{"body":45,"breadcrumbs":6,"title":4},"783":{"body":14,"breadcrumbs":6,"title":4},"784":{"body":13,"breadcrumbs":6,"title":4},"785":{"body":21,"breadcrumbs":6,"title":4},"786":{"body":60,"breadcrumbs":6,"title":4},"787":{"body":9,"breadcrumbs":6,"title":4},"788":{"body":25,"breadcrumbs":6,"title":4},"789":{"body":38,"breadcrumbs":6,"title":4},"79":{"body":275,"breadcrumbs":3,"title":2},"790":{"body":28,"breadcrumbs":6,"title":4},"791":{"body":26,"breadcrumbs":6,"title":4},"792":{"body":39,"breadcrumbs":6,"title":4},"793":{"body":70,"breadcrumbs":6,"title":4},"794":{"body":14,"breadcrumbs":6,"title":4},"795":{"body":10,"breadcrumbs":6,"title":4},"796":{"body":31,"breadcrumbs":6,"title":4},"797":{"body":9,"breadcrumbs":6,"title":4},"798":{"body":15,"breadcrumbs":6,"title":4},"799":{"body":115,"breadcrumbs":6,"title":4},"8":{"body":24,"breadcrumbs":6,"title":3},"80":{"body":50,"breadcrumbs":4,"title":3},"800":{"body":13,"breadcrumbs":6,"title":4},"801":{"body":70,"breadcrumbs":6,"title":4},"802":{"body":81,"breadcrumbs":6,"title":4},"803":{"body":57,"breadcrumbs":6,"title":4},"804":{"body":118,"breadcrumbs":6,"title":4},"805":{"body":54,"breadcrumbs":6,"title":4},"806":{"body":68,"breadcrumbs":6,"title":4},"807":{"body":119,"breadcrumbs":6,"title":4},"808":{"body":7,"breadcrumbs":6,"title":4},"809":{"body":46,"breadcrumbs":6,"title":4},"81":{"body":6,"breadcrumbs":4,"title":3},"810":{"body":13,"breadcrumbs":6,"title":4},"811":{"body":45,"breadcrumbs":6,"title":4},"812":{"body":27,"breadcrumbs":6,"title":4},"813":{"body":23,"breadcrumbs":6,"title":4},"814":{"body":87,"breadcrumbs":6,"title":4},"815":{"body":40,"breadcrumbs":6,"title":4},"816":{"body":48,"breadcrumbs":6,"title":4},"817":{"body":42,"breadcrumbs":6,"title":4},"818":{"body":60,"breadcrumbs":6,"title":4},"819":{"body":22,"breadcrumbs":6,"title":4},"82":{"body":60,"breadcrumbs":4,"title":3},"820":{"body":30,"breadcrumbs":6,"title":4},"821":{"body":6,"breadcrumbs":6,"title":4},"822":{"body":6,"breadcrumbs":6,"title":4},"823":{"body":78,"breadcrumbs":6,"title":4},"824":{"body":61,"breadcrumbs":6,"title":4},"825":{"body":9,"breadcrumbs":6,"title":4},"826":{"body":12,"breadcrumbs":6,"title":4},"827":{"body":19,"breadcrumbs":6,"title":4},"828":{"body":25,"breadcrumbs":6,"title":4},"829":{"body":23,"breadcrumbs":6,"title":4},"83":{"body":71,"breadcrumbs":6,"title":5},"830":{"body":104,"breadcrumbs":6,"title":4},"831":{"body":68,"breadcrumbs":6,"title":4},"832":{"body":9,"breadcrumbs":6,"title":4},"833":{"body":34,"breadcrumbs":6,"title":4},"834":{"body":210,"breadcrumbs":6,"title":4},"835":{"body":21,"breadcrumbs":6,"title":4},"836":{"body":15,"breadcrumbs":6,"title":4},"837":{"body":84,"breadcrumbs":6,"title":4},"838":{"body":83,"breadcrumbs":6,"title":4},"839":{"body":95,"breadcrumbs":6,"title":4},"84":{"body":37,"breadcrumbs":3,"title":2},"840":{"body":53,"breadcrumbs":6,"title":4},"841":{"body":10,"breadcrumbs":6,"title":4},"842":{"body":66,"breadcrumbs":6,"title":4},"843":{"body":22,"breadcrumbs":6,"title":4},"844":{"body":20,"breadcrumbs":6,"title":4},"845":{"body":17,"breadcrumbs":6,"title":4},"846":{"body":53,"breadcrumbs":6,"title":4},"847":{"body":34,"breadcrumbs":6,"title":4},"848":{"body":16,"breadcrumbs":6,"title":4},"849":{"body":40,"breadcrumbs":6,"title":4},"85":{"body":26,"breadcrumbs":6,"title":5},"850":{"body":9,"breadcrumbs":6,"title":4},"851":{"body":9,"breadcrumbs":6,"title":4},"852":{"body":83,"breadcrumbs":6,"title":4},"853":{"body":80,"breadcrumbs":6,"title":4},"854":{"body":67,"breadcrumbs":6,"title":4},"855":{"body":15,"breadcrumbs":6,"title":4},"856":{"body":11,"breadcrumbs":6,"title":4},"857":{"body":30,"breadcrumbs":6,"title":4},"858":{"body":128,"breadcrumbs":6,"title":4},"859":{"body":55,"breadcrumbs":6,"title":4},"86":{"body":64,"breadcrumbs":5,"title":4},"860":{"body":55,"breadcrumbs":6,"title":4},"861":{"body":130,"breadcrumbs":6,"title":4},"862":{"body":114,"breadcrumbs":6,"title":4},"863":{"body":21,"breadcrumbs":6,"title":4},"864":{"body":125,"breadcrumbs":6,"title":4},"865":{"body":117,"breadcrumbs":6,"title":4},"866":{"body":29,"breadcrumbs":6,"title":4},"867":{"body":75,"breadcrumbs":6,"title":4},"868":{"body":23,"breadcrumbs":6,"title":4},"869":{"body":60,"breadcrumbs":6,"title":4},"87":{"body":57,"breadcrumbs":5,"title":4},"870":{"body":7,"breadcrumbs":6,"title":4},"871":{"body":22,"breadcrumbs":6,"title":4},"872":{"body":26,"breadcrumbs":6,"title":4},"873":{"body":42,"breadcrumbs":6,"title":4},"874":{"body":14,"breadcrumbs":6,"title":4},"875":{"body":35,"breadcrumbs":6,"title":4},"876":{"body":22,"breadcrumbs":6,"title":4},"877":{"body":15,"breadcrumbs":6,"title":4},"878":{"body":31,"breadcrumbs":6,"title":4},"879":{"body":28,"breadcrumbs":6,"title":4},"88":{"body":43,"breadcrumbs":4,"title":3},"880":{"body":59,"breadcrumbs":6,"title":4},"881":{"body":32,"breadcrumbs":6,"title":4},"882":{"body":29,"breadcrumbs":7,"title":5},"883":{"body":6,"breadcrumbs":7,"title":5},"884":{"body":22,"breadcrumbs":7,"title":5},"885":{"body":11,"breadcrumbs":7,"title":5},"886":{"body":7,"breadcrumbs":7,"title":5},"887":{"body":2,"breadcrumbs":7,"title":5},"888":{"body":8,"breadcrumbs":3,"title":1},"889":{"body":2,"breadcrumbs":4,"title":2},"89":{"body":155,"breadcrumbs":2,"title":1},"890":{"body":20,"breadcrumbs":6,"title":4},"891":{"body":22,"breadcrumbs":6,"title":4},"892":{"body":23,"breadcrumbs":6,"title":4},"893":{"body":8,"breadcrumbs":6,"title":4},"894":{"body":26,"breadcrumbs":7,"title":5},"895":{"body":34,"breadcrumbs":7,"title":5},"896":{"body":8,"breadcrumbs":6,"title":4},"897":{"body":29,"breadcrumbs":7,"title":5},"898":{"body":18,"breadcrumbs":7,"title":5},"899":{"body":11,"breadcrumbs":7,"title":5},"9":{"body":180,"breadcrumbs":6,"title":3},"90":{"body":0,"breadcrumbs":7,"title":3},"900":{"body":18,"breadcrumbs":7,"title":5},"901":{"body":7,"breadcrumbs":6,"title":4},"902":{"body":18,"breadcrumbs":7,"title":5},"903":{"body":12,"breadcrumbs":7,"title":5},"904":{"body":11,"breadcrumbs":6,"title":4},"905":{"body":27,"breadcrumbs":6,"title":4},"906":{"body":9,"breadcrumbs":6,"title":4},"907":{"body":37,"breadcrumbs":6,"title":4},"908":{"body":25,"breadcrumbs":6,"title":4},"909":{"body":39,"breadcrumbs":6,"title":4},"91":{"body":58,"breadcrumbs":6,"title":2},"910":{"body":12,"breadcrumbs":6,"title":4},"911":{"body":25,"breadcrumbs":6,"title":4},"912":{"body":98,"breadcrumbs":6,"title":4},"913":{"body":45,"breadcrumbs":6,"title":4},"914":{"body":42,"breadcrumbs":6,"title":4},"915":{"body":127,"breadcrumbs":6,"title":4},"916":{"body":119,"breadcrumbs":6,"title":4},"917":{"body":32,"breadcrumbs":6,"title":4},"918":{"body":20,"breadcrumbs":6,"title":4},"919":{"body":91,"breadcrumbs":6,"title":4},"92":{"body":41,"breadcrumbs":6,"title":2},"920":{"body":32,"breadcrumbs":6,"title":4},"921":{"body":55,"breadcrumbs":6,"title":4},"922":{"body":26,"breadcrumbs":6,"title":4},"923":{"body":83,"breadcrumbs":6,"title":4},"924":{"body":69,"breadcrumbs":6,"title":4},"925":{"body":38,"breadcrumbs":6,"title":4},"926":{"body":13,"breadcrumbs":6,"title":4},"927":{"body":34,"breadcrumbs":6,"title":4},"928":{"body":20,"breadcrumbs":6,"title":4},"929":{"body":139,"breadcrumbs":6,"title":4},"93":{"body":13,"breadcrumbs":7,"title":3},"930":{"body":12,"breadcrumbs":6,"title":4},"931":{"body":6,"breadcrumbs":6,"title":4},"932":{"body":19,"breadcrumbs":6,"title":4},"933":{"body":84,"breadcrumbs":6,"title":4},"934":{"body":21,"breadcrumbs":6,"title":4},"935":{"body":27,"breadcrumbs":6,"title":4},"936":{"body":16,"breadcrumbs":6,"title":4},"937":{"body":20,"breadcrumbs":6,"title":4},"938":{"body":30,"breadcrumbs":6,"title":4},"939":{"body":41,"breadcrumbs":6,"title":4},"94":{"body":105,"breadcrumbs":6,"title":2},"940":{"body":9,"breadcrumbs":6,"title":4},"941":{"body":13,"breadcrumbs":6,"title":4},"942":{"body":24,"breadcrumbs":6,"title":4},"943":{"body":7,"breadcrumbs":6,"title":4},"944":{"body":10,"breadcrumbs":6,"title":4},"945":{"body":20,"breadcrumbs":6,"title":4},"946":{"body":13,"breadcrumbs":6,"title":4},"947":{"body":32,"breadcrumbs":6,"title":4},"948":{"body":9,"breadcrumbs":6,"title":4},"949":{"body":10,"breadcrumbs":6,"title":4},"95":{"body":35,"breadcrumbs":7,"title":3},"950":{"body":66,"breadcrumbs":6,"title":4},"951":{"body":100,"breadcrumbs":6,"title":4},"952":{"body":27,"breadcrumbs":6,"title":4},"953":{"body":36,"breadcrumbs":6,"title":4},"954":{"body":10,"breadcrumbs":6,"title":4},"955":{"body":9,"breadcrumbs":6,"title":4},"956":{"body":130,"breadcrumbs":6,"title":4},"957":{"body":22,"breadcrumbs":5,"title":3},"958":{"body":443,"breadcrumbs":4,"title":2},"959":{"body":20,"breadcrumbs":4,"title":2},"96":{"body":48,"breadcrumbs":6,"title":2},"960":{"body":49,"breadcrumbs":4,"title":2},"961":{"body":23,"breadcrumbs":5,"title":3},"962":{"body":34,"breadcrumbs":3,"title":1},"963":{"body":51,"breadcrumbs":4,"title":2},"964":{"body":66,"breadcrumbs":4,"title":2},"965":{"body":28,"breadcrumbs":5,"title":3},"966":{"body":17,"breadcrumbs":3,"title":1},"967":{"body":0,"breadcrumbs":5,"title":3},"968":{"body":69,"breadcrumbs":4,"title":2},"969":{"body":434,"breadcrumbs":4,"title":2},"97":{"body":119,"breadcrumbs":6,"title":2},"98":{"body":105,"breadcrumbs":8,"title":4},"99":{"body":155,"breadcrumbs":9,"title":5}},"docs":{"0":{"body":"The Glean SDKs are modern cross-platform telemetry client libraries and are a part of the Glean project . Glean logo The Glean SDKs are available for several programming languages and development environments. Each SDK aims to contain the same group of features with similar, but idiomatic APIs. To learn more about each SDK, refer to the SDKs overview page. To get started adding Glean to your project, choose one of the following guides: Kotlin Get started adding Glean to an Android application or library. Swift Get started adding Glean to an iOS application or library. Python Get started adding Glean to any Python project. Rust Get started adding Glean to any Rust project or library. JavaScript Get started adding Glean to a website, web extension or Node.js project. QML Get started adding Glean to a Qt/QML application or library. Server Get started adding Glean to a server-side application. For development documentation on the Glean SDK, refer to the Glean SDK development book .","breadcrumbs":"Glean » Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Glean » Sections","id":"1","title":"Sections"},"10":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Kotlin project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so. Currently, this SDK only supports the Android platform.","breadcrumbs":"Adding Glean to your project » Kotlin » Adding Glean to your Kotlin project","id":"10","title":"Adding Glean to your Kotlin project"},"100":{"body":"Let's work through an example to see how these lifetimes play out in practice. Let's suppose we have a user preference, \"turbo mode\", which defaults to false, but the user can turn it to true at any time. We want to know when this flag is true so we can measure its affect on other metrics in the same ping. In the following diagram, we look at a time period that sends 4 pings across two separate runs of the application. We assume here, that like the Glean SDK's built-in metrics ping , the developer writing the metric isn't in control of when the ping is submitted. In this diagram, the ping measurement windows are represented as rectangles, but the moment the ping is \"submitted\" is represented by its right edge. The user changes the \"turbo mode\" setting from false to true in the first run, and then toggles it again twice in the second run. Metric lifetime timeline A. Ping lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. It is included in the first ping after being recorded (Ping 2), which causes it to be cleared. B. Ping lifetime, set on init and change : The default value is included in Ping 1, and the changed value is included in Ping 2, which causes it to be cleared. It therefore misses Ping 3, but when the application is started, it is recorded again and it is included in Ping 4. However, this causes it to be cleared again and it is not in Ping 5. C. Application lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. After the value is changed, it is included in Pings 2 and 3, but then due to application restart it is cleared, so it is not included until the value is manually toggled again. D. Application, set on init and change : The default value is included in Ping 1, and the changed value is included in Pings 2 and 3. Even though the application startup causes it to be cleared, it is set again, and all subsequent pings also have the value. E. User, set on change : The default value is missing from Ping 1, but since user lifetime metrics aren't cleared unless the user profile is reset (e.g. on Android, when the product is uninstalled), it is included in all subsequent pings. F. User, set on init and change : Since user lifetime metrics aren't cleared unless the user profile is reset, it is included in all subsequent pings. This would be true even if the \"turbo mode\" preference were never changed again. Note that for all of the metric configurations, the toggle of the preference off and on during Ping 4 is completely missed. If you need to create a ping containing one, and only one, value for this metric, consider using a custom ping to create a ping whose lifetime matches the lifetime of the value.","breadcrumbs":"Metrics » Adding new metrics » A lifetime example","id":"100","title":"A lifetime example"},"101":{"body":"If the timing at which the metric is sent in the ping needs to closely match the timing of the metrics value, the best option is to use a custom ping to manually control when pings are sent. This is especially useful when metrics need to be tightly related to one another, for example when you need to measure the distribution of frame paint times when a particular rendering backend is in use. If these metrics were in different pings, with different measurement windows, it is much harder to do that kind of reasoning with much certainty.","breadcrumbs":"Metrics » Adding new metrics » What if none of these lifetimes are appropriate?","id":"101","title":"What if none of these lifetimes are appropriate?"},"102":{"body":"Metric names have a maximum length of 30 characters.","breadcrumbs":"Metrics » Adding new metrics » What should this new metric be called?","id":"102","title":"What should this new metric be called?"},"103":{"body":"There's a lot of value using the same name for analogous metrics collected across different products. For example, BigQuery makes it simple to join columns with the same name across multiple tables. Therefore, we encourage you to investigate if a similar metric is already being collected by another product. If it is, there may be an opportunity for code reuse across these products, and if all the projects are using the Glean SDK, it's easy for libraries to send their own metrics. If sharing the code doesn't make sense, at a minimum we recommend using the same metric name for similar actions and concepts whenever possible.","breadcrumbs":"Metrics » Adding new metrics » Reuse names from other applications","id":"103","title":"Reuse names from other applications"},"104":{"body":"Metric identifiers (the combination of a metric's category and name) must be unique across all metrics that are sent by a single application. This includes not only the metrics defined in the app's metrics.yaml, but the metrics.yaml of any Glean SDK-using library that the application uses, including the Glean SDK itself. Therefore, care should be taken to name things specifically enough so as to avoid namespace collisions. In practice, this generally involves thinking carefully about the category of the metric, more than the name. Note: Duplicate metric identifiers are not currently detected at build time. See bug 1578383 for progress on that. However, the probe_scraper process, which runs nightly, will detect duplicate metrics and e-mail the notification_emails associated with the given metrics.","breadcrumbs":"Metrics » Adding new metrics » Make names unique within an application","id":"104","title":"Make names unique within an application"},"105":{"body":"More broadly, you should choose the names of metrics to be as specific as possible. It is not necessary to put the type of the metric in the category or name, since this information is retained in other ways through the entire end-to-end system. For example, if defining a set of events related to search, put them in a category called search, rather than just events or search_events. The events word here would be redundant.","breadcrumbs":"Metrics » Adding new metrics » Be as specific as possible","id":"105","title":"Be as specific as possible"},"106":{"body":"The current set of metrics the Glean SDKs support is based on known common use cases, but new use cases are discovered all the time. Please reach out to us on #glean:mozilla.org . If you think you need a new metric type, we have a process for that .","breadcrumbs":"Metrics » Adding new metrics » What if none of these metric types is the right fit?","id":"106","title":"What if none of these metric types is the right fit?"},"107":{"body":"The Glean SDK has rich support for writing unit tests involving metrics. Writing a good unit test is a large topic, but in general, you should write unit tests for all new telemetry that does the following: Performs the operation being measured. Asserts that metrics contain the expected data, using the testGetValue API on the metric. Where applicable, asserts that no errors are recorded, such as when values are out of range, using the testGetNumRecordedErrors API. In addition to unit tests, it is good practice to validate the incoming data for the new metric on a pre-release channel to make sure things are working as expected.","breadcrumbs":"Metrics » Adding new metrics » How do I make sure my metric is working?","id":"107","title":"How do I make sure my metric is working?"},"108":{"body":"The metrics.yaml file defines the metrics your application or library will send. They are organized into categories. The overall organization is: # Required to indicate this is a `metrics.yaml` file\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 toolbar: click: type: event description: | Event to record toolbar clicks. metadata: tags: - Interaction notification_emails: - CHANGE-ME@example.com bugs: - https://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review expires: 2019-06-01 # <-- Update to a date in the future double_click: ... Refer to the metrics YAML registry format for a full reference on the metrics.yaml file structure.","breadcrumbs":"Metrics » Adding new metrics » Adding the metric to the metrics.yaml file","id":"108","title":"Adding the metric to the metrics.yaml file"},"109":{"body":"The reference documentation for each metric type goes into detail about using each metric type from your code. Note that all Glean metrics are write-only. Outside of unit tests, it is impossible to retrieve a value from the Glean SDK's database. While this may seem limiting, this is required to: enforce the semantics of certain metric types (e.g. that Counters can only be incremented). ensure the lifetime of the metric (when it is cleared or reset) is correctly handled.","breadcrumbs":"Metrics » Adding new metrics » Using the metric from your code","id":"109","title":"Using the metric from your code"},"11":{"body":"The Glean Kotlin SDK is published on maven.mozilla.org . To use it, you need to add the following to your project's top-level build file, in the allprojects block (see e.g. Glean SDK's own build.gradle ): repositories { maven { url \"https://maven.mozilla.org/maven2\" }\n} Each module that uses the Glean Kotlin SDK needs to specify it in its build file, in the dependencies block. Add this to your Gradle configuration: implementation \"org.mozilla.telemetry:glean:{latest-version}\" Pick the correct version The {latest-version} placeholder in the above link should be replaced with the latest version of the Glean SDK . For example, if version 63.0.0 is the latest version, then the include directive becomes: implementation \"org.mozilla.telemetry:glean:63.0.0\" Size impact on the application APK The Glean Kotlin SDK APK ships binary libraries for all the supported platforms. Each library file measures about 600KB. If the final APK size of the consuming project is a concern, please enable ABI splits .","breadcrumbs":"Adding Glean to your project » Kotlin » Setting up the dependency","id":"11","title":"Setting up the dependency"},"110":{"body":"One thing to note is that we try to adhere to the coding conventions of each language wherever possible, so the metric name and category in the metrics.yaml (which is in snake_case) may be changed to some other case convention, such as camelCase, when used from code. Event extras and labels are never capitalized, no matter the target language. Category and metric names in the metrics.yaml are in snake_case, but given the Kotlin coding standards defined by ktlint , these identifiers must be camelCase in Kotlin. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: import org.mozilla.yourApplication.GleanMetrics.Views\nGleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, but given the Swift coding standards defined by swiftlint , these identifiers must be camelCase in Swift. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: GleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, which matches the PEP8 standard, so no translation is needed for Python. Given the Rust coding standards defined by clippy , identifiers should all be snake_case. This includes category names which in the metrics.yaml are dotted.snake_case: compound.category: metric_name: ... In Rust this becomes: use firefox_on_glean::metrics; metrics::compound_category::metric_name... JavaScript identifiers are customarily camelCase. This requires transforming a metric defined in the metrics.yaml as: compound.category: metric_name: ... to a form useful in JS as: import * as compoundCategory from \"./path/to/generated/files/compoundCategory.js\"; compoundCategory.metricName... Firefox Desktop has Coding Style Guidelines for both C++ and JS. This results in, for a metric defined in the metrics.yaml as: compound.category: metric_name: ... an identifier that looks like: C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::compound_category::metric_name... JavaScript Glean.compoundCategory.metricName... Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Adding new metrics » Capitalization","id":"110","title":"Capitalization"},"111":{"body":"In order to support unit testing inside of client applications using the Glean SDK, a set of testing API functions have been included. The intent is to make the Glean SDKs easier to test 'out of the box' in any client application it may be used in. These functions expose a way to inspect and validate recorded metric values within the client application. but are restricted to test code only. (Outside of a testing context, Glean APIs are otherwise write-only so that it can enforce semantics and constraints about data). To encourage using the testing APIs, it is also possible to generate testing coverage reports to show which metrics in your project are tested.","breadcrumbs":"Metrics » Testing metrics » Unit testing Glean metrics","id":"111","title":"Unit testing Glean metrics"},"112":{"body":"In order to enable metrics testing APIs in each SDK, Glean must be reset and put in testing mode. For documentation on how to do that, refer to Initializing - Testing API . Check out full examples of using the metric testing API on each Glean SDK. All examples omit the step of resetting Glean for tests to focus solely on metrics unit testing. // Record a metric value with extra to validate against\nGleanMetrics.BrowserEngagement.click.record( BrowserEngagementExtras(font = \"Courier\")\n) // Record more events without extras attached\nBrowserEngagement.click.record()\nBrowserEngagement.click.record() // Retrieve a snapshot of the recorded events\nval events = BrowserEngagement.click.testGetValue()!! // Check if we collected all 3 events in the snapshot\nassertEquals(3, events.size) // Check extra key/value for first event in the list\nassertEquals(\"Courier\", events.elementAt(0).extra[\"font\"]) // Record a metric value with extra to validate against\nGleanMetrics.BrowserEngagement.click.record([.font: \"Courier\"]) // Record more events without extras attached\nBrowserEngagement.click.record()\nBrowserEngagement.click.record() // Retrieve a snapshot of the recorded events\nlet events = BrowserEngagement.click.testGetValue()! // Check if we collected all 3 events in the snapshot\nXCTAssertEqual(3, events.count) // Check extra key/value for first event in the list\nXCTAssertEqual(\"Courier\", events[0].extra?[\"font\"]) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Record a metric value with extra to validate against\nmetrics.url.visit.add(1) # Check if we collected any events into the 'click' metric\nassert metrics.url.visit.test_get_value() is not Null # Retrieve a snapshot of the recorded events\nassert 1 == metrics.url.visit.test_get_value()","breadcrumbs":"Metrics » Testing metrics » Example of using the test API","id":"112","title":"Example of using the test API"},"113":{"body":"Glean can generate coverage reports to track which metrics are tested in your unit test suite. There are three steps to integrate it into your continuous integration workflow: recording coverage, post-processing the results, and uploading the results.","breadcrumbs":"Metrics » Testing metrics » Generating testing coverage reports","id":"113","title":"Generating testing coverage reports"},"114":{"body":"Glean testing coverage is enabled by setting the GLEAN_TEST_COVERAGE environment variable to the name of a file to store results. It is good practice to set it to the absolute path to a file, since some testing harnesses (such as cargo test) may change the current working directory. GLEAN_TEST_COVERAGE=$(realpath glean_coverage.txt) make test","breadcrumbs":"Metrics » Testing metrics » Recording coverage","id":"114","title":"Recording coverage"},"115":{"body":"A post-processing step is required to convert the raw output in the file specified by GLEAN_TEST_COVERAGE into usable output for coverage reporting tools. Currently, the only coverage reporting tool supported is codecov.io . This post-processor is available in the coverage subcommand in the glean_parser tool. For some build systems, glean_parser is already installed for you by the build system integration at the following locations: On Android/Gradle, $GRADLE_HOME/glean/bootstrap-4.5.11/Miniconda3/bin/glean_parser On iOS, $PROJECT_ROOT/.venv/bin/glean_parser For other systems, install glean_parser using pip install glean_parser The glean_parser coverage command requires the following parameters: -f: The output format to produce, for example codecovio to produce codecov.io 's custom format. -o: The path to the output file, for example codecov.json. -c: The input raw coverage file. glean_coverage.txt in the example above. A list of the metrics.yaml files in your repository. For example, to produce output for codecov.io : glean_parser coverage -f codecovio -o glean_coverage.json -c glean_coverage.txt app/metrics.yaml In this example, the glean_coverage.json file is now ready for uploading to codecov.io.","breadcrumbs":"Metrics » Testing metrics » Post-processing the results","id":"115","title":"Post-processing the results"},"116":{"body":"If using codecov.io, the uploader doesn't send coverage results for YAML files by default. Pass the -X yaml option to the uploader to make sure they are included: bash <(curl -s https://codecov.io/bash) -X yaml Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Testing metrics » Uploading coverage","id":"116","title":"Uploading coverage"},"117":{"body":"It is worth investing time when instrumentation is added to the product to understand if the data looks reasonable and expected, and to take action if it does not. It is important to highlight that an automated rigorous test suite for testing metrics is an important precondition for building confidence in newly collected data (especially business-critical ones). The following checklist could help guide this validation effort. Before releasing the product with the new data collection, make sure the data looks as expected by generating sample data on a local machine and inspecting it on the Glean Debug View (see the debugging facilities) : a. Is the data showing up in the correct ping(s)? b. Does the metric report the expected data? c. If exercising the same path again, is it expected for the data to be submitted again? And does it? As users start adopting the version of the product with the new data collection (usually within a few days of release), the initial data coming in should be checked, to understand how the measurements are behaving in the wild: a. Does this organically-sent data satisfy the same quality expectations the manually-sent data did in Step 1? b. Is the metric showing up correctly in the Glean Dictionary ? c. Is there any new error being reported for the new data points? If so, does this point to an edge case that should be documented and/or fixed in the code? d. As the first three or four days pass, distributions will converge towards their final shapes. Consider extreme values; are there a very high number of zero/minimum values when there shouldn't be, or values near what you would realistically expect to be the maximum (e.g. a timespan for a single day that is reporting close to 86,400 seconds)? In case of oddities in the data, how much of the product population is affected? Does this require changing the instrumentation or documenting?","breadcrumbs":"Metrics » Validating metrics » Validating the collected data","id":"117","title":"Validating the collected data"},"118":{"body":"Data practitioners that lack familiarity with YAML or product-specific development workflows can still document any discovered edge-cases and anomalies by identifying the metric in the Glean Dictionary and initiate adding commentary from the metric page. After enough data is collected from the product population, are the expectations from the previous points still met?","breadcrumbs":"Metrics » Validating metrics » How to annotate metrics without changing the source code?","id":"118","title":"How to annotate metrics without changing the source code?"},"119":{"body":"In case of multiple distinct product populations, the above checklist should be ideally run against all of them. For example, in case of Firefox , the checklist should be run for the Nightly population first, then on the other channels as the collection moves across the release trains. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Validating metrics » Does the product support multiple release channels?","id":"119","title":"Does the product support multiple release channels?"},"12":{"body":"Due to its use of a native library you will need additional setup to allow local testing. First add a new configuration to your build.gradle, just before your dependencies: configurations { jnaForTest\n} Then add the following lines to your dependencies block: jnaForTest \"net.java.dev.jna:jna:5.6.0@jar\"\ntestImplementation files(configurations.jnaForTest.copyRecursive().files)\ntestImplementation \"org.mozilla.telemetry:glean-forUnitTests:${project.ext.glean_version}\" Note: Always use org.mozilla.telemetry:glean-forUnitTests. This package is standalone and its version will be exported from the main Glean package automatically.","breadcrumbs":"Adding Glean to your project » Kotlin » Dependency for local testing","id":"12","title":"Dependency for local testing"},"120":{"body":"The Glean SDKs record the number of errors that occur when metrics are passed invalid data or are otherwise used incorrectly. This information is reported back in special labeled counter metrics in the glean.error category. Error metrics are included in the same pings as the metric that caused the error. Additionally, error metrics are always sent in the metrics ping ping. The following categories of errors are recorded: invalid_value: The metric value was invalid. invalid_label: The label on a labeled metric was invalid. invalid_state: The metric caught an invalid state while recording. invalid_overflow: The metric value to be recorded overflows the metric-specific upper range. invalid_type: The metric value is not of the expected type. This error type is only recorded by the Glean JavaScript SDK. This error may only happen in dynamically typed languages. For example, if you had a string metric and passed it a string that was too long: MyMetrics.stringMetric.set(\"this_string_is_longer_than_the_limit_for_string_metrics\") The following error metric counter would be incremented: Glean.error.invalidOverflow[\"my_metrics.string_metric\"].add(1) Resulting in the following keys in the ping: { \"metrics\": { \"labeled_counter\": { \"glean.error.invalid_overflow\": { \"my_metrics.string_metric\": 1 } } }\n} If you have a debug build of the Glean SDK, details about the errors being recorded are included in the logs. This detailed information is not included in Glean pings. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Error reporting » Error reporting","id":"120","title":"Error reporting"},"121":{"body":"If you are looking for the metrics collected by Glean.js, refer to the documentation over on the @mozilla/glean.js repository.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » The Glean JavaScript SDK provides a slightly different set of metrics and pings","id":"121","title":"The Glean JavaScript SDK provides a slightly different set of metrics and pings"},"122":{"body":"This document enumerates the metrics collected by this project using the Glean SDK . This project may depend on other projects which also collect metrics. This means you might have to go searching through the dependency tree to get a full picture of everything collected by this project.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » Metrics","id":"122","title":"Metrics"},"123":{"body":"all-pings baseline deletion-request metrics","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » Pings","id":"123","title":"Pings"},"124":{"body":"These metrics are sent in every ping. All Glean pings contain built-in metrics in the ping_info and client_info sections. In addition to those built-in metrics, the following metrics are added to the ping: Name Type Description Data reviews Extras Expiration Data Sensitivity glean.client.annotation.experimentation_id string An experimentation identifier derived and provided by the application for the purpose of experimentation enrollment. Bug 1848201 never 1 glean.error.invalid_label labeled_counter Counts the number of times a metric was set with an invalid label. The labels are the category.name identifier of the metric. Bug 1499761 never 1 glean.error.invalid_overflow labeled_counter Counts the number of times a metric was set a value that overflowed. The labels are the category.name identifier of the metric. Bug 1591912 never 1 glean.error.invalid_state labeled_counter Counts the number of times a timing metric was used incorrectly. The labels are the category.name identifier of the metric. Bug 1499761 never 1 glean.error.invalid_value labeled_counter Counts the number of times a metric was set to an invalid value. The labels are the category.name identifier of the metric. Bug 1499761 never 1 glean.restarted event Recorded when the Glean SDK is restarted. Only included in custom pings that record events. For more information, please consult the Custom Ping documentation . Bug 1716725 never 1","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » all-pings","id":"124","title":"all-pings"},"125":{"body":"This is a built-in ping that is assembled out of the box by the Glean SDK. See the Glean SDK documentation for the baseline ping . This ping is sent if empty. This ping includes the client id . Data reviews for this ping: https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3 https://bugzilla.mozilla.org/show_bug.cgi?id=1599877#c25 Bugs related to this ping: https://bugzilla.mozilla.org/1512938 https://bugzilla.mozilla.org/1599877 Reasons this ping may be sent: active: The ping was submitted when the application became active again, which includes when the application starts. In earlier versions, this was called foreground. *Note*: this ping will not contain the `glean.baseline.duration` metric. dirty_startup: The ping was submitted at startup, because the application process was killed before the Glean SDK had the chance to generate this ping, before becoming inactive, in the last session. *Note*: this ping will not contain the `glean.baseline.duration` metric. inactive: The ping was submitted when becoming inactive. In earlier versions, this was called background. All Glean pings contain built-in metrics in the ping_info and client_info sections. In addition to those built-in metrics, the following metrics are added to the ping: Name Type Description Data reviews Extras Expiration Data Sensitivity glean.baseline.duration timespan The duration of the last foreground session. Bug 1512938 never 1, 2 glean.validation.pings_submitted labeled_counter A count of the pings submitted, by ping type. This metric appears in both the metrics and baseline pings. - On the metrics ping, the counts include the number of pings sent since the last metrics ping (including the last metrics ping) - On the baseline ping, the counts include the number of pings send since the last baseline ping (including the last baseline ping) Bug 1586764 never 1","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » baseline","id":"125","title":"baseline"},"126":{"body":"This is a built-in ping that is assembled out of the box by the Glean SDK. See the Glean SDK documentation for the deletion-request ping . This ping is sent if empty. This ping includes the client id . Data reviews for this ping: https://bugzilla.mozilla.org/show_bug.cgi?id=1587095#c6 https://bugzilla.mozilla.org/show_bug.cgi?id=1702622#c2 Bugs related to this ping: https://bugzilla.mozilla.org/1587095 https://bugzilla.mozilla.org/1702622 Reasons this ping may be sent: at_init: The ping was submitted at startup. Glean discovered that between the last time it was run and this time, upload of data has been disabled. set_upload_enabled: The ping was submitted between Glean init and Glean shutdown. Glean was told after init but before shutdown that upload has changed from enabled to disabled. All Glean pings contain built-in metrics in the ping_info and client_info sections. This ping contains no metrics.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » deletion-request","id":"126","title":"deletion-request"},"127":{"body":"This is a built-in ping that is assembled out of the box by the Glean SDK. See the Glean SDK documentation for the metrics ping . This ping includes the client id . Data reviews for this ping: https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3 https://bugzilla.mozilla.org/show_bug.cgi?id=1557048#c13 Bugs related to this ping: https://bugzilla.mozilla.org/1512938 Reasons this ping may be sent: overdue: The last ping wasn't submitted on the current calendar day, but it's after 4am, so this ping submitted immediately reschedule: A ping was just submitted. This ping was rescheduled for the next calendar day at 4am. today: The last ping wasn't submitted on the current calendar day, but it is still before 4am, so schedule to send this ping on the current calendar day at 4am. tomorrow: The last ping was already submitted on the current calendar day, so schedule this ping for the next calendar day at 4am. upgrade: This ping was submitted at startup because the application was just upgraded. All Glean pings contain built-in metrics in the ping_info and client_info sections. In addition to those built-in metrics, the following metrics are added to the ping: Name Type Description Data reviews Extras Expiration Data Sensitivity glean.database.size memory_distribution The size of the database file at startup. Bug 1656589 never 1 glean.error.io counter The number of times we encountered an IO error when writing a pending ping to disk. Bug 1686233 never 1 glean.error.preinit_tasks_overflow counter The number of tasks that overflowed the pre-initialization buffer. Only sent if the buffer ever overflows. In Version 0 this reported the total number of tasks enqueued. Bug 1609482 never 1 glean.upload.deleted_pings_after_quota_hit counter The number of pings deleted after the quota for the size of the pending pings directory or number of files is hit. Since quota is only calculated for the pending pings directory, and deletion request ping live in a different directory, deletion request pings are never deleted. Bug 1601550 never 1 glean.upload.discarded_exceeding_pings_size memory_distribution The size of pings that exceeded the maximum ping size allowed for upload. Bug 1597761 never 1 glean.upload.in_flight_pings_dropped counter How many pings were dropped because we found them already in-flight. Bug 1816401 never 1 glean.upload.missing_send_ids counter How many ping upload responses did we not record as a success or failure (in glean.upload.send_success or glean.upload.send_failue, respectively) due to an inconsistency in our internal bookkeeping? Bug 1816400 never 1 glean.upload.pending_pings counter The total number of pending pings at startup. This does not include deletion-request pings. Bug 1665041 never 1 glean.upload.pending_pings_directory_size memory_distribution The size of the pending pings directory upon initialization of Glean. This does not include the size of the deletion request pings directory. Bug 1601550 never 1 glean.upload.ping_upload_failure labeled_counter Counts the number of ping upload failures, by type of failure. This includes failures for all ping types, though the counts appear in the next successfully sent metrics ping. Bug 1589124 status_code_4xxstatus_code_5xxstatus_code_unknownunrecoverablerecoverable never 1 glean.upload.send_failure timing_distribution Time needed for a failed send of a ping to the servers and getting a reply back. Bug 1814592 never 1 glean.upload.send_success timing_distribution Time needed for a successful send of a ping to the servers and getting a reply back Bug 1814592 never 1 glean.validation.foreground_count counter On mobile, the number of times the application went to foreground. Bug 1683707 never 1 glean.validation.pings_submitted labeled_counter A count of the pings submitted, by ping type. This metric appears in both the metrics and baseline pings. - On the metrics ping, the counts include the number of pings sent since the last metrics ping (including the last metrics ping) - On the baseline ping, the counts include the number of pings send since the last baseline ping (including the last baseline ping) Bug 1586764 never 1 glean.validation.shutdown_dispatcher_wait timing_distribution Time waited for the dispatcher to unblock during shutdown. Most samples are expected to be below the 10s timeout used. Bug 1828066 never 1 glean.validation.shutdown_wait timing_distribution Time waited for the uploader at shutdown. Bug 1814592 never 1 Data categories are defined here . Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » metrics","id":"127","title":"metrics"},"128":{"body":"A ping is a bundle of related metrics, gathered in a payload to be transmitted. The ping payload is encoded in JSON format and contains one or more of the common sections with shared information data. If data collection is enabled, the chosen Glean SDK may provide a set of built-in pings that are assembled out of the box without any developer intervention.","breadcrumbs":"Pings » Pings","id":"128","title":"Pings"},"129":{"body":"Payload structure The ping_info section seq start_time end_time reason (optional) experiments (optional) The client_info section app_build app_channel (optional) app_display_version build_date (optional) architecture client_id (optional) device_manufacturer (optional) device_model (optional) first_run_date os os_version android_sdk_version (optional) windows_build_number (optional) telemetry_sdk_build locale (optional) Ping submission URL Limitations Rate limiting Request body size limiting Storage quota Submitted headers Content-Type Date User-Agent (deprecated) X-Telemetry-Agent X-Debug-Id (optional) X-Source-Tags (optional)","breadcrumbs":"Pings » Table of contents","id":"129","title":"Table of contents"},"13":{"body":"In order for the Glean Kotlin SDK to generate an API for your metrics, two Gradle plugins must be included in your build: The Glean Gradle plugin JetBrains' Python envs plugin The Glean Gradle plugin is distributed through Mozilla's Maven, so we need to tell your build where to look for it by adding the following to the top of your build.gradle: buildscript { repositories { maven { url \"https://maven.mozilla.org/maven2\" } dependencies { classpath \"org.mozilla.telemetry:glean-gradle-plugin:{latest-version}\" } }\n} Important As above, the {latest-components-version} placeholder in the above link should be replaced with the version number of the Glean SDK used in your project. The JetBrains Python plugin is distributed in the Gradle plugin repository, so it can be included with: plugins { id \"com.jetbrains.python.envs\" version \"0.0.26\"\n} Right before the end of the same file, we need to apply the Glean Gradle plugin. Set any additional parameters to control the behavior of the Glean Gradle plugin before calling apply plugin. // Optionally, set any parameters to send to the plugin.\next.gleanGenerateMarkdownDocs = true\napply plugin: \"org.mozilla.telemetry.glean-gradle-plugin\" Rosetta 2 required on Apple Silicon On Apple Silicon machines (M1/M2/M3 MacBooks and iMacs) Rosetta 2 is required for the bundled Python. See the Apple documentation about Rosetta 2 and Bug 1775420 for details. You can install it with softwareupdate --install-rosetta Offline builds The Glean Gradle plugin has limited support for offline builds of applications that use the Glean SDK. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Kotlin » Setting up metrics and pings code generation","id":"13","title":"Setting up metrics and pings code generation"},"130":{"body":"Every ping payload has the following keys at the top-level: The ping_info section contains core metadata that is included in every ping that doesn't set the metadata.include_info_sections property to false. The client_info section contains information that identifies the client. It is included in every ping that doesn't set the metadata.include_info_sections property to false. When included, it contains a persistent client identifier client_id, except when the include_client_id property is set to false. The following keys are only present if any metrics or events were recorded for the given ping: The metrics section contains the submitted values for all metric types except for events . It has keys for each of the metric types, under which is data for each metric. The events section contains the events recorded in the ping. See the payload documentation for more details for each metric type in the metrics and events section.","breadcrumbs":"Pings » Payload structure","id":"130","title":"Payload structure"},"131":{"body":"Metadata about the ping itself. This section is included in every ping that doesn't set the metadata.include_info_sections property to false. The following fields are included in the ping_info section. Optional fields are marked accordingly. seq Type: Counter , Lifetime: User A running counter of the number of times pings of this type have been sent. start_time Type: Datetime , Lifetime: User The time of the start of collection of the data in the ping, in local time and with millisecond precision (by default), including timezone information. ( Note : Custom pings can opt-out of precise timestamps and use minute precision.) end_time Type: Datetime , Lifetime: Ping The time of the end of collection of the data in the ping, in local time and with millisecond precision (by default), including timezone information. This is also the time this ping was generated and is likely well before ping transmission time. ( Note : Custom pings can opt-out of precise timestamps and use minute precision.) reason (optional) The reason the ping was submitted. The specific set of values and their meanings are defined for each metric type in the reasons field in the pings.yaml file. experiments (optional) A dictionary of active experiments. This object contains experiment annotations keyed by the experiment id. Each annotation contains the experiment branch the client is enrolled in and may contain a string to string map with additional data in the extra key. Both the id and branch are truncated to 30 characters. See Using the Experiments API on how to record experiments data. { \"\": { \"branch\": \"branch-id\", \"extra\": { \"some-key\": \"a-value\" } }\n}","breadcrumbs":"Pings » The ping_info section","id":"131","title":"The ping_info section"},"132":{"body":"A limited amount of metrics that are generally useful across products. The data is provided by the embedding application or automatically fetched by the Glean SDK. It is collected at initialization time and sent in every ping afterwards. For historical reasons it contains metrics that are only useful on a certain platform. This section is included in every ping that doesn't set the metadata.include_info_sections property to false. Additional metrics require a proposal Adding new metrics maintained by the Glean SDKs team will require a full proposal and details on why that value is useful across multiple platforms and products and needs Glean SDKs team ownership. The Glean SDKs are not taking ownership of new metrics that are platform- or product-specific. The following fields are included in the client_info section. Optional fields are marked accordingly. app_build Type: String , Lifetime: Application The build identifier generated by the CI system (e.g. \"1234/A\"). If the value was not provided through configuration, this metric gets set to Unknown. app_channel (optional) Type: String , Lifetime: Application The product-provided release channel (e.g. \"beta\"). app_display_version Type: String , Lifetime: Application The user-visible version string (e.g. \"1.0.3\"). The meaning of the string (e.g. whether semver or a git hash) is application-specific. If the value was not provided through configuration, this metric gets set to Unknown. build_date (optional) Type: Datetime , Lifetime: Application architecture Type: String , Lifetime: Application The architecture of the device (e.g. \"arm\", \"x86\"). client_id (optional) Type: UUID , Lifetime: User A UUID identifying a profile and allowing user-oriented correlation of data. device_manufacturer (optional) Type: String , Lifetime: Application The manufacturer of the device the application is running on. Not set if the device manufacturer can't be determined (e.g. on Desktop). device_model (optional) Type: String , Lifetime: Application The model of the device the application is running on. On Android, this is Build.MODEL, the user-visible marketing name, like \"Pixel 2 XL\". Not set if the device model can't be determined (e.g. on Desktop). first_run_date Type: Datetime , Lifetime: User The date of the first run of the application, in local time and with day precision, including timezone information. os Type: String , Lifetime: Application The name of the operating system (e.g. \"Linux\", \"Android\", \"iOS\"). os_version Type: String , Lifetime: Application The user-visible version of the operating system (e.g. \"1.2.3\"). If the version detection fails, this metric gets set to Unknown. android_sdk_version (optional) Type: String , Lifetime: Application The Android specific SDK version of the software running on this hardware device (e.g. \"23\"). windows_build_number (optional ) Type: Quantity , Lifetime: Application The optional Windows build number, reported by Windows (e.g. 22000) and not set for other platforms. telemetry_sdk_build Type: String , Lifetime: Application The version of the Glean SDK. locale (optional) Type: String , Lifetime: Application The locale of the application during initialization (e.g. \"es-ES\"). If the locale can't be determined on the system, the value is \"und\", to indicate \"undetermined\".","breadcrumbs":"Pings » The client_info section","id":"132","title":"The client_info section"},"133":{"body":"The pings that the Glean SDKs generate are submitted to the Mozilla servers at specific paths, in order to provide additional metadata without the need to unpack the ping payload.","breadcrumbs":"Pings » Ping submission","id":"133","title":"Ping submission"},"134":{"body":"A typical submission URL looks like \"/submit////\" where: : the address of the server that receives the pings; : a unique application id, automatically detected by the Glean SDK; this is the value returned by Context.getPackageName() ; : the name of the ping; this can be one of the pings available out of the box with the Glean SDK, or a custom ping; : the version of the Glean ping schema; : a unique identifier for this ping.","breadcrumbs":"Pings » URL","id":"134","title":"URL"},"135":{"body":"To keep resource usage in check, the Glean SDK enforces some limitations on ping uploading and ping storage. Rate limiting Only up to 15 ping submissions every 60 seconds are allowed. For the JavaScript SDK that limit is higher and up to 40 ping submissions every 60 seconds are allowed. Request body size limiting The body of a ping request may have up to 1MB (after compression). Pings that exceed this size are discarded and don't get uploaded. Size and number of discarded pings are recorded on the internal Glean metric glean.upload.discarded_exceeding_pings_size . Storage quota Pending pings are stored on disk. Storage is scanned every time Glean is initialized and upon scanning Glean checks its size. If it exceeds a size of 10MB or 250 pending pings, pings are deleted to get the storage back to an accepted size. Pings are deleted oldest first, until the storage size is below the quota. The number of deleted pings due to exceeding storage quota is recorded on the metric glean.upload.deleted_pings_after_quota_hit and the size of the pending pings directory is recorded (regardless on whether quota has been reached) on the metric glean.upload.pending_pings_directory_size . Deletion request pings are not subject to this limitation and never get deleted.","breadcrumbs":"Pings » Limitations","id":"135","title":"Limitations"},"136":{"body":"A pre-defined set of headers is additionally sent along with the submitted ping. Content-Type Describes the data sent to the server. Value is always application/json; charset=utf-8. Date Submission date/time in GMT/UTC+0 offset, e.g. Mon, 23 Jan 2019 10:10:10 GMT+00:00. User-Agent (deprecated) Up to Glean v44.0.0 and Glean.js v0.13.0 this contained the Glean SDK version and platform information. Newer Glean SDKs do not overwrite this header. See X-Telemetry-Agent for details. Clients might still send it, for example, when sending pings from browsers it will contain the characteristic browser UA string . This header is parsed by the Glean pipeline and can be queried at analysis time through the metadata.user_agent.* fields in the ping tables. X-Telemetry-Agent The Glean SDK version and platform this ping is sent from. Useful for debugging purposes when pings are sent to the error stream . as it describes the application and the Glean SDK used for sending the ping. It's looks like Glean/40.0.0 (Kotlin on Android), where 40.0.0 is the Glean Kotlin SDK version number and Kotlin on Android is the name of the language used by the SDK that sent the request plus the name of the platform it is running on. X-Debug-Id (optional) Debug header attached to Glean pings by using the debug APIs , e.g. test-tag. When this header is present, the ping is redirected to the Glean Debug View . X-Source-Tags (optional) A list of tags to associate with the ping, useful for clustering pings at analysis time, for example to tell data generated from CI from other data e.g. automation, perf. This header is attached to Glean pings by using the debug APIs . Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Submitted headers","id":"136","title":"Submitted headers"},"137":{"body":"Applications can define metrics that are sent in custom pings. Unlike the built-in pings, custom pings are sent explicitly by the application. This is useful when the scheduling of the built-in pings ( metrics , baseline and events ) are not appropriate for your data. Since the timing of the submission of custom pings is handled by the application, the measurement window is under the application's control. This is especially useful when metrics need to be tightly related to one another, for example when you need to measure the distribution of frame paint times when a particular rendering backend is in use. If these metrics were in different pings, with different measurement windows, it is much harder to do that kind of reasoning with much certainty.","breadcrumbs":"Pings » Adding new custom pings » Custom pings","id":"137","title":"Custom pings"},"138":{"body":"Custom pings must be defined in a pings.yaml file , placed in the same directory alongside your app's metrics.yaml file. For example, to define a custom ping called search specifically for search information: $schema: moz://mozilla.org/schemas/glean/pings/2-0-0 search: description: > A ping to record search data. metadata: tags: - Search include_client_id: false notification_emails: - CHANGE-ME@example.com bugs: - http://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review Tags are an optional feature you can use to provide an additional layer of categorization to pings. Any tags specified in the metadata section of a ping must have a corresponding entry in a tags YAML registry for your project. Refer to the pings YAML registry format for a full reference on the pings.yaml file structure.","breadcrumbs":"Pings » Adding new custom pings » Defining a custom ping","id":"138","title":"Defining a custom ping"},"139":{"body":"To send a metric on a custom ping, you add the custom ping's name to the send_in_pings parameter in the metrics.yaml file.","breadcrumbs":"Pings » Adding new custom pings » Sending metrics in a custom ping","id":"139","title":"Sending metrics in a custom ping"},"14":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Swift project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so. Currently, this SDK only supports the iOS platform.","breadcrumbs":"Adding Glean to your project » Swift » Adding Glean to your Swift project","id":"14","title":"Adding Glean to your Swift project"},"140":{"body":"After defining a custom ping, before it can be used for sending data, its metadata must be loaded into your application or library . For example, to define a new metric to record the default search engine, which is sent in a custom ping called search, put search in the send_in_pings parameter. Note that it is an error to specify a ping in send_in_pings that does not also have an entry in pings.yaml. search.default: name: type: string description: > The name of the default search engine. send_in_pings: - search If this metric should also be sent in the default ping for the given metric type, you can add the special value default to send_in_pings: send_in_pings: - search - default","breadcrumbs":"Pings » Adding new custom pings » Ping metadata must be loaded before sending!","id":"140","title":"Ping metadata must be loaded before sending!"},"141":{"body":"For custom pings that contain event metrics, the glean.restarted event is injected by Glean on every application restart that may happen during the pings measurement window. Note : All leading and trailing glean.restarted events are omitted from each ping.","breadcrumbs":"Pings » Adding new custom pings » The glean.restarted event","id":"141","title":"The glean.restarted event"},"142":{"body":"Event timestamps are always calculated relative to the first event in a ping. The first event will always have timestamp 0 and subsequent events will have timestamps corresponding to the elapsed amount of milliseconds since that first event. That is also the case for events recorded throughout restarts. Example In the below example payload, there were two events recorded on the first application run. The first event is timestamp 0 and the second event happens one second after the first one, so it has timestamp 1000. The application is restarted one hour after the first event and a glean.restarted event is recorded, timestamp 3600000. Finally, an event is recorded during the second application run two seconds after restart, timestamp 3602000. { ... \"events\": [ { \"timestamp\": 0, \"category\": \"examples\", \"name\": \"event_example\", }, { \"timestamp\": 1000, \"category\": \"examples\", \"name\": \"event_example\" }, { \"timestamp\": 3600000, \"category\": \"glean\", \"name\": \"restarted\" }, { \"timestamp\": 3602000, \"category\": \"examples\", \"name\": \"event_example\" }, ]\n} Caveat: Handling decreasing time offsets For events recorded in a single application run, Glean relies on a monotonically increasing timer to calculate event timestamps, while for calculating the time elapsed between application runs Glean has to rely on the computer clock, which is not necessarily monotonically increasing. In the case that timestamps in between application runs are not monotonically increasing, Glean will take the value of the previous timestamp and add one millisecond, thus guaranteeing that timestamps are always increasing. Checking for decreasing time offsets between restarts When this edge case is hit, Glean records an InvalidValue error for the glean.restarted metric. This metric may be consulted at analysis time. It is sent in the same ping where the error happened. In the below example payload, the first and second application runs go exactly like in the example above . The only difference is that when the restart happens, the offset between the absolute time of the first event and the absolute time of the restart is not enough to keep the timestamps increasing. That may happen for many reasons, such as a change in timezones or simply a manual change in the clock by the user. In this case, Glean will ignore the incorrect timestamp and add one millisecond to the last timestamp of the previous run, in order to keep the monotonically increasing nature of the timestamps. { ... \"events\": [ { \"timestamp\": 0, \"category\": \"examples\", \"name\": \"event_example\", }, { \"timestamp\": 1000, \"category\": \"examples\", \"name\": \"event_example\" }, { \"timestamp\": 1001, \"category\": \"glean\", \"name\": \"restarted\" }, { \"timestamp\": 3001, \"category\": \"examples\", \"name\": \"event_example\" }, ]\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Adding new custom pings » Event timestamps throughout application restarts","id":"142","title":"Event timestamps throughout application restarts"},"143":{"body":"Applications defining custom pings can use use the ping testing API to test these pings in unit tests.","breadcrumbs":"Pings » Testing custom pings » Testing custom pings","id":"143","title":"Testing custom pings"},"144":{"body":"The schedule of custom pings depends on the specific application implementation, since it is up to the SDK user to define the ping semantics. This makes the testing strategy a bit more complex, but usually boiling down to: Triggering the code path that accumulates/records the data. Defining a callback validation function using the ping testing API . Finally triggering the code path that submits the custom ping or submitting the ping using the submit API . Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Testing custom pings » General testing strategy","id":"144","title":"General testing strategy"},"145":{"body":"If data collection is enabled, the Glean SDKs provide a set of built-in pings that are assembled out of the box without any developer intervention. The following is a list of these built-in pings: baseline ping : A small ping sent every time the application goes to foreground and background. Going to foreground also includes when the application starts. deletion-request ping : Sent when the user disables telemetry in order to request a deletion of their data. events ping : The default ping for events. Sent every time the application goes to background or a certain number of events is reached. Is not sent when there are no events recorded, even if there are other metrics with values. metrics ping : The default ping for metrics. Sent approximately daily. Applications can also define and send their own custom pings when the schedules of these pings is not suitable. There is also a high-level overview of how the metrics and baseline pings relate and the timings they record.","breadcrumbs":"Pings » Pings sent by Glean » Pings sent by Glean","id":"145","title":"Pings sent by Glean"},"146":{"body":"SDK baseline deletion-request events metrics Kotlin ✅ ✅ ✅ ✅ Swift ✅ ✅ ✅ ✅ Python ✅ [1] ✅ ✅ [2] ❌ Rust ✅ ✅ ✅ ✅ JavaScript ❌ ✅ ✅ ❌ Firefox Desktop ✅ ✅ ✅ ✅ Not sent automatically. Use the handle_client_active and handle_client_inactive API. Sent on startup when pending events are stored. Additionally sent when handle_client_inactive is called.","breadcrumbs":"Pings » Pings sent by Glean » Available pings per platform","id":"146","title":"Available pings per platform"},"147":{"body":"These docs refer to application 'foreground' and 'background' state in several places.","breadcrumbs":"Pings » Pings sent by Glean » Defining foreground and background state","id":"147","title":"Defining foreground and background state"},"148":{"body":"For Android, this specifically means the activity becomes visible to the user, it has entered the Started state, and the system invokes the onStart() callback.","breadcrumbs":"Pings » Pings sent by Glean » Foreground","id":"148","title":"Foreground"},"149":{"body":"This specifically means when the activity is no longer visible to the user, it has entered the Stopped state, and the system invokes the onStop() callback. This may occur, if the user uses Overview button to change to another app, the user presses the Back button and navigates to a previous application or the home screen, or if the user presses the Home button to return to the home screen. This can also occur if the user navigates away from the application through some notification or other means. The system may also call onStop() when the activity has finished running, and is about to be terminated.","breadcrumbs":"Pings » Pings sent by Glean » Background","id":"149","title":"Background"},"15":{"body":"Python >= 3.8.","breadcrumbs":"Adding Glean to your project » Swift » Requirements","id":"15","title":"Requirements"},"150":{"body":"For iOS, the Glean Swift SDK attaches to the willEnterForegroundNotification . This notification is posted by the OS shortly before an app leaves the background state on its way to becoming the active app.","breadcrumbs":"Pings » Pings sent by Glean » Foreground","id":"150","title":"Foreground"},"151":{"body":"For iOS, this specifically means when the app is no longer visible to the user, or when the UIApplicationDelegate receives the applicationDidEnterBackground event. This may occur if the user opens the task switcher to change to another app, or if the user presses the Home button to show the home screen. This can also occur if the user navigates away from the app through a notification or other means. Note: Glean does not currently support Scene based lifecycle events that were introduced in iOS 13. Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Background","id":"151","title":"Background"},"152":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » The baseline ping","id":"152","title":"The baseline ping"},"153":{"body":"This ping is intended to provide metrics that are managed by the Glean SDKs themselves, and not explicitly set by the application or included in the application's metrics.yaml file.","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Description","id":"153","title":"Description"},"154":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop baseline ping ✅ ✅ ❌ ✅ ❌ ✅","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Platform availability","id":"154","title":"Platform availability"},"155":{"body":"The baseline ping is automatically submitted with a reason: active when the application becomes active (on mobile it means getting to foreground ). These baseline pings do not contain duration. The baseline ping is automatically submitted with a reason: inactive when the application becomes inactive (on mobile it means getting to background ). If no baseline ping is triggered when becoming inactive (e.g. the process is abruptly killed) a baseline ping with reason dirty_startup will be submitted on the next application startup. This only happens from the second application start onward. See also the ping schedules and timing overview .","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Scheduling","id":"155","title":"Scheduling"},"156":{"body":"The baseline ping also includes the common ping sections found in all pings. It also includes a number of metrics defined in the Glean SDKs themselves .","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Contents","id":"156","title":"Contents"},"157":{"body":"A quick note about querying ping contents (i.e. for sql.telemetry.mozilla.org ): Each metric in the baseline ping is organized by its metric type, and uses a namespace of glean.baseline. For instance, in order to select duration you would use metrics.timespan['glean.baseline.duration']. If you were trying to select a String based metric such as os, then you would use metrics.string['glean.baseline.os']","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Querying ping contents","id":"157","title":"Querying ping contents"},"158":{"body":"{ \"ping_info\": { \"experiments\": { \"third_party_library\": { \"branch\": \"enabled\" } }, \"seq\": 0, \"start_time\": \"2019-03-29T09:50-04:00\", \"end_time\": \"2019-03-29T09:53-04:00\", \"reason\": \"foreground\" }, \"client_info\": { \"telemetry_sdk_build\": \"0.49.0\", \"first_run_date\": \"2019-03-29-04:00\", \"os\": \"Android\", \"android_sdk_version\": \"27\", \"os_version\": \"8.1.0\", \"device_manufacturer\": \"Google\", \"device_model\": \"Android SDK built for x86\", \"architecture\": \"x86\", \"app_build\": \"1\", \"app_display_version\": \"1.0\", \"client_id\": \"35dab852-74db-43f4-8aa0-88884211e545\" }, \"metrics\": { \"timespan\": { \"glean.baseline.duration\": { \"value\": 52, \"time_unit\": \"second\" } } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Example baseline ping","id":"158","title":"Example baseline ping"},"159":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » The deletion-request ping","id":"159","title":"The deletion-request ping"},"16":{"body":"The Glean Swift SDK can be consumed as a Swift Package. In your Xcode project add a new package dependency: https://github.com/mozilla/glean-swift Use the dependency rule \"Up to Next Major Version\". Xcode will automatically fetch the latest version for you. The Glean library will be automatically available to your code when you import it: import Glean","breadcrumbs":"Adding Glean to your project » Swift » Setting up the dependency","id":"16","title":"Setting up the dependency"},"160":{"body":"This ping is submitted when a user opts out of sending technical and interaction data. This ping contains the client id. This ping is intended to communicate to the Data Pipeline that the user wishes to have their reported Telemetry data deleted. As such it attempts to send itself at the moment the user opts out of data collection, and continues to try and send itself. Adding secondary ids It is possible to send secondary ids in the deletion request ping. For instance, if the application is migrating from legacy telemetry to Glean, the legacy client ids can be added to the deletion request ping by creating a metrics.yaml entry for the id to be added with a send_in_pings value of deletion_request. An example metrics.yaml entry might look like this: legacy_client_id: type: uuid description: A UUID uniquely identifying the legacy client. send_in_pings: - deletion_request ...","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Description","id":"160","title":"Description"},"161":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop deletion-request ping ✅ ✅ ✅ ✅ ✅ ✅","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Platform availability","id":"161","title":"Platform availability"},"162":{"body":"The deletion-request ping is automatically submitted when upload is disabled in Glean. If upload fails, it is retried after Glean is initialized.","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Scheduling","id":"162","title":"Scheduling"},"163":{"body":"The deletion-request does not contain additional metrics aside from secondary ids that have been added.","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Contents","id":"163","title":"Contents"},"164":{"body":"{ \"ping_info\": { \"seq\": 0, \"start_time\": \"2019-12-06T09:50-04:00\", \"end_time\": \"2019-12-06T09:53-04:00\" }, \"client_info\": { \"telemetry_sdk_build\": \"22.0.0\", \"first_run_date\": \"2019-03-29-04:00\", \"os\": \"Android\", \"android_sdk_version\": \"28\", \"os_version\": \"9\", \"device_manufacturer\": \"Google\", \"device_model\": \"Android SDK built for x86\", \"architecture\": \"x86\", \"app_build\": \"1\", \"app_display_version\": \"1.0\", \"client_id\": \"35dab852-74db-43f4-8aa0-88884211e545\" }, \"metrics\": { \"uuid\": { \"legacy_client_id\": \"5faffa6d-6147-4d22-a93e-c1dbd6e06171\" } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Example deletion-request ping","id":"164","title":"Example deletion-request ping"},"165":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » The events ping","id":"165","title":"The events ping"},"166":{"body":"The events ping's purpose is to transport event metric information. If the application crashes, an events ping is generated next time the application starts with events that were not sent before the crash.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Description","id":"166","title":"Description"},"167":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop events ping ✅ ✅ ✅ ✅ ✅ ✅","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Platform availability","id":"167","title":"Platform availability"},"168":{"body":"The events ping is automatically submitted under the following circumstances: If there are any recorded events to send when the application becomes inactive (on mobile, this means going to background ). When the queue of events exceeds Glean.configuration.maxEvents (default 1 for Glean.js, 500 for all other SDKs). This configuration option can be changed at initialization or through Server Knobs . If there are any unsent events found on disk when starting the application. (This results in this ping never containing the glean.restarted event.)","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Scheduling","id":"168","title":"Scheduling"},"169":{"body":"Since the Glean Python and JavaScript SDKs don't have a generic concept of \"inactivity\", case (1) above cannot be handled automatically. On Python, users can call the handle_client_inactive API to let Glean know the app is inactive and that will trigger submission of the events ping. On JavaScript there is no such API and only cases (2) and (3) apply.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Python and JavaScript caveats","id":"169","title":"Python and JavaScript caveats"},"17":{"body":"The metrics.yaml file is parsed at build time and Swift code is generated. Add a new metrics.yaml file to your Xcode project. Follow these steps to automatically run the parser at build time: Download the sdk_generator.sh script from the Glean repository: https://raw.githubusercontent.com/mozilla/glean/{latest-release}/glean-core/ios/sdk_generator.sh Pick the correct version As above, the {latest-version} placeholder should be replaced with the version number of Glean Swift SDK release used in this project. Add the sdk_generator.sh file to your Xcode project. On your application targets' Build Phases settings tab, click the + icon and choose New Run Script Phase. Create a Run Script in which you specify your shell (ex: /bin/sh), add the following contents to the script area below the shell: bash $PWD/sdk_generator.sh Set additional options to control the behavior of the script. Add the path to your metrics.yaml and (optionally) pings.yaml and tags.yaml under \"Input files\": $(SRCROOT)/{project-name}/metrics.yaml\n$(SRCROOT)/{project-name}/pings.yaml\n$(SRCROOT)/{project-name}/tags.yaml Add the path to the generated code file to the \"Output Files\": $(SRCROOT)/{project-name}/Generated/Metrics.swift If you are using Git, add the following lines to your .gitignore file: .venv/\n{project-name}/Generated This will ignore files that are generated at build time by the sdk_generator.sh script. They don't need to be kept in version control, as they can be re-generated from your metrics.yaml and pings.yaml files. Glean and embedded extensions Metric collection is a no-op in application extensions and Glean will not run. Since extensions run in a separate sandbox and process from the application, Glean would run in an extension as if it were a completely separate application with different client ids and storage. This complicates things because Glean doesn’t know or care about other processes. Because of this, Glean is purposefully prevented from running in an application extension and if metrics need to be collected from extensions, it's up to the integrating application to pass the information to the base application to record in Glean. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Swift » Setting up metrics and pings code generation","id":"17","title":"Setting up metrics and pings code generation"},"170":{"body":"At the top-level, this ping contains the following keys: client_info: The information common to all pings . ping_info: The information common to all pings . events: An array of all of the events that have occurred since the last time the events ping was sent. Each entry in the events array is an object with the following properties: \"timestamp\": The milliseconds relative to the first event in the ping. \"category\": The category of the event, as defined by its location in the metrics.yaml file. \"name\": The name of the event, as defined in the metrics.yaml file. \"extra\" (optional): A mapping of strings to strings providing additional data about the event. Keys are restricted to 40 UTF-8 bytes while values in the extra object are limited a maximum length of 500 UTF-8 bytes.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Contents","id":"170","title":"Contents"},"171":{"body":"{ \"ping_info\": { \"experiments\": { \"third_party_library\": { \"branch\": \"enabled\" } }, \"seq\": 0, \"start_time\": \"2019-03-29T09:50-04:00\", \"end_time\": \"2019-03-29T10:02-04:00\" }, \"client_info\": { \"telemetry_sdk_build\": \"0.49.0\", \"first_run_date\": \"2019-03-29-04:00\", \"os\": \"Android\", \"android_sdk_version\": \"27\", \"os_version\": \"8.1.0\", \"device_manufacturer\": \"Google\", \"device_model\": \"Android SDK built for x86\", \"architecture\": \"x86\", \"app_build\": \"1\", \"app_display_version\": \"1.0\", \"client_id\": \"35dab852-74db-43f4-8aa0-88884211e545\" }, \"events\": [ { \"timestamp\": 0, \"category\": \"examples\", \"name\": \"event_example\", \"extra\": { \"metadata1\": \"extra\", \"metadata2\": \"more_extra\" } }, { \"timestamp\": 1000, \"category\": \"examples\", \"name\": \"event_example\" } ]\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Example event JSON","id":"171","title":"Example event JSON"},"172":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The metrics ping","id":"172","title":"The metrics ping"},"173":{"body":"The metrics ping is intended for all of the metrics that are explicitly set by the application or are included in the application's metrics.yaml file (except events). The reported data is tied to the ping's measurement window , which is the time between the collection of two metrics pings. Ideally, this window is expected to be about 24 hours, given that the collection is scheduled daily at 04:00. However, the metrics ping is only submitted while the application is actually running, so in practice, it may not meet the 04:00 target very frequently. Data in the ping_info section of the ping can be used to infer the length of this window and the reason that triggered the ping to be submitted. If the application crashes, unsent recorded metrics are sent along with the next metrics ping. Additionally, it is undesirable to mix metric recording from different versions of the application. Therefore, if a version upgrade is detected, the metrics ping is collected immediately before further metrics from the new version are recorded.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Description","id":"173","title":"Description"},"174":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop metrics ping ✅ ✅ ❌ ✅ ❌ ✅","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Platform availability","id":"174","title":"Platform availability"},"175":{"body":"The desired behavior is to collect the ping at the first available opportunity after 04:00 local time on a new calendar day, but given constraints of the platform, it can only be submitted while the application is running. This breaks down into three scenarios: the application was just installed; the application was just upgraded (the version of the app is different from the last time the app was run); the application was just started (after a crash or a long inactivity period); the application was running at 04:00. In the first case, since the application was just installed, if the due time for the current calendar day has passed, a metrics ping is immediately generated and scheduled for sending (reason code overdue). Otherwise, if the due time for the current calendar day has not passed, a ping collection is scheduled for that time (reason code today). In the second case, if a version change is detected at startup, the metrics ping is immediately submitted so that metrics from one version are not aggregated with metrics from another version (reason code upgrade). In the third case, if the metrics ping was not already collected on the current calendar day, and it is before 04:00, a collection is scheduled for 04:00 on the current calendar day (reason code today). If it is after 04:00, a new collection is scheduled immediately (reason code overdue). Lastly, if a ping was already collected on the current calendar day, the next one is scheduled for collecting at 04:00 on the next calendar day (reason code tomorrow). In the fourth and last case, the application is running during a scheduled ping collection time. The next ping is scheduled for 04:00 the next calendar day (reason code reschedule). More scheduling examples are included below. See also the ping schedules and timing overview .","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Scheduling","id":"175","title":"Scheduling"},"176":{"body":"The metrics ping contains all of the metrics defined in metrics.yaml (except events) that don't specify a ping or where default is specified in their send in pings property. Additionally, error metrics in the glean.error category are included in the metrics ping. The metrics ping shall also include the common ping_info and 'client_info' sections. It also includes a number of metrics defined in the Glean SDKs themselves .","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Contents","id":"176","title":"Contents"},"177":{"body":"Information about query ping contents is available in Accessing Glean data in the Firefox data docs.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Querying ping contents","id":"177","title":"Querying ping contents"},"178":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Scheduling Examples","id":"178","title":"Scheduling Examples"},"179":{"body":"The application is opened on Feb 7 on 15:00, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 8 on 17:00. Glean notes that we passed local 04:00 since MW1. Glean closes MW1, with: start_time=Feb7/15:00; end_time=Feb8/17:00. Glean records metric A again, into MW2, which has a start_time of Feb8/17:00.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Crossing due time with the application closed","id":"179","title":"Crossing due time with the application closed"},"18":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Python project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Python » Adding Glean to your Python project","id":"18","title":"Adding Glean to your Python project"},"180":{"body":"The application is opened on Feb 7 on 15:00 in timezone UTC, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 8 on 17:00 in timezone UTC+1. Glean notes that we passed local 04:00 UTC+1 since MW1. Glean closes MW1, with: start_time=Feb7/15:00/UTC; end_time=Feb8/17:00/UTC+1. Glean records metric A again, into MW2.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Crossing due time and changing timezones","id":"180","title":"Crossing due time and changing timezones"},"181":{"body":"The application is opened on Feb 7 on 15:00 in timezone UTC, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 16 on 17:00 in timezone UTC. Glean notes that we passed local 04:00 UTC since MW1. Glean closes MW1, with: start_time=Feb7/15:00/UTC; end_time=Feb16/17:00/UTC. Glean records metric A again, into MW2.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The application doesn’t run in a week","id":"181","title":"The application doesn’t run in a week"},"182":{"body":"The application is opened on Feb 7 on 15:00 in timezone UTC, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 16 on 17:00 in timezone UTC+1. Glean notes that we passed local 04:00 UTC+1 since MW1. Glean closes MW1, with: start_time=Feb7/15:00/UTC end_time=Feb16/17:00/UTC+1. Glean records metric A again, into MW2.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The application doesn’t run for a week, and when it’s finally re-opened the timezone has changed","id":"182","title":"The application doesn’t run for a week, and when it’s finally re-opened the timezone has changed"},"183":{"body":"The application is opened on Feb 7 at 15:00 in timezone UTC+11, closed at 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 8 at 04:30 in timezone UTC+11. Glean notes that we passed local 04:00 UTC+11. Glean closes MW1, with: start_time=Feb7/15:00/UTC+11; end_time=Feb8/04:30/UTC+11. Glean records metric A again, into MW2. The user changes to timezone UTC-10 and opens the application at Feb 7 at 22:00 in timezone UTC-10 Glean records metric A again, into MW2 (not MW1, which was already sent). The user opens the application at Feb 8 05:00 in timezone UTC-10 Glean notes that we have not yet passed local 04:00 on Feb 9 Measurement window MW2 remains the current measurement window The user opens the application at Feb 9 07:00 in timezone UTC-10 Glean notes that we have passed local 04:00 on Feb 9 Glean closes MW2 with: start_time=Feb8/04:30/UTC+11; end_time=Feb9/19:00/UTC-10. Glean records metric A again, into MW3. Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The user changes timezone in an extreme enough fashion that they cross 04:00 twice on the same date","id":"183","title":"The user changes timezone in an extreme enough fashion that they cross 04:00 twice on the same date"},"184":{"body":"Full reference details about the metrics and baseline ping schedules are detailed elsewhere. The following diagram shows a typical timeline of a mobile application, when pings are sent and what timing-related information is included. ping timeline diagram There are two distinct runs of the application, where the OS shutdown the application at the end of Run 1, and the user started it up again at the beginning of Run 2. There are three distinct foreground sessions, where the application was visible on the screen and the user was able to interact with it. The rectangles for the baseline and metrics pings represent the measurement windows of those pings, which always start exactly at the end of the preceding ping. The ping_info.start_time and ping_info.end_time metrics included in these pings correspond to these beginning and the end of their measurement windows. The baseline.duration metric (included only in baseline pings) corresponds to amount of time the application spent on the foreground, which, since measurement window always extend to the next ping, is not always the same thing as the baseline ping's measurement window. The submission_timestamp is the time the ping was received at the telemetry endpoint, added by the ingestion pipeline. It is not exactly the same as ping_info.end_time, since there may be various networking and system latencies both on the client and in the ingestion pipeline (represented by the dotted horizontal line, not to scale). Also of note is that start_time/end_time are measured using the client's real-time clock in its local timezone, which is not a fully reliable source of time. The \"Baseline 4\" ping illustrates an important corner case. When \"Session 2\" ended, the OS also shut down the entire process, and the Glean SDK did not have an opportunity to send a baseline ping immediately. In this case, it is sent at the next available opportunity when the application starts up again in \"Run 2\". This baseline ping is annotated with the reason code dirty_startup. The \"Metrics 2\" ping likewise illustrates another important corner case. \"Metrics 1\" was able to be sent at the target time of 04:00 (local device time) because the application was currently running. However, the next time 04:00 came around, the application was not active, so the Glean SDK was unable to send a metrics ping. It is sent at the next available opportunity, when the application starts up again in \"Run 2\". This metrics ping is annotated with the reason code overdue. NOTE : Ping scheduling and other application lifecycle dependent activities are not set up when Glean is used in a non-main process. See initializing Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Schedules and timings overview » Ping schedules and timings overview","id":"184","title":"Ping schedules and timings overview"},"185":{"body":"Glean provides Server Knobs, a Data Control Plane through which Glean runtime settings can be changed remotely including the ability to enable, disable or throttle metrics and pings through a Nimbus rollout or experiment. Products can use this capability to control \"data traffic\", similar to how a network control plane controls \"network traffic\". Server Knobs provides the ability to do the following: Allow runtime changes to data collection without needing to land code and ride release trains. Eliminate the need for manual creation and maintenance of feature flags specific to data collection. Sampling of measurements from a subset of the population so that we do not collect or ingest more data than is necessary from high traffic areas of an application instrumented with Glean metrics. Operational safety through being able to react to high-volume or unwanted data. Visibility into sampling and sampling rates for remotely configured metrics.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Server Knobs: Glean Data Control Plane","id":"185","title":"Server Knobs: Glean Data Control Plane"},"186":{"body":"Controlling Metrics with Server Knobs Controlling Pings with Server Knobs Other Server Knobs Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Contents","id":"186","title":"Contents"},"187":{"body":"Glean provides a Data Control Plane through which metrics can be enabled, disabled or throttled through a Nimbus rollout or experiment. Products can use this capability to control \"data-traffic\", similar to how a network control plane controls \"network-traffic\". This provides the ability to do the following: Allow runtime changes to data collection without needing to land code and ride release trains. Eliminate the need for manual creation and maintenance of feature flags specific to data collection. Sampling of measurements from a subset of the population so that we do not collect or ingest more data than is necessary from high traffic areas of an application instrumented with Glean metrics. Operational safety through being able to react to high-volume or unwanted data. Visibility into sampling and sampling rates for remotely configured metrics. For information on controlling pings with Server Knobs, see the metrics documentation for Server Knobs - Pings .","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Data Control Plane (a.k.a. Server Knobs)","id":"187","title":"Data Control Plane (a.k.a. Server Knobs)"},"188":{"body":"Example Scenarios Product Integration Experimenter Configuration Advanced Topics Frequently Asked Questions Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Contents","id":"188","title":"Contents"},"189":{"body":"","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Example Scenarios » Example Scenarios","id":"189","title":"Example Scenarios"},"19":{"body":"We recommend using a virtual environment for your work to isolate the dependencies for your project. There are many popular abstractions on top of virtual environments in the Python ecosystem which can help manage your project dependencies. The Glean Python SDK currently has prebuilt wheels on PyPI for Windows (i686 and x86_64), Linux/glibc (x86_64) and macOS (x86_64) . For other platforms, including BSD or Linux distributions that don't use glibc, such as Alpine Linux, the glean_sdk package will be built from source on your machine. This requires that Cargo and Rust are already installed. The easiest way to do this is through rustup . Once you have your virtual environment set up and activated, you can install the Glean Python SDK into it using: $ python -m pip install glean_sdk Important Installing Python wheels is still a rapidly evolving feature of the Python package ecosystem. If the above command fails, try upgrading pip: python -m pip install --upgrade pip Important The Glean Python SDK make extensive use of type annotations to catch type related errors at build time. We highly recommend adding mypy to your continuous integration workflow to catch errors related to type mismatches early.","breadcrumbs":"Adding Glean to your project » Python » Setting up the dependency","id":"19","title":"Setting up the dependency"},"190":{"body":"Landing a metric that is disabled by default and then enabling it for some segment of the population This scenario can be expected in cases such as when instrumenting high-traffic areas of the browser. These are instrumentations that would normally generate a lot of data because they are recorded frequently for every user. In this case, the telemetry which has the potential to be high-volume would land with the “disabled” property of the metric set to “true”. This will ensure that it does not record data by default. An example metric definition with this property set would look something like this: urlbar: impression: disabled: true type: event description: Recorded when urlbar results are shown to the user. ... Once the instrumentation is landed, it can now be enabled for a subset of the population through a Nimbus rollout or experiment without further code changes. Through Nimbus , we have the ability to sample the population by setting the audience size to a certain percentage of the eligible population. Nimbus also provides the ability to target clients based on the available targeting parameters for a particular application (for instance, Firefox Desktop’s available targeting parameters). This can be used to slowly roll out instrumentations to the population in order to validate the data we are collecting before measuring the entire population and potentially avoiding costs and overhead by collecting data that isn’t useful. Note: if planning to use this feature for permanently keeping a data collection on for the whole population, please consider enabling the metrics by default by setting disabled: false in the metrics.yaml. Then you can \"down-sample\" if necessary (see Scenario 2 below).","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Example Scenarios » Scenario 1","id":"190","title":"Scenario 1"},"191":{"body":"Landing a metric that is enabled by default and then disabling it for a segment of the population This is effectively the inverse of Scenario 1 , instead of landing the metrics disabled by default, they are landed as enabled so that they are normally collecting data from the entire population. Similar to the first scenario, a Nimbus rollout or experiment can then be launched to configure the metrics as disabled for a subset of the population. This provides a mechanism by which we can disable the sending of telemetry from an audience that we do not wish to collect telemetry data from. For instance, this could be useful in tuning out telemetry data coming from automation sources or bad actors. In addition, it provides a way to disable broken, incorrect, or unexpectedly noisy instrumentations as an operational safety mechanism to directly control the volume of the data we collect and ingest. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Example Scenarios » Scenario 2","id":"191","title":"Scenario 2"},"192":{"body":"In order to enable sharing of this functionality between multiple Nimbus Features, the implementation is not defined as part of the stand-alone Glean feature defined in the Nimbus Feature Manifest, but instead is intended to be added as a feature variable to other Nimbus Feature definitions for them to make use of.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Product Integration","id":"192","title":"Product Integration"},"193":{"body":"In order to make use of the remote metric configuration in a Firefox Desktop component, there are two available options.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Desktop Feature Integration","id":"193","title":"Desktop Feature Integration"},"194":{"body":"Glean provides a general Nimbus feature that can be used for configuration of metrics named glean. Simply select the glean feature along with your Nimbus feature from the Experimenter UI when configuring the experiment or rollout (see Nimbus documentation for more information on multi-feature experiments). The glean Nimbus feature requires the gleanMetricConfiguration variable to be used to provide the required metric configuration. The format of the configuration is a map of the fully qualified metric name (category.name) of the metric to a boolean value representing whether the metric is enabled. If a metric is omitted from this map, it will default to the value found in the metrics.yaml. An example configuration for the glean feature can be found on the Experimenter Configuration page.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 1:","id":"194","title":"Integration Option 1:"},"195":{"body":"A second option that can give you more control over the metric configuration, especially if there are more than one experiments or rollouts that are currently using the glean feature from Option 1 above, is to add a Feature Variable to represent the Glean metric configuration in your own feature. This can be accomplished by modifying the FeatureManifest.yaml file, adding a variable through which to pass metric configurations. Glean will handle merging this configuration with other metrics configurations for you (See Advanced Topics for more info on this). An example feature manifest entry would look like the following: variables: ... // Definitions of other feature variables gleanMetricConfiguration: type: json description: >- \"Glean metric configuration\" This definition allows for configuration to be set in a Nimbus rollout or experiment and fetched by the client to be applied based on the enrollment. Once the Feature Variable has been defined, the final step is to fetch the configuration from Nimbus and supply it to the Glean API. This can be done during initialization and again any time afterwards, such as in response to receiving an updated configuration from Nimbus. Glean will merge this configuration with any other active configurations and enable or disable the metrics accordingly. An example call to set a configuration through your Nimbus Feature could look like this: // Fetch the Glean metric configuration from your feature's Nimbus variable\nlet cfg = lazy.NimbusFeatures.yourNimbusFeatureName.getVariable( \"gleanMetricConfiguration\"\n);\n// Apply the configuration through the Glean API\nServices.fog.setMetricsFeatureConfig(JSON.stringify(cfg)); It is also recommended to register to listen for updates for the Nimbus Feature and apply new configurations as soon as possible. The following example illustrates how a Nimbus Feature might register and update the metric configuration whenever there is a change to the Nimbus configuration: // Register to listen for the `onUpdate` event from Nimbus\nlazy.NimbusFeatures.yourNimbusFeatureName.onUpdate(() => { // Fetch the Glean metric configuration from your feature's Nimbus variable let cfg = lazy.NimbusFeatures.yourNimbusFeatureName.getVariable( \"gleanMetricConfiguration\" ); // Apply the configuration through the Glean API Services.fog.setMetricsFeatureConfig(JSON.stringify(cfg));\n});","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 2 (Advanced use):","id":"195","title":"Integration Option 2 (Advanced use):"},"196":{"body":"","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Mobile Feature Integration","id":"196","title":"Mobile Feature Integration"},"197":{"body":"Glean provides a general Nimbus feature that can be used for configuration of metrics named glean. Simply select the glean feature along with your Nimbus feature from the Experimenter UI when configuring the experiment or rollout (see Nimbus documentation for more information on multi-feature experiments). The glean Nimbus feature requires the gleanMetricConfiguration variable to be used to provide the required metric configuration. The format of the configuration is a map of the fully qualified metric name (category.name) of the metric to a boolean value representing whether the metric is enabled. If a metric is omitted from this map, it will default to the value found in the metrics.yaml. An example configuration for the glean feature can be found on the Experimenter Configuration page.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 1:","id":"197","title":"Integration Option 1:"},"198":{"body":"A second option that can give you more control over the metric configuration, especially if there are more than one experiments or rollouts that are currently using the glean feature from Option 1 above, is to add a Feature Variable to represent the Glean metric configuration in your own feature. This can be accomplished by modifying the Nimbus Feature Manifest file, adding a variable through which to pass metric configurations. Glean will handle merging this configuration with other metrics configurations for you (See Advanced Topics for more info on this). An example feature manifest entry would look like the following: features: homescreen: description: | The homescreen that the user goes to when they press home or new tab. variables: ... // Other homescreen variables gleanMetricConfiguration: description: Glean metric configuration type: String default: \"{}\" Once the Feature Variable has been defined, the final step is to fetch the configuration from Nimbus and supply it to the Glean API. This can be done during initialization and again any time afterwards, such as in response to receiving an updated configuration from Nimbus. Only the latest configuration provided will be applied and any previously configured metrics that are omitted from the new configuration will not be changed. An example call to set a configuration from the “homescreen” Nimbus Feature could look like this: Glean.applyServerKnobsConfig(FxNimbus.features.homescreen.value().metricsEnabled) Since mobile experiments only update on initialization of the application, it isn't necessary to register to listen for notifications for experiment updates. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 2 (Advanced use):","id":"198","title":"Integration Option 2 (Advanced use):"},"199":{"body":"The structure of this configuration is a key-value collection with the full metric identification of the Glean metric serving as the key in the format . The values of the key-value pair are booleans which represent whether the metric is enabled (true) or not (false). In the example below gleanMetricConfiguration is the name of the variable defined in the Nimbus feature. This configuration would be what is entered into the branch configuration setup in Experimenter when defining an experiment or rollout.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Experimenter Configuration » Experimenter Configuration","id":"199","title":"Experimenter Configuration"},"2":{"body":"This section of the book contains step-by-step guides and essays detailing how to achieve specific tasks with each Glean SDK. It contains guides on the first steps of integrating Glean into your project, choosing the right metric type for you, debugging products that use Glean and Glean's built-in error reporting mechanism. If you want to start using Glean to report data, this is the section you should read.","breadcrumbs":"Glean » User Guides","id":"2","title":"User Guides"},"20":{"body":"For Python, the metrics.yaml file must be available and loaded at runtime. If your project is a script (i.e. just Python files in a directory), you can load the metrics.yaml using: from glean import load_metrics metrics = load_metrics(\"metrics.yaml\") # Use a metric on the returned object\nmetrics.your_category.your_metric.set(\"value\") If your project is a distributable Python package, you need to include the metrics.yaml file using one of the myriad ways to include data in a Python package and then use pkg_resources.resource_filename() to get the filename at runtime. from glean import load_metrics\nfrom pkg_resources import resource_filename metrics = load_metrics(resource_filename(__name__, \"metrics.yaml\")) # Use a metric on the returned object\nmetrics.your_category.your_metric.set(\"value\")","breadcrumbs":"Adding Glean to your project » Python » Consuming YAML registry files","id":"20","title":"Consuming YAML registry files"},"200":{"body":"{ \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"urlbar.abandonment\": true, \"urlbar.engagement\": true, \"urlbar.impression\": true } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Experimenter Configuration » Example Configuration:","id":"200","title":"Example Configuration:"},"201":{"body":"","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Advanced Topics","id":"201","title":"Advanced Topics"},"202":{"body":"Since each feature defined as a Nimbus Feature can independently provide a Glean configuration, these must be merged together into a cohesive configuration for the entire set of metrics collected by Glean. Configurations will be merged together along with the default values in the metrics.yaml file and applied to the appropriate metrics. Only the latest configuration provided for a given metric will be applied and any previously configured metrics that are omitted from the new configuration will not be changed.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Merging of Configurations from Multiple Features","id":"202","title":"Merging of Configurations from Multiple Features"},"203":{"body":"Imagine a situation where we have 3 features (A, B, C). Each of these features has an event (A.event, B.event, C.event) and these events all default to disabled from their definition in the metrics.yaml file. Let’s walk through an example of changing configurations for these features that illustrates how the merging will work: Initial State This is what the initial state of the events looks like with no configurations applied. All of the events are falling back to the defaults from the metrics.yaml file. This is the starting point for Scenario 1 in the Example Scenarios . Feature A No config, default used A.event is disabled Feature B No config, default used B.event is disabled Feature C No config, default used C.event is disabled Second State In this state, let’s create two rollouts which will provide configurations for features A and B that will enable the events associated with each. The first rollout selects Feature A in experimenter and provides the indicated configuration in the Branch setup page. The second rollout does the same thing, only for Feature B. Feature A Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"A.event\": true } } } A.event is enabled Feature B Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"B.event\": true } } } B.event is enabled Feature C No config, default used C.event is disabled As you can see, the A.event and B.event are enabled by the configurations while C.event remains disabled because there is no rollout for it. Third State In this state, let’s end the rollout for Feature B, start a rollout for Feature C, and launch an experiment for Feature A. Because experiments take precedence over rollouts, this should supersede our configuration from the rollout for Feature A. Feature A Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"A.event\": false } } } A.event is disabled Feature B No config, default used B.event is disabled Feature C Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"C.event\": true } } } C.event is enabled After the new changes to the currently running rollouts and experiments, this client is now enrolled in the experiment for Feature A and the configuration is suppressing the A.event. Feature B is no longer sending B.event because it is reverting back to the defaults from the metrics.yaml file. And finally, Feature C is sending C.event with the rollout configuration applied. Fourth State Finally, in this state, let’s end the rollout for Feature C along with the experiment for Feature A. This should stop the sending of the B.event and C.event and resume sending of the A.event as the rollout configuration will again be applied since the experiment configuration is no longer available. Feature A Configuration { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"A.event\": true } } } A.event is enabled Feature B No config, default used B.event is disabled Feature C No config, default used C.event is disabled After the new changes to the currently running rollouts and experiments, this client is now enrolled in the experiment for Feature A and the configuration is suppressing the A.event. Feature B is no longer sending B.event because it is reverting back to the defaults from the metrics.yaml file. And finally, Feature C is sending C.event with the rollout configuration applied. In each case, Glean only updates the configuration associated with the feature that provided it. Nimbus’ feature exclusion would prevent a client from being enrolled in multiple rollouts or experiments for a given feature, so no more than one configuration would be applied per feature for a given client.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Example","id":"203","title":"Example"},"204":{"body":"Because there is currently nothing that ties a particular Nimbus Feature to a set of metrics, care must be taken to avoid feature overlap over a particular metric. If two different features supply conflicting configurations for the same metric, then whether or not the metric is enabled will likely come down to a race condition of whoever set the configuration last. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Merging Caveats","id":"204","title":"Merging Caveats"},"205":{"body":"How can I tell if a given client id has the metric X on? Once we have established the functionality behind the data control plane, a dashboard for monitoring this will be provided. Details are to be determined. Why isn't some client id reporting the metric that should be enabled for all the clients for that channel? (e.g. Some fraction of population may get stuck on “default” config) Nimbus must be able to both reach and supply a valid configuration to the audience. For some outliers this doesn't work and so may be \"unreachable\" at times. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Frequently Asked Questions » Frequently Asked Questions","id":"205","title":"Frequently Asked Questions"},"206":{"body":"Glean provides a Data Control Plane through which pings can be enabled or disabled through a Nimbus rollout or experiment. Products can use this capability to control \"data-traffic\", similar to how a network control plane controls \"network-traffic\". This provides the ability to do the following: Allow runtime changes to data collection without needing to land code and ride release trains. Eliminate the need for manual creation and maintenance of feature flags specific to data collection. Sampling of measurements from a subset of the population so that we do not collect or ingest more data than is necessary from high traffic areas of an application instrumented with Glean metrics. Operational safety through being able to react to high-volume or unwanted data. Visibility into sampling and sampling rates for remotely configured metrics. For information on controlling metrics with Server Knobs, see the metrics documentation for Server Knobs - Metrics .","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Data Control Plane (a.k.a. Server Knobs)","id":"206","title":"Data Control Plane (a.k.a. Server Knobs)"},"207":{"body":"Product Integration Experimenter Configuration Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Contents","id":"207","title":"Contents"},"208":{"body":"Glean provides a general Nimbus feature named glean that can be used for configuration of pings. Simply select the glean feature along with your Nimbus feature from the Experimenter UI when configuring the experiment or rollout (see Nimbus documentation for more information on multi-feature experiments). The glean Nimbus feature requires the gleanMetricConfiguration variable to be used to provide the required metric configuration. The format of the configuration is defined in the Experimenter Configuration section. If a ping is not included, it will default to the value found in the pings.yaml. Note that this can also serve as an override for Glean builtin pings disabled using the Configuration property enable_internal_pings=false during initialization. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Product Integration » Product Integration","id":"208","title":"Product Integration"},"209":{"body":"The structure of this configuration is a key-value collection with the name of the Glean ping serving as the keys and the values are booleans representing whether the ping is enabled (true) or not (false). In the example below, gleanMetricConfiguration is the name of the variable defined in the Nimbus feature. This configuration would be what is entered into the branch configuration setup in Experimenter when defining an experiment or rollout.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Experimenter Configuration » Experimenter Configuration","id":"209","title":"Experimenter Configuration"},"21":{"body":"Documentation The documentation for your application or library's metrics and pings are written in metrics.yaml and pings.yaml. For Mozilla projects, this SDK documentation is automatically published on the Glean Dictionary . For non-Mozilla products, it is recommended to generate markdown-based documentation of your metrics and pings into the repository. For most languages and platforms, this transformation can be done automatically as part of the build. However, for some SDKs the integration to automatically generate docs is an additional step. The Glean Python SDK provides a commandline tool for automatically generating markdown documentation from your metrics.yaml and pings.yaml files. To perform that translation, run glean_parser's translate command: python3 -m glean_parser translate -f markdown -o docs metrics.yaml pings.yaml To get more help about the commandline options: python3 -m glean_parser translate --help We recommend integrating this step into your project's documentation build. The details of that integration is left to you, since it depends on the documentation tool being used and how your project is set up. Metrics linting Glean includes a \"linter\" for metrics.yaml and pings.yaml files called the glinter that catches a number of common mistakes in these files. As part of your continuous integration, you should run the following on your metrics.yaml and pings.yaml files: python3 -m glean_parser glinter metrics.yaml pings.yaml","breadcrumbs":"Adding Glean to your project » Python » Automation steps","id":"21","title":"Automation steps"},"210":{"body":"{ \"gleanMetricConfiguration\": { \"pings_enabled\": { \"baseline\": false, \"events\": false, \"metrics\": false } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Experimenter Configuration » Example Configuration:","id":"210","title":"Example Configuration:"},"211":{"body":"Below are additional Glean parameters and settings that are exposed via Server Knobs for use in a Nimbus experiment or rollout.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Other Server Knobs","id":"211","title":"Other Server Knobs"},"212":{"body":"Max Events per Event Ping Additional Glean settings will be added to Server Knobs as needed or by request. For information on controlling metrics and pings via Server Knobs, please refer to Controlling Metrics with Server Knobs and Controlling Pings with Server Knobs . Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Contents","id":"212","title":"Contents"},"213":{"body":"By default, Glean batches events together to submit on a single events ping. The event_threshold Server Knob controls how many events Glean will collect before submitting an events ping. For instance, if you wanted to disable batching in order to transmit an events ping after every event is recorded you could set event_threshold: 1.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Max Events per Ping » Max Events","id":"213","title":"Max Events"},"214":{"body":"{ \"gleanMetricConfiguration\": { \"event_threshold\": 1 }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Max Events per Ping » Example Configuration:","id":"214","title":"Example Configuration:"},"215":{"body":"Glean provides a few debugging features to assist with debugging a product using Glean.","breadcrumbs":"Debugging products using Glean » Debugging products using the Glean SDK","id":"215","title":"Debugging products using the Glean SDK"},"216":{"body":"","breadcrumbs":"Debugging products using Glean » Features","id":"216","title":"Features"},"217":{"body":"Print the ping payload upon sending a ping.","breadcrumbs":"Debugging products using Glean » Log Pings","id":"217","title":"Log Pings"},"218":{"body":"Tags all outgoing pings as debug pings to make them available for real-time validation, on the Glean Debug View. Glean Debug View The Glean Debug View enables you to easily see in real-time what data your application is sending. This data is what actually arrives in our data pipeline, shown in a web interface that is automatically updated when new data arrives. Any data sent from a Glean-instrumented application usually shows up within 10 seconds, updating the pages automatically. Pings are retained for 3 weeks. Troubleshooting If nothing is showing up on the dashboard after you set a debugViewTag and you see Glean must be enabled before sending pings. in the logs, Glean is disabled. Check with the application author on how to re-enable it.","breadcrumbs":"Debugging products using Glean » Debug View Tag","id":"218","title":"Debug View Tag"},"219":{"body":"Tags outgoing pings with a maximum of 5 comma-separated tags.","breadcrumbs":"Debugging products using Glean » Source Tags","id":"219","title":"Source Tags"},"22":{"body":"Most Glean SDKs use a separate worker thread to do most of its work, including any I/O. This thread is fully managed by the SDK as an implementation detail. Therefore, users should feel free to use the Glean SDKs wherever they are most convenient, without worrying about the performance impact of updating metrics and sending pings. Since the Glean SDKs perform disk and networking I/O, they try to do as much of their work as possible on separate threads and processes. Since there are complex trade-offs and corner cases to support Python parallelism, it is hard to design a one-size-fits-all approach. Default behavior When using the Python SDK, most of the Glean's work is done on a separate thread, managed by the SDK itself. The SDK releases the Global Interpreter Lock (GIL) for most of its operations, therefore your application's threads should not be in contention with the Glean's worker thread. The Glean Python SDK installs an atexit handler so that its worker thread can cleanly finish when your application exits. This handler will wait up to 30 seconds for any pending work to complete. By default, ping uploading is performed in a separate child process. This process will continue to upload any pending pings even after the main process shuts down. This is important for commandline tools where you want to return control to the shell as soon as possible and not be delayed by network connectivity. Cases where subprocesses aren't possible The default approach may not work with applications built using PyInstaller or similar tools which bundle an application together with a Python interpreter making it impossible to spawn new subprocesses of that interpreter. For these cases, there is an option to ensure that ping uploading occurs in the main process. To do this, set the allow_multiprocessing parameter on the glean.Configuration object to False. Using the multiprocessing module Additionally, the default approach does not work if your application uses the multiprocessing module for parallelism. The Glean Python SDK can not wait to finish its work in a multiprocessing subprocess, since atexit handlers are not supported in that context. Therefore, if the Glean Python SDK detects that it is running in a multiprocessing subprocess, all of its work that would normally run on a worker thread will run on the main thread. In practice, this should not be a performance issue: since the work is already in a subprocess, it will not block the main process of your application. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Python » Parallelism","id":"22","title":"Parallelism"},"220":{"body":"Sends a ping on demand.","breadcrumbs":"Debugging products using Glean » Send Ping","id":"220","title":"Send Ping"},"221":{"body":"Each Glean SDK may expose one or more of the following methods to interact with and enable these debugging functionalities. Enable debugging features through APIs exposed through the Glean singleton; Enable debugging features through environment variables set at runtime; Enable debugging features through platform specific tooling. For methods 1. and 2., refer to the API reference section \"Debugging\" for detailed information on how to use them. For method 3. please refer to the platform specific pages on how to debug products using Glean.","breadcrumbs":"Debugging products using Glean » Debugging methods","id":"221","title":"Debugging methods"},"222":{"body":"Debugging Android applications using the Glean SDK Debugging iOS applications using the Glean SDK Debugging Python applications using the Glean SDK Debugging JavaScript applications using Glean.js","breadcrumbs":"Debugging products using Glean » Platform Specific Information","id":"222","title":"Platform Specific Information"},"223":{"body":"Glean API Environment Variables Platform Specific Tooling Kotlin ✅ [1] Swift ✅ ✅ ✅ [2] Python ✅ Rust ✅ ✅ JavaScript ✅ Firefox Desktop ✅ ✅ [3] The Glean Kotlin SDK exposes the GleanDebugActivity for interacting with debug features. Although it is technically possible to also use environment variables in Android, the Glean team is not aware of a proper way to set environment variables in Android devices or emulators. The Glean Swift SDK exposes a custom URL format for interacting with debug features. In Firefox Desktop, developers may use the interface exposed through about:glean to log, tag or send pings. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » Available debugging methods per platform","id":"223","title":"Available debugging methods per platform"},"224":{"body":"The Glean Kotlin SDK exports the GleanDebugActivity that can be used to toggle debugging features on or off. Users can invoke this special activity, at run-time, using the following adb command: adb shell am start -n [applicationId]/mozilla.telemetry.glean.debug.GleanDebugActivity [extra keys] In the above: [applicationId] is the product's application id as defined in the manifest file and/or build script. For the Glean sample application, this is org.mozilla.samples.gleancore for a release build and org.mozilla.samples.gleancore.debug for a debug build. [extra keys] is a list of extra keys to be passed to the debug activity. See the documentation for the command line switches used to pass the extra keys. These are the currently supported keys: key type description logPings boolean (--ez) If set to true, pings are dumped to logcat; defaults to false debugViewTag string (--es) Tags all outgoing pings as debug pings to make them available for real-time validation, on the Glean Debug View . The value must match the pattern [a-zA-Z0-9-]{1,20}. Important : in older versions of the Glean SDK, this was named tagPings sourceTags string array (--esa) Tags outgoing pings with a maximum of 5 comma-separated tags. The tags must match the pattern [a-zA-Z0-9-]{1,20}. The automation tag is meant for tagging pings generated on automation: such pings will be specially handled on the pipeline (i.e. discarded from non-live views ). Tags starting with glean are reserved for future use. Subsequent calls of this overwrite any previously stored tag sendPing string (--es) Sends the ping with the given name immediately startNext string (--es) The name of an exported Android Activity, as defined in the product manifest file, to start right after the GleanDebugActivity completes. All the options provided are propagated to this next activity as well. When omitted, the default launcher activity for the product is started instead. All the options provided to start the activity are passed over to the main activity for the application to process. This is useful if SDK users wants to debug telemetry while providing additional options to the product to enable specific behaviors. Note: Due to limitations on Android logcat message size, pings larger than 4KB are broken into multiple log messages when using logPings. For example, to direct a release build of the Glean sample application to (1) dump pings to logcat, (2) tag the ping with the test-metrics-ping tag, and (3) send the \"metrics\" ping immediately, the following command can be used: adb shell am start -n org.mozilla.samples.gleancore/mozilla.telemetry.glean.debug.GleanDebugActivity \\ --ez logPings true \\ --es sendPing metrics \\ --es debugViewTag test-metrics-ping The logPings command doesn't trigger ping submission and you won't see any output until a ping has been sent. You can use the sendPing command to force a ping to be sent, but it could be more desirable to trigger the pings submission on their normal schedule. For instance, the baseline and events pings can be triggered by moving the app out of the foreground and the metrics ping can be triggered normally if it is overdue for the current calendar day. Note: The device or emulator must be connected to the internet for this to work. Otherwise the job that sends the pings won't be triggered. If no metrics have been collected, no pings will be sent unless send_if_empty is set on your ping . See the ping documentation for more information on ping scheduling to learn when pings are sent. Options that are set using the adb flags are not immediately reset and will persist until the application is closed or manually reset.","breadcrumbs":"Debugging products using Glean » Android » Debugging Android applications using the Glean SDK","id":"224","title":"Debugging Android applications using the Glean SDK"},"225":{"body":"When running a Glean SDK-powered app in the Android emulator or on a device connected to your computer via cable, there are several ways to read the log output.","breadcrumbs":"Debugging products using Glean » Android » Glean Kotlin SDK Log messages","id":"225","title":"Glean Kotlin SDK Log messages"},"226":{"body":"Android Studio can show the logs of a connected emulator or device. To display the log messages for an app: Run an app on your device. Click View > Tool Windows > Logcat (or click Logcat in the tool window bar). The Logcat window will show all log messages and allows to filter those by the application ID. Select the application ID of the product you're debugging. You can also filter by Glean only. More information can be found in the View Logs with Logcat help article.","breadcrumbs":"Debugging products using Glean » Android » Android Studio","id":"226","title":"Android Studio"},"227":{"body":"On the command line you can show all of the log output using: adb logcat This is the unfiltered output of all log messages. You can match for glean using grep: adb logcat | grep -i glean A simple way to filter for only the application that is being debugged is by using pidcat , a wrapper around adb, which adds colors and proper filtering by application ID and log level. Run it like this to filter for an application: pidcat [applicationId] In the above [applicationId] is the product's application id as defined in the manifest file and/or build script. For the Glean sample application, this is org.mozilla.samples.gleancore for a release build and org.mozilla.samples.gleancore.debug for a debug build. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » Android » Command line","id":"227","title":"Command line"},"228":{"body":"","breadcrumbs":"Debugging products using Glean » iOS » Debugging iOS applications using the Glean SDK","id":"228","title":"Debugging iOS applications using the Glean SDK"},"229":{"body":"Debugging features in iOS can be enabled using environment variables. For more information on the available features accessible through this method and how to enable them, see Debugging API reference . These environment variables must be set on the device that is running the application.","breadcrumbs":"Debugging products using Glean » iOS » Enabling debugging features in iOS through environment variables","id":"229","title":"Enabling debugging features in iOS through environment variables"},"23":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Rust project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Rust » Adding Glean to your Rust project","id":"23","title":"Adding Glean to your Rust project"},"230":{"body":"For debugging and validation purposes on iOS, the Glean Swift SDK makes use of a custom URL scheme which is implemented within the application . The Glean Swift SDK provides some convenience functions to facilitate this, but it's up to the consuming application to enable this functionality. Applications that enable this feature will be able to launch the application from a URL with the Glean debug commands embedded in the URL itself.","breadcrumbs":"Debugging products using Glean » iOS » Enabling debugging features in iOS through a custom URL scheme","id":"230","title":"Enabling debugging features in iOS through a custom URL scheme"},"231":{"body":"All 4 Glean debugging features are available through the custom URL scheme tool. logPings : This is either true or false and will cause pings that are submitted to also be echoed to the device's log. debugViewTag : This command will tag outgoing pings with the provided value, in order to identify them in the Glean Debug View. sourceTags : This command tags outgoing pings with a maximum of 5 comma-separated tags. sendPing: This command expects a string name of a ping to force immediate collection and submission of. The structure of the custom URL uses the following format: ://glean?=&= ... Where: is the \"URL Scheme\" that has been added for your app (see Instrumenting the application below), such as glean-sample-app. This is followed by :// and then glean which is required for the Glean Swift SDK to recognize the command is meant for it to process. Following standard URL query format, the next character after glean is the ? indicating the beginning of the query. This is followed by one or more queries in the form of =, where the command is one of the commands listed above, followed by an = and then the value or parameter to be used with the command. There are a few things to consider when creating the custom URL: Invalid commands will log an error and cause the entire URL to be ignored. Not all commands are required to be encoded in the URL, you can mix and match the commands that you need. Multiple instances of commands are not allowed in the same URL and, if present, will cause the entire URL to be ignored. The logPings command doesn't trigger ping submission and you won't see any output until a ping has been submitted. You can use the sendPing command to force a ping to be sent, but it could be more desirable to trigger the pings submission on their normal schedule. For instance, the baseline and events pings can be triggered by moving the app out of the foreground and the metrics ping can be triggered normally if it is overdue for the current calendar day. See the ping documentation for more information on ping scheduling to learn when pings are sent. Enabling debugging features through custom URLs overrides any debugging features set through environment variables.","breadcrumbs":"Debugging products using Glean » iOS » Available commands and query format","id":"231","title":"Available commands and query format"},"232":{"body":"In order to enable the debugging features in an iOS application, it is necessary to add some information to the application's Info.plist, and add a line and possibly an override for a function in the AppDelegate.swift. Register custom URL scheme in Info.plist Note: If your application already has a custom URL scheme implemented, there is no need to implement a second scheme, you can simply use that and skip to the next section about adding the convenience method. If the app doesn't have a custom URL scheme implemented, then you will need to perform the following instructions to register your app to receive custom URLs. Find and open the application's Info.plist and right click any blank area and select Add Row to create a new key. You will be prompted to select a key from a drop-down menu, scroll down to and select URL types. This creates an array item, which can be expanded by clicking the triangle disclosure icon. Select Item 0, click on it and click the disclosure icon to expand it and show the URL identifier line. Double-click the value field and fill in your identifier, typically the same as the bundle ID. Right-click on Item 0 and select Add Row from the context menu. In the dropdown menu, select URL Schemes to add the item. Click on the disclosure icon of URL Schemes to expand the item, double-click the value field of Item 0 and key in the value for your application's custom scheme. For instance, the Glean sample app uses glean-sample-app, which allows for custom URLs to be crafted using that as a protocol, for example: glean-sample-app://glean?logPings=true Add the Glean.handleCustomUrl() convenience function and necessary overrides In order to handle the incoming debug commands, it is necessary to implement the override in the application's AppDelegate.swift file. Within that function, you can make use of the convenience function provided in Glean handleCustomUrl(url: URL). An example of a simple implementation of this would look like this: func application(_: UIApplication, open url: URL, options _: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool { // ... // This does nothing if the url isn't meant for Glean. Glean.shared.handleCustomUrl(url: url) // ... return true\n} If you need additional help setting up a custom URL scheme in your application, please refer to Apple's documentation .","breadcrumbs":"Debugging products using Glean » iOS » Instrumenting the application for Glean Swift SDK debug functionality","id":"232","title":"Instrumenting the application for Glean Swift SDK debug functionality"},"233":{"body":"Now that the app has the debug functionality enabled, there are a few ways in which we can invoke the debug commands. Using a web browser Perhaps the simplest way to invoke the debug functionality is to open a web browser and type/paste the custom URL into the address bar. This is especially useful on an actual device because there isn't a good way to launch from the command line and process the URL for an actual device. Using the glean-sample-app as an example: to activate ping logging, tag the pings to go to the Glean Debug View, and force the events ping to be sent, enter the following URL in a web browser on the iOS device: glean-sample-app://glean?logPings=true&debugViewTag=My-ping-tag&sendPing=events This should cause iOS to prompt you with a dialog asking if you want to open the URL in the Glean Sample App, and if you select \"Okay\" then it will launch (or resume if it's already running) the application with the indicated commands and parameters and immediately force the collection and submission of the events ping. Note: This method does not work if the browser you are using to input the command is the same application you are attempting to pass the Glean debug commands to. So, you couldn't use Firefox for iOS to trigger commands within Firefox for iOS. It is also possible to encode the URL into a 2D barcode or QR code and launch the app via the camera app. After scanning the encoded URL, the dialog prompting to launch the app should appear as if the URL were entered into the browser address bar. Using the command line This method is useful for testing via the Simulator, which typically requires a Mac with Xcode installed, including the Xcode command line tools. In order to perform the same command as above with using the browser to input the URL, you can use the following command in the command line terminal of the Mac: xcrun simctl openurl booted \"glean-sample-app://glean?logPings=true&debugViewTag=My-ping-tag&sendPing=events\" This will launch the simulator and again prompt the user with a dialog box asking if you want to open the URL in the Glean Sample App (or whichever app you are instrumenting and testing).","breadcrumbs":"Debugging products using Glean » iOS » Invoking the Glean-iOS debug commands","id":"233","title":"Invoking the Glean-iOS debug commands"},"234":{"body":"The Glean Swift SDK integrates with the unified logging system available on iOS. There are various ways to retrieve log information, see the official documentation . If debugging in the simulator, the logging messages can be seen in the console window within Xcode. When running a Glean-powered app in the iOS Simulator or on a device connected to your computer via cable you can use Console.app to view the system log. You can filter the logs with category:glean to only see logs from the Glean SDK. You can also use the command line utility log to stream the log output. Run the following in a shell: log stream --predicate 'category contains \"glean\"' See Diagnosing Issues Using Crash Reports and Device Logs for more information about debugging deployed iOS apps. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » iOS » Glean log messages","id":"234","title":"Glean log messages"},"235":{"body":"Debugging features in Python can be enabled using environment variables. For more information on the available features and how to enable them, see the Debugging API reference .","breadcrumbs":"Debugging products using Glean » Python » Debugging Python applications using the Glean SDK","id":"235","title":"Debugging Python applications using the Glean SDK"},"236":{"body":"Unlike other platforms, Python doesn't expose convenience methods to send pings on demand. In case that is necessary, calling the submit function for a given ping, such as pings.custom_ping.submit(), will send it.","breadcrumbs":"Debugging products using Glean » Python » Sending pings","id":"236","title":"Sending pings"},"237":{"body":"Glean offers two options for logging from Python: Simple logging API: A simple API that only allows for setting the logging level, but includes all Glean log messages, including those from its networking subprocess. This is also the only mode in which GLEAN_LOG_PINGS can be used to display ping contents in the log. Flexible logging API: Full use of the Python logging module, including its features for redirecting to files and custom handling of messages, but does not include messages from the networking subprocess about HTTP requests.","breadcrumbs":"Debugging products using Glean » Python » Logging pings","id":"237","title":"Logging pings"},"238":{"body":"You can set the logging level for Glean log messages by passing logging.DEBUG to Glean.initialize as follows: import logging\nfrom glean import Glean Glean.initialize(..., log_level=logging.DEBUG) If you want to see ping contents as well, set the GLEAN_LOG_PINGS environment variable to true.","breadcrumbs":"Debugging products using Glean » Python » Simple logging API","id":"238","title":"Simple logging API"},"239":{"body":"You can set the logging level for the Python logging to DEBUG as follows: import logging logging.basicConfig(level=logging.DEBUG) All log messages from the Glean Python SDK are on the glean logger, so if you need to control it independently, you can set a level for just the Glean Python SDK (but note that the global Python logging level also needs to be set as above): logging.getLogger(\"glean\").setLevel(logging.DEBUG) The flexible logging API is unable to display networking-related log messages or ping contents with GLEAN_LOG_PINGS set to true. See the Python logging documentation for more information. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » Python » Flexible logging API","id":"239","title":"Flexible logging API"},"24":{"body":"The Glean Rust SDK is published on crates.io . Add it to your dependencies in Cargo.toml: [dependencies]\nglean = \"50.0.0\"","breadcrumbs":"Adding Glean to your project » Rust » Setting up the dependency","id":"24","title":"Setting up the dependency"},"240":{"body":"Debugging features in JavaScript can be enabled through APIs exposed on the Glean object. For more information on the available features and how to enable them, see the Debugging API reference .","breadcrumbs":"Debugging products using Glean » JavaScript » Debugging JavaScript applications using Glean.js","id":"240","title":"Debugging JavaScript applications using Glean.js"},"241":{"body":"Websites running Glean allow you to debug at runtime using the window.Glean object in the browser console. You can start debugging by simply: Opening the browser console Calling one of the window.Glean APIs: window.Glean.setLogPings, window.Glean.setDebugViewTag, window.Glean.setSourceTags. These debugging options will persist for the length of the current page session. Once the tab is closed, you will need to make those API calls again.","breadcrumbs":"Debugging products using Glean » JavaScript » Debugging in the browser","id":"241","title":"Debugging in the browser"},"242":{"body":"Unlike other platforms, JavaScript doesn't expose convenience methods to send pings on demand. In case that is necessary, calling the submit function for a given ping, such as pings.customPing.submit(), will send it. Note that this method is only effective for custom pings. Glean internal pings are not exposed to users.","breadcrumbs":"Debugging products using Glean » JavaScript » Sending pings","id":"242","title":"Sending pings"},"243":{"body":"By calling Glean.logPings(true) all subsequent pings sent will be logged to the console. To access the logs for web extensions on","breadcrumbs":"Debugging products using Glean » JavaScript » Logging pings","id":"243","title":"Logging pings"},"244":{"body":"Go to about:debugging#/runtime/this-firefox; Find the extension you want to see the logs for; Click on Inspect.","breadcrumbs":"Debugging products using Glean » JavaScript » Firefox","id":"244","title":"Firefox"},"245":{"body":"Go to chrome://extensions; Find the extension you want to see the logs for; Click on background page. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » JavaScript » Chromium-based browsers","id":"245","title":"Chromium-based browsers"},"246":{"body":"This chapter contains various how-tos and walkthroughs to help aid you in using Glean.","breadcrumbs":"Walkthroughs and How-tos » How-tos","id":"246","title":"How-tos"},"247":{"body":"A step-by-step guide in setting up and launching a Server Knobs Experiment.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough","id":"247","title":"Server Knobs Walkthrough"},"248":{"body":"A guide describing the different methods to collect and transmit data in a \"real-time\" fashion using Glean.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events","id":"248","title":"\"Real-Time\" Events"},"249":{"body":"Recommendations and tips on investigating data anomalies. Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations","id":"249","title":"Telemetry/Data Bug Investigation Recommendations"},"25":{"body":"","breadcrumbs":"Adding Glean to your project » Rust » Setting up metrics and pings code generation","id":"25","title":"Setting up metrics and pings code generation"},"250":{"body":"","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Server Knobs: A Complete Walkthrough","id":"250","title":"Server Knobs: A Complete Walkthrough"},"251":{"body":"This documentation serves as a step by step guide on how to create a Server Knobs configuration and make use of it in a Nimbus experiment or rollout. The intent is to explain everything from selecting the metrics or pings you wish to control all the way through launching the experiment or rollout and validating the data is being collected.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Purpose","id":"251","title":"Purpose"},"252":{"body":"This documentation is aimed at the general users of Nimbus experimentation who wish to enable or disable specific metrics and/or pings as part of their deployment. This documentation assumes the reader has no special knowledge of the inner workings of either Glean or Nimbus, but it does assume that the audience has already undergone the prerequisite Nimbus training program and has access to Experimenter to create experiment and rollout definitions.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Audience","id":"252","title":"Audience"},"253":{"body":"The first step in running a Server Knobs experiment or rollout is creating the definition for it in Experimenter . For the purposes of this walkthrough, a rollout will be used but the instructions are interchangeable if you are instead launching an experiment.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Let’s Get Started!","id":"253","title":"Let’s Get Started!"},"254":{"body":"Create a new experiment From the Experimenter landing page, we select the “Create New” button to begin defining the new rollout. Experimenter landing page Initial experiment definition The initial setup requires a name, hypothesis, and the selection of a target application. New experiment dialog Here we enter a human readable name for the rollout and a brief synopsis of what we expect to learn in the “Hypothesis” section. In the final field we select our target application, Firefox Desktop. When that is complete, we click the “Next” button to proceed with the rollout definition. The next screen we are presented with is the “Summary” page of the experiment/rollout, where we can add additional metadata like a longer description, and link to any briefs or other documentation related to the rollout. We complete the required information and then click on “Save and Continue” Experiment summary page Initial branch configuration The next screen we are presented with is the branch configuration page. On this page we can select the glean feature, and check the box to indicate that this is a rollout. Branch configuration page At this point, we now need to create a bit of JSON configuration to put in the box seen here: Branch payload text box Building the Server Knobs configuration for metrics This JSON configuration is the set of instructions for Glean that lets it know which metrics to enable or disable. In order to do this, we will visit the Glean Dictionary to help identify the metrics we wish to work with and get the identifiers from them needed for the configuration in Experimenter. Upon arriving at the Glean Dictionary, we must first find the right application. Glean Dictionary landing page We are going to select “Firefox for Desktop” to match the application we previously selected in Experimenter. This brings us to a screen where we can search and filter for metrics which are defined in the application. Glean Dictionary page for Firefox Desktop To help locate the metrics we are interested in, start typing in the search box at the top of the list. For instance, if we were interested in urlbar metrics: Using the Glean Dictionary search bar From here we can select a metric, such as “urlbar.engagement” to see more information about it: Detail view of urlbar.engagement metric Here we can see this metric currently has active sampling configurations in both release and nightly. Let’s say we wish to add one for beta also. Our next step is to click the copy to clipboard button next to “Sampling Configuration Snippet”: Sampling configuration snippet button With the snippet copied to the clipboard, we return to Experimenter and our rollout configuration. We can now paste this snippet into the text-box like below: Pasting into the branch configuration text box That’s all that needs to be done here, if this is the only metric we need to configure. But what if we want to configure more than one? Then it’s back to Glean Dictionary to find the rest of the metrics we are interested in. Let’s say we are also interested in the “exposure” metric. Searching for the urlbar.exposure metric As we select the exposure metric from the list, we can see it isn’t currently being sampled by any experiments or rollouts, and we again find the button to copy the configuration snippet to the clipboard. Back to the sampling configuration snippet button Now, we can paste this just below the other snippet inside of Experimenter. Pasting the new metric into Experimenter As you can see, the JSON validator isn’t happy and there’s a red squiggle indicating that there’s a problem. We only need a part of the latest pasted snippet, so we copy the ”urlbar.exposure”: true portion of the snippet, and add a comma after the ”urlbar.engagement”: true in the snippet above. The JSON validator isn't happy We can then delete the remains of the snippet below, leaving us with a metric configuration with multiple metrics in it. This can be repeated for all the necessary metrics required by the rollout or experiment. Cleaning up the branch payload Adding pings to the configuration This same procedure can be used to enable and disable pings, also. In order to copy a snippet for a ping, navigate to the “Pings” tab for the application on the Glean Dictionary. Navigate to the Pings tab From here, select a ping that is desired to be configured remotely. For instance, the “crash” ping: Selecting the crash ping Just like with the metric, select the button to copy the configuration snippet to your clipboard, then paste it into the Experimenter setup. Adding the ping configuration to the Experimenter setup This time we need to get everything for the ”pings_enabled” section, copy and paste it below the ”metrics_enabled” section in the snippet above. We also need to add a comma after the metrics section’s curly brace, like this: Copying the ping config into the right spot Then we can delete the remains of the pasted snippet at the bottom, leaving us with: Cleaning up the ping configuration Wrapping up That should be everything needed to enable the two urlbar metrics, as well as the crash ping. Additional experiment branches can be configured in a similar fashion, or if this is a rollout, it should be ready to launch if the metric configuration is all that is needed. Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Experiment Setup","id":"254","title":"Experiment Setup"},"255":{"body":"","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » \"Real-Time\" Events","id":"255","title":"\"Real-Time\" Events"},"256":{"body":"For the purposes of the Glean SDK and its capabilities, \"real-time\" is limited to: minimizing the time between instrumentation and reporting. It does not imply or describe how quickly received data is made available for querying.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Defining \"real-time\" events within the Glean SDK","id":"256","title":"Defining \"real-time\" events within the Glean SDK"},"257":{"body":"","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Methods to achieve this with Glean","id":"257","title":"Methods to achieve this with Glean"},"258":{"body":"Glean \"events\" ping submission can be configured either during initialization or through Server Knobs . Setting the maximum event threshold to a value of 1 will configure the Glean SDK to submit an \"events\" ping for each and every event as they are recorded. By default, the Glean SDK will batch 500 events per \"events\" ping. As of November 2024, Desktop Release: Median user per day: 67 events / 3 pings The impact of turning on one event per ping based on the median user would result in an increase of approximately 21 times more event ping volume. 85th percentile user per day: 305 events / 11 pings The impact of turning on one event per ping based on the 85th percentile user would result in an increase of approximately 26 times more event ping volume. 95th percentile user per day: 706 events / 19 pings The impact of turning on one event per ping based on the 95th percentile user would result in an increase of approximately 36 times more event ping volume. The current release population of Desktop as a whole sends us over 10 billion events per day in over 340 million event pings. Sending each of those events as a ping would increase the ping volume by 32 times the current rate. Based on this it is safe to assume that sending 1 event per event ping would increase the ingestion traffic and downstream overhead between 20-40x the current levels with Glean batching of events in the client. This is a significant increase that should be taken into consideration before configuring Glean to disable event batching.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Option 1: Configuring Glean to send all events as soon as they are recorded","id":"258","title":"Option 1: Configuring Glean to send all events as soon as they are recorded"},"259":{"body":"If it isn't necessary to receive all Glean SDK events that are instrumented in an application in \"real-time\", it may be preferable to create a custom ping which contains the relevant information to capture the context around the event and submit it as soon as the application event occurs. This has some additional advantages over using just an event in that custom pings are less restrictive than the extras attached to the event in what data and Glean SDK metric types can be used. If it is important to see the event that is being represented as a custom ping in context with other application events, then you only need to define an event metric and use the send_in_pings parameter to send it in both the custom ping and the Glean built-in \"events\" ping. It can then be seen in sequence and within context of all of the application events, and still be sent in \"real-time\" as needed.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Option 2: Using a custom ping and submitting it immediately (\"Pings-as-Events\")","id":"259","title":"Option 2: Using a custom ping and submitting it immediately (\"Pings-as-Events\")"},"26":{"body":"The glean-build crate is new and currently in beta. It can be used as a git dependency. Please file a bug if it does not work for you. At build time you need to generate the metrics and ping API from your definition files. Add the glean-build crate as a build dependency in your Cargo.toml: [build-dependencies]\nglean-build = { git = \"https://github.com/mozilla/glean\" } Then add a build.rs file next to your Cargo.toml and call the builder: use glean_build::Builder; fn main() { Builder::default() .file(\"metrics.yaml\") .file(\"pings.yaml\") .generate() .expect(\"Error generating Glean Rust bindings\");\n} Ensure your metrics.yaml and pings.yaml files are placed next to your Cargo.toml or adjust the path in the code above. You can also leave out any of the files.","breadcrumbs":"Adding Glean to your project » Rust » glean-build is in beta.","id":"26","title":"glean-build is in beta."},"260":{"body":"","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Considerations","id":"260","title":"Considerations"},"261":{"body":"Configuring the Glean SDK to submit events as soon as they are recorded or using custom pings to submit data immediately does not mean that the data is available for analysis in real time. There are networks to traverse, ingestion pipelines, etl, etc. that are all factors to keep in mind when considering how soon the data is available for analysis purposes. This documentation only purports to cover configuring the Glean SDK to send the data in a real-time fashion and does not make any assumptions about the analysis of data in real-time.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » What \"real-time\" Glean events/pings are not","id":"261","title":"What \"real-time\" Glean events/pings are not"},"262":{"body":"For every event recorded or custom ping submitted, a network request will be generated as the ping is submitted for ingestion. By default, the Glean SDK batches up to 500 events per \"events\" ping, so this has the potential to generate up to 500 times as many network requests than the current defaults for the Glean SDK \"events\" ping.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » More network requests","id":"262","title":"More network requests"},"263":{"body":"As a result of the increased network requests, the ingestion endpoint will need to handle this additional traffic. This increases the load of all the processing steps that are involved with ingesting event data from an application.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » More ingestion endpoint traffic","id":"263","title":"More ingestion endpoint traffic"},"264":{"body":"Typically the raw dataset for Glean events contains 1-500 events in a single row of the database. This row also includes metadata such as information about the client application and the ping itself. With only a single event per \"events\" ping, the replication of this metadata across the database will use additional space to house this repeated information that should rarely if ever change between events Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Storage space requirements","id":"264","title":"Storage space requirements"},"265":{"body":"This document outlines several diagnostic categories and the insights they may offer when investigating unusual telemetry patterns or data anomalies.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » Telemetry/Data Bug Investigation Recommendations","id":"265","title":"Telemetry/Data Bug Investigation Recommendations"},"266":{"body":"Purpose: Identify geographical patterns that could explain anomalies. Column Name: metadata.geo.country Considerations: Are there ongoing national holidays or similar events that could affect data? Is the region known for bot activity or unusual behavior?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 1. Countries","id":"266","title":"1. Countries"},"267":{"body":"Purpose: Analyze data at a more granular level than countries to identify potential automation or bot activity. Column Name: metadata.isp.name Considerations: Could the anomaly be traced back to a single ISP, potentially indicating automation? Be mindful of the large number of ISPs; consider applying filters (e.g., HAVING clause) to exclude smaller ISPs.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 2. ISP (Internet Service Provider)","id":"267","title":"2. ISP (Internet Service Provider)"},"268":{"body":"Purpose: Check if issues began with a specific product version or build. Column Names: client_info.app_display_version, client_info.app_build Considerations: Did the issue arise after a particular version update? If so, collaborate with the product team to identify changes. Ensure that the build ID matches a known Mozilla build. If not, it could be a clone, fork, or side-load build.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 3. Product Version / Build ID","id":"268","title":"3. Product Version / Build ID"},"269":{"body":"Purpose: Determine whether the issue is tied to a specific Glean SDK version. Column Name: client_info.telemetry_sdk_build Considerations: Did the anomaly start after an update to Glean? Work with the Glean team to verify version changes.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 4. Glean SDK Version","id":"269","title":"4. Glean SDK Version"},"27":{"body":"glean-build will generate a glean_metrics.rs file that needs to be included in your source code. To do so add the following lines of code in your src/lib.rs file: mod metrics { include!(concat!(env!(\"OUT_DIR\"), \"/glean_metrics.rs\"));\n} Alternatively create src/metrics.rs (or a different name) with only the include line: include!(concat!(env!(\"OUT_DIR\"), \"/glean_metrics.rs\")); Then add mod metrics; to your src/lib.rs file.","breadcrumbs":"Adding Glean to your project » Rust » Include the generated code","id":"27","title":"Include the generated code"},"270":{"body":"Purpose: Identify possible regressions due to library updates. Considerations: Review updates to Application Services, Gecko, and other dependencies (e.g., Viaduct, rkv) that could affect telemetry collection.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 5. Other Library Version Changes","id":"270","title":"5. Other Library Version Changes"},"271":{"body":"Purpose: Check if Operating System or platform SDK changes are impacting data collection. Column Names: client_info.os_version (Android only: client_info.android_sdk_version) Considerations: Have there been changes to platform lifecycle events or background task behaviors (e.g., 0-duration pings, or ping submission issues)? Has the OS changed the behaviour of system APIs?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 6. OS/Platform SDK Version","id":"271","title":"6. OS/Platform SDK Version"},"272":{"body":"Purpose: Assess the delay between telemetry collection and submission. Column Names: ping_info.parsed_start_time, ping_info.parsed_end_time, submission_timestamp Considerations: Are the recorded timestamps reasonable, both in terms of the ping time window and the delay from collection to submission?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 7. Time Differences: start/end_time vs. submission_timestamp","id":"272","title":"7. Time Differences: start/end_time vs. submission_timestamp"},"273":{"body":"Purpose: Identify telemetry or network errors related to data collection. Considerations: Are there networking errors, ingestion issues, or other telemetry failures that could be related to the anomaly?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 8. Glean Errors","id":"273","title":"8. Glean Errors"},"274":{"body":"Purpose: Determine if the issue is hardware-specific. Column Names: client_info.device_manufacturer, client_info.device_model Considerations: Does the anomaly occur primarily on older or newer hardware models?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 9. Hardware Details (Manufacturer/Version) (Mobile platforms only)","id":"274","title":"9. Hardware Details (Manufacturer/Version) (Mobile platforms only)"},"275":{"body":"Purpose: Determine the reason a ping was sent. Column Names: ping_info.reason Considerations: Does the anomaly occur primarily for a specific reason? The built-in pings have different ping reasons based on their schedule baseline ping schedule and reasons metrics ping schedule and reasons events ping schedule and reasons Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 10. Ping reason","id":"275","title":"10. Ping reason"},"276":{"body":"User defined Glean pings and metrics are declared in YAML files, which must be parsed by glean_parser to generate public APIs for said metrics and pings. These files also serve the purpose of documenting metrics and pings. They are consumed by the probe-scraper tool, which generates a REST API to access metrics and pings information consumed by most other tools in the Glean ecosystem, such as GLAM and the Glean Dictionary . Moreover, for products that do not wish to use the Glean Dictionary as their metrics and pings documentation source, glean_parser provides an option to generate Markdown documentation for metrics and pings based on these files. For more information of that, refer to the help output of the translate command, by running in your terminal: $ glean_parser translate --help","breadcrumbs":"YAML Registry Format » YAML Registry Format","id":"276","title":"YAML Registry Format"},"277":{"body":"For a full reference on the metrics.yaml format, refer to the Metrics YAML Registry Format page.","breadcrumbs":"YAML Registry Format » metrics.yaml file","id":"277","title":"metrics.yaml file"},"278":{"body":"For a full reference on the pings.yaml format, refer to the Pings YAML Registry Format page.","breadcrumbs":"YAML Registry Format » pings.yaml file","id":"278","title":"pings.yaml file"},"279":{"body":"For a full reference on the tags.yaml format, refer to the Tags YAML Registry Format page. Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » tags.yaml file","id":"279","title":"tags.yaml file"},"28":{"body":"In your code you can then access generated metrics nested within their category under the metrics module (or your chosen name): metrics::your_category::metric_name.set(true); See the metric API reference for details. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Rust » Use the metrics","id":"28","title":"Use the metrics"},"280":{"body":"Metrics sent by an application or library are defined in YAML files which follow the metrics.yaml JSON schema . This files must be parsed by glean_parser at build time in order to generate code in the target language (e.g. Kotlin, Swift, ...). The generated code is what becomes the public API to access the project's metrics. For more information on how to introduce the glean_parser build step for a specific language / environment, refer to the \"Adding Glean to your project\" section of this book.","breadcrumbs":"YAML Registry Format » Metrics » Metrics YAML Registry Format","id":"280","title":"Metrics YAML Registry Format"},"281":{"body":"Although we refer to metrics definitions YAML files as metrics.yaml throughout Glean documentation this files may be named whatever makes the most sense for each project and may even be broken down into multiple files, if necessary.","breadcrumbs":"YAML Registry Format » Metrics » Note on the naming of these files","id":"281","title":"Note on the naming of these files"},"282":{"body":"---\n# Schema\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 $tags: - frontend # Category\ntoolbar: # Name click: # Metric Parameters type: event description: | Event to record toolbar clicks. metadata: tags: - Interaction notification_emails: - CHANGE-ME@example.com bugs: - https://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review expires: 2019-06-01 double_click: ...","breadcrumbs":"YAML Registry Format » Metrics » File structure","id":"282","title":"File structure"},"283":{"body":"Declaring the schema at the top of a metrics definitions file is required, as it is what indicates that the current file is a metrics definitions file.","breadcrumbs":"YAML Registry Format » Metrics » Schema","id":"283","title":"Schema"},"284":{"body":"You may optionally declare tags at the file level that apply to all metrics in that file.","breadcrumbs":"YAML Registry Format » Metrics » $tags","id":"284","title":"$tags"},"285":{"body":"Categories are the top-level keys on metrics definition files. One single definition file may contain multiple categories grouping multiple metrics. They serve the purpose of grouping related metrics in a project. Categories can contain alphanumeric lower case characters as well as the . and _ characters which can be used to provide extra structure, for example category.subcategory is a valid category. Category lengths may not exceed 40 characters. Categories may not start with the string glean. That prefix is reserved for Glean internal metrics. See the \"Capitalization\" note to understand how the category is formatted in generated code.","breadcrumbs":"YAML Registry Format » Metrics » Category","id":"285","title":"Category"},"286":{"body":"Metric names are the second-level keys on metrics definition files. Names may contain alphanumeric lower case characters as well as the _ character. Metric name lengths may not exceed 30 characters. \"Capitalization\" rules also apply to metric names on generated code.","breadcrumbs":"YAML Registry Format » Metrics » Name","id":"286","title":"Name"},"287":{"body":"Specific metric types may have special required parameters in their definition, these parameters are documented in each \"Metric Type\" reference page. Following are the parameters common to all metric types.","breadcrumbs":"YAML Registry Format » Metrics » Metric parameters","id":"287","title":"Metric parameters"},"288":{"body":"type Specifies the type of a metric, like \"counter\" or \"event\". This defines which operations are valid for the metric, how it is stored and how data analysis tooling displays it. See the list of supported metric types . Types should not be changed after release Once a metric is defined in a product, its type should only be changed in rare circumstances. It's better to rename the metric with the new type instead. The ingestion pipeline will create a new column for a metric with a changed type. Any new analysis will need to use the new column going forward. The old column will still be populated with data from old clients. description A textual description of the metric for humans. It should describe what the metric does, what it means for analysts, and its edge cases or any other helpful information. The description field may contain markdown syntax . Imposed limits on line length The Glean linter uses a line length limit of 80 characters. If your description is longer, e.g. because it includes longer links, you can disable yamllint using the following annotations (and make sure to enable yamllint again as well): # yamllint disable\ndescription: | Your extra long description, that's longer than 80 characters by far.\n# yamllint enable notification_emails A list of email addresses to notify for important events with the metric or when people with context or ownership for the metric need to be contacted. For example when a metric's expiration is within in 14 days, emails will be sent from telemetry-alerts@mozilla.com to the notification_emails addresses associated with the metric. Consider adding both a group email address and an individual who is responsible for this metric. bugs A list of bugs (e.g. Bugzilla or GitHub) that are relevant to this metric. For example, bugs that track its original implementation or later changes to it. Each entry should be the full URL to the bug in an issue tracker. The use of numbers alone is deprecated and will be an error in the future. data_reviews A list of URIs to any data collection review responses relevant to the metric. expires When the metric is set to expire. After a metric expires, an application will no longer collect or send data related to it. May be one of the following values: : An ISO date yyyy-mm-dd in UTC on which the metric expires. For example, 2019-03-13. This date is checked at build time. Except in special cases, this form should be used so that the metric automatically \"sunsets\" after a period of time. Emails will be sent to the notification_emails addresses when the metric is about to expire. Generally, when a metric is no longer needed, it should simply be removed. This does not affect the availability of data already collected by the pipeline. : An integer greater than 0 representing the major version the metric expires in, For example, 11. The version is checked at build time against the major provided to the glean_parser (see e.g. Build configuration for Android , Build configuration for iOS ) and is only valid if a major version is provided at built time. If no major version is provided at build time and expiration by major version is used for a metric, an error is raised. Note that mixing expiration by date and version is not allowed within a product. never: This metric never expires. expired: This metric is manually expired.","breadcrumbs":"YAML Registry Format » Metrics » Required parameters","id":"288","title":"Required parameters"},"289":{"body":"tags default: [] A list of tag names associated with this metric. Must correspond to an entry specified in a tags file . lifetime default: ping Defines the lifetime of the metric. Different lifetimes affect when the metrics value is reset. ping (default) The metric is cleared each time it is submitted in the ping. This is the most common case, and should be used for metrics that are highly dynamic, such as things computed in response to the user's interaction with the application. application The metric is related to an application run, and is cleared after the application restarts and any Glean-owned ping, due at startup, is submitted. This should be used for things that are constant during the run of an application, such as the operating system version. In practice, these metrics are generally set during application startup. A common mistake--- using the ping lifetime for these type of metrics---means that they will only be included in the first ping sent during a particular run of the application. user NOTE: Reach out to the Glean team before using this. The metric is part of the user's profile and will live as long as the profile lives. This is often not the best choice unless the metric records a value that really needs to be persisted for the full lifetime of the user profile, e.g. an identifier like the client_id, the day the product was first executed. It is rare to use this lifetime outside of some metrics that are built in to the Glean SDK. send_in_pings default: events|metrics Defines which pings the metric should be sent on. If not specified, the metric is sent on the default ping, which is the events ping for events and the metrics ping for everything else. Most metrics don't need to specify this unless they are sent on custom pings . The special value default may be used, in case it's required for a metric to be sent on the default ping as well as in a custom ping. Adding metrics to every ping For the small number of metrics that should be in every ping the Glean SDKs will eventually provide a solution. See bug 1695236 for details. send_in_pings: - my-custom-ping - default disabled default: false Data collection for this metric is disabled. This is useful when you want to temporarily disable the collection for a specific metric without removing references to it in your source code. Generally, when a metric is no longer needed, it should simply be removed. This does not affect the availability of data already collected by the pipeline. version default: 0 The version of the metric. A monotonically increasing integer value. This should be bumped if the metric changes in a backward-incompatible way. data_sensitivity default: [] A list of data sensitivity categories that the metric falls under. There are four data collection categories related to data sensitivity defined in Mozilla's data collection review process : Category 1: Technical Data (technical) Information about the machine or Firefox itself. Examples include OS, available memory, crashes and errors, outcome of automated processes like updates, safe browsing, activation, versions, and build id. This also includes compatibility information about features and APIs used by websites, add-ons, and other 3rd-party software that interact with Firefox during usage. Category 2: Interaction Data (interaction) Information about the user’s direct engagement with Firefox. Examples include how many tabs, add-ons, or windows a user has open; uses of specific Firefox features; session length, scrolls and clicks; and the status of discrete user preferences. It also includes information about the user's in-product journeys and product choices helpful to understand engagement (attitudes). For example, selections of add-ons or tiles to determine potential interest categories etc. Category 3: Stored Content & Communications (stored_content) (formerly Web activity data, web_activity) Information about what people store, sync, communicate or connect to where the information is generally considered to be more sensitive and personal in nature. Examples include users' saved URLs or URL history, specific web browsing history, general information about their web browsing history (such as TLDs or categories of webpages visited over time) and potentially certain types of interaction data about specific web pages or stories visited (such as highlighted portions of a story). It also includes information such as content saved by users to an individual account like saved URLs, tags, notes, passwords and files as well as communications that users have with one another through a Mozilla service. Category 4: Highly sensitive data or clearly identifiable personal data (highly_sensitive) Information that directly identifies a person, or if combined with other data could identify a person. This data may be embedded within specific website content, such as memory contents, dumps, captures of screen data, or DOM data. Examples include account registration data like name, password, and email address associated with an account, payment data in connection with subscriptions or donations, contact information such as phone numbers or mailing addresses, email addresses associated with surveys, promotions and customer support contacts. It also includes any data from different categories that, when combined, can identify a person, device, household or account. For example Category 1 log data combined with Category 3 saved URLs. Additional examples are: voice audio commands (including a voice audio file), speech-to-text or text-to-speech (including transcripts), biometric data, demographic information, and precise location data associated with a persistent identifier, individual or small population cohorts. This is location inferred or determined from mechanisms other than IP such as wi-fi access points, Bluetooth beacons, cell phone towers or provided directly to us, such as in a survey or a profile. Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » Metrics » Optional parameters","id":"289","title":"Optional parameters"},"29":{"body":"This page provides a step-by-step guide on how to integrate the Glean JavaScript SDK into a JavaScript project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so. The Glean JavaScript SDK allows integration with three distinct JavaScript environments: websites, web extension and Node.js.","breadcrumbs":"Adding Glean to your project » JavaScript » Adding Glean to your JavaScript project","id":"29","title":"Adding Glean to your JavaScript project"},"290":{"body":"Custom pings sent by an application or library are defined in YAML files which follow the pings.yaml JSON schema . This files must be parsed by glean_parser at build time in order to generate code in the target language (e.g. Kotlin, Swift, ...). The generated code is what becomes the public API to access the project's custom pings. For more information on how to introduce the glean_parser build step for a specific language / environment, refer to the \"Adding Glean to your project\" section of this book.","breadcrumbs":"YAML Registry Format » Pings » Pings YAML Registry Format","id":"290","title":"Pings YAML Registry Format"},"291":{"body":"Although we refer to pings definitions YAML files as pings.yaml throughout Glean documentation this files may be named whatever makes the most sense for each project and may even be broken down into multiple files, if necessary.","breadcrumbs":"YAML Registry Format » Pings » Note on the naming of these files","id":"291","title":"Note on the naming of these files"},"292":{"body":"---\n# Schema\n$schema: moz://mozilla.org/schemas/glean/pings/2-0-0 # Name\nsearch: # Ping parameters description: > A ping to record search data. include_client_id: false notification_emails: - CHANGE-ME@example.com bugs: - http://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review","breadcrumbs":"YAML Registry Format » Pings » File structure","id":"292","title":"File structure"},"293":{"body":"Declaring the schema at the top of a pings definitions file is required, as it is what indicates that the current file is a pings definitions file.","breadcrumbs":"YAML Registry Format » Pings » Schema","id":"293","title":"Schema"},"294":{"body":"Ping names are the top-level keys on pings definitions files. One single definition file may contain multiple ping declarations. Ping names are limited to lowercase letters from the ISO basic Latin alphabet and hyphens and a maximum of 30 characters. Pings may not contain the words custom or ping in their names. These are considered redundant words and will trigger a REDUNDANT_PING lint failure on glean_parser. \"Capitalization\" rules apply to ping names on generated code.","breadcrumbs":"YAML Registry Format » Pings » Name","id":"294","title":"Name"},"295":{"body":"The names baseline, metrics, events, deletion-request, default and all-pings are reserved and may not be used as the name of a custom ping.","breadcrumbs":"YAML Registry Format » Pings » Reserved ping names","id":"295","title":"Reserved ping names"},"296":{"body":"","breadcrumbs":"YAML Registry Format » Pings » Ping parameters","id":"296","title":"Ping parameters"},"297":{"body":"description A textual description of the purpose of the ping. It may contain markdown syntax . metadata default: {} A dictionary of extra metadata associated with this ping. tags default: [] A list of tag names associated with this ping. Must correspond to an entry specified in a tags file . ping_schedule default: [] A list of ping names. When one of those pings is sent, then this ping is also sent, with the same reason. This is useful if you want a ping to be scheduled and sent at the same frequency as another ping, like baseline. Pings cannot list themselves under ping_schedule, however it is possible to accidentally create cycles of pings where Ping A schedules Ping B, which schedules Ping C, which in turn schedules Ping A. This can result in a constant stream of pings being sent. Please use caution with ping_schedule, and ensure that you have not accidentally created any cycles with the ping references. include_client_id A boolean indicating whether to include the client_id in the client_info section of the ping. notification_emails A list of email addresses to notify for important events with the ping or when people with context or ownership for the ping need to be contacted. Consider adding both a group email address and an individual who is responsible for this ping. bugs A list of bugs (e.g. Bugzilla or GitHub) that are relevant to this ping. For example, bugs that track its original implementation or later changes to it. Each entry should be the full URL to the bug in an issue tracker. The use of numbers alone is deprecated and will be an error in the future. data_reviews A list of URIs to any data collection review responses relevant to the metric.","breadcrumbs":"YAML Registry Format » Pings » Required parameters","id":"297","title":"Required parameters"},"298":{"body":"send_if_empty default: false A boolean indicating if the ping is sent if it contains no metric data. reasons default: {} The reasons that this ping may be sent. The keys are the reason codes, and the values are a textual description of each reason. The ping payload will (optionally) contain one of these reasons in the ping_info.reason field. Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » Pings » Optional parameters","id":"298","title":"Optional parameters"},"299":{"body":"Any number of custom \"tags\" can be added to any metric or ping. This can be useful in data discovery tools like the Glean Dictionary . The tags for an application are defined in YAML files which follow the tags.yaml JSON schema . These files must be parsed by glean_parser at build time in order to generate the metadata. For more information on how to introduce the glean_parser build step for a specific language / environment, refer to the \"Adding Glean to your project\" section of this book.","breadcrumbs":"YAML Registry Format » Tags » Tags YAML Registry Format","id":"299","title":"Tags YAML Registry Format"},"3":{"body":"This section of the book contains reference pages for Glean’s user facing APIs. If you are looking for information a specific Glean API, this is the section you should check out.","breadcrumbs":"Glean » API Reference","id":"3","title":"API Reference"},"30":{"body":"Node.js >= 12.20.0 npm >= 7.0.0 Webpack >= 5.34.0 Python >= 3.8 The glean command requires Python to download glean_parser which is a Python library","breadcrumbs":"Adding Glean to your project » JavaScript » Requirements","id":"30","title":"Requirements"},"300":{"body":"Although we refer to tag definitions YAML files as tags.yaml throughout Glean documentation this files may be named whatever makes the most sense for each project and may even be broken down into multiple files, if necessary.","breadcrumbs":"YAML Registry Format » Tags » Note on the naming of these files","id":"300","title":"Note on the naming of these files"},"301":{"body":"---\n# Schema\n$schema: moz://mozilla.org/schemas/glean/tags/1-0-0 Search: description: Metrics or pings in the \"search\" domain","breadcrumbs":"YAML Registry Format » Tags » File structure","id":"301","title":"File structure"},"302":{"body":"Declaring the schema at the top of a tags definitions file is required, as it is what indicates that the current file is a tag definitions file.","breadcrumbs":"YAML Registry Format » Tags » Schema","id":"302","title":"Schema"},"303":{"body":"Tag names are the top-level keys on tag definitions files. One single definition file may contain multiple tag declarations. There is no restriction on the name of a tag, aside from the fact that they have a maximum of 80 characters.","breadcrumbs":"YAML Registry Format » Tags » Name","id":"303","title":"Name"},"304":{"body":"","breadcrumbs":"YAML Registry Format » Tags » Tag parameters","id":"304","title":"Tag parameters"},"305":{"body":"description A textual description of the tag. It may contain markdown syntax . Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » Tags » Required parameters","id":"305","title":"Required parameters"},"306":{"body":"The Glean SDKs have a minimal API available on their top-level Glean object called the General API. This API allows, among other things, to enable and disable upload, register custom pings and set experiment data . Only initialize in the main application! Glean should only be initialized from the main application, not individual libraries. If you are adding Glean support to a library, you can safely skip this section.","breadcrumbs":"General API » The General API","id":"306","title":"The General API"},"307":{"body":"The Glean SDKs provide a general API that supports the following operations. See API reference pages for SDK-specific details. Operation Description Notes initialize Configure and initialize the Glean SDK. Initializing the Glean SDK setUploadEnabled Enable or disable Glean collection and upload. Toggling upload status registerPings Register custom pings generated from pings.yaml. Custom pings setExperimentActive Indicate that an experiment is running. Using the Experiments API setExperimentInactive Indicate that an experiment is no longer running.. Using the Experiments API registerEventListener Register a callback by which a consumer can be notified of all event metrics being recorded. Glean Event Listener Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » The API","id":"307","title":"The API"},"308":{"body":"Glean needs to be initialized in order to be able to send pings, record metrics and perform maintenance tasks. Thus it is advised that Glean be initialized as soon as possible in an application's lifetime and importantly, before any other libraries in the application start using Glean.","breadcrumbs":"General API » Initializing » Initializing","id":"308","title":"Initializing"},"309":{"body":"Libraries rely on the same Glean singleton as the application in which they are embedded. Hence, they are not expected to initialize Glean as the application should already do that.","breadcrumbs":"General API » Initializing » Libraries are not required to initialize Glean","id":"309","title":"Libraries are not required to initialize Glean"},"31":{"body":"webextension-polyfill >= 0.8.0 Glean.js assumes a Promise-based browser API: Firefox provides such an API by default. Other browsers may require using a polyfill library such us webextension-polyfill when using Glean in browser extensions Host permissions to the telemetry server Only necessary if the defined server endpoint denies cross-origin requests Not necessary if using the default https://incoming.telemetry.mozilla.org. \"storage\" API permissions Browser extension example configuration The manifest.json file of the sample browser extension available on the mozilla/glean.js repository provides an example on how to define the above permissions as well as how and where to load the webextension-polyfill script.","breadcrumbs":"Adding Glean to your project » JavaScript » Browser extension specific requirements","id":"31","title":"Browser extension specific requirements"},"310":{"body":"Any API called before Glean is initialized is queued and applied at initialization. To avoid unbounded memory growth the queue is bounded (currently to a maximum of 1 million tasks), and further calls are dropped. The number of calls dropped, if any, is recorded in the glean.error.preinit_tasks_overflow metric.","breadcrumbs":"General API » Initializing » Behavior when uninitialized","id":"310","title":"Behavior when uninitialized"},"311":{"body":"","breadcrumbs":"General API » Initializing » Behavior once initialized","id":"311","title":"Behavior once initialized"},"312":{"body":"Once initialized, if upload is enabled, Glean applies all metric recordings and ping submissions, for both user-defined and builtin metrics and pings. This always happens asynchronously.","breadcrumbs":"General API » Initializing » When upload is enabled","id":"312","title":"When upload is enabled"},"313":{"body":"If upload is disabled, any persisted metrics, events and pings (other than first_run_date) are cleared. Pending deletion-request pings are sent. Subsequent calls to record metrics and submit pings will be no-ops. Because Glean does that as part of its initialization, users are required to always initialize Glean. Glean must be initialized even if upload is disabled. This does not apply to special builds where telemetry is disabled at build time. In that case, it is acceptable to not call initialize at all.","breadcrumbs":"General API » Initializing » When upload is disabled","id":"313","title":"When upload is disabled"},"314":{"body":"","breadcrumbs":"General API » Initializing » API","id":"314","title":"API"},"315":{"body":"Initializes Glean. May only be called once. Subsequent calls to initialize are no-op. Configuration The available initialize configuration options may vary depending on the SDK. Below are listed the configuration options available on most SDKs. Note that on some SDKs some of the options are taken as a configuration object. Check the respective SDK documentation for details. Configuration Option Default value Description applicationId On Android/iOS: determined automatically. Otherwise required . Application identifier. For Android and iOS applications, this is the id used on the platform's respective app store and is extracted automatically from the application context. uploadEnabled Required The user preference on whether or not data upload is enabled. channel - The application's release channel. When present, the app_channel will be reported in all pings' client_info sections. appBuild On Android/iOS: determined automatically. Otherwise: - A build identifier e.g. the build identifier generated by a CI system (e.g. \"1234/A\"). If not present, app_build will be reported as \"Unknown\" on all pings' client_info sections. appDisplayVersion - The user visible version string for the application running Glean. If not present, app_display_version will be reported as \"Unknown\" on all pings' client_info sections. serverEndpoint https://incoming.telemetry.mozilla.org The server pings are sent to. maxEvents Glean.js: 1. Other SDKs: 500. The maximum number of events the Glean storage will hold on to before submitting the 'events' ping. Refer to the events ping documentation for more information on its scheduling. httpUploader - A custom HTTP uploader instance, that will overwrite Glean's provided uploader. Useful for users that wish to use specific uploader implementations. See Custom Uploaders for more information on how and when the use this feature. logLevel - The level for how verbose the internal logging is. The level filter options in order from least to most verbose are: Off, Error, Warn, Info, Debug, Trace. See the log crate docs for more information. enableEventTimestamps true Whether to add a wall clock timestamp to all events. rateLimit 15 pings per 60s interval Specifies the maximum number of pings that can be uploaded per interval of a specified number of seconds. experimentationId - Optional. An identifier derived by the application to be sent in all pings for the purpose of experimentation. See the experiments API documentation for more information. enableInternalPings true Whether to enable the internal \"baseline\", \"events\", and \"metrics\" pings. delayPingLifetimeIo false Whether Glean should delay persistence of data from metrics with ping lifetime. On Android data is automatically persisted every 1000 writes and on backgrounding when enabled. To learn about SDK specific configuration options available, refer to the Reference section. Always initialize Glean with the correct upload preference Glean must always be initialized with real values. Always pass the user preference, e.g. Glean.initialize(uploadEnabled=userSettings.telemetryEnabled) or the equivalent for your application. Calling Glean.setUploadEnabled(false) at a later point will trigger deletion-request pings and regenerate client IDs. This should only be done if the user preference actually changes. An excellent place to initialize Glean is within the onCreate method of the class that extends Android's Application class. import org.mozilla.yourApplication.GleanMetrics.GleanBuildInfo\nimport org.mozilla.yourApplication.GleanMetrics.Pings class SampleApplication : Application() { override fun onCreate() { super.onCreate() // If you have custom pings in your application, you must register them // using the following command. This command should be omitted for // applications not using custom pings. Glean.registerPings(Pings) // Initialize the Glean library. Glean.initialize( applicationContext, // Here, `settings()` is a method to get user preferences, specific to // your application and not part of the Glean API. uploadEnabled = settings().isTelemetryEnabled, configuration = Configuration(), buildInfo = GleanBuildInfo.buildInfo ) }\n} The Glean Kotlin SDK supports use across multiple processes. This is enabled by setting a dataPath value in the Glean.Configuration object passed to Glean.initialize. You do not need to set a dataPath for your main process. This configuration should only be used by a non-main process. Requirements for a non-main process: Glean.initialize must be called with the dataPath value set in the Glean.Configuration. The default dataPath for Glean is {context.applicationInfo.dataDir}/glean_data. If you try to use this path, Glean.initialize will fail and throw an error. Set the default process name as your main process. If this is not set up correctly, pings from the non-main process will not send. Configuration.Builder().setDefaultProcessName() Note : When initializing from a non-main process with a specified dataPath, the lifecycle observers will not be set up. This means you will not receive otherwise scheduled baseline or metrics pings.","breadcrumbs":"General API » Initializing » Glean.initialize(configuration)","id":"315","title":"Glean.initialize(configuration)"},"316":{"body":"When the Glean Kotlin SDK is consumed through Android Components, it is required to configure an HTTP client to be used for upload. For example: // Requires `org.mozilla.components:concept-fetch`\nimport mozilla.components.concept.fetch.Client // Requires `org.mozilla.components:lib-fetch-httpurlconnection`.\n// This can be replaced by other implementations, e.g. `lib-fetch-okhttp`\n// or an implementation from `browser-engine-gecko`.\nimport mozilla.components.lib.fetch.httpurlconnection.HttpURLConnectionClient\nimport mozilla.components.service.glean.config.Configuration\nimport mozilla.components.service.glean.net.ConceptFetchHttpUploader val httpClient = ConceptFetchHttpUploader(lazy { HttpURLConnectionClient() as Client })\nval config = Configuration(httpClient = httpClient)\nGlean.initialize( context, uploadEnabled = true, configuration = config, buildInfo = GleanBuildInfo.buildInfo\n) An excellent place to initialize Glean is within the application(_:) method of the class that extends the UIApplicationDelegate class. import Glean\nimport UIKit @UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate { func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // If you have custom pings in your application, you must register them // using the following command. This command should be omitted for // applications not using custom pings. Glean.shared.registerPings(GleanMetrics.Pings) // Initialize the Glean library. Glean.shared.initialize( // Here, `Settings` is a method to get user preferences specific to // your application, and not part of the Glean API. uploadEnabled = Settings.isTelemetryEnabled, configuration = Configuration(), buildInfo = GleanMetrics.GleanBuild.info ) }\n} The Glean Swift SDK supports use across multiple processes. This is enabled by setting a dataPath value in the Glean.Configuration object passed to Glean.initialize. You do not need to set a dataPath for your main process. This configuration should only be used by a non-main process. Requirements for a non-main process: Glean.initialize must be called with the dataPath value set in the Glean.Configuration. On iOS devices, Glean stores data in the Application Support directory. The default dataPath Glean uses is {FileManager.default.urls(for: .applicationSupportDirectory, in: .userDomainMask)[0]}/glean_data. If you try to use this path, Glean.initialize will fail and throw an error. Note : When initializing from a non-main process with a specified dataPath, the lifecycle observers will not be set up. This means you will not receive otherwise scheduled baseline or metrics pings. The main control for the Glean Python SDK is on the glean.Glean singleton. from glean import Glean, Configuration Glean.initialize( application_id=\"my-app-id\", application_version=\"0.1.0\", # Here, `is_telemetry_enabled` is a method to get user preferences specific to # your application, and not part of the Glean API. upload_enabled=is_telemetry_enabled(), configuration=Configuration(),\n) Unlike in other implementations, the Python SDK does not automatically send any pings. See the custom pings documentation about adding custom pings and sending them. The Glean Rust SDK should be initialized as soon as possible. use glean::{ClientInfoMetrics, Configuration};\nlet cfg = Configuration { data_path, application_id: \"my-app-id\".into(), // Here, `is_telemetry_enabled` is a method to get user preferences specific to // your application, and not part of the Glean API. upload_enabled: is_telemetry_enabled(), max_events: None, delay_ping_lifetime_io: false, server_endpoint: Some(\"https://incoming.telemetry.mozilla.org\".into()), uploader: None, use_core_mps: true,\n}; let client_info = ClientInfoMetrics { app_build: env!(\"CARGO_PKG_VERSION\").to_string(), app_display_version: env!(\"CARGO_PKG_VERSION\").to_string(), channel: None, locale: None,\n}; glean::initialize(cfg, client_info); The Glean Rust SDK does not support use across multiple processes, and must only be initialized on the application's main process. Unlike in other implementations, the Rust SDK does not provide a default uploader. See PingUploader for details. import Glean from \"@mozilla/glean/\"; Glean.initialize( \"my-app-id\", // Here, `isTelemetryEnabled` is a method to get user preferences specific to // your application, and not part of the Glean API. isTelemetryEnabled(), { appDisplayVersion: \"0.1.0\" }\n);","breadcrumbs":"General API » Initializing » Consuming Glean through Android Components","id":"316","title":"Consuming Glean through Android Components"},"317":{"body":"A custom HTTP uploader may be provided at initialization time in order to overwrite Glean's native ping uploader implementation. Each SDK exposes a base class for Glean users to extend into their own custom uploaders. See BaseUploader for details on how to implement a custom upload on Kotlin. See HttpPingUploader for details on how to implement a custom upload on Swift. See BaseUploader for details on how to implement a custom upload on Python. See PingUploader for details on how to implement a custom upload on Rust. import { Uploader, UploadResult, UploadResultStatus } from \"@mozilla/glean/uploader\";\nimport Glean from \"@mozilla/glean/\"; /** * My custom uploader implementation */\nexport class MyCustomUploader extends Uploader { async post(url: string, body: string, headers): Promise { // My custom POST request code }\n} Glean.initialize( \"my-app-id\", // Here, `isTelemetryEnabled` is a method to get user preferences specific to // your application, and not part of the Glean API. isTelemetryEnabled(), { httpClient: new MyCustomUploader() }\n);","breadcrumbs":"General API » Initializing » Custom Uploaders","id":"317","title":"Custom Uploaders"},"318":{"body":"When unit testing metrics and pings, Glean needs to be put in testing mode. Initializing Glean for tests is referred to as \"resetting\". It is advised that Glean is reset before each unit test to prevent side effects of one unit test impacting others. How to do that and the definition of \"testing mode\" varies per Glean SDK. Refer to the information below for SDK specific information. Using the Glean Kotlin SDK's unit testing API requires adding Robolectric 4.0 or later as a testing dependency. In Gradle, this can be done by declaring a testImplementation dependency: dependencies { testImplementation \"org.robolectric:robolectric:4.3.1\"\n} In order to put the Glean Kotlin SDK into testing mode apply the JUnit GleanTestRule to your test class. Testing mode will prevent issues with async calls when unit testing the Glean SDK on Kotlin. It also enables uploading and clears the recorded metrics at the beginning of each test run. The rule can be used as shown: @RunWith(AndroidJUnit4::class)\nclass ActivityCollectingDataTest { // Apply the GleanTestRule to set up a disposable Glean instance. // Please note that this clears the Glean data across tests. @get:Rule val gleanRule = GleanTestRule(ApplicationProvider.getApplicationContext()) @Test fun checkCollectedData() { // The Glean Kotlin SDK testing APIs can be called here. }\n} This will ensure that metrics are done recording when the other test functions are used. Note : There's no automatic test rule for Glean tests implemented in Swift. In order to prevent issues with async calls when unit testing the Glean SDK, it is important to put the Glean Swift SDK into testing mode. When the Glean Swift SDK is in testing mode, it enables uploading and clears the recorded metrics at the beginning of each test run. Activate it by resetting Glean in your test's setup: // All pings and metrics testing APIs are marked as `internal`\n// so you need to import `Glean` explicitly in test mode.\nimport XCTest class GleanUsageTests: XCTestCase { override func setUp() { Glean.shared.resetGlean(clearStores: true) } // ...\n} This will ensure that metrics are done recording when the other test functions are used. The Glean Python SDK contains a helper function glean.testing.reset_glean() for resetting Glean for tests. It has two required arguments: the application ID, and the application version. Each reset of the Glean Python SDK will create a new temporary directory for Glean to store its data in. This temporary directory is automatically cleaned up the next time the Glean Python SDK is reset or when the testing framework finishes. The instructions below assume you are using pytest as the test runner. Other test-running libraries have similar features, but are different in the details. Create a file conftest.py at the root of your test directory, and add the following to reset Glean at the start of every test in your suite: import pytest\nfrom glean import testing @pytest.fixture(name=\"reset_glean\", scope=\"function\", autouse=True)\ndef fixture_reset_glean(): testing.reset_glean(application_id=\"my-app-id\", application_version=\"0.1.0\") Note Glean uses a global singleton object. Tests need to run single-threaded or need to ensure exclusivity using a lock. The Glean Rust SDK contains a helper function test_reset_glean() for resetting Glean for tests. It has three required arguments: the configuration to use the client info to use whether to clear stores before initialization You can call it like below in every test: let dir = tempfile::tempdir().unwrap();\nlet tmpname = dir.path().to_path_buf(); let glean::Configuration { data_path: tmpname, application_id: \"app-id\".into(), upload_enabled: true, max_events: None, delay_ping_lifetime_io: false, server_endpoint: Some(\"invalid-test-host\".into()), uploader: None, use_core_mps: false,\n};\nlet client_info = glean::ClientInfoMetrics::unknown();\nglean::test_reset_glean(cfg, client_info, false); The Glean JavaScript SDK contains a helper function testResetGlean() for resetting Glean for tests. It expects the same list of arguments as Glean.initialize. Each reset of the Glean JavaScript SDK will clear stores. Calling testResetGlean will also make metrics and pings testing APIs available and replace ping uploading with a mock implementation that does not make real HTTP requests. import { testResetGlean } from \"@mozilla/glean/testing\" describe(\"myTestSuite\", () => { beforeEach(async () => { await testResetGlean(\"my-test-id\"); });\n});","breadcrumbs":"General API » Initializing » Testing API","id":"318","title":"Testing API"},"319":{"body":"Swift API docs Python API docs Rust API docs JavaScript API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Initializing » Reference","id":"319","title":"Reference"},"32":{"body":"The Glean JavaScript SDK is distributed as an npm package @mozilla/glean . This package has different entry points to access the different SDKs. @mozilla/glean/web gives access to the websites SDK @mozilla/glean/webext gives access to the web extension SDK @mozilla/glean/node gives access to the Node.js SDK [1] The Node.js SDK does not have persistent storage yet. This means, Glean does not persist state throughout application runs. For updates on the implementation of this feature in Node.js, follow Bug 1728807 . Install Glean in your JavaScript project, by running: npm install @mozilla/glean Then import Glean into your project: // Importing the Glean JavaScript SDK for use in **web extensions**\n//\n// esm\nimport Glean from \"@mozilla/glean/webext\";\n// cjs\nconst { default: Glean } = require(\"@mozilla/glean/webext\"); // Importing the Glean JavaScript SDK for use in **websites**\n//\n// esm\nimport Glean from \"@mozilla/glean/web\";\n// cjs\nconst { default: Glean } = require(\"@mozilla/glean/web\"); // Importing the Glean JavaScript SDK for use in **Node.js**\n//\n// esm\nimport Glean from \"@mozilla/glean/node\";\n// cjs\nconst { default: Glean } = require(\"@mozilla/glean/node\");","breadcrumbs":"Adding Glean to your project » JavaScript » Setting up the dependency","id":"32","title":"Setting up the dependency"},"320":{"body":"The Glean SDKs provide an API for toggling Glean's upload status after initialization. Applications instrumented with Glean are expected to provide some form of user interface to allow for toggling the upload status.","breadcrumbs":"General API » Toggling upload status » Toggling upload status","id":"320","title":"Toggling upload status"},"321":{"body":"When upload is disabled, the Glean SDK will perform the following tasks: Submit a deletion-request ping. Cancel scheduled ping uploads. Clear metrics and pings data from the client, except for the first_run_date metric. While upload is disabled, metrics aren't recorded and no data is uploaded.","breadcrumbs":"General API » Toggling upload status » Disabling upload","id":"321","title":"Disabling upload"},"322":{"body":"When upload is enabled, the Glean SDK will re-initialize its core metrics . The only core metric that is not re-initialized is the first_run_date metric. While upload is enabled all metrics are recorded as expected and pings are sent to the telemetry servers.","breadcrumbs":"General API » Toggling upload status » Enabling upload","id":"322","title":"Enabling upload"},"323":{"body":"","breadcrumbs":"General API » Toggling upload status » API","id":"323","title":"API"},"324":{"body":"Enables or disables upload. If called prior to initialize this function is a no-op. If the upload state is not actually changed in between calls to this function, it is also a no-op. import mozilla.telemetry.glean.Glean open class MainActivity : AppCompatActivity() { override fun onCreate() { // ... uploadSwitch.setOnCheckedChangeListener { _, isChecked -> if (isChecked) { Glean.setUploadEnabled(true) } else { Glean.setUploadEnabled(false) } } }\n} import mozilla.telemetry.glean.Glean Glean.INSTANCE.setUploadEnabled(false); import Glean\nimport UIKit class ViewController: UIViewController { @IBOutlet var enableSwitch: UISwitch! // ... @IBAction func enableToggled(_: Any) { Glean.shared.setUploadEnabled(enableSwitch.isOn) }\n} from glean import Glean Glean.set_upload_enabled(false) use glean; glean::set_upload_enabled(false); import Glean from \"@mozilla/glean/web\"; const uploadSwitch = document.querySelector(\"input[type=checkbox].upload-switch\");\nuploadSwitch.addEventListener(\"change\", event => { if (event.target.checked) { Glean.setUploadEnabled(true); } else { Glean.setUploadEnabled(false); }\n});","breadcrumbs":"General API » Toggling upload status » Glean.setUploadEnabled(boolean)","id":"324","title":"Glean.setUploadEnabled(boolean)"},"325":{"body":"Swift API docs Python API docs Rust API docs JavaScript API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Toggling upload status » Reference","id":"325","title":"Reference"},"326":{"body":"The Glean SDKs support tagging all their pings with experiments annotations. The annotations are useful to report that experiments were active at the time the measurement were collected. The annotations are reported in the optional experiments entry in the ping_info section of all pings. Experiment annotations are not persisted The experiment annotations set through this API are not persisted by the Glean SDKs. The application or consuming library is responsible for setting the relevant experiment annotations at each run. It's not required to define experiment IDs and branches Experiment IDs and branches don't need to be pre-defined in the Glean SDK registry files. Please also note that the extra map is a non-nested arbitrary String to String map. It also has limits on the size of the keys and values defined below.","breadcrumbs":"General API » Annotating experiments » Using the experiments API","id":"326","title":"Using the experiments API"},"327":{"body":"","breadcrumbs":"General API » Annotating experiments » Recording API","id":"327","title":"Recording API"},"328":{"body":"Annotates Glean pings with experiment data. // Annotate Glean pings with experiments data.\nGlean.setExperimentActive( experimentId = \"blue-button-effective\", branch = \"branch-with-blue-button\", extra: mapOf( \"buttonLabel\" to \"test\" )\n) // Annotate Glean pings with experiments data.\nGlean.shared.setExperimentActive( experimentId: \"blue-button-effective\", branch: \"branch-with-blue-button\", extra: [\"buttonLabel\": \"test\"]\n) from glean import Glean Glean.set_experiment_active( experiment_id=\"blue-button-effective\", branch=\"branch-with-blue-button\", extra={ \"buttonLabel\": \"test\" }\n) let mut extra = HashMap::new();\nextra.insert(\"buttonLabel\".to_string(), \"test\".to_string());\nglean::set_experiment_active( \"blue-button-effective\".to_string(), \"branch-with-blue-button\".to_string(), Some(extra),\n); C++ At present there is no dedicated C++ Experiments API for Firefox Desktop If you require one, please file a bug . JavaScript let FOG = Cc[\"@mozilla.org/toolkit/glean;1\"].createInstance(Ci.nsIFOG);\nFOG.setExperimentActive( \"blue-button-effective\", \"branch-with-blue-button\", {\"buttonLabel\": \"test\"}\n); Limits experimentId, branch, and the keys and values of the extra field are fixed at a maximum length of 100 bytes. Longer strings are truncated. (Specifically, length is measured in the number of bytes when the string is encoded in UTF-8.) extra map is limited to 20 entries. If passed a map which contains more elements than this, it is truncated to 20 elements. WARNING Which items are truncated is nondeterministic due to the unordered nature of maps. What's left may not necessarily be the first elements added. Recorded errors invalid_value : If the values of experimentId or branch are truncated for length, if the keys or values in the extra map are truncated for length, or if the extra map is truncated for the number of elements.","breadcrumbs":"General API » Annotating experiments » setExperimentActive","id":"328","title":"setExperimentActive"},"329":{"body":"Removes the experiment annotation. Should be called when the experiment ends. Glean.setExperimentInactive(\"blue-button-effective\") Glean.shared.setExperimentInactive(experimentId: \"blue-button-effective\") from glean import Glean Glean.set_experiment_inactive(\"blue-button-effective\") glean::set_experiment_inactive(\"blue-button-effective\".to_string()); C++ At present there is no dedicated C++ Experiments API for Firefox Desktop If you require one, please file a bug . JavaScript let FOG = Cc[\"@mozilla.org/toolkit/glean;1\"].createInstance(Ci.nsIFOG);\nFOG.setExperimentInactive(\"blue-button-effective\");","breadcrumbs":"General API » Annotating experiments » setExperimentInactive","id":"329","title":"setExperimentInactive"},"33":{"body":"In case of privilege-escalation attack into the context of the web extension using Glean, the malicious scripts would be able to call Glean APIs or use the browser.storage.local APIs directly. That would be a risk to Glean data, but not caused by Glean. Glean-using extensions should be careful not to relax the default Content-Security-Policy that generally prevents these attacks.","breadcrumbs":"Adding Glean to your project » JavaScript » Browser extension security considerations","id":"33","title":"Browser extension security considerations"},"330":{"body":"An experimentation enrollment identifier that is derived and provided by the application can be set through the configuration object passed into the initialize function. See the section on Initializing Glean for more information on how to set this within the Configuration object. This identifier will be set during initialization and sent along with all pings sent by Glean, unless that ping is has opted out of sending the client_id. This identifier is not persisted by Glean and must be persisted by the application if necessary for it to remain consistent between runs. Limits The experimentation ID is subject to the same limitations as a string metric type . Recorded errors The experimentation ID will produce the same errors as a string metric type .","breadcrumbs":"General API » Annotating experiments » Set an experimentation identifier","id":"330","title":"Set an experimentation identifier"},"331":{"body":"","breadcrumbs":"General API » Annotating experiments » Testing API","id":"331","title":"Testing API"},"332":{"body":"Reveals if the experiment is annotated in Glean pings. assertTrue(Glean.testIsExperimentActive(\"blue-button-effective\")) XCTAssertTrue(Glean.shared.testIsExperimentActive(experimentId: \"blue-button-effective\")) from glean import Glean assert Glean.test_is_experiment_active(\"blue-button-effective\") assert!(glean::test_is_experiment_active(\"blue-button-effective\".to_string());","breadcrumbs":"General API » Annotating experiments » testIsExperimentActive","id":"332","title":"testIsExperimentActive"},"333":{"body":"Returns the recorded experiment data including branch and extras. assertEquals( \"branch-with-blue-button\", Glean.testGetExperimentData(\"blue-button-effective\")?.branch\n) XCTAssertEqual( \"branch-with-blue-button\", Glean.testGetExperimentData(experimentId: \"blue-button-effective\")?.branch\n) from glean import Glean assert ( \"branch-with-blue-button\" == Glean.test_get_experiment_data(\"blue-button-effective\").branch\n) assert_eq!( \"branch-with-blue-button\", glean::test_get_experiment_data(\"blue-button-effective\".to_string()).branch,\n); C++ At present there is no dedicated C++ Experiments API for Firefox Desktop If you require one, please file a bug . JavaScript let FOG = Cc[\"@mozilla.org/toolkit/glean;1\"].createInstance(Ci.nsIFOG);\nAssert.equals( \"branch-with-blue-button\", FOG.testGetExperimentData(\"blue-button-effective\").branch\n);","breadcrumbs":"General API » Annotating experiments » testGetExperimentData","id":"333","title":"testGetExperimentData"},"334":{"body":"Returns the current Experimentation ID, if any. assertEquals(\"alpha-beta-gamma-delta\", Glean.testGetExperimentationId()) XCTAssertEqual( \"alpha-beta-gamma-delta\", Glean.shared.testGetExperimentationId()!, \"Experimenatation ids must match\"\n) from glean import Glean assert \"alpha-beta-gamma-delta\" == Glean.test_get_experimentation_id() assert_eq!( \"alpha-beta-gamma-delta\".to_string(), glean_test_get_experimentation_id(), \"Experimentation id must match\"\n);","breadcrumbs":"General API » Annotating experiments » testGetExperimentationId","id":"334","title":"testGetExperimentationId"},"335":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Annotating experiments » Reference","id":"335","title":"Reference"},"336":{"body":"After defining custom pings glean_parser is able to generate code from pings.yaml files in a Pings object, which must be instantiated so Glean can send pings by name.","breadcrumbs":"General API » Registering custom pings » Registering custom pings","id":"336","title":"Registering custom pings"},"337":{"body":"","breadcrumbs":"General API » Registering custom pings » API","id":"337","title":"API"},"338":{"body":"Loads custom ping metadata into your application or library. In Kotlin, this object must be registered from your startup code before calling Glean.initialize (such as in your application's onCreate method or a function called from that method). import org.mozilla.yourApplication.GleanMetrics.Pings override fun onCreate() { Glean.registerPings(Pings) Glean.initialize(applicationContext, uploadEnabled = true)\n} In Swift, this object must be registered from your startup code before calling Glean.shared.initialize (such as in your application's UIApplicationDelegate application(_:didFinishLaunchingWithOptions:) method or a function called from that method). import Glean @UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate { func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { Glean.shared.registerPings(GleanMetrics.Pings) Glean.shared.initialize(uploadEnabled = true) }\n} For Python, the pings.yaml file must be available and loaded at runtime. While the Python SDK does provide a Glean.register_ping_type function, if your project is a script (i.e. just Python files in a directory), you can load the pings.yaml before calling Glean.initialize using: from glean import load_pings pings = load_pings(\"pings.yaml\") Glean.initialize( application_id=\"my-app-id\", application_version=\"0.1.0\", upload_enabled=True,\n) If your project is a distributable Python package, you need to include the pings.yaml file using one of the myriad ways to include data in a Python package and then use pkg_resources.resource_filename() to get the filename at runtime. from glean import load_pings\nfrom pkg_resources import resource_filename pings = load_pings(resource_filename(__name__, \"pings.yaml\")) In Rust custom pings need to be registered individually. This should be done before calling glean::initialize. use your_glean_metrics::pings; glean::register_ping_type(&pings::custom_ping);\nglean::register_ping_type(&pings::search);\nglean::initialize(cfg, client_info); Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Registering custom pings » registerPings","id":"338","title":"registerPings"},"339":{"body":"Provides a way for users to gracefully shut down Glean, by blocking until it is finished performing pending tasks such as recording metrics and uploading pings.","breadcrumbs":"General API » Shut down » Shut down","id":"339","title":"Shut down"},"34":{"body":"\"Cannot find module '@mozilla/glean'\" Glean.js does not have a main package entry point. Instead it relies on a series of entry points depending on the platform you are targeting. In order to import Glean use: import Glean from '@mozilla/glean/{your-platform}' \"Module not found: Error: Can't resolve '@mozilla/glean/webext' in '...'\" Glean.js relies on Node.js' subpath exports feature to define multiple package entry points. Please make sure that you are using a supported Node.js runtime and also make sure the tools you are using support this Node.js feature.","breadcrumbs":"Adding Glean to your project » JavaScript » Common import errors","id":"34","title":"Common import errors"},"340":{"body":"Most calls to Glean APIs are dispatched [1] . This strategy is adopted because most tasks performed by the Glean SDKs involve file system read or write operations, HTTP requests and other time consuming actions. Each Glean SDK has an internal structure called \"Dispatcher\" which makes sure API calls get executed in the order they were called, while not requiring the caller to block on the completion of each of these tasks. Here, this term indicates the tasks are run asynchronously in JavaScript or in a different thread for all other SDKs.","breadcrumbs":"General API » Shut down » How the Glean SDKs execute tasks","id":"340","title":"How the Glean SDKs execute tasks"},"341":{"body":"","breadcrumbs":"General API » Shut down » API","id":"341","title":"API"},"342":{"body":"fn main() { let cfg = Configuration { // ... }; let client_info = /* ... */; glean::initialize(cfg, client_info); // Ensure the dispatcher thread winds down glean::shutdown();\n} import Glean from \"@mozilla/glean/webext\"; async function onUninstall() { // Flips Glean upload status to `false`, // which triggers sending of a `deletion-request` ping. Glean.setUploadEnabled(false); // Block on shut down to guarantee all pending pings // (including the `deletion-request` sent above) // are sent before the extension is uninstalled. await Glean.shutdown(); // Uninstall browser extension without asking for user approval before doing so. await browser.management.uninstallSelf({ showConfirmDialog: false });\n} The shutdown API is available for all JavaScript targets, even though the above example is explicitly using the webext target.","breadcrumbs":"General API » Shut down » shutdown","id":"342","title":"shutdown"},"343":{"body":"Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Shut down » Reference","id":"343","title":"Reference"},"344":{"body":"Note: This API is currently experimental and subject to change or elimination. Please reach out to the Glean Team if you are planning on using this API in its experimental state.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Glean Event Listener","id":"344","title":"Glean Event Listener"},"345":{"body":"Glean provides an API to register a callback by which a consumer can be notified of all event metrics being recorded.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Summary","id":"345","title":"Summary"},"346":{"body":"Consumers can register a callback through this API which will be called with the base identifier of each event metric when it is recorded. The base identifier of the event consists of the category name and the event name with a dot separator: . Glean will execute the registered callbacks on a background thread independent of the thread in which the event is being recorded in order to not interfere with the collection of the event. Glean will ensure that event recordings are reported to listeners in the same order that they are recorded by using the same dispatching mechanisms used to ensure events are recorded in the order they are received.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Usage","id":"346","title":"Usage"},"347":{"body":"class TestEventListener : GleanEventListener { val listenerTag: String = \"TestEventListener\" var lastSeenId: String = \"\" var count: Int = 0 override fun onEventRecorded(id: String) { this.lastSeenId = id this.count += 1 }\n} val listener = TestEventListener()\nGlean.registerEventListener(listener.listenerTag, listener) // If necessary to unregister the listener:\nGlean.unregisterEventListener(listener.listenerTag) class TestEventListener: GleanEventListener { let listenerTag: String = \"TestEventListener\" var lastSeenId: String = \"\" var count: Int64 = 0 func onEventRecorded(_ id: String) { self.lastSeenId = id self.count += 1 }\n} let listener = TestEventListener()\nGlean.shared.registerEventListener(tag: listener.listenerTag, listener: listener) // If necessary to unregister the listener:\nGlean.shared.unregisterEventListener(listener.listenerTag) Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Examples","id":"347","title":"Examples"},"348":{"body":"Different platforms have different ways to enable each debug functionality. They may be enabled through APIs exposed on the Glean singleton, through environment variables set at run time, or through platform specific debug tools.","breadcrumbs":"Debugging » Debugging","id":"348","title":"Debugging"},"349":{"body":"Check out the platform specific guides on how to use Glean's debug functionalities. Debugging applications using the Glean Android SDK Debugging applications using the Glean iOS SDK Debugging applications using the Glean Python SDK Debugging applications using the Glean JavaScript SDK","breadcrumbs":"Debugging » Platform Specific Information","id":"349","title":"Platform Specific Information"},"35":{"body":"In JavaScript, the metrics and pings definitions must be parsed at build time. The @mozilla/glean package exposes glean_parser through the glean script. To parse your YAML registry files using this script, define a new script in your package.json file: { // ... \"scripts\": { // ... \"build:glean\": \"glean translate path/to/metrics.yaml path/to/pings.yaml -f javascript -o path/to/generated\", // Or, if you are building for a Typescript project \"build:glean\": \"glean translate path/to/metrics.yaml path/to/pings.yaml -f typescript -o path/to/generated\" }\n} Then run this script by calling: npm run build:glean","breadcrumbs":"Adding Glean to your project » JavaScript » Setting up metrics and pings code generation","id":"35","title":"Setting up metrics and pings code generation"},"350":{"body":"The Glean SDKs provides four debugging features.","breadcrumbs":"Debugging » Features","id":"350","title":"Features"},"351":{"body":"This is either true or false and will cause all subsequent pings that are submitted, to also be echoed to the device's log.","breadcrumbs":"Debugging » Log Pings","id":"351","title":"Log Pings"},"352":{"body":"This will tag all subsequent outgoing pings with the provided value, in order to identify them in the Glean Debug View .","breadcrumbs":"Debugging » Debug View Tag","id":"352","title":"Debug View Tag"},"353":{"body":"This will tag all subsequent outgoing pings with a maximum of 5 comma-separated tags.","breadcrumbs":"Debugging » Source Tags","id":"353","title":"Source Tags"},"354":{"body":"This feature is only available for the Kotlin and Swift SDKs and in Firefox Desktop via about:glean. This expects the name of a ping and forces its immediate submission. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Send Pings","id":"354","title":"Send Pings"},"355":{"body":"This flag causes all subsequent pings that are submitted to also be echoed to the product's log. Once enabled, the only way to disable this feature is to restart or manually reset the application.","breadcrumbs":"Debugging » Log pings » Log pings","id":"355","title":"Log pings"},"356":{"body":"The Glean SDKs log warnings and errors through platform-specific logging frameworks. See the platform-specific instructions for information on how to view the logs on the platform you are on.","breadcrumbs":"Debugging » Log pings » On how to access logs","id":"356","title":"On how to access logs"},"357":{"body":"The accepted values are true or false. Any other value will be ignored.","breadcrumbs":"Debugging » Log pings » Limits","id":"357","title":"Limits"},"358":{"body":"","breadcrumbs":"Debugging » Log pings » API","id":"358","title":"API"},"359":{"body":"Enables or disables ping logging. This API can safely be called before Glean.initialize. The tag will be applied upon initialization in this case. use glean; glean.set_log_pings(true); import Glean from \"@mozilla/glean/\"; Glean.setLogPings(true);","breadcrumbs":"Debugging » Log pings » setLogPings","id":"359","title":"setLogPings"},"36":{"body":"","breadcrumbs":"Adding Glean to your project » JavaScript » Automation steps","id":"36","title":"Automation steps"},"360":{"body":"Gets the current state of ping logging. val loggingEnabled = Glean.getLogPings() let loggingEnabled = Glean.shared.getLogPings() use glean; let logging_enabled = glean.get_log_pings();","breadcrumbs":"Debugging » Log pings » getLogPings","id":"360","title":"getLogPings"},"361":{"body":"","breadcrumbs":"Debugging » Log pings » Environment variable","id":"361","title":"Environment variable"},"362":{"body":"It is also possible to enable ping logging through the GLEAN_LOG_PINGS environment variable. This variable must be set at runtime, not at compile time. It will be checked upon Glean initialization. Xcode IDE scheme editor popup screenshot To set environment variables to the process running your app in an iOS device or emulator you need to edit the scheme for your app. In the Xcode IDE, use the shortcut Cmd + < to open the scheme editor popup. The environment variables editor is under the Arguments tab on this popup. $ GLEAN_LOG_PINGS=true python my_application.py $ GLEAN_LOG_PINGS=true cargo run $ GLEAN_LOG_PINGS=true ./mach run Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Log pings » GLEAN_LOG_PINGS","id":"362","title":"GLEAN_LOG_PINGS"},"363":{"body":"Tag all subsequent outgoing pings with a given value, in order to redirect them to the Glean Debug View . \"To tag\" a ping with the Debug View Tag means that the ping request will contain the X-Debug-Id header with the given tag. Once enabled, the only way to disable this feature is to restart or manually reset the application.","breadcrumbs":"Debugging » Debug View Tag » Debug View Tag","id":"363","title":"Debug View Tag"},"364":{"body":"Any valid HTTP header value is a valid debug view tag (e.g. any value that matches the regex [a-zA-Z0-9-]{1,20}). Invalid values will be ignored.","breadcrumbs":"Debugging » Debug View Tag » Limits","id":"364","title":"Limits"},"365":{"body":"","breadcrumbs":"Debugging » Debug View Tag » API","id":"365","title":"API"},"366":{"body":"Sets the Debug View Tag to a given value. This API can safely be called before Glean.initialize. The tag will be applied upon initialization in this case. Glean.setDebugViewTag(\"my-tag\") import Glean Glean.shared.setDebugViewTag(\"my-tag\") use glean; glean.set_debug_view_tag(\"my-tag\"); import Glean from \"@mozilla/glean/\"; Glean.setDebugViewTag(\"my-tag\");","breadcrumbs":"Debugging » Debug View Tag » setDebugViewTag","id":"366","title":"setDebugViewTag"},"367":{"body":"Gets the Debug View Tag if set, otherwise returns a language-specific empty/null value. val tag = Glean.getDebugViewTag() ?: \"none\" import Glean if let tag = Glean.shared.getDebugViewTag() { ... } use glean; if let Some(tag) = glean.get_debug_view_tag() { ... };","breadcrumbs":"Debugging » Debug View Tag » getDebugViewTag","id":"367","title":"getDebugViewTag"},"368":{"body":"","breadcrumbs":"Debugging » Debug View Tag » Environment variable","id":"368","title":"Environment variable"},"369":{"body":"It is also possible to set the debug view tag through the GLEAN_DEBUG_VIEW_TAG environment variable. This variable must be set at runtime, not at compile time. It will be checked upon Glean initialization. Xcode IDE scheme editor popup screenshot To set environment variables to the process running your app in an iOS device or emulator you need to edit the scheme for your app. In the Xcode IDE, use the shortcut Cmd + < to open the scheme editor popup. The environment variables editor is under the Arguments tab on this popup. $ GLEAN_DEBUG_VIEW_TAG=\"my-tag\" python my_application.py $ GLEAN_DEBUG_VIEW_TAG=\"my-tag\" cargo run $ GLEAN_DEBUG_VIEW_TAG=\"my-tag\" ./mach run Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Debug View Tag » GLEAN_DEBUG_VIEW_TAG","id":"369","title":"GLEAN_DEBUG_VIEW_TAG"},"37":{"body":"Prefer using the Glean Dictionary While it is still possible to generate Markdown documentation, if working on a public Mozilla project rely on the Glean Dictionary for documentation. Your product will be automatically indexed by the Glean Dictionary after it gets enabled in the pipeline. One of the commands provided by glean_parser allows users to generate Markdown documentation based on the contents of their YAML registry files. To perform that translation, use the translate command with a different output format, as shown below. In your package.json, define the following script: { // ... \"scripts\": { // ... \"docs:glean\": \"glean translate path/to/metrics.yaml path/to/pings.yaml -f markdown -o path/to/docs\", }\n} Then run this script by calling: npm run docs:glean","breadcrumbs":"Adding Glean to your project » JavaScript » Documentation","id":"37","title":"Documentation"},"370":{"body":"Tag all subsequent outgoing pings with a maximum of 5 comma-separated tags. \"To tag\" a ping with Source Tags means that the ping request will contain the X-Source-Tags header with a comma separated list of the given tags. Once enabled, the only way to disable this feature is to restart or manually reset the application.","breadcrumbs":"Debugging » Source Tags » Source Tags","id":"370","title":"Source Tags"},"371":{"body":"Any valid HTTP header value is a valid source tag (e.g. any value that matches the regex [a-zA-Z0-9-]{1,20}) and values starting with the substring glean are reserved for internal Glean usage and thus are also considered invalid. If any value in the list of source tags is invalid, the whole list will be ignored. If the list of tags has more than five members, the whole list will be ignored. The special value automation is meant for tagging pings generated on automation: such pings will be specially handled on the pipeline (i.e. discarded from non-live views ).","breadcrumbs":"Debugging » Source Tags » Limits","id":"371","title":"Limits"},"372":{"body":"","breadcrumbs":"Debugging » Source Tags » API","id":"372","title":"API"},"373":{"body":"Sets the Source Tags to a given value. This API can safely be called before Glean.initialize. The tag will be applied upon initialization in this case. import mozilla.telemetry.glean.Glean Glean.setSourceTags(setOf(\"my-tag\", \"your-tag\", \"our-tag\")) Glean.INSTANCE.setSourceTags(setOf(\"my-tag\", \"your-tag\", \"our-tag\")) import Glean Glean.shared.setSourceTags([\"my-tag\", \"your-tag\", \"our-tag\"]) use glean; glean.set_source_tags([\"my-tag\", \"your-tag\", \"our-tag\"]); import Glean from \"@mozilla/glean/\"; Glean.setSourceTags([\"my-tag\", \"your-tag\", \"our-tag\"]);","breadcrumbs":"Debugging » Source Tags » setSourceTags","id":"373","title":"setSourceTags"},"374":{"body":"","breadcrumbs":"Debugging » Source Tags » Environment variable","id":"374","title":"Environment variable"},"375":{"body":"It is also possible to set the debug view tag through the GLEAN_SOURCE_TAGS environment variable. This variable must be set at runtime, not at compile time. It will be checked upon Glean initialization. Xcode IDE scheme editor popup screenshot To set environment variables to the process running your app in an iOS device or emulator you need to edit the scheme for your app. In the Xcode IDE, use the shortcut Cmd + < to open the scheme editor popup. The environment variables editor is under the Arguments tab on this popup. $ GLEAN_SOURCE_TAGS=my-tag,your-tag,our-tag python my_application.py $ GLEAN_SOURCE_TAGS=my-tag,your-tag,our-tag cargo run $ GLEAN_SOURCE_TAGS=my-tag,your-tag,our-tag ./mach run Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Source Tags » GLEAN_SOURCE_TAGS","id":"375","title":"GLEAN_SOURCE_TAGS"},"376":{"body":"Not sure which metric type to use? These docs contain a series of questions that can help. Reference information about each metric type is linked below. The parameters available that apply to any metric type are in the metric parameters page . There are different metrics to choose from, depending on what you want to achieve: Boolean : Records a single truth value, for example \"is a11y enabled?\" Labeled boolean : Records truth values for a set of labels, for example \"which a11y features are enabled?\" Counter : Used to count how often something happens, for example, how often a certain button was pressed. Labeled counter : Used to count how often something happens, for example which kind of crash occurred (\"uncaught_exception\" or \"native_code_crash\"). String : Records a single Unicode string value, for example the name of the OS. Labeled strings : Records multiple Unicode string values, for example to record which kind of error occurred in different stages of a login process. String List : Records a list of Unicode string values, for example the list of enabled search engines. Timespan : Used to measure how much time is spent in a single task. Timing Distribution : Used to record the distribution of multiple time measurements. Memory Distribution : Used to record the distribution of memory sizes. UUID : Used to record universally unique identifiers (UUIDs), such as a client ID. URL : Used to record URL-like strings. Datetime : Used to record an absolute date and time, such as the time the user first ran the application. Events : Records events e.g. individual occurrences of user actions, say every time a view was open and from where. Custom Distribution : Used to record the distribution of a value that needs fine-grained control of how the histogram buckets are computed. Custom distributions are only available for values that come from Gecko. Quantity : Used to record a single non-negative integer value. For example, the width of the display in pixels. Labeled Quantity : Used to record multiple non-negative integer values. For example, the dimensions of the display in pixels. Rate : Used to record the rate something happens relative to some other thing. For example, the number of HTTP connections that experienced an error relative to the number of total HTTP connections made. Text : Records a single long Unicode text, used when the limits on String are too low. Object : Record structured data.","breadcrumbs":"Metric types » Metrics","id":"376","title":"Metrics"},"377":{"body":"There are two types of metrics listed above - labeled and unlabeled metrics. If a metric is labeled , it means that for a single metric entry you define in metrics.yaml, you can record into multiple metrics under the same name, each of the same type and identified by a different string label. This is useful when you need to break down metrics by a label known at build time or run time. For example: When you want to count a different set of sub-views that users interact with, you could use viewCount[\"view1\"].add() and viewCount[\"view2\"].add(). When you want to count errors that might occur for a feature, you could use errorCount[errorName].add(). Labeled metrics come in two forms: Static labels : The labels are specified at build time in the metrics.yaml file, in the labels parameter. If a label that isn't part of this set is used at run time, it is converted to the special label __other__. The number of static labels is limited to 4096 per metric. Dynamic labels : The labels aren't known at build time, so are set at run time. Only the first 16 labels seen by Glean will be tracked. After that, any additional labels are converted to the special label __other__. Note : Be careful with using arbitrary strings as labels and make sure they can't accidentally contain identifying data (like directory paths or user input).","breadcrumbs":"Metric types » Labeled metrics","id":"377","title":"Labeled metrics"},"378":{"body":"Labels must not exceed 71 characters in length, and may comprise any printable ASCII characters.","breadcrumbs":"Metric types » Label format","id":"378","title":"Label format"},"379":{"body":"Glean has a well-defined process for requesting changes to existing metric types or suggesting the implementation of new metric types: Glean consumers need to file a bug in the Data platforms & tools::Glean Metric Types component, filling in the provided form; The triage owner of the Bugzilla component prioritizes this within 6 business days and kicks off the decision making process . Once the decision process is completed, the bug is closed with a comment outlining the decision that was made.","breadcrumbs":"Metric types » Adding or changing metric types","id":"379","title":"Adding or changing metric types"},"38":{"body":"Glean includes a \"linter\" for the YAML registry files called the glinter that catches a number of common mistakes in these files. To run the linter use the glinter command. In your package.json, define the following script: { // ... \"scripts\": { // ... \"lint:glean\": \"glean glinter path/to/metrics.yaml path/to/pings.yaml\", }\n} Then run this script by calling: npm run lint:glean Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » JavaScript » YAML registry files linting","id":"38","title":"YAML registry files linting"},"380":{"body":"JWE : Deprecated in v37.0.0 Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Deprecated metrics","id":"380","title":"Deprecated metrics"},"381":{"body":"Boolean metrics are used for reporting simple flags.","breadcrumbs":"Metric types » Boolean » Boolean","id":"381","title":"Boolean"},"382":{"body":"","breadcrumbs":"Metric types » Boolean » Recording API","id":"382","title":"Recording API"},"383":{"body":"Sets a boolean metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Flags Flags.a11yEnabled.set(System.isAccesibilityEnabled()) import org.mozilla.yourApplication.GleanMetrics.Flags; Flags.INSTANCE.a11yEnabled().set(System.isAccessibilityEnabled()); Flags.a11yEnabled.set(self.isAccessibilityEnabled) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.flags.a11y_enabled.set(is_accessibility_enabled()) use glean_metrics::flags; flags::a11y_enabled.set(system.is_accessibility_enabled()); import * as flags from \"./path/to/generated/files/flags.js\"; flags.a11yEnabled.set(this.isAccessibilityEnabled()); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::flags::a11y_enabled.Set(false); JavaScript Glean.flags.a11yEnabled.set(false); Recorded errors invalid_type : if a non-boolean value is given (JavaScript only).","breadcrumbs":"Metric types » Boolean » set","id":"383","title":"set"},"384":{"body":"","breadcrumbs":"Metric types » Boolean » Testing API","id":"384","title":"Testing API"},"385":{"body":"Gets the recorded value for a given boolean metric. Returns true or false if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Flags assertTrue(Flags.a11yEnabled.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Flags; assertTrue(Flags.INSTANCE.a11yEnabled().testGetValue()); XCTAssertTrue(Flags.a11yEnabled.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert True is metrics.flags.a11y_enabled.test_get_value() use glean_metrics::flags; assert!(flags::a11y_enabled.test_get_value(None).unwrap()); import * as flags from \"./path/to/generated/files/flags.js\"; assert(await flags.a11yEnabled.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQ(false, mozilla::glean::flags::a11y_enabled.TestGetValue().value()); JavaScript Assert.equal(false, Glean.flags.a11yEnabled.testGetValue());","breadcrumbs":"Metric types » Boolean » testGetValue","id":"385","title":"testGetValue"},"386":{"body":"Gets the number of errors recorded for a given boolean metric. import org.mozilla.yourApplication.GleanMetrics.Flags assertEquals( 0, Flags.a11yEnabled.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Flags; assertEquals( 0, Flags.INSTANCE.a11yEnabled().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Flags.a11yEnabled.testGetNumRecordedErrors(.invalidValue)) assert 0 == metrics.flags.a11y_enabled.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType; use glean_metrics::flags; assert_eq!( 0, flags::a11y_enabled.test_get_num_recorded_errors( ErrorType::InvalidValue )\n);","breadcrumbs":"Metric types » Boolean » testGetNumRecordedErrors","id":"386","title":"testGetNumRecordedErrors"},"387":{"body":"Example boolean metric definition: flags: a11y_enabled: type: boolean description: > Records whether a11y is enabled on the device. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Boolean » Metric parameters","id":"387","title":"Metric parameters"},"388":{"body":"N/A","breadcrumbs":"Metric types » Boolean » Extra metric parameters","id":"388","title":"Extra metric parameters"},"389":{"body":"Is accessibility enabled?","breadcrumbs":"Metric types » Boolean » Data questions","id":"389","title":"Data questions"},"39":{"body":"This page provides a step-by-step guide on how to integrate the Glean.js library into a Qt/QML project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Qt/QML » Adding Glean to your Qt/QML project","id":"39","title":"Adding Glean to your Qt/QML project"},"390":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Boolean » Reference","id":"390","title":"Reference"},"391":{"body":"Labeled booleans are used to record different related boolean flags.","breadcrumbs":"Metric types » Labeled Booleans » Labeled Booleans","id":"391","title":"Labeled Booleans"},"392":{"body":"","breadcrumbs":"Metric types » Labeled Booleans » Recording API","id":"392","title":"Recording API"},"393":{"body":"Sets one of the labels in a labeled boolean metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Accessibility Accessibility.features[\"screen_reader\"].set(isScreenReaderEnabled())\nAccessibility.features[\"high_contrast\"].set(isHighContrastEnabled()) import org.mozilla.yourApplication.GleanMetrics.Accessibility; Acessibility.INSTANCE.features()[\"screen_reader\"].set(isScreenReaderEnabled());\nAcessibility.INSTANCE.features()[\"high_contrast\"].set(isHighContrastEnabled()); Accessibility.features[\"screen_reader\"].set(isScreenReaderEnabled())\nAccessibility.features[\"high_contrast\"].set(isHighContrastEnabled()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.accessibility.features[\"screen_reader\"].set(is_screen_reader_enabled())\nmetrics.accessibility.features[\"high_contrast\"].set(is_high_contrast_enabled()) use glean_metrics::accessibility; accessibility::features.get(\"screen_reader\").set(is_screen_reader_enabled());\naccessibility::features.get(\"high_contrast\").set(is_high_contrast_enabled()); import * as acessibility from \"./path/to/generated/files/acessibility.js\"; acessibility.features[\"screen_reader\"].set(this.isScreenReaderEnabled());\nacessibility.features[\"high_contrast\"].set(this.isHighContrastEnabled()); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::accessibility::features.Get(\"screen_reader\"_ns).Set(true);\nmozilla::glean::accessibility::features.Get(\"high_contrast\"_ns).Set(false); JavaScript Glean.accessibility.features.screen_reader.set(true);\nGlean.accessibility.features[\"high_contrast\"].set(false); Recorded Errors invalid_type : if a non-boolean value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__. Limits Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Booleans » set","id":"393","title":"set"},"394":{"body":"","breadcrumbs":"Metric types » Labeled Booleans » Testing API","id":"394","title":"Testing API"},"395":{"body":"Gets the recorded value for a given label in a labeled boolean metric. Returns the count if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Accessibility // Do the booleans have the expected values?\nassertEquals(True, Accessibility.features[\"screen_reader\"].testGetValue())\nassertEquals(False, Accessibility.features[\"high_contrast\"].testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Accessibility; // Do the booleans have the expected values?\nassertEquals(True, Acessibility.INSTANCE.features()[\"screen_reader\"].testGetValue());\nassertEquals(False, Acessibility.INSTANCE.features()[\"high_contrast\"].testGetValue()); // Do the booleans have the expected values?\nXCTAssertEqual(true, Accessibility.features[\"screen_reader\"].testGetValue())\nXCTAssertEqual(false, Accessibility.features[\"high_contrast\"].testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Do the booleans have the expected values?\nassert metrics.accessibility.features[\"screen_reader\"].test_get_value()\nassert not metrics.accessibility.features[\"high_contrast\"].test_get_value() use glean_metrics::accessibility; // Do the booleans have the expected values?\nassert!(accessibility::features.get(\"screen_reader\").test_get_value(None).unwrap());\nassert!(!accessibility::features.get(\"high_contrast\").test_get_value(None).unwrap()); import * as accessibility from \"./path/to/generated/files/acessibility.js\"; assert(await accessibility.features[\"screen_reader\"].testGetValue());\nassert(!(await accessibility.features[\"high_contrast\"].testGetValue())); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQ( true, mozilla::glean::accessibility::features.Get(\"screen_reader\"_ns).TestGetValue().unwrap().ref());\nASSERT_EQ( false, mozilla::glean::accessibility::features.Get(\"high_contrast\"_ns).TestGetValue().unwrap().ref()); JavaScript Assert.equal(true, Glean.accessibility.features[\"screen_reader\"].testGetValue());\nAssert.equal(false, Glean.accessibility.features.high_contrast.testGetValue());","breadcrumbs":"Metric types » Labeled Booleans » testGetValue","id":"395","title":"testGetValue"},"396":{"body":"Gets the number of errors recorded for a given labeled boolean metric in total. import org.mozilla.yourApplication.GleanMetrics.Accessibility // Did we record any invalid labels?\nassertEquals( 0, Accessibility.features.testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n) import org.mozilla.yourApplication.GleanMetrics.Accessibility; // Did we record any invalid labels?\nassertEquals( 0, Acessibility.INSTANCE.features().testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n); // Were there any invalid labels?\nXCTAssertEqual(0, Accessibility.features.testGetNumRecordedErrors(.invalidLabel)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Did we record any invalid labels?\nassert 0 == metrics.accessibility.features.test_get_num_recorded_errors( ErrorType.INVALID_LABEL\n) use glean::ErrorType;\nuse glean_metrics::accessibility; // Did we record any invalid labels?\nassert_eq!( 1, accessibility::features.test_get_num_recorded_errors( ErrorType::InvalidLabel )\n); import * as accessibility from \"./path/to/generated/files/acessibility.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert( 1, await accessibility.features.testGetNumRecordedErrors(ErrorType.InvalidLabel)\n);","breadcrumbs":"Metric types » Labeled Booleans » testGetNumRecordedErrors","id":"396","title":"testGetNumRecordedErrors"},"397":{"body":"Example labeled boolean metric definition: accessibility: features: type: labeled_boolean description: > a11y features enabled on the device. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 labels: - screen_reader - high_contrast ...","breadcrumbs":"Metric types » Labeled Booleans » Metric parameters","id":"397","title":"Metric parameters"},"398":{"body":"labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Booleans » Extra metric parameters","id":"398","title":"Extra metric parameters"},"399":{"body":"Which accessibility features are enabled?","breadcrumbs":"Metric types » Labeled Booleans » Data questions","id":"399","title":"Data questions"},"4":{"body":"This section contains guides and essays regarding specific usage information and possibilities in each Glean SDK. Check out this section for more information on the SDK you are using.","breadcrumbs":"Glean » SDK Specific Information","id":"4","title":"SDK Specific Information"},"40":{"body":"Python >= 3.7 Qt >= 5.15.2","breadcrumbs":"Adding Glean to your project » Qt/QML » Requirements","id":"40","title":"Requirements"},"400":{"body":"Swift API docs: LabeledMetricType , BooleanMetricType Python API docs: LabeledBooleanMetricType , BooleanMetricType Rust API docs: LabeledMetric , BooleanMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Booleans » Reference","id":"400","title":"Reference"},"401":{"body":"Used to count how often something happens, say how often a certain button was pressed. A counter always starts from 0. Each time you record to a counter, its value is incremented. Unless incremented by a positive value, a counter will not be reported in pings, that means: the value 0 is never sent in a ping. If you find that you need to control the actual value sent in the ping, you may be measuring something, not just counting something, and a Quantity metric may be a better choice.","breadcrumbs":"Metric types » Counter » Counter","id":"401","title":"Counter"},"402":{"body":"When using a counter metric, it is important to let the Glean metric do the counting. Using your own variable for counting and setting the counter yourself could be problematic because it will be difficult to reset the value at the exact moment that the value is sent in a ping. Instead, just use counter.add to increment the value and let Glean handle resetting the counter.","breadcrumbs":"Metric types » Counter » Let the Glean metric do the counting","id":"402","title":"Let the Glean metric do the counting"},"403":{"body":"","breadcrumbs":"Metric types » Counter » Recording API","id":"403","title":"Recording API"},"404":{"body":"Increases the counter by a certain amount. If no amount is passed it defaults to 1. import org.mozilla.yourApplication.GleanMetrics.Controls Controls.refreshPressed.add() // Adds 1 to the counter.\nControls.refreshPressed.add(5) // Adds 5 to the counter. import org.mozilla.yourApplication.GleanMetrics.Controls; Controls.INSTANCE.refreshPressed().add(); // Adds 1 to the counter.\nControls.INSTANCE.refreshPressed().add(5); // Adds 5 to the counter. Controls.refreshPressed.add() // Adds 1 to the counter.\nControls.refreshPressed.add(5) // Adds 5 to the counter. from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.controls.refresh_pressed.add() # Adds 1 to the counter.\nmetrics.controls.refresh_pressed.add(5) # Adds 5 to the counter. use glean_metrics::controls; controls::refresh_pressed.add(1); // Adds 1 to the counter.\ncontrols::refresh_pressed.add(5); // Adds 5 to the counter. import * as controls from \"./path/to/generated/files/controls.js\"; controls.refreshPressed.add(); // Adds 1 to the counter.\ncontrols.refreshPressed.add(5); // Adds 5 to the counter. C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::controls::refresh_pressed.Add(1);\nmozilla::glean::controls::refresh_pressed.Add(5); JavaScript Glean.controls.refreshPressed.add(1);\nGlean.controls.refreshPressed.add(5); Recorded errors invalid_value : If the counter is incremented by a negative value (or, in versions up to and including 54.0.0, 0). invalid_type : If a floating point or non-number value is given. Limits Only increments; Saturates at the largest value that can be represented as a 32-bit signed integer (2147483647).","breadcrumbs":"Metric types » Counter » add","id":"404","title":"add"},"405":{"body":"","breadcrumbs":"Metric types » Counter » Testing API","id":"405","title":"Testing API"},"406":{"body":"Gets the recorded value for a given counter metric. Returns the count if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Controls assertEquals(6, Controls.refreshPressed.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Controls; assertEquals(6, Controls.INSTANCE.refreshPressed().testGetValue()); XCTAssertEqual(6, Controls.refreshPressed.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 6 == metrics.controls.refresh_pressed.test_get_value() use glean_metrics::controls; assert_eq!(6, controls::refresh_pressed.test_get_value(None).unwrap()); import * as controls from \"./path/to/generated/files/controls.js\"; assert.strictEqual(6, await controls.refreshPressed.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_TRUE(mozilla::glean::controls::refresh_pressed.TestGetValue().isOk());\nASSERT_EQ(6, mozilla::glean::controls::refresh_pressed.TestGetValue().unwrap().value()); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(6, Glean.controls.refreshPressed.testGetValue());","breadcrumbs":"Metric types » Counter » testGetValue","id":"406","title":"testGetValue"},"407":{"body":"Gets the number of errors recorded for a given counter metric. import org.mozilla.yourApplication.GleanMetrics.Controls assertEquals( 0, Controls.refreshPressed.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Controls; assertEquals( 0, Controls.INSTANCE.refreshPressed().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Controls.refreshPressed.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") from glean.testing import ErrorType assert 0 == metrics.controls.refresh_pressed.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::controls; assert_eq!( 0, controls::refresh_pressed.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); import * as controls from \"./path/to/generated/files/controls.js\";\nimport { ErrorType } from \"@mozilla/glean/error\";\nassert.strictEqual( 0, await controls.refreshPressed.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Counter » testGetNumRecordedErrors","id":"407","title":"testGetNumRecordedErrors"},"408":{"body":"Example counter metric definition: controls: refresh_pressed: type: counter description: > Counts how often the refresh button is pressed. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Counter » Metric parameters","id":"408","title":"Metric parameters"},"409":{"body":"N/A","breadcrumbs":"Metric types » Counter » Extra metric parameters","id":"409","title":"Extra metric parameters"},"41":{"body":"Glean.js' Qt/QML build is distributed as an asset with every Glean.js release. In order to download the latest version visit https://github.com/mozilla/glean.js/releases/latest . Glean.js is a QML module , so extract the contents of the downloaded file wherever you keep your other modules. Make sure that whichever directory that module is placed in, is part of the QML Import Path . After doing that, import Glean like so: import org.mozilla.Glean ","breadcrumbs":"Adding Glean to your project » Qt/QML » Setting up the dependency","id":"41","title":"Setting up the dependency"},"410":{"body":"How often was a certain button pressed?","breadcrumbs":"Metric types » Counter » Data questions","id":"410","title":"Data questions"},"411":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Counter » Reference","id":"411","title":"Reference"},"412":{"body":"Labeled counters are used to record different related counts that should sum up to a total. Each counter always starts from 0. Each time you record to a labeled counter, its value is incremented. Unless incremented by a positive value, a counter will not be reported in pings, that means: the value 0 is never sent in a ping.","breadcrumbs":"Metric types » Labeled Counters » Labeled Counters","id":"412","title":"Labeled Counters"},"413":{"body":"","breadcrumbs":"Metric types » Labeled Counters » Recording API","id":"413","title":"Recording API"},"414":{"body":"Increases one of the labels in a labeled counter metric by a certain amount. If no amount is passed it defaults to 1. import org.mozilla.yourApplication.GleanMetrics.Stability Stability.crashCount[\"uncaught_exception\"].add() // Adds 1 to the \"uncaught_exception\" counter.\nStability.crashCount[\"native_code_crash\"].add(3) // Adds 3 to the \"native_code_crash\" counter. import org.mozilla.yourApplication.GleanMetrics.Stability; Stability.INSTANCE.crashCount()[\"uncaught_exception\"].add(); // Adds 1 to the \"uncaught_exception\" counter.\nStability.INSTANCE.crashCount()[\"native_code_crash\"].add(3); // Adds 3 to the \"native_code_crash\" counter. Stability.crashCount[\"uncaught_exception\"].add() // Adds 1 to the \"uncaught_exception\" counter.\nStability.crashCount[\"native_code_crash\"].add(3) // Adds 3 to the \"native_code_crash\" counter. from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Adds 1 to the \"uncaught_exception\" counter.\nmetrics.stability.crash_count[\"uncaught_exception\"].add()\n# Adds 3 to the \"native_code_crash\" counter.\nmetrics.stability.crash_count[\"native_code_crash\"].add(3) use glean_metrics::stability; stability::crash_count.get(\"uncaught_exception\").add(1); // Adds 1 to the \"uncaught_exception\" counter.\nstability::crash_count.get(\"native_code_crash\").add(3); // Adds 3 to the \"native_code_crash\" counter. import * as stability from \"./path/to/generated/files/stability.js\"; // Adds 1 to the \"uncaught_exception\" counter.\nstability.crashCount[\"uncaught_exception\"].add();\n// Adds 3 to the \"native_code_crash\" counter.\nstability.crashCount[\"native_code_crash\"].add(3); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::stability::crash_count.Get(\"uncaught_exception\"_ns).Add(1);\nmozilla::glean::stability::crash_count.Get(\"native_code_crash\"_ns).Add(3); JavaScript Glean.stability.crashCount.uncaught_exception.add(1);\nGlean.stability.crashCount[\"native_code_crash\"].add(3); Recorded Errors invalid_value : if the counter is incremented by a negative value (or, in versions up to and including 54.0.0, 0). invalid_type : if a floating point or non-number value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__. Limits Only increments Saturates at the largest value that can be represented as a 32-bit signed integer. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Counters » add","id":"414","title":"add"},"415":{"body":"","breadcrumbs":"Metric types » Labeled Counters » Testing API","id":"415","title":"Testing API"},"416":{"body":"Gets the recorded value for a given label in a labeled counter metric. Returns the count if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Stability // Do the counters have the expected values?\nassertEquals(1, Stability.crashCount[\"uncaught_exception\"].testGetValue())\nassertEquals(3, Stability.crashCount[\"native_code_crash\"].testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Stability; // Do the counters have the expected values?\nassertEquals(1, Stability.INSTANCE.crashCount()[\"uncaught_exception\"].testGetValue());\nassertEquals(3, Stability.INSTANCE.crashCount()[\"native_code_crash\"].testGetValue()); // Do the counters have the expected values?\nXCTAssertEqual(1, Stability.crashCount[\"uncaught_exception\"].testGetValue())\nXCTAssertEqual(3, Stability.crashCount[\"native_code_crash\"].testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Do the counters have the expected values?\nassert 1 == metrics.stability.crash_count[\"uncaught_exception\"].test_get_value()\nassert 3 == metrics.stability.crash_count[\"native_code_crash\"].test_get_value() use glean_metrics::stability; // Do the counters have the expected values?\nassert_eq!(1, stability::crash_count.get(\"uncaught_exception\").test_get_value().unwrap());\nassert_eq!(3, stability::crash_count.get(\"native_code_crash\").test_get_value().unwrap()); import * as stability from \"./path/to/generated/files/stability.js\"; // Do the counters have the expected values?\nassert.strictEqual(1, await stability.crashCount[\"uncaught_exception\"].testGetValue());\nassert.strictEqual(3, await stability.crashCount[\"native_code_crash\"].testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQ( 1, mozilla::glean::stability::crash_count.Get(\"uncaught_exception\"_ns).TestGetValue().unwrap().ref());\nASSERT_EQ( 3, mozilla::glean::stability::crash_count.Get(\"native_code_crash\"_ns).TestGetValue().unwrap().ref()); JavaScript Assert.equal(1, Glean.stability.crashCount[\"uncaught_exception\"].testGetValue());\nAssert.equal(3, Glean.stability.crashCount.native_code_crash.testGetValue());","breadcrumbs":"Metric types » Labeled Counters » testGetValue","id":"416","title":"testGetValue"},"417":{"body":"Gets the number of errors recorded for a given labeled counter metric in total. import org.mozilla.yourApplication.GleanMetrics.Stabilit // Were there any invalid labels?\nassertEquals( 0, Stability.crashCount.testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n) import org.mozilla.yourApplication.GleanMetrics.Stability; // Were there any invalid labels?\nassertEquals( 0, Stability.INSTANCE.crashCount().testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n); // Were there any invalid labels?\nXCTAssertEqual(0, Stability.crashCount.testGetNumRecordedErrors(.invalidLabel)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Were there any invalid labels?\nassert 0 == metrics.stability.crash_count.test_get_num_recorded_errors( ErrorType.INVALID_LABEL\n) use glean::ErrorType; use glean_metrics::stability; // Were there any invalid labels?\nassert_eq!( 0, stability::crash_count.test_get_num_recorded_errors( ErrorType::InvalidLabel )\n); import * as stability from \"./path/to/generated/files/stability.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Were there any invalid labels?\nassert( 0, await stability.crashCount.testGetNumRecordedErrors(ErrorType.InvalidLabel)\n);","breadcrumbs":"Metric types » Labeled Counters » testGetNumRecordedErrors","id":"417","title":"testGetNumRecordedErrors"},"418":{"body":"Example labeled counter metric definition: accessibility: features: type: labeled_counter description: > Counts the number of crashes that occur in the application. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 labels: - uncaught_exception - native_code_crash ...","breadcrumbs":"Metric types » Labeled Counters » Metric parameters","id":"418","title":"Metric parameters"},"419":{"body":"labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Counters » Extra metric parameters","id":"419","title":"Extra metric parameters"},"42":{"body":"The number is the version of the release you downloaded minus its patch version. For example, if you downloaded Glean.js version 0.15.0 your import statement will be: import org.mozilla.Glean 0.15","breadcrumbs":"Adding Glean to your project » Qt/QML » Picking the correct version","id":"42","title":"Picking the correct version"},"420":{"body":"How many times did different types of crashes occur?","breadcrumbs":"Metric types » Labeled Counters » Data questions","id":"420","title":"Data questions"},"421":{"body":"Swift API docs: LabeledMetricType , CounterMetricType Python API docs: LabeledCounterMetricType , CounterMetricType Rust API docs: LabeledMetric , CounterMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Counters » Reference","id":"421","title":"Reference"},"422":{"body":"String metrics allow recording a Unicode string value with arbitrary content. This metric type does not support recording JSON blobs please get in contact with the Glean team if you're missing a type.","breadcrumbs":"Metric types » String » Strings","id":"422","title":"Strings"},"423":{"body":"Be careful using arbitrary strings and make sure they can't accidentally contain identifying data (like directory paths or user input).","breadcrumbs":"Metric types » String » Important","id":"423","title":"Important"},"424":{"body":"","breadcrumbs":"Metric types » String » Recording API","id":"424","title":"Recording API"},"425":{"body":"Set a string metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.SearchDefault // Record a value into the metric.\nSearchDefault.name.set(\"duck duck go\")\n// If it changed later, you can record the new value:\nSearchDefault.name.set(\"wikipedia\") import org.mozilla.yourApplication.GleanMetrics.SearchDefault; // Record a value into the metric.\nSearchDefault.INSTANCE.name().set(\"duck duck go\");\n// If it changed later, you can record the new value:\nSearchDefault.INSTANCE.name().set(\"wikipedia\"); // Record a value into the metric.\nSearchDefault.name.set(\"duck duck go\")\n// If it changed later, you can record the new value:\nSearchDefault.name.set(\"wikipedia\") from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Record a value into the metric.\nmetrics.search_default.name.set(\"duck duck go\")\n# If it changed later, you can record the new value:\nmetrics.search_default.name.set(\"wikipedia\") use glean_metrics::search_default; // Record a value into the metric.\nsearch_default::name.set(\"duck duck go\");\n// If it changed later, you can record the new value:\nsearch_default::name.set(\"wikipedia\"); import * as searchDefault from \"./path/to/generated/files/searchDefault.js\"; // Record a value into the metric.\nsearchDefault.name.set(\"duck duck go\");\n// If it changed later, you can record the new value:\nsearchDefault.name.set(\"wikipedia\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search_default::name.Set(\"wikipedia\"_ns); JavaScript Glean.searchDefault.name.set(\"wikipedia\"); Recorded errors invalid_overflow : if the string is too long. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_type : if a non-string value is given. Limits Fixed maximum string length: 255. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Prior to Glean v60.4.0 the limit was 100 bytes.","breadcrumbs":"Metric types » String » set","id":"425","title":"set"},"426":{"body":"","breadcrumbs":"Metric types » String » Testing API","id":"426","title":"Testing API"},"427":{"body":"Get the recorded value for a given string metric. Returns the string if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. The recorded value may have been truncated. See \"Limits\" section above. import org.mozilla.yourApplication.GleanMetrics.SearchDefault // Does the string metric have the expected value?\nassertEquals(\"wikipedia\", SearchDefault.name.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.SearchDefault; // Does the string metric have the expected value?\nassertEquals(\"wikipedia\", SearchDefault.INSTANCE.name().testGetValue()); // Does the string metric have the expected value?\nXCTAssertEqual(\"wikipedia\", SearchDefault.name.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Does the string metric have the expected value?\nassert \"wikipedia\" == metrics.search_default.name.test_get_value() use glean_metrics::search_default; // Does the string metric have the expected value?\nassert_eq!(6, search_default::name.test_get_value(None).unwrap()); import * as searchDefault from \"./path/to/generated/files/searchDefault.js\"; assert.strictEqual(\"wikipedia\", await searchDefault.name.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" // Is it clear of errors?\nASSERT_TRUE(mozilla::glean::search_default::name.TestGetValue().isOk());\n// Does it have the expected value?\nASSERT_STREQ( \"wikipedia\", mozilla::glean::search_default::name.TestGetValue().unwrap().value().get()\n); JavaScript // Does it have the expected value?\n// testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(\"wikipedia\", Glean.searchDefault.name.testGetValue());","breadcrumbs":"Metric types » String » testGetValue","id":"427","title":"testGetValue"},"428":{"body":"Gets the number of errors recorded for a given string metric. import org.mozilla.yourApplication.GleanMetrics.SearchDefault // Was the string truncated, and an error reported?\nassertEquals( 0, SearchDefault.name.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) import org.mozilla.yourApplication.GleanMetrics.SearchDefault; // Was the string truncated, and an error reported?\nassertEquals( 0, SearchDefault.INSTANCE.name().testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n); // Was the string truncated, and an error reported?\nXCTAssertEqual(0, SearchDefault.name.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Was the string truncated, and an error reported?\nassert 0 == metrics.search_default.name.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse glean_metrics::search_default; // Was the string truncated, and an error reported?\nassert_eq!( 0, search_default::name.test_get_num_recorded_errors( ErrorType::InvalidOverflow )\n); import * as searchDefault from \"./path/to/generated/files/searchDefault.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Was the string truncated, and an error reported?\nassert.strictEqual( 0, await searchDefault.name.testGetNumRecordedErrors(ErrorType.InvalidOverflow)\n);","breadcrumbs":"Metric types » String » testGetNumRecordedErrors","id":"428","title":"testGetNumRecordedErrors"},"429":{"body":"Example string metric definition: controls: refresh_pressed: type: string description: > The name of the default search engine. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » String » Metric parameters","id":"429","title":"Metric parameters"},"43":{"body":"Qt/QML projects need to setup metrics and pings code generation manually. First install the glean_parser CLI tool. pip install glean_parser","breadcrumbs":"Adding Glean to your project » Qt/QML » Consuming YAML registry files","id":"43","title":"Consuming YAML registry files"},"430":{"body":"N/A","breadcrumbs":"Metric types » String » Extra metric parameters","id":"430","title":"Extra metric parameters"},"431":{"body":"Record the operating system name with a value of \"android\". Recording the device model with a value of \"SAMSUNG-SGH-I997\".","breadcrumbs":"Metric types » String » Data questions","id":"431","title":"Data questions"},"432":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » String » Reference","id":"432","title":"Reference"},"433":{"body":"Labeled strings record multiple Unicode string values, each under a different label.","breadcrumbs":"Metric types » Labeled Strings » Labeled Strings","id":"433","title":"Labeled Strings"},"434":{"body":"","breadcrumbs":"Metric types » Labeled Strings » Recording API","id":"434","title":"Recording API"},"435":{"body":"Sets one of the labels in a labeled string metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Login Login.errorsByStage[\"server_auth\"].set(\"Invalid password\") import org.mozilla.yourApplication.GleanMetrics.Login; Login.INSTANCE.errorsByStage()[\"server_auth\"].set(\"Invalid password\"); Login.errorsByStage[\"server_auth\"].set(\"Invalid password\") from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.login.errors_by_stage[\"server_auth\"].set(\"Invalid password\") use glean_metrics::login; login::errors_by_stage.get(\"server_auth\").set(\"Invalid password\"); import * as login from \"./path/to/generated/files/login.js\"; login.errorsByStage[\"server_auth\"].set(\"Invalid password\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::login::errors_by_stage.Get(\"server_auth\"_ns).Set(\"Invalid password\"_ns); JavaScript Glean.login.errorsByStage[\"server_auth\"].set(\"Invalid password\"); Recorded Errors invalid_overflow : if the string is too long, see limits below . invalid_type : if a non-string value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__. Limits Fixed maximum string length: 100. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Strings » set","id":"435","title":"set"},"436":{"body":"","breadcrumbs":"Metric types » Labeled Strings » Testing API","id":"436","title":"Testing API"},"437":{"body":"Gets the recorded value for a given label in a labeled string metric. Returns the string if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Login // Does the metric have the expected value?\nassertTrue(Login.errorsByStage[\"server_auth\"].testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Login; // Does the metric have the expected value?\nassertTrue(Login.INSTANCE.errorsByStage()[\"server_auth\"].testGetValue()); // Does the metric have the expected value?\nXCTAssert(Login.errorsByStage[\"server_auth\"].testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Does the metric have the expected value?\nassert \"Invalid password\" == metrics.login.errors_by_stage[\"server_auth\"].testGetValue()) use glean_metrics::login; // Does the metric have the expected value?\nassert!(login::errors_by_stage.get(\"server_auth\").test_get_value()); import * as login from \"./path/to/generated/files/login.js\"; // Does the metric have the expected value?\nassert.strictEqual(\"Invalid password\", await metrics.login.errorsByStage[\"server_auth\"].testGetValue()) C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_STREQ(\"Invalid password\", mozilla::glean::login::errors_by_stage.Get(\"server_auth\"_ns) .TestGetValue() .unwrap() .ref() .get()); JavaScript Assert.equal(\"Invalid password\", Glean.login.errorsByStage[\"server_auth\"].testGetValue());","breadcrumbs":"Metric types » Labeled Strings » testGetValue","id":"437","title":"testGetValue"},"438":{"body":"Gets the number of errors recorded for a given labeled string metric in total. import org.mozilla.yourApplication.GleanMetrics.Login // Were there any invalid labels?\nassertEquals( 0, Login.errorsByStage.testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n) import org.mozilla.yourApplication.GleanMetrics.Login; // Were there any invalid labels?\nassertEquals( 0, Login.INSTANCE.errorsByStage().testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n); // Were there any invalid labels?\nXCTAssertEqual(0, Login.errorsByStage.testGetNumRecordedErrors(.invalidLabel)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Were there any invalid labels?\nassert 0 == metrics.login.errors_by_stage.test_get_num_recorded_errors( ErrorType.INVALID_LABEL\n) use glean::ErrorType;\nuse glean_metrics::login; // Were there any invalid labels?\nassert_eq!( 0, login::errors_by_stage.test_get_num_recorded_errors( ErrorType::InvalidLabel )\n); import * as login from \"./path/to/generated/files/login.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Were there any invalid labels?\nassert( 0, await login.errorsByStage.testGetNumRecordedErrors(ErrorType.InvalidLabel)\n);","breadcrumbs":"Metric types » Labeled Strings » testGetNumRecordedErrors","id":"438","title":"testGetNumRecordedErrors"},"439":{"body":"Example labeled boolean metric definition: login: errors_by_stage: type: labeled_string description: Records the error type, if any, that occur in different stages of the login process. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 labels: - server_auth - enter_email ...","breadcrumbs":"Metric types » Labeled Strings » Metric parameters","id":"439","title":"Metric parameters"},"44":{"body":"Qt/QML support was added to glean_parser in version 3.5.0 . Then call glean_parser from the command line: glean_parser translate path/to/metrics.yaml path/to/pings.yaml \\ -f javascript \\ -o path/to/generated/files \\ --option platform=qt \\ --option version=0.15 The translate command will takes a list of YAML registry file paths and an output path and parse the given YAML registry files into QML JavaScript files. The generated folder will be a QML module. Make sure wherever the generated module is placed is also part of the QML Import Path . Notice that when building for Qt/QML it is mandatory to give the translate command two extra options. --option platform=qt This option is what changes the output file from standard JavaScript to QML JavaScript. --option version= The version passed to this option will be the version of the generated QML module.","breadcrumbs":"Adding Glean to your project » Qt/QML » Make sure you have the correct glean_parser version!","id":"44","title":"Make sure you have the correct glean_parser version!"},"440":{"body":"labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Strings » Extra metric parameters","id":"440","title":"Extra metric parameters"},"441":{"body":"What kinds of errors occurred at each step in the login process?","breadcrumbs":"Metric types » Labeled Strings » Data questions","id":"441","title":"Data questions"},"442":{"body":"Swift API docs: LabeledMetricType , StringMetricType Python API docs: LabeledStringMetricType , StringMetricType Rust API docs: LabeledMetric , StringMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Strings » Reference","id":"442","title":"Reference"},"443":{"body":"Strings lists are used for recording a list of Unicode string values, such as the names of the enabled search engines. Important Be careful using arbitrary strings and make sure they can't accidentally contain identifying data (like directory paths or user input).","breadcrumbs":"Metric types » String List » String List","id":"443","title":"String List"},"444":{"body":"","breadcrumbs":"Metric types » String List » Recording API","id":"444","title":"Recording API"},"445":{"body":"Add a new string to the list. import org.mozilla.yourApplication.GleanMetrics.Search Search.engines.add(\"wikipedia\")\nSearch.engines.add(\"duck duck go\") import org.mozilla.yourApplication.GleanMetrics.Search; Search.INSTANCE.engines().add(\"wikipedia\");\nSearch.INSTANCE.engines().add(\"duck duck go\"); Search.engines.add(\"wikipedia\")\nSearch.engines.add(\"duck duck go\") from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.search.engines.add(\"wikipedia\")\nmetrics.search.engines.add(\"duck duck go\") use glean_metrics::search; search::engines.add(\"wikipedia\".to_string());\nsearch::engines.add(\"duck duck go\".to_string()); Glean.search.engines.add(\"wikipedia\");\nGlean.search.engines.add(\"duck duck go\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search::engines.Add(\"wikipedia\"_ns);\nmozilla::glean::search::engines.Add(\"duck duck go\"_ns); JavaScript Glean.search.engines.add(\"wikipedia\");\nGlean.search.engines.add(\"duck duck go\"); Recorded errors invalid_overflow : if the string is too long. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_value : if the list is too long. invalid_type : if a non-string value is given. Limits Fixed maximum string length: 100. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Fixed maximum list length: 100 items. Additional strings are dropped.","breadcrumbs":"Metric types » String List » add","id":"445","title":"add"},"446":{"body":"Set the metric to a specific list of strings. An empty list is accepted. import org.mozilla.yourApplication.GleanMetrics.Search Search.engines.set(listOf(\"wikipedia\", \"duck duck go\")) import org.mozilla.yourApplication.GleanMetrics.Search; Search.INSTANCE.engines().set(listOf(\"wikipedia\", \"duck duck go\")); Search.engines.set([\"wikipedia\", \"duck duck go\"]) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.search.engines.set([\"wikipedia\", \"duck duck go\"]) use glean_metrics::search; search::engines.set(vec![\"wikipedia\".to_string(), \"duck duck go\".to_string()]) Glean.search.engines.set([\"wikipedia\", \"duck duck go\"]); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search::engines.Set({\"wikipedia\"_ns, \"duck duck go\"_ns}); JavaScript Glean.search.engines.set([\"wikipedia\", \"duck duck go\"]); Recorded errors invalid_overflow : if any string in the list is too long, see Limits below. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_value : if the list is too long, see Limits below. invalid_type : if a non-string array is given. Limits Fixed maximum string length: 100. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Fixed maximum list length: 100 items. Additional strings are dropped.","breadcrumbs":"Metric types » String List » set","id":"446","title":"set"},"447":{"body":"","breadcrumbs":"Metric types » String List » Testing API","id":"447","title":"Testing API"},"448":{"body":"Gets the recorded value for a given string list metric. Returns the list of strings if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(listOf(\"Google\", \"DuckDuckGo\"), Search.engines.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Search; assertEquals( Arrays.asList(\"Google\", \"DuckDuckGo\"), Search.INSTANCE.engines().testGetValue()\n); XCTAssertEqual([\"Google\", \"DuckDuckGo\"], Search.engines.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert [\"Google\", \"DuckDuckGo\"] == metrics.search.engines.test_get_value() use glean_metrics::search; assert_eq!( vec![\"Google\".to_string(), \"DuckDuckGo\".to_string()], search::engines.test_get_value(None).unwrap()\n); // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nconst engines = Glean.search.engines.testGetValue();\nAssert.ok(engines.includes(\"wikipedia\"));\nAssert.ok(engines.includes(\"duck duck go\")); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQUAL(mozilla::glean::search::engines.TestGetValue().isOk());\nnsTArray list = mozilla::glean::search::engines.TestGetValue().unwrap();\nASSERT_TRUE(list.Contains(\"wikipedia\"_ns));\nASSERT_TRUE(list.Constains(\"duck duck go\"_ns)); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nconst engines = Glean.search.engines.testGetValue();\nAssert.ok(engines.includes(\"wikipedia\"));\nAssert.ok(engines.includes(\"duck duck go\"));","breadcrumbs":"Metric types » String List » testGetValue","id":"448","title":"testGetValue"},"449":{"body":"Gets the number of errors recorded for a given string list metric. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals( 0, Search.engines.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Search; assertEquals( 0, Search.INSTANCE.engines().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Were any of the values too long, and thus an error was recorded?\nXCTAssertEqual(0, Search.engines.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.search.engines.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::search; assert_eq!( 0, search::engines.test_get_num_recorded_errors(ErrorType::InvalidValue)\n);","breadcrumbs":"Metric types » String List » testGetNumRecordedErrors","id":"449","title":"testGetNumRecordedErrors"},"45":{"body":"","breadcrumbs":"Adding Glean to your project » Qt/QML » Automation steps","id":"45","title":"Automation steps"},"450":{"body":"Example string list metric definition: search: engines: type: string_list description: > Records the name of the enabled search engines. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » String List » Metric parameters","id":"450","title":"Metric parameters"},"451":{"body":"N/A","breadcrumbs":"Metric types » String List » Extra metric parameters","id":"451","title":"Extra metric parameters"},"452":{"body":"Which search engines are enabled?","breadcrumbs":"Metric types » String List » Data questions","id":"452","title":"Data questions"},"453":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » String List » Reference","id":"453","title":"Reference"},"454":{"body":"Timespans are used to make a measurement of how much time is spent in a particular task. Irrespective of the timespan's lifetime, both start and stop must occur within the same application session. To measure the distribution of multiple timespans, see Timing Distributions . To record absolute times, see Datetimes . It is not recommended to use timespans in multiple threads, since calling start or stop out of order will be recorded as an invalid_state error.","breadcrumbs":"Metric types » Timespan » Timespan","id":"454","title":"Timespan"},"455":{"body":"","breadcrumbs":"Metric types » Timespan » Recording API","id":"455","title":"Recording API"},"456":{"body":"Starts tracking time. Uses an internal monotonic timer. import org.mozilla.yourApplication.GleanMetrics.Auth fun onShowLogin() { Auth.loginTime.start() // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void onShowLogin() { Auth.INSTANCE.loginTime().start(); // ...\n} func onShowLogin() { Auth.loginTime.start() // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def on_show_login(): metrics.auth.login_time.start() # ... use glean_metrics::auth; fn show_login() { auth::login_time.start(); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onShowLogin() { auth.loginTime.start(); // ...\n} C++ #include \"mozilla/glean/GleanMetrics.h\"\nvoid OnShowLogin() { mozilla::glean::auth::login_time.Start(); // ...\n} JavaScript function onShowLogin() { Glean.auth.loginTime.start(); // ...\n} Recorded errors invalid_state : If the metric is already tracking time (start has already been called and not canceled). Limits The maximum resolution of the elapsed duration is limited by the clock used on each platform. This also determines the behavior of a timespan over sleep: On Android, the SystemClock.elapsedRealtimeNanos() function is used, so it is limited by the accuracy and performance of that timer. The time measurement includes time spent in sleep. On iOS, the mach_absolute_time function is used, so it is limited by the accuracy and performance of that timer. The time measurement does not include time spent in sleep. On Python 3.7 and later, time.monotonic_ns() is used. On earlier versions of Python, time.monotonics() is used, which is not guaranteed to have nanosecond resolution. On other platforms time::precise_time_ns is used, which uses a high-resolution performance counter in nanoseconds provided by the underlying platform.","breadcrumbs":"Metric types » Timespan » start","id":"456","title":"start"},"457":{"body":"Stops tracking time. The metric value is set to the elapsed time. import org.mozilla.yourApplication.GleanMetrics.Auth fun onLogin() { Auth.loginTime.stop() // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void onLogin() { Auth.INSTANCE.loginTime().stop(); // ...\n} func onLogin() { Auth.loginTime.stop() // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def on_login(): metrics.auth.login_time.stop() # ... use glean_metrics::auth;; fn login() { auth::login_time.stop(); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onLogin() { auth.login_time.stop(); // ...\n} C++ #include \"mozilla/glean/GleanMetrics.h\"\nvoid OnLogin() { mozilla::glean::auth::login_time.Stop(); // ...\n} JavaScript function onLogin() { Glean.auth.loginTime.stop(); // ...\n} Recorded errors invalid_state : Calling stop without calling start first, e.g. if the start happened on a previous application run.","breadcrumbs":"Metric types » Timespan » stop","id":"457","title":"stop"},"458":{"body":"Cancels a previous start. No error is recorded if there was no previous start. import org.mozilla.yourApplication.GleanMetrics.Auth fun onLoginCancel() { Auth.loginTime.cancel() // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void onLoginCancel() { Auth.INSTANCE.loginTime().cancel(); // ...\n} func onLoginCancel() { Auth.loginTime.cancel() // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def on_login_cancel(): metrics.auth.login_time.cancel() # ... use glean_metrics::auth; fn login_cancel() { auth::login_time.cancel(); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onLoginCancel() { auth.login_time.cancel(); // ...\n} C++ #include \"mozilla/glean/GleanMetrics.h\"\nvoid OnLoginCancel() { mozilla::glean::auth::login_time.Cancel(); // ...\n} JavaScript function onLoginCancel() { Glean.auth.loginTime.cancel(); // ...\n}","breadcrumbs":"Metric types » Timespan » cancel","id":"458","title":"cancel"},"459":{"body":"Some languages support convenient auto timing of blocks of code. measure is treated as a start and stop pair for the purposes of error recording. Exceptions (if present in the language) are treated as a cancel. import org.mozilla.yourApplication.GleanMetrics.Auth Auth.loginTime.measure { // Process login flow\n} import org.mozilla.yourApplication.GleanMetrics.Auth Auth.INSTANCE.loginTime().measure() -> { // Process login flow return null;\n}); Auth.loginTime.measure { // Process login flow\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") with metrics.auth.login_time.measure(): # ... Do the login ...","breadcrumbs":"Metric types » Timespan » measure","id":"459","title":"measure"},"46":{"body":"Prefer using the Glean Dictionary While it is still possible to generate Markdown documentation, if working on a public Mozilla project rely on the Glean Dictionary for documentation. Your product will be automatically indexed by the Glean Dictionary after it gets enabled in the pipeline. One of the commands provided by glean_parser allows users to generate Markdown documentation based on the contents of their YAML registry files. To perform that translation, use the translate command with a different output format, as shown below. glean_parser translate path/to/metrics.yaml path/to/pings.yaml \\ -f markdown \\ -o path/to/docs","breadcrumbs":"Adding Glean to your project » Qt/QML » Documentation","id":"46","title":"Documentation"},"460":{"body":"Explicitly sets the timespan's value. Regardless of the time unit chosen for the metric, this API expects the raw value to be in nanoseconds .","breadcrumbs":"Metric types » Timespan » setRawNanos","id":"460","title":"setRawNanos"},"461":{"body":"This API should only be used if the code being instrumented cannot make use of start, stop, and cancel or measure. Time is hard, and this API can't help you with it. import org.mozilla.yourApplication.GleanMetrics.Auth fun afterLogin(loginElapsedNs: Long) { Auth.loginTime.setRawNanos(loginElapsedNs) // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void afterLogin(long loginElapsedNs) { Auth.INSTANCE.loginTime().setRawNanos(loginElapsedNs); // ...\n} func afterLogin(_ loginElapsedNs: UInt64) { Auth.loginTime.setRawNanos(loginElapsedNs) // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def after_login(login_elapsed_ns): metrics.auth.login_time.set_raw_nanos(login_elapsed_ns) # ... use std::time::duration;\nuse glean_metrics::auth; fn after_login(login_elapsed: Duration) { auth::login_time.set_raw(login_elapsed); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onAfterLogin(loginElapsedNs) { auth.loginTime.setRawNanos(loginElapsedNs); // ...\n}","breadcrumbs":"Metric types » Timespan » Only use this if you have to","id":"461","title":"Only use this if you have to"},"462":{"body":"Firefox Desktop's setRaw uses the units specified in the metric definition. e.g. if the Timespan's time_unit is millisecond, then the duration parameter is a count of milliseconds. C++ #include \"mozilla/glean/GleanMetrics.h\" void AfterLogin(uint32_t aDuration) { mozilla::glean::auth::login_time.SetRaw(aDuration); // ...\n} JavaScript function afterLogin(aDuration) { Glean.auth.loginTime.setRaw(aDuration); // ...\n} Recorded errors invalid_value : if attempting to record a negative elapsed duration. invalid_state : if this method is called after calling start or this method is called multiple times. invalid_type : if a negative, floating point or non-number value is given.","breadcrumbs":"Metric types » Timespan » These are different","id":"462","title":"These are different"},"463":{"body":"","breadcrumbs":"Metric types » Timespan » Testing API","id":"463","title":"Testing API"},"464":{"body":"Get the currently-stored value. Returns the timespan as a integer in the metric's time unit if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Auth assertTrue(Auth.loginTime.testGetValue() > 0) import org.mozilla.yourApplication.GleanMetrics.Auth; assertTrue(Auth.INSTANCE.loginTime().testGetValue() > 0); XCTAssert(Auth.loginTime.testGetValue() > 0) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert metrics.auth.login_time.test_get_value() > 0 use glean_metrics::auth; assert!(auth::login_time.test_get_value(None).unwrap() > 0); import * as auth from \"./path/to/generated/files/auth.js\"; assert(await auth.loginTime.testGetValue() > 0); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_TRUE(mozilla::glean::auth::login_time.TestGetValue().isOk());\nASSERT_GE(mozilla::glean::auth::login_time.TestGetValue().unwrap().value(), 0); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.ok(Glean.auth.loginTime.testGetValue() > 0);","breadcrumbs":"Metric types » Timespan » testGetValue","id":"464","title":"testGetValue"},"465":{"body":"Gets the number of errors recorded during operations on this metric. import org.mozilla.yourApplication.GleanMetrics.Auth assertEquals( 0, Auth.loginTime.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Auth; assertEquals( 0, Auth.INSTANCE.loginTime().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Auth.loginTime.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.auth.local_time.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean_metrics::auth; assert_eq!(1, auth::login_time.test_get_num_recorded_errors(ErrorType::InvalidValue)); import * as auth from \"./path/to/generated/files/auth.js\";\nimport { ErrorType } from \"@mozilla/glean/error\";; assert.strictEqual( 1, await auth.loginTime.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Timespan » testGetNumRecordedErrors","id":"465","title":"testGetNumRecordedErrors"},"466":{"body":"Example timespan metric definition: auth: login_time: type: timespan description: > Measures the time spent logging in. time_unit: millisecond bugs: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-01-01 data_sensitivity: - interaction For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Timespan » Metric parameters","id":"466","title":"Metric parameters"},"467":{"body":"time_unit Timespans have an optional time_unit parameter to specify the smallest unit of resolution that the timespan will record. The allowed values for time_unit are: nanosecond microsecond millisecond (default) second minute hour day Consider the resolution that is required by your metric, and use the largest possible value that will provide useful information so as to not leak too much fine-grained information from the client.","breadcrumbs":"Metric types » Timespan » Extra metric parameters","id":"467","title":"Extra metric parameters"},"468":{"body":"It is important to note that the value sent in the ping is truncated down to the nearest unit. Therefore, a measurement of 500 nanoseconds will be truncated to 0 microseconds.","breadcrumbs":"Metric types » Timespan » Values are truncated","id":"468","title":"Values are truncated"},"469":{"body":"How long did it take for the user to log in?","breadcrumbs":"Metric types » Timespan » Data questions","id":"469","title":"Data questions"},"47":{"body":"glean_parser includes a \"linter\" for the YAML registry files called the glinter that catches a number of common mistakes in these files. To run the linter use the glinter command. glean_parser glinter path/to/metrics.yaml path/to/pings.yaml","breadcrumbs":"Adding Glean to your project » Qt/QML » YAML registry files linting","id":"47","title":"YAML registry files linting"},"470":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Timespan » Reference","id":"470","title":"Reference"},"471":{"body":"Timing distributions are used to accumulate and store time measurement, for analyzing distributions of the timing data. To measure the distribution of single timespans, see Timespans . To record absolute times, see Datetimes . Timing distributions are recorded in a histogram where the buckets have an exponential distribution, specifically with 8 buckets for every power of 2. That is, the function from a value \\( x \\) to a bucket index is: \\[ \\lfloor 8 \\log_2(x) \\rfloor \\] This makes them suitable for measuring timings on a number of time scales without any configuration. Note Check out how this bucketing algorithm would behave on the Simulator . Timings always span the full length between start and stopAndAccumulate. If the Glean upload is disabled when calling start, the timer is still started. If the Glean upload is disabled at the time stopAndAccumulate is called, nothing is recorded. Multiple concurrent timings in different threads may be measured at the same time. Timings are always stored and sent in the payload as nanoseconds. However, the time_unit parameter controls the minimum and maximum values that will recorded: nanosecond: 1ns <= x <= 10 minutes microsecond: 1μs <= x <= ~6.94 days millisecond: 1ms <= x <= ~19 years Overflowing this range is considered an error and is reported through the error reporting mechanism. Underflowing this range is not an error and the value is silently truncated to the minimum value. Additionally, when a metric comes from GeckoView (the geckoview_datapoint parameter is present), the time_unit parameter specifies the unit that the samples are in when passed to Glean. Glean will convert all of the incoming samples to nanoseconds internally.","breadcrumbs":"Metric types » Timing Distribution » Timing Distribution","id":"471","title":"Timing Distribution"},"472":{"body":"","breadcrumbs":"Metric types » Timing Distribution » Recording API","id":"472","title":"Recording API"},"473":{"body":"Start tracking time for the provided metric. Multiple timers can run simultaneously. Returns a unique TimerId for the new timer. import mozilla.components.service.glean.GleanTimerId\nimport org.mozilla.yourApplication.GleanMetrics.Pages val timerId : GleanTimerId fun onPageStart(e: Event) { timerId = Pages.pageLoad.start()\n} import mozilla.components.service.glean.GleanTimerId;\nimport org.mozilla.yourApplication.GleanMetrics.Pages; GleanTimerId timerId; void onPageStart(Event e) { timerId = Pages.INSTANCE.pageLoad().start();\n} import Glean var timerId : GleanTimerId func onPageStart() { timerId = Pages.pageLoad.start()\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def __init__(self): self.timer_id = None def on_page_start(self, event): self.timer_id = metrics.pages.page_load.start() use glean_metrics::pages; fn on_page_start() { self.timer_id = pages::page_load.start();\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageStart() { // store this ID, you will need it later to stop or cancel your timer const timerId = pages.pageLoad.start();\n} C++ #include \"mozilla/glean/GleanMetrics.h\" auto timerId = mozilla::glean::pages::page_load.Start(); JavaScript let timerId = Glean.pages.pageLoad.start();","breadcrumbs":"Metric types » Timing Distribution » start","id":"473","title":"start"},"474":{"body":"Stops tracking time for the provided metric and associated timer id. Adds a count to the corresponding bucket in the timing distribution. This will record an error if start was not called. import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageLoaded(e: Event) { Pages.pageLoad.stopAndAccumulate(timerId)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; void onPageLoaded(Event e) { Pages.INSTANCE.pageLoad().stopAndAccumulate(timerId);\n} import Glean func onPageLoaded() { Pages.pageLoad.stopAndAccumulate(timerId)\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_loaded(self, event): metrics.pages.page_load.stop_and_accumulate(self.timer_id) use glean_metrics::pages; fn on_page_loaded() { pages::page_load.stop_and_accumulate(self.timer_id);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageLoaded() { pages.pageLoad.stopAndAccumulate(timerId);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.StopAndAccumulate(std::move(timerId)); JavaScript Glean.pages.pageLoad.stopAndAccumulate(timerId);","breadcrumbs":"Metric types » Timing Distribution » stopAndAccumulate","id":"474","title":"stopAndAccumulate"},"475":{"body":"Accumulates the provided signed samples in the metric. This is required so that the platform-specific code can provide us with 64 bit signed integers if no u64 comparable type is available. This will take care of filtering and reporting errors for any provided negative sample. Please note that this assumes that the provided samples are already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then samples are assumed to be in that unit). import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageLoaded(e: Event) { Pages.pageLoad.accumulateSamples(samples)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; void onPageLoaded(Event e) { Pages.INSTANCE.pageLoad().accumulateSamples(samples);\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_loaded(self, event): metrics.pages.page_load.accumulate_samples(samples) use glean_metrics::pages; fn on_page_loaded() { pages::page_load.accumulate_samples(samples);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageLoaded() { pages.pageLoad.accumulateSamples(samples);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.AccumulateRawSamples(samples); JavaScript Glean.pages.pageLoad.accumulateSamples(samples);","breadcrumbs":"Metric types » Timing Distribution » accumulateSamples","id":"475","title":"accumulateSamples"},"476":{"body":"Accumulates a single signed sample and appends it to the metric. Prefer this for the common use case of having a single value to avoid having to pass a collection over a foreign language interface. A signed value is required so that the platform-specific code can provide us with a 64 bit signed integer if no u64 comparable type is available. This will take care of filtering and reporting errors for a negative sample. Please note that this assumes that the provided sample is already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then sample is assumed to be in that unit). import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageLoaded(e: Event) { Pages.pageLoad.accumulateSingleSample(sample)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; void onPageLoaded(Event e) { Pages.INSTANCE.pageLoad().accumulateSingleSample(sample);\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_loaded(self, event): metrics.pages.page_load.accumulate_single_sample(sample) use glean_metrics::pages; fn on_page_loaded() { pages::page_load.accumulate_single_sample(sample);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageLoaded() { pages.pageLoad.accumulateSingleSample(sample);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.AccumulateRawDuration(aDuration); JavaScript Glean.pages.pageLoad.accumulateSingleSample(sample); Limits Samples are limited to the maximum value for the given time unit. Only non-negative values may be recorded (>= 0). Negative values are discarded and an ErrorType::InvalidValue is generated for each instance. Samples that are longer than maximum sample time for the given unit generate an ErrorType::InvalidOverflow error for each instance. Recorded errors invalid_value : If recording a negative timespan. invalid_state : If a non-existing/stopped timer is stopped again. invalid_overflow : If recording a time longer than the maximum for the given unit.","breadcrumbs":"Metric types » Timing Distribution » accumulateSingleSample","id":"476","title":"accumulateSingleSample"},"477":{"body":"For convenience one can measure the time of a function or block of code. import org.mozilla.yourApplication.GleanMetrics.Pages Pages.pageLoad.measure { // Load a page\n} import Glean Pages.pageLoad.measure { // Load a page\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") with metrics.pages.page_load.measure(): # Load a page","breadcrumbs":"Metric types » Timing Distribution » measure","id":"477","title":"measure"},"478":{"body":"Aborts a previous start call. No error is recorded if start was not called. import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageError(e: Event) { Pages.pageLoad.cancel(timerId)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; fun onPageError(e: Event) { Pages.INSTANCE.pageLoad().cancel(timerId);\n} import Glean func onPageError() { Pages.pageLoad.cancel(timerId)\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_error(self, event): metrics.pages.page_load.cancel(self.timer_id) use glean_metrics::pages; fn on_page_error() { pages::page_load.cancel(self.timer_id);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageError() { pages.pageLoad.cancel(timerId);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.Cancel(std::move(timerId)); JavaScript Glean.pages.pageLoad.cancel(timerId);","breadcrumbs":"Metric types » Timing Distribution » cancel","id":"478","title":"cancel"},"479":{"body":"","breadcrumbs":"Metric types » Timing Distribution » Testing API","id":"479","title":"Testing API"},"48":{"body":"By default, the Glean.js QML module uses a minified version of the Glean.js library. It may be useful to use the unminified version of the library in order to get proper line numbers and function names when debugging crashes. The bundle provided contains the unminified version of the library. In order to use it, open the glean.js file inside the included module and change the line: .import \"glean.lib.js\" as Glean to .import \"glean.dev.js\" as Glean","breadcrumbs":"Adding Glean to your project » Qt/QML » Debugging","id":"48","title":"Debugging"},"480":{"body":"Gets the recorded value for a given timing distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Pages // Get snapshot.\nval snapshot = Pages.pageLoad.testGetValue() // Does the sum have the expected value?\nassertEquals(11, snapshot.sum) // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.count) import org.mozilla.yourApplication.GleanMetrics.Pages; // Get snapshot.\nDistributionData snapshot = pages.INSTANCE.pageLoad().testGetValue(); // Does the sum have the expected value?\nassertEquals(11, snapshot.sum); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.getCount()); // Get snapshot.\nlet snapshot = pages.pageLoad.testGetValue() // Does the sum have the expected value?\nXCTAssertEqual(11, snapshot.sum) // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nXCTAssertEqual(2, snapshot.count) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Get snapshot.\nsnapshot = metrics.pages.page_load.test_get_value() # Does the sum have the expected value?\nassert 11 == snapshot.sum # Usually you don't know the exact timing values,\n# but how many should have been recorded.\nassert 2 == snapshot.count use glean::ErrorType;\nuse glean_metrics::pages; // Get snapshot\nlet snapshot = pages::page_load.test_get_value(None).unwrap(); // Does the sum have the expected value?\nassert_eq!(11, snapshot.sum); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassert_eq!(2, snapshot.count); import * as pages from \"./path/to/generated/files/pages.js\"; const snapshot = await pages.pageLoad.testGetValue(); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassert.equal(1, snapshot.count); C++ #include \"mozilla/glean/GleanMetrics.h\" // Does it have an expected values?\nconst data = mozilla::glean::pages::page_load.TestGetValue().value().unwrap();\nASSERT_TRUE(data.sum > 0); JavaScript Assert.ok(Glean.pages.pageLoad.testGetValue().sum > 0);","breadcrumbs":"Metric types » Timing Distribution » testGetValue","id":"480","title":"testGetValue"},"481":{"body":"Gets the number of errors recorded for a given timing distribution metric. import org.mozilla.yourApplication.GleanMetrics.Pages // Assert that no errors were recorded.\nassertEquals( 0, Pages.pageLoad.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Pages; // Assert that no errors were recorded.\nassertEquals( 0, Pages.INSTANCE.pageLoad().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Assert that no errors were recorded.\nXCTAssertEqual(0, Pages.pageLoad.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Assert that no errors were recorded.\nassert 0 == metrics.pages.page_load.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::pages; assert_eq!( 0, pages::page_load.test_get_num_recorded_errors(ErrorType::InvalidValue)\n); import * as pages from \"./path/to/generated/files/pages.js\";\nimport { ErrorType } from \"@mozilla/glean/\"; assert.equal(1, await pages.pageLoad.testGetNumRecordedErrors(ErrorType.InvalidValue));","breadcrumbs":"Metric types » Timing Distribution » testGetNumRecordedErrors","id":"481","title":"testGetNumRecordedErrors"},"482":{"body":"Example timing distribution metric definition: pages: page_load: type: timing_distribution time_unit: millisecond description: > Counts how long each page takes to load bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01","breadcrumbs":"Metric types » Timing Distribution » Metric parameters","id":"482","title":"Metric parameters"},"483":{"body":"time_unit Timing distributions have an optional time_unit parameter to specify the smallest unit of resolution that the timespan will record. The allowed values for time_unit are: nanosecond (default) microsecond millisecond second minute hour day","breadcrumbs":"Metric types » Timing Distribution » Extra metric parameters","id":"483","title":"Extra metric parameters"},"484":{"body":"Timings are recorded in nanoseconds. On Android, the SystemClock.elapsedRealtimeNanos() function is used, so it is limited by the accuracy and performance of that timer. The time measurement includes time spent in sleep. On iOS, the mach_absolute_time function is used, so it is limited by the accuracy and performance of that timer. The time measurement does not include time spent in sleep. On Python 3.7 and later, time.monotonic_ns() is used. On earlier versions of Python, time.monotonics() is used, which is not guaranteed to have nanosecond resolution. In Rust, time::precise_time_ns() is used. The maximum timing value that will be recorded depends on the time_unit parameter: nanosecond: 1ns <= x <= 10 minutes microsecond: 1μs <= x <= ~6.94 days millisecond: 1ms <= x <= ~19 years Longer times will be truncated to the maximum value and an error will be recorded.","breadcrumbs":"Metric types » Timing Distribution » Limits","id":"484","title":"Limits"},"485":{"body":"How long does it take a page to load?","breadcrumbs":"Metric types » Timing Distribution » Data questions","id":"485","title":"Data questions"},"486":{"body":"Swift API docs Python API docs","breadcrumbs":"Metric types » Timing Distribution » Reference","id":"486","title":"Reference"},"487":{"body":"Please, insert your custom data below as a JSON array. Data options Generate normally distributed data Generate log-normally distributed data Generate uniformly distributed data Use custom data Properties Histogram type Functional Log base Buckets per magnitude Maximum value Time unit (time_unit) Nanoseconds Microseconds Milliseconds Note The data provided , is assumed to be in the configured time unit. The data recorded , on the other hand, is always in nanoseconds . This means that, if the configured time unit is not nanoseconds, the data will be transformed before being recorded. Notice this, by using the select field above to change the time unit and see the mean of the data recorded changing. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Timing Distribution » Simulator","id":"487","title":"Simulator"},"488":{"body":"Labeled timing distributions are used to record different related distributions of time measurements. See the Timing Distribution reference for details on bucket distribution, specifics about how Glean records time, and a histogram simulator.","breadcrumbs":"Metric types » Labeled Timing Distributions » Labeled Timing Distributions","id":"488","title":"Labeled Timing Distributions"},"489":{"body":"","breadcrumbs":"Metric types » Labeled Timing Distributions » Recording API","id":"489","title":"Recording API"},"49":{"body":"","breadcrumbs":"Adding Glean to your project » Qt/QML » Troubleshooting","id":"49","title":"Troubleshooting"},"490":{"body":"Start tracking time for the provided metric for the given label. Multiple timers for multiple labels can run simultaneously. Returns a unique TimerId for the new timer. use glean_metrics::devtools; self.start = devtools::cold_toolbox_open_delay .get(toolbox_id) .start(); C++ #include \"mozilla/glean/GleanMetrics.h\" auto timerId = mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .Start(); JavaScript const timerId = Glean.devtools.coldToolboxOpenDelay[toolbox_id].start(); Recorded Errors invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » start","id":"490","title":"start"},"491":{"body":"Stops tracking time for the provided timer from the metric for the given label. Adds a count to the corresponding bucket in the label's timing distribution. Do not use the provided TimerId after passing it to this method. use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .stop_and_accumulate(self.start); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .StopAndAccumulate(std::move(timerId)); JavaScript Glean.devtools.coldToolboxOpenDelay[toolbox_id].stopAndAccumulate(timerId); Recorded errors invalid_state : If a non-existing, cancelled, or already-stopped timer is stopped again. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » stopAndAccumulate","id":"491","title":"stopAndAccumulate"},"492":{"body":"Aborts a previous start call, consuming the supplied timer id. use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .cancel(self.start); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .Cancel(std::move(timerId)); JavaScript Glean.devtools.coldToolboxOpenDelay[toolbox_id].cancel(timerId); Recorded errors invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » cancel","id":"492","title":"cancel"},"493":{"body":"Accumulates the provided, signed samples in the metric for a given label. Where possible, have Glean do the timing for you and don't use methods like this one. If you are doing timing yourself, ensure your time source is monotonic and behaves consistently across platforms. This is required so that the platform-specific code can provide us with 64 bit signed integers if no u64 comparable type is available. This will take care of filtering and reporting errors for any provided negative sample. Please note that this assumes that the provided samples are already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then samples are assumed to be in that unit). use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .accumulate_samples(samples); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .AccumulateRawSamples(samples); JavaScript Glean.devtools.coldToolboxOpenDelay[toolboxId].accumulateSamples(samples); Recorded errors invalid_value : If recording a negative sample. invalid_overflow : If recording a sample longer than the maximum for the given time_unit. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » accumulateSamples","id":"493","title":"accumulateSamples"},"494":{"body":"Accumulates a single signed sample and appends it to the metric for the provided label. Prefer start() and stopAndAccumulate() where possible, but if you must record time externally please prefer this method for individual samples (avoids having to allocate and pass collections). A signed value is required so that the platform-specific code can provide us with a 64 bit signed integer if no u64 comparable type is available. This will take care of filtering and reporting errors for a negative sample. Please note that this assumes that the provided sample is already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then sample is assumed to be in that unit). use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .accumulate_single_sample(sample); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolboxId) .AccumulateRawDuration(aDuration); JavaScript Glean.devtools.coldToolboxOpenDelay[toolboxId].accumulateSamples(sample); Recorded errors invalid_value : If recording a negative sample. invalid_overflow : If recording a sample longer than the maximum for the given time_unit. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » accumulateSingleSample","id":"494","title":"accumulateSingleSample"},"495":{"body":"","breadcrumbs":"Metric types » Labeled Timing Distributions » Testing API","id":"495","title":"Testing API"},"496":{"body":"Gets the recorded value for a given label in a labeled timing distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::devtools; // Get the current snapshot of stored values.\nlet snapshot = devtools::cold_toolbox_open_delay.get(\"webconsole\").test_get_value(None).unwrap(); // Usually you don't know the exact timing values,\n// but you do know how many samples there are:\nassert_eq!(2, snapshot.count);\n// ...and the lower bound of how long they all took:\nassert_ge!(400, snapshot.sum); C++ #include \"mozilla/glean/GleanMetrics.h\" const data = mozilla::glean::devtools::cold_toolbox_open_delay .Get(\"webconsole\"_ns) .TestGetValue().value().unwrap();\nASSERT_TRUE(data.sum > 0); JavaScript Assert.ok(Glean.devtools.coldToolboxOpenDelay[\"webconsole\"].testGetValue().sum > 0);","breadcrumbs":"Metric types » Labeled Timing Distributions » testGetValue","id":"496","title":"testGetValue"},"497":{"body":"Gets the number of errors recorded for a given labeled timing distribution metric in total. use glean::ErrorType;\nuse glean_metrics::network; // Assert there were no negative values instrumented.\nassert_eq!( 0, devtools::cold_toolbox_open_delay.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Timing Distributions » testGetNumRecordedErrors","id":"497","title":"testGetNumRecordedErrors"},"498":{"body":"Example labeled timing distribution metric definition: devtools: cold_toolbox_open_delay: type: labeled_timing_distribution description: > Time taken to open the first DevTools toolbox, per tool being opened. time_unit: millisecond bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 175 labels: - inspector - webconsole - jsdebugger ...","breadcrumbs":"Metric types » Labeled Timing Distributions » Metric parameters","id":"498","title":"Metric parameters"},"499":{"body":"time_unit Labeled timing distributions have an optional time_unit parameter to specify the smallest unit of resolution that it will record. The allowed values for time_unit are: nanosecond (default) microsecond millisecond second minute hour day labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Timing Distributions » Extra metric parameters","id":"499","title":"Extra metric parameters"},"5":{"body":"Glossary In this book we use a lot of Glean specific terminology. In the glossary, we go through many of the terms used throughout this book and describe exactly what we mean when we use them. Changelog This section contains detailed notes about changes in Glean, per release. This Week in Glean “This Week in Glean” is a series of blog posts that the Glean Team at Mozilla is using to try to communicate better about our work. They could be release notes, documentation, hopes, dreams, or whatever: so long as it is inspired by Glean. Contribution Guidelines This section contains detailed information on where and how to include new content to this book.","breadcrumbs":"Glean » Appendix","id":"5","title":"Appendix"},"50":{"body":"The submitPing function hits a known bug in the Qt JavaScript interpreter. This bug is only reproduced in iOS devices, it does not happen in emulators. It also only happens when using the Qt debug library for iOS . There is no way around this bug other than avoiding the Qt debug library for iOS altogether until it is fixed. Refer to the the Qt debugging documentation on how to do that. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Qt/QML » submitPing may cause crashes when debugging iOS devices","id":"50","title":"submitPing may cause crashes when debugging iOS devices"},"500":{"body":"What is the distribution of initial load times of devtools toolboxes, per tool? What is the distribution of how long it takes to load extensions' content scripts, by addon id?","breadcrumbs":"Metric types » Labeled Timing Distributions » Data questions","id":"500","title":"Data questions"},"501":{"body":"Timings are recorded in nanoseconds In Rust, time::precise_time_ns() is used. The maximum timing value that will be recorded depends on the time_unit parameter: nanosecond: 1ns <= x <= 10 minutes microsecond: 1μs <= x <= ~6.94 days millisecond: 1ms <= x <= ~19 years Longer times will be truncated to the maximum value and an error will be recorded. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » Limits","id":"501","title":"Limits"},"502":{"body":"Rust API docs: LabeledMetric , TimingDistributionMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Timing Distributions » Reference","id":"502","title":"Reference"},"503":{"body":"Memory distributions are used to accumulate and store memory sizes. Memory distributions are recorded in a histogram where the buckets have an exponential distribution, specifically with 16 buckets for every power of 2. That is, the function from a value \\( x \\) to a bucket index is: \\[ \\lfloor 16 \\log_2(x) \\rfloor \\] This makes them suitable for measuring memory sizes on a number of different scales without any configuration. Note Check out how this bucketing algorithm would behave on the Simulator .","breadcrumbs":"Metric types » Memory Distribution » Memory Distribution","id":"503","title":"Memory Distribution"},"504":{"body":"","breadcrumbs":"Metric types » Memory Distribution » Recording API","id":"504","title":"Recording API"},"505":{"body":"Accumulates the provided sample in the metric. import org.mozilla.yourApplication.GleanMetrics.Memory fun allocateMemory(nbytes: Int) { // ... Memory.heapAllocated.accumulate(nbytes / 1024)\n} import org.mozilla.yourApplication.GleanMetrics.Memory; fun allocateMemory(nbytes: Int) { // ... Memory.INSTANCE.heapAllocated().accumulate(nbytes / 1024);\n} import Glean func allocateMemory(nbytes: UInt64) { // ... Memory.heapAllocated.accumulate(nbytes / 1024)\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def allocate_memory(nbytes): # ... metrics.memory.heap_allocated.accumulate(nbytes / 1024) use glean_metrics::memory; fn allocate_memory(bytes: u64) { // ... memory::heap_allocated.accumulate(bytes / 1024);\n} import * as memory from \"./path/to/generated/files/memory.js\"; function allocateMemory() { // ... memory.heapAllocated.accumulate(nbytes / 1024);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::memory::heap_allocated.Accumulate(bytes / 1024); JavaScript Glean.memory.heapAllocated.accumulate(bytes / 1024); Recorded errors invalid_value : If recording a negative memory size. invalid_value : If recording a size larger than 1 TB.","breadcrumbs":"Metric types » Memory Distribution » accumulate","id":"505","title":"accumulate"},"506":{"body":"","breadcrumbs":"Metric types » Memory Distribution » Testing API","id":"506","title":"Testing API"},"507":{"body":"Gets the recorded value for a given memory distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Memory // Get snapshot\nval snapshot = Memory.heapAllocated.testGetValue() // Does the sum have the expected value?\nassertEquals(11, snapshot.sum) // Usually you don't know the exact memory values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.count) import org.mozilla.yourApplication.GleanMetrics.Memory; // Get snapshot\nval snapshot = Memory.INSTANCE.heapAllocated().testGetValue(); // Does the sum have the expected value?\nassertEquals(11, snapshot.sum); // Usually you don't know the exact memory values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.getCount()); // Get snapshot\nlet snapshot = try! Memory.heapAllocated.testGetValue() // Does the sum have the expected value?\nXCTAssertEqual(11, snapshot.sum) // Usually you don't know the exact memory values,\n// but how many should have been recorded.\nXCTAssertEqual(2, snapshot.count) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Get snapshot.\nsnapshot = metrics.memory.heap_allocated.test_get_value() # Does the sum have the expected value?\nassert 11 == snapshot.sum # Usually you don't know the exact memory values,\n# but how many should have been recorded.\nassert 2 == snapshot.count use glean::ErrorType;\nuse glean_metrics::memory; // Get snapshot\nlet snapshot = memory::heap_allocated.test_get_value(None).unwrap(); // Does the sum have the expected value?\nassert_eq!(11, snapshot.sum); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassert_eq!(2, snapshot.count); import * as memory from \"./path/to/generated/files/memory.js\"; // Get snapshot\nconst snapshot = await memory.heapAllocated.testGetValue(); // Does the sum have the expected value?\nassert.equal(11, snapshot.sum); // Usually you don't know the exact memory values,\n// but know how many should have been recorded.\nassert.equal(2, snapshot.count); C++ #include \"mozilla/glean/GleanMetrics.h\" // Does it have an expected values?\nconst data = mozilla::glean::memory::heap_allocated.TestGetValue().value().unwrap()\nASSERT_EQ(11 * 1024, data.sum); JavaScript const data = Glean.memory.heapAllocated.testGetValue();\nAssert.equal(11 * 1024, data.sum);","breadcrumbs":"Metric types » Memory Distribution » testGetValue","id":"507","title":"testGetValue"},"508":{"body":"Gets the number of errors recorded for a given memory distribution metric. import org.mozilla.yourApplication.GleanMetrics.Memory // Did this record a negative value?\nassertEquals( 0, Memory.heapAllocated.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Memory; // Assert that no errors were recorded.\nassertEquals( 0, Memory.INSTANCE.heapAllocated().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Did this record a negative value?\nXCTAssertEqual(0, Memory.heapAllocated.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Did this record a negative value?\nassert 0 == metrics.memory.heap_allocated.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::pages; assert_eq!( 0, pages::page_load.test_get_num_recorded_errors(ErrorType::InvalidValue)\n); import * as memory from \"./path/to/generated/files/memory.js\";\nimport { ErrorType } from \"@mozilla/glean/\"; // Did this record a negative value?\nassert.equal( 0, await memory.heapAllocated.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Memory Distribution » testGetNumRecordedErrors","id":"508","title":"testGetNumRecordedErrors"},"509":{"body":"Example memory distribution metric definition: memory: heap_allocated: type: memory_distribution memory_unit: kilobyte description: > The heap memory allocated bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01","breadcrumbs":"Metric types » Memory Distribution » Metric parameters","id":"509","title":"Metric parameters"},"51":{"body":"Glean enables the collection of behavioral metrics through events in server environments. This method does not rely on the Glean SDK but utilizes the Glean parser to generate native code for logging events in a standard format compatible with the ingestion pipeline.","breadcrumbs":"Adding Glean to your project » Server » Adding Glean to your Server Application","id":"51","title":"Adding Glean to your Server Application"},"510":{"body":"memory_unit Memory distributions have an optional memory_unit parameter, which specifies the unit the incoming memory size values are recorded in. The allowed values for memory_unit are: byte (default) kilobyte (= 2^10 = 1,024 bytes) megabyte (= 2^20 = 1,048,576 bytes) gigabyte (= 2^30 = 1,073,741,824 bytes)","breadcrumbs":"Metric types » Memory Distribution » Extra metric parameters","id":"510","title":"Extra metric parameters"},"511":{"body":"The maximum memory size that can be recorded is 1 Terabyte (240 bytes). Larger sizes will be truncated to 1 Terabyte.","breadcrumbs":"Metric types » Memory Distribution » Limits","id":"511","title":"Limits"},"512":{"body":"What is the distribution of the size of heap allocations?","breadcrumbs":"Metric types » Memory Distribution » Data questions","id":"512","title":"Data questions"},"513":{"body":"Swift API docs Python API docs Rust API docs","breadcrumbs":"Metric types » Memory Distribution » Reference","id":"513","title":"Reference"},"514":{"body":"Please, insert your custom data below as a JSON array. Data options Generate normally distributed data Generate log-normally distributed data Generate uniformly distributed data Use custom data Properties Histogram type Functional Log base Buckets per magnitude Maximum value Memory unit (memory_unit) Byte Kilobyte Megabyte Gigabyte Note The data provided , is assumed to be in the configured memory unit. The data recorded , on the other hand, is always in bytes . This means that, if the configured memory unit is not byte, the data will be transformed before being recorded. Notice this, by using the select field above to change the memory unit and see the mean of the data recorded changing. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Memory Distribution » Simulator","id":"514","title":"Simulator"},"515":{"body":"Labeled memory distributions are used to record different related distributions of memory sizes. See the Memory Distribution reference for details on bucket distribution, and a histogram simulator.","breadcrumbs":"Metric types » Labeled Memory Distributions » Labeled Memory Distributions","id":"515","title":"Labeled Memory Distributions"},"516":{"body":"","breadcrumbs":"Metric types » Labeled Memory Distributions » Recording API","id":"516","title":"Recording API"},"517":{"body":"Accumulate the provided sample in the metric. use glean_metrics::network; network::http_upload_bandwidth .get(http_version) .accumulate(self.request_size * 8.0 / 1048576.0 / send_time.as_secs()); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::network::http_upload_bandwidth .Get(httpVersion) .Accumulate(this.mRequestSize * 8.0 / 1048576.0 / sendTime.AsSeconds()); JavaScript Glean.network.httpUploadBandwidth[httpVersion] .accumulate(requestSize * 8.0 / 1048576.0 / sendTime.asSeconds()) Recorded Errors invalid_value : if recording a memory size that is negative or over 1 TB. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Memory Distributions » accumulate","id":"517","title":"accumulate"},"518":{"body":"","breadcrumbs":"Metric types » Labeled Memory Distributions » Testing API","id":"518","title":"Testing API"},"519":{"body":"Gets the recorded value for a given label in a labeled memory distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::network; // Assert the sum of all HTTP2 samples is 42MBps.\nassert_eq!(42, network::http_upload_bandwidth.get(\"h2\").test_get_value(None).unwrap().sum); // Assert there's only the one sample\nassert_eq!(1, network::http_upload_badwidth.get(\"h2\").test_get_value(None).unwrap().count); // Buckets are indexed by their lower bound.\nassert_eq!(1, network::http_upload_bandwidth.get(\"h2\").test_get_value(None).unwrap().values[41]); C++ #include \"mozilla/glean/GleanMetrics.h\" const data = mozilla::glean::network::http_upload_bandwidth .Get(\"h2\") .TestGetValue().value().unwrap()\nASSERT_EQ(42UL, data.sum); JavaScript const data = Glean.network.httpUploadBandwidth[\"h2\"].testGetValue();\nAssert.equal(42, data.sum);","breadcrumbs":"Metric types » Labeled Memory Distributions » testGetValue","id":"519","title":"testGetValue"},"52":{"body":"This implementation of telemetry collection in server environments has some differences compared to using Glean SDK in client applications and Glean.js in the frontend of web applications. Primarily, in server environments the focus is exclusively on event-based metrics, diverging from the broader range of metric types supported by Glean. Additionally, there is no need to incorporate Glean SDK as a dependency in server applications. Instead, the Glean parser is used to generate native code for logging events.","breadcrumbs":"Adding Glean to your project » Server » Differences from using the Glean SDK","id":"52","title":"Differences from using the Glean SDK"},"520":{"body":"Gets the number of errors recorded for a given labeled custom distribution metric in total. use glean::ErrorType;\nuse glean_metrics::network; // Assert there were no negative or overlarge values instrumented.\nassert_eq!( 0, network::http_upload_bandwidth.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Memory Distributions » testGetNumRecordedErrors","id":"520","title":"testGetNumRecordedErrors"},"521":{"body":"Example labeled memory distribution metric definition: network: http_upload_bandwidth: type: labeled_memory_distribution description: > The upload bandwidth for requests larger than 10MB, per HTTP protocol version. memory_unit: megabyte bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 175 labels: - h3 - h2 - http/1.0 - http/1.1","breadcrumbs":"Metric types » Labeled Memory Distributions » Metric parameters","id":"521","title":"Metric parameters"},"522":{"body":"memory_unit Memory distributions have an optional memory_unit parameter, which specifies the unit the incoming memory size values are recorded in. The allowed values for memory_unit are: byte (default) kilobyte (= 2^10 = 1,024 bytes) megabyte (= 2^20 = 1,048,576 bytes) gigabyte (= 2^30 = 1,073,741,824 bytes) labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Memory Distributions » Extra metric parameters","id":"522","title":"Extra metric parameters"},"523":{"body":"What is the distribution of upload bandwidth rates per HTTP protocol version? What is the distribution of bytes received per DOM network API?","breadcrumbs":"Metric types » Labeled Memory Distributions » Data questions","id":"523","title":"Data questions"},"524":{"body":"The maximum memory size that can be recorded is 1 Terabyte (240 bytes). Larger sizes will be truncated to 1 Terabyte. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Memory Distributions » Limits","id":"524","title":"Limits"},"525":{"body":"Rust API docs: LabeledMetric , MemoryDistributionMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Memory Distributions » Reference","id":"525","title":"Reference"},"526":{"body":"UUIDs metrics are used to record values that uniquely identify some entity, such as a client id.","breadcrumbs":"Metric types » UUID » UUID","id":"526","title":"UUID"},"527":{"body":"","breadcrumbs":"Metric types » UUID » Recording API","id":"527","title":"Recording API"},"528":{"body":"Sets a UUID metric to a randomly generated UUID value (UUID v4) . import org.mozilla.yourApplication.GleanMetrics.User // Generate a new UUID and record it\nUser.clientId.generateAndSet() import org.mozilla.yourApplication.GleanMetrics.User; // Generate a new UUID and record it\nUser.INSTANCE.clientId().generateAndSet(); // Generate a new UUID and record it\nUser.clientId.generateAndSet() from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Generate a new UUID and record it\nmetrics.user.client_id.generate_and_set() use uuid::Uuid;\nuse glean_metrics::user; // Generate a new UUID and record it\nuser::client_id.generate_and_set(); import * as user from \"./path/to/generated/files/user.js\"; user.clientId.generateAndSet(); C++ #include \"mozilla/glean/GleanMetrics.h\" // Generate a new UUID and record it.\nmozilla::glean::user::client_id.GenerateAndSet(); JavaScript // Generate a new UUID and record it.\nGlean.user.clientId.generateAndSet();","breadcrumbs":"Metric types » UUID » generateAndSet","id":"528","title":"generateAndSet"},"529":{"body":"Sets a UUID metric to a specific value. Accepts any UUID version. import org.mozilla.yourApplication.GleanMetrics.User // Set a UUID explicitly\nUser.clientId.set(UUID.randomUUID()) // Set a UUID explicitly import org.mozilla.yourApplication.GleanMetrics.User; // Set a UUID explicitly\nUser.INSTANCE.clientId().set(UUID.randomUUID()); User.clientId.set(UUID()) // Set a UUID explicitly import uuid from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Set a UUID explicitly\nmetrics.user.client_id.set(uuid.uuid4()) use uuid::Uuid;\nuse glean_metrics::user; // Set a UUID explicitly\nuser::client_id.set(Uuid::new_v4()); import * as user from \"./path/to/generated/files/user.js\"; const uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\nuser.clientId.set(uuid); C++ #include \"mozilla/glean/GleanMetrics.h\" // Set a specific value.\nnsCString kUuid(\"decafdec-afde-cafd-ecaf-decafdecafde\");\nmozilla::glean::user::client_id.Set(kUuid); JavaScript // Set a specific value.\nconst uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\nGlean.user.clientId.set(uuid); Recorded errors invalid_value : if the value is set to a string that is not a UUID (only applies for dynamically-typed languages, such as Python). invalid_type : if a non-string or non-UUID value is given.","breadcrumbs":"Metric types » UUID » set","id":"529","title":"set"},"53":{"body":"This method is intended for collecting user-level behavioral events in server environments. It is not suitable for collecting system-level metrics or performance data, which should be collected using cloud monitoring tools.","breadcrumbs":"Adding Glean to your project » Server » When to use server-side collection","id":"53","title":"When to use server-side collection"},"530":{"body":"","breadcrumbs":"Metric types » UUID » Testing API","id":"530","title":"Testing API"},"531":{"body":"Gets the recorded value for a given UUID metric. Returns a UUID if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.User // Was it the expected value?\nassertEquals(uuid, User.clientId.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.User; // Was it the expected value?\nassertEquals(uuid, User.INSTANCE.clientId().testGetValue()); // Was it the expected value?\nXCTAssertEqual(uuid, try User.clientId.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Was it the expected value?\nassert uuid == metrics.user.client_id.test_get_value() use uuid::Uuid;\nuse glean_metrics::user; let u = Uuid::new_v4();\n// Does it have the expected value?\nassert_eq!(u, user::client_id.test_get_value(None).unwrap()); import * as user from \"./path/to/generated/files/user.js\"; const uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\nassert(uuid, await user.clientId.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" // Is it clear of errors?\nASSERT_TRUE(mozilla::glean::user::client_id.TestGetValue().isOk());\n// Does it have an expected values?\nASSERT_STREQ(kUuid.get(), mozilla::glean::user::client_id.TestGetValue().unwrap().value().get()); JavaScript const uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\n// testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(Glean.user.clientId.testGetValue(), uuid);","breadcrumbs":"Metric types » UUID » testGetValue","id":"531","title":"testGetValue"},"532":{"body":"Gets the number of errors recorded for a given UUID metric. import org.mozilla.yourApplication.GleanMetrics.User assertEquals( 0, User.clientId.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.User; assertEquals( 0, User.INSTANCE.clientId().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, User.clientId.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") from glean.testing import ErrorType assert 0 == metrics.user.client_id.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::user; assert_eq!( 0, user::client_id.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); import * as user from \"./path/to/generated/files/user.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Was the string truncated, and an error reported?\nassert.strictEqual( 0, await user.clientId.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » UUID » testGetNumRecordedErrors","id":"532","title":"testGetNumRecordedErrors"},"533":{"body":"You first need to add an entry for it to the metrics.yaml file: user: client_id: type: uuid description: > A unique identifier for the client's profile bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » UUID » Metric Parameters","id":"533","title":"Metric Parameters"},"534":{"body":"N/A","breadcrumbs":"Metric types » UUID » Extra metric parameters","id":"534","title":"Extra metric parameters"},"535":{"body":"A unique identifier for the client.","breadcrumbs":"Metric types » UUID » Data questions","id":"535","title":"Data questions"},"536":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » UUID » Reference","id":"536","title":"Reference"},"537":{"body":"URL metrics allow recording URL-like [1] strings. This metric type does not support recording data URLs - please get in contact with the Glean team if you're missing a type.","breadcrumbs":"Metric types » URL » URL","id":"537","title":"URL"},"538":{"body":"Be careful using arbitrary URLs and make sure they can't accidentally contain identifying data (like directory paths, user input or credentials). The Glean SDKs specifically do not validate if a URL is fully spec compliant, all the validations performed are the ones listed in the \"Recorded errors\" section of this page.","breadcrumbs":"Metric types » URL » Important","id":"538","title":"Important"},"539":{"body":"","breadcrumbs":"Metric types » URL » Recording API","id":"539","title":"Recording API"},"54":{"body":"Integrate glean_parser into your build system. Follow instructions for other SDK-enabled platforms, e.g. JavaScript . Use a server outputter to generate logging code. glean_parser currently supports Go , JavaScript/Typescript , Python , and Ruby . Define your metrics in metrics.yaml Request a data review for the collected data Add your product to probe-scraper","breadcrumbs":"Adding Glean to your project » Server » How to add Glean server side collection to your service","id":"54","title":"How to add Glean server side collection to your service"},"540":{"body":"Set a URL metric to a specific string value. import org.mozilla.yourApplication.GleanMetrics.Search Search.template.set(\"https://mysearchengine.com/\") import org.mozilla.yourApplication.GleanMetrics.Search; Search.INSTANCE.template().set(\"https://mysearchengine.com/\"); Search.template.set(\"https://mysearchengine.com\") // Swift's URL type is supported\nlet url = URL(string: \"https://mysearchengine.com\")!\nSearch.template.set(url: url) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.search.template.set(\"https://mysearchengine.com/\") use glean_metrics::search; search::template.set(\"https://mysearchengine.com/\"); import * as search from \"./path/to/generated/files/search.js\"; search.template.set(\"https://mysearchengine.com/\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search::template.Set(\"https://mysearchengine.com/\"_ns); JavaScript Glean.search.template.set(\"https://mysearchengine.com/\");","breadcrumbs":"Metric types » URL » set","id":"540","title":"set"},"541":{"body":"Set a URL metric to a specific URL value. import * as search from \"./path/to/generated/files/search.js\"; search.template.setUrl(new URL(\"https://mysearchengine.com/\")); Recorded errors invalid_value : If the URL passed does not start with a scheme followed by a : character. If the URL passed uses the data: protocol. invalid_overflow : if the URL passed is longer than 8192 characters (before encoding). invalid_type : if a non-string value is given. Limits Fixed maximum URL length: 8192. Longer URLs are truncated and recorded along with an invalid_overflow error.","breadcrumbs":"Metric types » URL » setUrl","id":"541","title":"setUrl"},"542":{"body":"","breadcrumbs":"Metric types » URL » Testing API","id":"542","title":"Testing API"},"543":{"body":"Gets the recorded value for a given URL metric as a (unencoded) string. Returns a URL if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(\"https://mysearchengine.com/\", Search.template.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(\"https://mysearchengine.com/\", Search.INSTANCE.template().testGetValue()); XCTAssertEqual(\"https://mysearchengine.com/\", try Search.template.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert \"https://mysearchengine.com/\" == metrics.search.template.test_get_value() use glean_metrics::search; assert_eq!(\"https://mysearchengine.com/\", search::template.test_get_value(None).unwrap()); import * as search from \"./path/to/generated/files/search.js\"; assert.strictEqual(\"https://mysearchengine.com/\", await search.template.testGetValue());","breadcrumbs":"Metric types » URL » testGetValue","id":"543","title":"testGetValue"},"544":{"body":"Gets the number of errors recorded for a given counter metric. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(0, Search.template.testGetNumRecordedErrors(ErrorType.INVALID_VALUE))\nassertEquals(0, Search.template.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)) import org.mozilla.yourApplication.GleanMetrics.Search; assertEquals( 0, Search.INSTANCE.template().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); assertEquals( 0, Search.INSTANCE.template().testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n); XCTAssertEqual(0, Search.template.testGetNumRecordedErrors(.invalidValue))\nXCTAssertEqual(0, Search.template.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.search.template.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) assert 0 == metrics.search.template.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse glean_metrics::search; assert_eq!( 0, search::template.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); assert_eq!( 0, search::template.test_get_num_recorded_errors( ErrorType::InvalidOverflow )\n); import * as search from \"./path/to/generated/files/search.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await search.template.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);\nassert.strictEqual( 0, await search.template.testGetNumRecordedErrors(ErrorType.InvalidOverflow)\n);","breadcrumbs":"Metric types » URL » testGetNumRecordedErrors","id":"544","title":"testGetNumRecordedErrors"},"545":{"body":"Example URL metric definition: search: template: type: url description: > The base URL used to build the search query for the search engine. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 data_sensitivity: - web_activity For a full reference on metrics parameters common to all metric types, refer to the metrics YAML format reference page.","breadcrumbs":"Metric types » URL » Metric parameters","id":"545","title":"Metric parameters"},"546":{"body":"URL metrics can only either be on categories 3 or 4, namely \"Stored Content & Communications\" or \"Highly sensitive data\" .","breadcrumbs":"Metric types » URL » Note on data_sensitivity of URL metrics","id":"546","title":"Note on data_sensitivity of URL metrics"},"547":{"body":"N/A","breadcrumbs":"Metric types » URL » Extra metric parameters","id":"547","title":"Extra metric parameters"},"548":{"body":"What is the base URL used to build the search query for the search engine? Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » URL » Data questions","id":"548","title":"Data questions"},"549":{"body":"Datetimes are used to record an absolute date and time, for example the date and time that the application was first run. The device's offset from UTC is recorded and sent with the Datetime value in the ping. To record a single elapsed time, see Timespan . To measure the distribution of multiple timespans, see Timing Distributions .","breadcrumbs":"Metric types » Datetime » Datetime","id":"549","title":"Datetime"},"55":{"body":"Follow the standard Glean SDK guide for adding metrics to metrics.yaml file.","breadcrumbs":"Adding Glean to your project » Server » How to add a new event to your server side collection","id":"55","title":"How to add a new event to your server side collection"},"550":{"body":"","breadcrumbs":"Metric types » Datetime » Recording API","id":"550","title":"Recording API"},"551":{"body":"Sets a datetime metric to a specific date value. Defaults to now. import org.mozilla.yourApplication.GleanMetrics.Install Install.firstRun.set() // Records \"now\"\nInstall.firstRun.set(Date(2019, 3, 25)) // Records a custom datetime import org.mozilla.yourApplication.GleanMetrics.Install; Install.INSTANCE.firstRun().set(); // Records \"now\"\nInstall.INSTANCE.firstRun().set(new Date(2019, 3, 25)); // Records a custom datetime Install.firstRun.set() // Records \"now\"\nlet dateComponents = DateComponents( calendar: Calendar.current, year: 2004, month: 12, day: 9, hour: 8, minute: 3, second: 29 )\nInstall.firstRun.set(dateComponents.date!) // Records a custom datetime import datetime from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.install.first_run.set() # Records \"now\"\nmetrics.install.first_run.set(datetime.datetime(2019, 3, 25)) # Records a custom datetime use glean_metrics::install; use chrono::{FixedOffset, TimeZone}; install::first_run.set(None); // Records \"now\"\nlet custom_date = FixedOffset::east(0).ymd(2019, 3, 25).and_hms(0, 0, 0);\ninstall::first_run.set(Some(custom_date)); // Records a custom datetime import * as install from \"./path/to/generated/files/install.js\"; install.firstRun.set(); // Records \"now\"\ninstall.firstRun.set(new Date(\"March 25, 2019 00:00:00\")); // Records a custom datetime C++ #include \"mozilla/glean/GleanMetrics.h\" PRExplodedTime date = {0, 35, 10, 12, 6, 10, 2020, 0, 0, {5 * 60 * 60, 0}};\nmozilla::glean::install::first_run.Set(&date); JavaScript const value = new Date(\"2020-06-11T12:00:00\");\nGlean.install.firstRun.set(value.getTime() * 1000); Recorded errors invalid_value : setting the date time to an invalid value. invalid_type : if a non-Date object is given.","breadcrumbs":"Metric types » Datetime » set","id":"551","title":"set"},"552":{"body":"","breadcrumbs":"Metric types » Datetime » Testing API","id":"552","title":"Testing API"},"553":{"body":"Get the recorded value for a given datetime metric as a language-specific Datetime object. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Install assertEquals(Install.firstRun.testGetValue(), Date(2019, 3, 25)) import org.mozilla.yourApplication.GleanMetrics.Install; assertEquals(Install.INSTANCE.firstRun().testGetValue(), Date(2019, 3, 25)); let expectedDate = DateComponents( calendar: Calendar.current, year: 2004, month: 12, day: 9, hour: 8, minute: 3, second: 29 )\nXCTAssertEqual(expectedDate.date!, try Install.firstRun.testGetValue()) import datetime from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") value = datetime.datetime(1993, 2, 23, 5, 43, tzinfo=datetime.timezone.utc)\nassert value == metrics.install.first_run.test_get_value() use glean_metrics::install; use chrono::{FixedOffset, TimeZone}; let expected_date = FixedOffset::east(0).ymd(2019, 3, 25).and_hms(0, 0, 0);\nassert_eq!(expected_date, metrics.install.first_run.test_get_value(None)); import * as install from \"./path/to/generated/files/install.js\"; const expectedDate = new Date(\"March 25, 2019 00:00:00\");\nassert.deepStrictEqual(expectedDate, await install.firstRun.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" PRExplodedTime date{0, 35, 10, 12, 6, 10, 2020, 0, 0, {5 * 60 * 60, 0}};\nASSERT_TRUE(mozilla::glean::install::first_run.TestGetValue().isOk());\nASSERT_EQ( 0, std::memcmp( &date, mozilla::glean::install::first_run.TestGetValue().unwrap().ptr(), sizeof(date))); JavaScript const value = new Date(\"2020-06-11T12:00:00\");\n// testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(Glean.install.firstRun.testGetValue().getTime(), value.getTime());","breadcrumbs":"Metric types » Datetime » testGetValue","id":"553","title":"testGetValue"},"554":{"body":"Get the recorded value for a given datetime metric as an ISO Date String . Returns a ISO 8601 date string if data is stored. Returns a language-specific empty/null value if no data is stored. The returned string will be truncated to the metric's time unit and will include the timezone offset from UTC, e.g. 2019-03-25-05:00 (in this example, time_unit is day). import org.mozilla.yourApplication.GleanMetrics.Install assertEquals(\"2019-03-25-05:00\", Install.firstRun.testGetValueAsString()) import org.mozilla.yourApplication.GleanMetrics.Install; assertEquals(\"2019-03-25-05:00\", Install.INSTANCE.firstRun().testGetValueAsString()); assertEquals(\"2019-03-25-05:00\", try Install.firstRun.testGetValueAsString()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert \"2019-03-25-05:00\" == metrics.install.first_run.test_get_value_as_str() import * as install from \"./path/to/generated/files/install.js\"; assert.strictEqual(\"2019-03-25-05:00\", await install.firstRun.testGetValueAsString());","breadcrumbs":"Metric types » Datetime » testGetValueAsString","id":"554","title":"testGetValueAsString"},"555":{"body":"Get number of errors recorded for a given datetime metric. import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Install assertEquals(0, Install.firstRun.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)) import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Install; assertEquals( 0, Install.INSTANCE.firstRun().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Install.firstRun.getNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.install.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::install; assert_eq!( 0, install::first_run.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); import * as install from \"./path/to/generated/files/install.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await install.firstRun.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Datetime » testGetNumRecordedErrors","id":"555","title":"testGetNumRecordedErrors"},"556":{"body":"Example datetime metric definition: install: first_run: type: datetime time_unit: day description: > Records the date when the application was first run bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Datetime » Metric parameters","id":"556","title":"Metric parameters"},"557":{"body":"time_unit Datetimes have an optional time_unit parameter to specify the smallest unit of resolution that the metric will record. The allowed values for time_unit are: nanosecond microsecond millisecond (default) second minute hour day Carefully consider the required resolution for recording your metric, and choose the coarsest resolution possible.","breadcrumbs":"Metric types » Datetime » Extra metric parameters","id":"557","title":"Extra metric parameters"},"558":{"body":"When did the user first run the application?","breadcrumbs":"Metric types » Datetime » Data questions","id":"558","title":"Data questions"},"559":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Datetime » Reference","id":"559","title":"Reference"},"56":{"body":"For more technical details on how ingestion works, see the Confluence page . Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Server » Technical details - ingestion","id":"56","title":"Technical details - ingestion"},"560":{"body":"Events allow recording of e.g. individual occurrences of user actions, say every time a view was open and from where. Each event contains the following data: A timestamp, in milliseconds. The first event in any ping always has a value of 0, and subsequent event timestamps are relative to it. If sending events in custom pings, see note on event timestamp calculation throughout restarts. The name of the event. A set of key-value pairs, where the keys are predefined in the extra_keys metric parameter. Values are one of string, boolean, quantity, and are converted to string for transmission.","breadcrumbs":"Metric types » Event » Events","id":"560","title":"Events"},"561":{"body":"In the Glean JavaScript SDK (Glean.js), since version 2.0.2, events are submitted immediately by default. In all the other SDKs, events are batched and sent together by default in the events ping .","breadcrumbs":"Metric types » Event » Immediate submission or batching?","id":"561","title":"Immediate submission or batching?"},"562":{"body":"","breadcrumbs":"Metric types » Event » Recording API","id":"562","title":"Recording API"},"563":{"body":"Record a new event, with optional typed extra values. See Extra metrics parameters . Note that an enum has been generated for handling the extra_keys: it has the same name as the event metric, with Extra added. import org.mozilla.yourApplication.GleanMetrics.Views Views.loginOpened.record(Views.loginOpenedExtra(sourceOfLogin = \"toolbar\")) Note that an enum has been generated for handling the extra_keys: it has the same name as the event metric, with Extra added. Views.loginOpened.record(LoginOpenedExtra(sourceOfLogin: \"toolbar\")) Note that a class has been generated for handling the extra_keys: it has the same name as the event metric, with Extra added. from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.views.login_opened.record(metrics.views.LoginOpenedExtra(sourceOfLogin=\"toolbar\")) Note that an enum has been generated for handling the extra_keys: it has the same name as the event metric, with Keys added. use metrics::views::{self, LoginOpenedExtra}; let extra = LoginOpenedExtra { source_of_login: Some(\"toolbar\".to_string()) };\nviews::login_opened.record(extra); import * as views from \"./path/to/generated/files/views.js\"; views.loginOpened.record({ sourceOfLogin: \"toolbar\" }); C++ #include \"mozilla/glean/GleanMetrics.h\" using mozilla::glean::views::LoginOpenedExtra;\nLoginOpenedExtra extra = { .source_of_login = Some(\"value\"_ns) };\nmozilla::glean::views::login_opened.Record(std::move(extra)) JavaScript const extra = { source_of_login: \"toolbar\" }; // Extra Keys are *NOT* conjugated to camelCase\nGlean.views.loginOpened.record(extra); Recorded errors invalid_overflow : if any of the values in the extras object are greater than 500 bytes in length. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_value : if there is an attempt to record to an extra key which is not allowed i.e. an extra key that has not been listed in the YAML registry file. invalid_type : if the extra value given is not the expected type.","breadcrumbs":"Metric types » Event » record(object)","id":"563","title":"record(object)"},"564":{"body":"","breadcrumbs":"Metric types » Event » Testing API","id":"564","title":"Testing API"},"565":{"body":"Get the list of recorded events. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. Note : By default as of v2.0.2 Glean.js sets maxEvents=1 by default. If you try and call testGetValue() for a recorded event with maxEvents=1, snapshot will not include your event. For your testing instance, you can set maxEvents to a value greater than 1 to test recording events with testGetValue(). import org.mozilla.yourApplication.GleanMetrics.Views val snapshot = Views.loginOpened.testGetValue()\nassertEquals(2, snapshot.size)\nval first = snapshot.single()\nassertEquals(\"login_opened\", first.name)\nassertEquals(\"toolbar\", first.extra?.getValue(\"source_of_login\")) import org.mozilla.yourApplication.GleanMetrics.Views assertEquals(Views.INSTANCE.loginOpened().testGetValue().size) val snapshot = try! Views.loginOpened.testGetValue()\nXCTAssertEqual(2, snapshot.size)\nval first = snapshot[0]\nXCTAssertEqual(\"login_opened\", first.name)\nXCTAssertEqual(\"toolbar\", first.extra?[\"source_of_login\"]) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") snapshot = metrics.views.login_opened.test_get_value()\nassert 2 == len(snapshot)\nfirst = snapshot[0]\nassert \"login_opened\" == first.name\nassert \"toolbar\" == first.extra[\"source_of_login\"] use metrics::views; var snapshot = views::login_opened.test_get_value(None).unwrap();\nassert_eq!(2, snapshot.len());\nlet first = &snapshot[0];\nassert_eq!(\"login_opened\", first.name); let extra = event.extra.unwrap();\nassert_eq!(Some(&\"toolbar\".to_string()), extra.get(\"source_of_login\")); import * as views from \"./path/to/generated/files/views.js\"; const snapshot = await views.loginOpened.testGetValue();\nassert.strictEqual(2, snapshot.length);\nconst first = snapshot[0];\nassert.strictEqual(\"login_opened\", first.name);\nassert.strictEqual(\"toolbar\", first.extra.source_of_login); C++ #include \"mozilla/glean/GleanMetrics.h\" auto optEvents = mozilla::glean::views::login_opened.TestGetValue();\nauto events = optEvents.extract();\nASSERT_EQ(2UL, events.Length());\nASSERT_STREQ(\"login_opened\", events[0].mName.get()); // Note that the list of extra key/value pairs can be in any order.\nASSERT_EQ(1UL, events[0].mExtra.Length());\nauto extra = events[0].mExtra[0]; auto key = std::get<0>(extra);\nauto value = std::get<1>(extra); ASSERT_STREQ(\"source_of_login\"_ns, key.get())\nASSERT_STREQ(\"toolbar\", value.get());\n} JavaScript var events = Glean.views.loginOpened.testGetValue();\nAssert.equal(2, events.length);\nAssert.equal(\"login_opened\", events[0].name); Assert.equal(\"toolbar\", events[0].extra.source_of_login);","breadcrumbs":"Metric types » Event » testGetValue","id":"565","title":"testGetValue"},"566":{"body":"Get the number of errors recorded for a given event metric. import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Views assertEquals( 0, Views.loginOpened.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Views assertEquals( 0, Views.INSTANCE.loginOpened().testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) XCTAssertEqual(0, Views.loginOpened.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nfrom glean.testing import ErrorType\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.views.login_opened.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse metrics::views; assert_eq!( 0, views::login_opened.test_get_num_recorded_errors( ErrorType::InvalidOverflow, None )\n); import * as views from \"./path/to/generated/files/views.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await views.loginOpened.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Event » testGetNumRecordedErrors","id":"566","title":"testGetNumRecordedErrors"},"567":{"body":"Example event metric definition: views: login_opened: type: event description: | Recorded when the login view is opened. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 extra_keys: source_of_login: description: The source from which the login view was opened, e.g. \"toolbar\". type: string For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page. Events require lifetime: ping. Recorded events are always sent in their respective pings and then cleared. They cannot be persisted longer. The glean_parser will reject any other lifetime.","breadcrumbs":"Metric types » Event » Metric parameters","id":"567","title":"Metric parameters"},"568":{"body":"extra_keys The acceptable keys on the \"extra\" object sent with events. A maximum of 50 extra keys is allowed. Each extra key contains additional metadata: description: Required. A description of the key. type: The type of value this extra key can hold. One of string, boolean, quantity. Defaults to string. Recorded value is converted to string for transmission. Note : If not specified only the legacy API on record is available. Extras or string metrics? When designing your metrics, define properties that are slow-changing and common across all events in a given ping as string metrics. Properties specific to a single event or a subset of events should be defined as event extras.","breadcrumbs":"Metric types » Event » Extra metric parameters","id":"568","title":"Extra metric parameters"},"569":{"body":"When and from where was the login view opened?","breadcrumbs":"Metric types » Event » Data questions","id":"569","title":"Data questions"},"57":{"body":"This page provides a step-by-step guide on how to enable data from your product to be ingested by the data platform. This is just one of the required steps for integrating Glean successfully into a product. Check the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Enabling data to be ingested by the data platform","id":"57","title":"Enabling data to be ingested by the data platform"},"570":{"body":"In Glean.js the default value for maxEvents is 1. In all other SDKs it is 500. Once the maxEvents threshold is reached on the client an \"events\" ping is immediately sent. The extra_keys allows for a maximum of 50 keys. The keys in the extra_keys list must be written using printable ASCII characters, with a maximum length of 40 bytes, when encoded as UTF-8. The values in the extras object have a maximum length of 500 bytes when serialized and encoded as UTF-8. Longer values are truncated, and an invalid_overflow error is recorded.","breadcrumbs":"Metric types » Event » Limits","id":"570","title":"Limits"},"571":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Event » Reference","id":"571","title":"Reference"},"572":{"body":"Custom distributions are used to record the distribution of arbitrary values. It should be used only when direct control over how the histogram buckets are computed is required. Otherwise, look at the standard distribution metric types: Timing Distributions Memory Distributions Note : Custom distributions are currently not universally supported. See below for available APIs.","breadcrumbs":"Metric types » Custom Distribution » Custom Distribution","id":"572","title":"Custom Distribution"},"573":{"body":"","breadcrumbs":"Metric types » Custom Distribution » Recording API","id":"573","title":"Recording API"},"574":{"body":"Accumulate the provided samples in the metric. import org.mozilla.yourApplication.GleanMetrics.Graphics Graphics.checkerboardPeak.accumulateSamples([23]) import org.mozilla.yourApplication.GleanMetrics.Graphics; Graphics.INSTANCE.checkerboardPeak().accumulateSamples(listOf(23)); use glean_metrics::graphics; graphics::checkerboard_peak.accumulate_samples_signed(vec![23]); import * as graphics from \"./path/to/generated/files/graphics.js\"; graphics.checkerboardPeak.accumulateSamples([23]); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::graphics::checkerboard_peak.AccumulateSamples({ 23 }); JavaScript Glean.graphics.checkerboardPeak.accumulateSamples([23]);","breadcrumbs":"Metric types » Custom Distribution » accumulateSamples","id":"574","title":"accumulateSamples"},"575":{"body":"Accumulates one sample and appends it to the metric. import org.mozilla.yourApplication.GleanMetrics.Graphics Graphics.checkerboardPeak.accumulateSingleSample(23) import org.mozilla.yourApplication.GleanMetrics.Graphics; Graphics.INSTANCE.checkerboardPeak().accumulateSingleSample(23); use glean_metrics::graphics; graphics::checkerboard_peak.accumulate_single_sample(23); import * as graphics from \"./path/to/generated/files/graphics.js\"; graphics.checkerboardPeak.accumulateSingleSample(23); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::graphics::checkerboard_peak.AccumulateSingleSample(23); JavaScript Glean.graphics.checkerboardPeak.accumulateSingleSample(23); Limits The maximum value of bucket_count is 100. Only non-negative values may be recorded (>= 0). Recorded errors invalid_value: If recording a negative value.","breadcrumbs":"Metric types » Custom Distribution » accumulateSingleSample","id":"575","title":"accumulateSingleSample"},"576":{"body":"","breadcrumbs":"Metric types » Custom Distribution » Testing API","id":"576","title":"Testing API"},"577":{"body":"Gets the recorded value for a given custom distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Graphics // Get snapshot\nval snapshot = Graphics.checkerboardPeak.testGetValue() // Does the sum have the expected value?\nassertEquals(23, snapshot.sum) // Does the count have the expected value?\nassertEquals(1L, snapshot.count) // Buckets are indexed by their lower bound.\nassertEquals(1L, snapshot.values[19]) import org.mozilla.yourApplication.GleanMetrics.Graphics; // Get snapshot\nval snapshot = Graphics.INSTANCE.checkerboardPeak().testGetValue(); // Does the sum have the expected value?\nassertEquals(23, snapshot.sum); // Does the count have the expected value?\nassertEquals(1L, snapshot.count); use glean_metrics::graphics; // Does the sum have the expected value?\nassert_eq!(23, graphics::checkerboard_peak.test_get_value(None).unwrap().sum); // Does the count have the expected value?\nassert_eq!(1, graphics::checkerboard_peak.test_get_value(None).unwrap().count); // Buckets are indexed by their lower bound.\nassert_eq!(1, snapshot.values[19]) import * as graphics from \"./path/to/generated/files/graphics.js\"; // Get snapshot\nconst snapshot = await graphics.checkerboardPeak.testGetValue(); // Does the sum have the expected value?\nassert.equal(23, snapshot.sum); // Buckets are indexed by their lower bound.\nassert.equal(1, snapshot.values[19]); C++ #include \"mozilla/glean/GleanMetrics.h\" auto data = mozilla::glean::graphics::checkerboard_peak.TestGetValue().value();\nASSERT_EQ(23UL, data.sum); JavaScript let data = Glean.graphics.checkerboardPeak.testGetValue();\nAssert.equal(23, data.sum);","breadcrumbs":"Metric types » Custom Distribution » testGetValue","id":"577","title":"testGetValue"},"578":{"body":"Gets the number of errors recorded for a the custom distribution metric. import org.mozilla.yourApplication.GleanMetrics.Graphics /// Did the metric receive a negative value?\nassertEquals( 0, Graphics.checkerboardPeak.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Graphics; /// Did the metric receive a negative value?\nassertEquals( 0, Graphics.INSTANCE.checkerboardPeak().testGetNumRecordedErrors( ErrorType.INVALID_VALUE )\n) use glean::ErrorType;\nuse glean_metrics::graphics; // Were any of the values negative and thus caused an error to be recorded?\nassert_eq!( 0, graphics::checkerboard_peak.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n); import * as graphics from \"./path/to/generated/files/graphics.js\";\nimport { ErrorType } from \"@mozilla/glean/\"; // Did the metric receive a negative value?\nassert.equal( 0, graphics.checkerboardPeak.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Custom Distribution » testGetNumRecordedErrors","id":"578","title":"testGetNumRecordedErrors"},"579":{"body":"Example custom distribution metric definition: graphics: checkerboard_peak: type: custom_distribution description: > Peak number of CSS pixels checkerboarded during a checkerboard event. range_min: 1 range_max: 66355200 bucket_count: 50 histogram_type: exponential unit: pixels gecko_datapoint: CHECKERBOARD_PEAK bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01","breadcrumbs":"Metric types » Custom Distribution » Metric Parameters","id":"579","title":"Metric Parameters"},"58":{"body":"GitHub Workflows","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Requirements","id":"58","title":"Requirements"},"580":{"body":"Custom distributions have the following required parameters: range_min: (Integer) The minimum value of the first bucket range_max: (Integer) The minimum value of the last bucket bucket_count: (Integer) The number of buckets histogram_type: linear: The buckets are evenly spaced exponential: The buckets follow a natural logarithmic distribution Note Check out how these bucketing algorithms would behave on the Custom distribution simulator . Custom distributions have the following optional parameters: unit: (String) The unit of the values in the metric. For documentation purposes only -- does not affect data collection. gecko_datapoint: (String) This is a Gecko-specific property. It is the name of the Gecko metric to accumulate the data from, when using a Glean SDK in a product using GeckoView.","breadcrumbs":"Metric types » Custom Distribution » Extra metric parameters","id":"580","title":"Extra metric parameters"},"581":{"body":"Rust API docs","breadcrumbs":"Metric types » Custom Distribution » Reference","id":"581","title":"Reference"},"582":{"body":"Please, insert your custom data below as a JSON array. Data options Generate normally distributed data Generate log-normally distributed data Generate uniformly distributed data Use custom data Properties Histogram type (histogram_type) Exponential Linear Range minimum (range_min) Range maximum (range_max) Bucket count (bucket_count) Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Custom Distribution » Simulator","id":"582","title":"Simulator"},"583":{"body":"Labeled custom distributions are used to record different related distributions of arbitrary values. If your data is timing or memory based and you don't need direct control over histogram buckets, consider instead: Labeled Timing Distributions Labeled Memory Distributions","breadcrumbs":"Metric types » Labeled Custom Distributions » Labeled Custom Distributions","id":"583","title":"Labeled Custom Distributions"},"584":{"body":"","breadcrumbs":"Metric types » Labeled Custom Distributions » Recording API","id":"584","title":"Recording API"},"585":{"body":"Accumulate the provided samples in the metric. use glean_metrics::network; network::http3_late_ack_ratio .get(\"ack\") .accumulateSamples(vec![(stats.late_ack * 10000) / stats.packets_tx]);\nnetwork::http3_late_ack_ratio .get(\"pto\") .accumulateSamples(vec![(stats.pto_ack * 10000) / stats.packets_tx]); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::network::http3_late_ack_ratio .Get(\"ack\") .AccumulateSamples({(stats.late_ack * 10000) / stats.packets_tx});\nmozilla::glean::network::http3_late_ack_ratio .Get(\"pto\") .AccumulateSamples({(stats.pto_ack * 10000) / stats.packets_tx}); JavaScript Glean.network.http3LateAckRatio[\"ack\"] .accumulateSamples([(stats.late_ack * 10000) / stats.packets_tx]);\nGlean.network.http3LateAckRatio[\"pto\"] .accumulateSamples([(stats.pto_ack * 10000) / stats.packets_tx]); Recorded Errors invalid_value : if recording any negative samples invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Custom Distributions » accumulateSamples","id":"585","title":"accumulateSamples"},"586":{"body":"Accumulates one sample and appends it to the metric. use glean_metrics::network; network::http3_late_ack_ratio .get(\"ack\") .accumulateSingleSample((stats.late_ack * 10000) / stats.packets_tx);\nnetwork::http3_late_ack_ratio .get(\"pto\") .accumulateSingleSample((stats.pto_ack * 10000) / stats.packets_tx); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::network::http3_late_ack_ratio .Get(\"ack\") .AccumulateSingleSample((stats.late_ack * 10000) / stats.packets_tx);\nmozilla::glean::network::http3_late_ack_ratio .Get(\"pto\") .AccumulateSingleSample((stats.pto_ack * 10000) / stats.packets_tx); JavaScript Glean.network.http3LateAckRatio[\"ack\"] .accumulateSingleSample((stats.late_ack * 10000) / stats.packets_tx);\nGlean.network.http3LateAckRatio[\"pto\"] .accumulateSingleSample((stats.pto_ack * 10000) / stats.packets_tx); Recorded Errors invalid_value : if recording a negative sample invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Custom Distributions » accumulateSingleSample","id":"586","title":"accumulateSingleSample"},"587":{"body":"","breadcrumbs":"Metric types » Labeled Custom Distributions » Testing API","id":"587","title":"Testing API"},"588":{"body":"Gets the recorded value for a given label in a labeled custom distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::network; // Assert the sum of all samples is 42.\nassert_eq!(42, network::http3_late_ack_ratio.get(\"ack\").test_get_value(None).unwrap().sum); // Assert there's only the one sample\nassert_eq!(1, network::http3_late_ack_ratio.get(\"ack\").test_get_value(None).unwrap().count); // Buckets are indexed by their lower bound.\nassert_eq!(1, network::http3_late_ack_ratio.get(\"ack\").test_get_value(None).unwrap().values[41]); C++ #include \"mozilla/glean/GleanMetrics.h\" auto data = mozilla::glean::network::http3_late_ack_ratio.Get(\"ack\").TestGetValue().value();\nASSERT_EQ(42UL, data.sum);\nASSERT_EQ(1, data.count);\nASSERT_EQ(1, data.values[41]); JavaScript let data = Glean.network.http3LateAckRatio[\"ack\"].testGetValue();\nAssert.equal(42, data.sum);\nAssert.equal(1, data.count);\nAssert.equal(1, data.values[41]);","breadcrumbs":"Metric types » Labeled Custom Distributions » testGetValue","id":"588","title":"testGetValue"},"589":{"body":"Gets the number of errors recorded for a given labeled custom distribution metric in total. use glean::ErrorType;\nuse glean_metrics::network; // Assert there were no negative values instrumented.\nassert_eq!( 0, network::http3_late_ack_ratio.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Custom Distributions » testGetNumRecordedErrors","id":"589","title":"testGetNumRecordedErrors"},"59":{"body":"At least one week before releasing your product, file a data engineering bug to enable your product's application id. This will result in your product being added to probe scraper 's repositories.yaml .","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Add your product to probe scraper","id":"59","title":"Add your product to probe scraper"},"590":{"body":"Example labeled custom distribution metric definition: network: http3_late_ack_ratio: type: labeled_custom_distribution description: > HTTP3: The ratio of spurious retransmissions per packets sent, represented as an integer permdecimille: `(spurious_retransmission / packet sent * 10000)` range_min: 1 range_max: 2000 bucket_count 100 histogram_type: exponential bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 175 labels: - ack - pto","breadcrumbs":"Metric types » Labeled Custom Distributions » Metric parameters","id":"590","title":"Metric parameters"},"591":{"body":"range_min, range_max, bucket_count, and histogram_type (Required) Labeled custom distributions have the following required parameters: range_min: (Integer) The minimum value of the first bucket range_max: (Integer) The minimum value of the last bucket bucket_count: (Integer) The number of buckets histogram_type: linear: The buckets are evenly spaced exponential: The buckets follow a natural logarithmic distribution labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Custom Distributions » Extra metric parameters","id":"591","title":"Extra metric parameters"},"592":{"body":"What is the distribution of retransmission ratios per connection? What is the distribution of how long it takes to load extensions' content scripts, by addon id?","breadcrumbs":"Metric types » Labeled Custom Distributions » Data questions","id":"592","title":"Data questions"},"593":{"body":"The maximum value of bucket_count is 100. Only non-negative integer values may be recorded (>=0). Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Custom Distributions » Limits","id":"593","title":"Limits"},"594":{"body":"Rust API docs: LabeledMetric , CustomDistributionMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Custom Distributions » Reference","id":"594","title":"Reference"},"595":{"body":"Used to record a single non-negative integer value or 0. For example, the width of the display in pixels.","breadcrumbs":"Metric types » Quantity » Quantity","id":"595","title":"Quantity"},"596":{"body":"If you need to count something (e.g. the number of times a button is pressed) prefer using the Counter metric type, which has a specific API for counting things.","breadcrumbs":"Metric types » Quantity » Do not use Quantity for counting","id":"596","title":"Do not use Quantity for counting"},"597":{"body":"","breadcrumbs":"Metric types » Quantity » Recording API","id":"597","title":"Recording API"},"598":{"body":"Sets a quantity metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Display Display.width.set(width) import org.mozilla.yourApplication.GleanMetrics.Display; Display.INSTANCE.width().set(width); Display.width.set(width) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.display.width.set(width) use glean_metrics::display; display::width.set(width); import * as display from \"./path/to/generated/files/display.js\"; display.width.set(window.innerWidth); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::display::width.Set(innerWidth); JavaScript Glean.display.width.set(innerWidth); Limits Quantities must be non-negative integers or 0. Recorded errors invalid_value : if a negative value is passed in. invalid_type : if a floating point or non-number value is given.","breadcrumbs":"Metric types » Quantity » set","id":"598","title":"set"},"599":{"body":"","breadcrumbs":"Metric types » Quantity » Testing API","id":"599","title":"Testing API"},"6":{"body":"To contact the Glean team you can: Find us in the #glean channel on chat.mozilla.org . To report issues or request changes, file a bug in Bugzilla in Data Platform & Tools :: Glean: SDK . Send an email to glean-team@mozilla.com . The Glean SDKs team is: :janerik , :dexter , :travis , :chutten , :perrymcmanis .","breadcrumbs":"Glean » Contact","id":"6","title":"Contact"},"60":{"body":"After your product has been enabled, you must submit commits to probe scraper to validate and publish metrics. Metrics will only be published from branches defined in probe scraper's repositories.yaml, or the Git default branch if not explicitly configured. This should happen on every CI run to the specified branches. Nightly jobs will then automatically add published metrics to the Glean Dictionary and other data platform tools. Enable the GitHub Workflow by creating a new file .github/workflows/glean-probe-scraper.yml with the following content: ---\nname: Glean probe-scraper\non: [push, pull_request]\njobs: glean-probe-scraper: uses: mozilla/probe-scraper/.github/workflows/glean.yaml@main","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Validate and publish metrics","id":"60","title":"Validate and publish metrics"},"600":{"body":"Gets the recorded value for a given quantity metric. Returns the quantity value if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Display // Does the quantity have the expected value?\nassertEquals(433, Display.width.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Display; // Does the quantity have the expected value?\nassertEquals(433, Display.INSTANCE.width().testGetValue()); // Does the quantity have the expected value?\nXCTAssertEqual(433, try Display.width.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Does the quantity have the expected value?\nassert 433 == metrics.display.width.test_get_value() use glean_metrics::display; // Was anything recorded?\nassert_eq!(433, display::width.test_get_value(None).unwrap()); import * as display from \"./path/to/generated/files/display.js\"; assert.strictEqual(433, await display.width.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_TRUE(mozilla::glean::display::width.TestGetValue().isOk());\nASSERT_EQ(433, mozilla::glean::display::width.TestGetValue().unwrap().value()); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(433, Glean.display.width.testGetValue());","breadcrumbs":"Metric types » Quantity » testGetValue","id":"600","title":"testGetValue"},"601":{"body":"Gets the number of errors recorded for a given quantity metric. import org.mozilla.yourApplication.GleanMetrics.Display // Did it record an error due to a negative value?\nassertEquals(0, Display.width.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)) import org.mozilla.yourApplication.GleanMetrics.Display; // Did the quantity record a negative value?\nassertEquals( 0, Display.INSTANCE.width().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Did the quantity record a negative value?\nXCTAssertEqual(0, Display.width.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Did the quantity record an negative value?\nfrom glean.testing import ErrorType\nassert 0 == metrics.display.width.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::display; assert_eq!( 0, display::width.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n); import * as display from \"./path/to/generated/files/display.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await display.width.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Quantity » testGetNumRecordedErrors","id":"601","title":"testGetNumRecordedErrors"},"602":{"body":"Example quantity metric definition: controls: refresh_pressed: type: quantity description: > The width of the display, in pixels. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 unit: pixels For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Quantity » Metric parameters","id":"602","title":"Metric parameters"},"603":{"body":"unit Quantities have the required unit parameter, which is a free-form string for documentation purposes.","breadcrumbs":"Metric types » Quantity » Extra metric parameters","id":"603","title":"Extra metric parameters"},"604":{"body":"What is the width of the display, in pixels?","breadcrumbs":"Metric types » Quantity » Data questions","id":"604","title":"Data questions"},"605":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Quantity » Reference","id":"605","title":"Reference"},"606":{"body":"Labeled quantity metrics are used to record different related non-negative integer values. For example, the width and height of the display in pixels.","breadcrumbs":"Metric types » Labeled Quantities » Labeled Quantities","id":"606","title":"Labeled Quantities"},"607":{"body":"If you need to count some things (e.g. the number of times buttons are pressed) prefer using the Labeled Counter metric type, which has a specific API for counting things.","breadcrumbs":"Metric types » Labeled Quantities » Do not use Labeled Quantity metrics for counting","id":"607","title":"Do not use Labeled Quantity metrics for counting"},"608":{"body":"","breadcrumbs":"Metric types » Labeled Quantities » Recording API","id":"608","title":"Recording API"},"609":{"body":"Sets a quantity metric to a specific value for the given label. use glean_metrics::gfx; gfx::display.get(\"width\").set(width);\ngfx::display.get(\"height\").set(height); Limits Quantities must be non-negative integers or 0. Recorded errors invalid_value : if a negative value is passed in. invalid_type : if a floating point or non-number value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Quantities » set","id":"609","title":"set"},"61":{"body":"At least one week before releasing your product, file a data engineering bug to add your library to probe scraper and be scraped for metrics as a dependency of another product. This will result in your library being added to probe scraper 's repositories.yaml . Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Add your library to probe scraper","id":"61","title":"Add your library to probe scraper"},"610":{"body":"","breadcrumbs":"Metric types » Labeled Quantities » Testing API","id":"610","title":"Testing API"},"611":{"body":"Gets the recorded value for a given label in a labeled quantity metric. Returns the quantity value if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::gfx; // Was anything recorded?\nassert_eq!(433, gfx::display.get(\"width\").test_get_value(None).unwrap());\nassert_eq!(42, gfx::display.get(\"height\").test_get_value(None).unwrap());","breadcrumbs":"Metric types » Labeled Quantities » testGetValue","id":"611","title":"testGetValue"},"612":{"body":"Gets the number of errors recorded for a given label in a labeled quantity metric. use glean::ErrorType;\nuse glean_metrics::gfx; assert_eq!( 0, gfx::display.get(\"width\").test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);\nassert_eq!( 0, gfx::display.get(\"height\").test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Quantities » testGetNumRecordedErrors","id":"612","title":"testGetNumRecordedErrors"},"613":{"body":"Example quantity metric definition: gfx: display: type: labeled_quantity description: > The dimensions of the display, in pixels. For one-dimensional displays, uses only \"width\". Two-dimensional displays add \"height\". 3D displays gain \"depth\". bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 unit: pixels labels: - width - height - depth For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Labeled Quantities » Metric parameters","id":"613","title":"Metric parameters"},"614":{"body":"unit Labeled Quantities have the required unit parameter, which is a free-form string for documentation purposes. labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Quantities » Extra metric parameters","id":"614","title":"Extra metric parameters"},"615":{"body":"What are the dimensions of the display, in pixels?","breadcrumbs":"Metric types » Labeled Quantities » Data questions","id":"615","title":"Data questions"},"616":{"body":"Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Quantities » Limits","id":"616","title":"Limits"},"617":{"body":"Rust API docs: LabeledMetric , QuantityMetric Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Quantities » Reference","id":"617","title":"Reference"},"618":{"body":"Used to count how often something happens relative to how often something else happens. Like how many documents use a particular CSS Property, or how many HTTP connections had an error. You can think of it like a fraction, with a numerator and a denominator. All rates start without a value. A rate with a numerator of 0 is valid and will be sent to ensure we capture the \"no errors happened\" or \"no use counted\" cases.","breadcrumbs":"Metric types » Rate » Rate","id":"618","title":"Rate"},"619":{"body":"When using a rate metric, it is important to let the Glean metric do the counting. Using your own variable for counting and setting the metric yourself could be problematic: ping scheduling will make it difficult to ensure the metric is at the correct value at the correct time. Instead, count to the numerator and denominator as you go.","breadcrumbs":"Metric types » Rate » Let the Glean metric do the counting","id":"619","title":"Let the Glean metric do the counting"},"62":{"body":"This chapter provides guidance for planning the work involved in integrating Glean into your product, for internal Mozilla customers. For a technical coding perspective, see adding Glean to your project . Glean is the standard telemetry platform required for all new Mozilla products. While there are some upfront costs to integrating Glean in your product, this pays off in easier long-term maintenance and a rich set of self-serve analysis tools. The Glean team is happy to support your telemetry integration and make it successful. Find us in #glean or email glean-team@mozilla.com .","breadcrumbs":"Integrating Glean for project managers » Integrating Glean for product managers","id":"62","title":"Integrating Glean for product managers"},"620":{"body":"","breadcrumbs":"Metric types » Rate » Recording API","id":"620","title":"Recording API"},"621":{"body":"Numerators and denominators need to be counted individually. import org.mozilla.yourApplication.GleanMetrics.Network if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnectionError.addToDenominator(1) External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : import org.mozilla.yourApplication.GleanMetrics.Network if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnections.add(1) import org.mozilla.yourApplication.GleanMetrics.Network; if (connectionHadError) { Network.INSTANCE.httpConnectionError().addToNumerator(1);\n} Network.IMPORTANT.httpConnectionError().addToDenominator(1); External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : import org.mozilla.yourApplication.GleanMetrics.Network; if (connectionHadError) { Network.INSTANCE.httpConnectionError().addToNumerator(1);\n} Network.INSTANCE.httpConnections().add(1) if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnectionError.addToDenominator(1) External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnections.add(1) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") if connection_had_error: metrics.network.http_connection_error.add_to_numerator(1) metrics.network.http_connection_error.add_to_denominator(1) External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") if connection_had_error: metrics.network.http_connection_error.add_to_numerator(1) metrics.network.http_connections.add(1) use glean_metrics::network; if connection_had_error { network::http_connection_error.add_to_numerator(1);\n} network::http_connection_error.add_to_denominator(1); External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : use glean_metrics::network; if connection_had_error { network::http_connection_error.add_to_numerator(1);\n} network::http_connections.add(1); import * as network from \"./path/to/generated/files/network.js\"; if (connectionHadError) { network.httpConnectionError.addToNumerator(1);\n} network.httpConnectionError.addToDenominator(1); C++ #include \"mozilla/glean/GleanMetrics.h\" if (aHadError) {\nmozilla::glean::network::http_connection_error.AddToNumerator(1);\n}\nmozilla::glean::network::http_connection_error.AddToDenominator(1); JavaScript if (aHadError) {\nGlean.network.httpConnectionError.addToNumerator(1);\n}\nGlean.network.httpConnectionError.addToDenominator(1); Recorded errors invalid_value : If either numerator or denominator is incremented by a negative value. invalid_type : If a floating point or non-number value is given. Limits Numerator and Denominator only increment. Numerator and Denominator saturate at the largest value that can be represented as a 32-bit signed integer (2147483647).","breadcrumbs":"Metric types » Rate » addToNumerator / addToDenominator","id":"621","title":"addToNumerator / addToDenominator"},"622":{"body":"","breadcrumbs":"Metric types » Rate » Testing API","id":"622","title":"Testing API"},"623":{"body":"Gets the recorded value for a given rate metric. Returns the numerator/denominator pair if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Network assertEquals(Rate(1, 1), Network.httpConnectionError.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Network; assertEquals(Rate(1, 1), Network.INSTANCE.httpConnectionError().testGetValue()); XCTAssertEqual( Rate(numerator: 1, denominator: 1), Network.httpConnectionError.testGetValue()\n) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert Rate(1, 1) == metrics.network.http_connection_error.test_get_value() use glean_metrics::network; let rate = network::http_connection_error.test_get_value(None).unwrap();\nassert_eq!(1, rate.numerator);\nassert_eq!(1, rate.denominator); import * as network from \"./path/to/generated/files/network.js\"; const { numerator, denominator } = await network.httpConnectionError.testGetValue();\nassert.strictEqual(numerator, 1);\nassert.strictEqual(denominator, 1); C++ #include \"mozilla/glean/GleanMetrics.h\" auto pair = mozilla::glean::network::http_connection_error.TestGetValue().unwrap();\nASSERT_EQ(1, pair.first);\nASSERT_EQ(1, pair.second); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.deepEqual(\n{ numerator: 1, denominator: 1 },\nGlean.network.httpConnectionError.testGetValue()\n);","breadcrumbs":"Metric types » Rate » testGetValue","id":"623","title":"testGetValue"},"624":{"body":"import org.mozilla.yourApplication.GleanMetrics.Network assertEquals( 0, Network.httpConnectionError.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Network; assertEquals( 0, Network.INSTANCE.httpConnectionError().testGetNumRecordedErrors( ErrorType.INVALID_VALUE )\n); XCTAssertEqual( 0, Network.httpConnectionError.testGetNumRecordedErrors(.invalidValue)\n) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") from glean.testing import ErrorType assert 0 == metrics.network.http_connection_error.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::network; assert_eq!( 0, network::http_connection_error.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n); import * as network from \"./path/to/generated/files/network.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 1, await network.httpConnectionError.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Rate » testGetNumRecordedErrors","id":"624","title":"testGetNumRecordedErrors"},"625":{"body":"Example rate metric definition: network: http_connection_error: type: rate description: > How many HTTP connections error out out of the total connections made. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Rate » Metric parameters","id":"625","title":"Metric parameters"},"626":{"body":"If several rates share the same denominator then the denominator should be defined as a counter and shared between rates using the denominator_metric property: network: http_connections: type: counter description: > Total number of http connections made. ... http_connection_error: type: rate description: > How many HTTP connections error out out of the total connections made. denominator_metric: network.http_connections ... http_connection_slow: type: rate description: > How many HTTP connections were slow, out of the total connections made. denominator_metric: network.http_connections ... The Glean JavaScript SDK does not support external denominators for Rate metrics, yet. Follow Bug 1745753 for updates on that features development.","breadcrumbs":"Metric types » Rate » External Denominators","id":"626","title":"External Denominators"},"627":{"body":"How often did an HTTP connection error? How many documents used a given CSS Property?","breadcrumbs":"Metric types » Rate » Data Questions","id":"627","title":"Data Questions"},"628":{"body":"Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Rate » Reference","id":"628","title":"Reference"},"629":{"body":"Records a single long Unicode text, used when the limits on String are too low.","breadcrumbs":"Metric types » Text » Text","id":"629","title":"Text"},"63":{"body":"The Glean SDKs provide support for answering basic product questions out-of-the-box, such as daily active users, product version and platform information. However, it is also a good idea to have a sense of any additional product-specific questions you are trying to answer with telemetry, and, when possible, in collaboration with a data scientist. This of course helps for your own planning, but is also invaluable for the Glean team to support you, since we will understand the ultimate goals of your product's telemetry and ensure the design will meet those goals and we can identify any new features that may be required. It is best to frame this document in the form of questions and use cases rather than as specific data points and schemas.","breadcrumbs":"Integrating Glean for project managers » Building a telemetry plan","id":"63","title":"Building a telemetry plan"},"630":{"body":"This type should only be used in special cases when other metrics don't fit. See limitations below. Reach out to the Glean team before using this.","breadcrumbs":"Metric types » Text » Important","id":"630","title":"Important"},"631":{"body":"","breadcrumbs":"Metric types » Text » Recording API","id":"631","title":"Recording API"},"632":{"body":"Sets a text metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Article Article.content.set(extractedText) import org.mozilla.yourApplication.GleanMetrics.Article; Article.INSTANCE.content().set(extractedText); Article.content.set(extractedText) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.article.content.set(extracted_text) use glean_metrics::article; article::content.set(extracted_text); import * as article from \"./path/to/generated/files/article.js\"; article.content.set(extractedText); Limits Text metrics can only be sent in custom pings . Text metrics are always of data collection category 3 (web_activity) or category 4 (highly_sensitive). Only ping and application lifetimes are allowed. Fixed maximum text length: 200 kilobytes. Longer text is truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Recorded errors invalid_overflow : if the text is too long. invalid_type : if a non-string value is given.","breadcrumbs":"Metric types » Text » set","id":"632","title":"set"},"633":{"body":"","breadcrumbs":"Metric types » Text » Testing API","id":"633","title":"Testing API"},"634":{"body":"Gets the recorded value for a given text metric. Returns the string if data is stored. Returns null if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Article assertEquals(\"some content\", Article.content.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Article; assertEquals(\"some content\", Article.INSTANCE.content().testGetValue()); XCTAssertEqual(\"some content\", Article.content.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert \"some content\" == metrics.article.content.test_get_value() use glean_metrics::article; assert_eq!(\"some content\", article::content.test_get_value(None).unwrap()); import * as article from \"./path/to/generated/files/article.js\"; assert.strictEqual(\"some content\", await article.content.testGetValue());","breadcrumbs":"Metric types » Text » testGetValue","id":"634","title":"testGetValue"},"635":{"body":"Gets the number of errors recorded for a given text metric. import org.mozilla.yourApplication.GleanMetrics.Article // Was the string truncated, and an error reported?\nassertEquals( 0, Article.content.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) import org.mozilla.yourApplication.GleanMetrics.Article; // Was the string truncated, and an error reported?\nassertEquals( 0, Article.content.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n); // Was the string truncated, and an error reported?\nXCTAssertEqual(0, Article.content.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Was the string truncated, and an error reported?\nassert 0 == metrics.article.content.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse glean_metrics::article; // Was the string truncated, and an error reported?\nassert_eq!( 0, article::content.test_get_num_recorded_errors( ErrorType::InvalidOverflow, None )\n); import * as article from \"./path/to/generated/files/article.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await article.content.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Text » testGetNumRecordedErrors","id":"635","title":"testGetNumRecordedErrors"},"636":{"body":"Example text metric definition: article: content: type: text lifetime: ping send_in_pings: - research data_sensitivity: - web_activity description: > The plaintext content of the displayed article. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Text » Metric parameters","id":"636","title":"Metric parameters"},"637":{"body":"What article content was displayed to the user? Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Text » Data questions","id":"637","title":"Data questions"},"638":{"body":"Record structured data.","breadcrumbs":"Metric types » Object » Object","id":"638","title":"Object"},"639":{"body":"","breadcrumbs":"Metric types » Object » Recording API","id":"639","title":"Recording API"},"64":{"body":"The technical steps for integrating Glean in your product are documented in its own chapter for supported platforms. We recommend having a member of the Glean team review this integration to catch any potential pitfalls.","breadcrumbs":"Integrating Glean for project managers » Integrating Glean into your product","id":"64","title":"Integrating Glean into your product"},"640":{"body":"Sets an object metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Party var balloons = Party.BalloonsObject()\nballoons.add(Party.BalloonsObjectItem(colour = \"red\", diameter = 5))\nballoons.add(Party.BalloonsObjectItem(colour = \"green\"))\nParty.balloons.set(balloons) var balloons: Party.BalloonsObject = []\nballoons.append(Party.BalloonsObjectItem(colour: \"red\", diameter: 5))\nballoons.append(Party.BalloonsObjectItem(colour: \"green\"))\nParty.balloons.set(balloons) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") balloons = metrics.BalloonsObject()\nballoons.append(BalloonsObjectItem(colour=\"red\", diameter=5))\nballoons.append(BalloonsObjectItem(colour=\"green\"))\nmetrics.party.balloons.set(balloons) C++ Not yet implemented. JavaScript let balloons = [ { colour: \"red\", diameter: 5 }, { colour: \"blue\", diameter: 7 },\n];\nGlean.party.balloons.set(balloons); Limits Only objects matching the specified structure will be recorded Recorded errors invalid_value : if the passed value doesn't match the predefined structure","breadcrumbs":"Metric types » Object » set","id":"640","title":"set"},"641":{"body":"","breadcrumbs":"Metric types » Object » Testing API","id":"641","title":"Testing API"},"642":{"body":"Gets the recorded value for a given object metric. Returns the data as a JSON object if data is stored. Returns null if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Party val snapshot = metric.testGetValue()!!\nassertEquals(1, snapshot.jsonArray.size) let snapshot = (try! Party.balloons.testGetValue()) as! [Any]\nXCTAssertEqual(1, snapshot.size) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") snapshot = metrics.party.balloons.test_get_value()\nassert 2 == len(snapshot) C++ Not yet implemented. JavaScript // testGetValue will throw a data error on invalid value.\nAssert.equal( [ { colour: \"red\", diameter: 5 }, { colour: \"blue\", diameter: 7 }, ], Glean.party.balloons.testGetValue()\n);","breadcrumbs":"Metric types » Object » testGetValue","id":"642","title":"testGetValue"},"643":{"body":"Gets the number of errors recorded for a given text metric. import org.mozilla.yourApplication.GleanMetrics.Party assertEquals( 0, Party.balloons.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) XCTAssertEqual(0, Party.balloons.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nfrom glean.testing import ErrorType\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.party.balloons.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n)","breadcrumbs":"Metric types » Object » testGetNumRecordedErrors","id":"643","title":"testGetNumRecordedErrors"},"644":{"body":"The definition for an object metric type accepts a structure parameter. This defines the accepted structure of the object using a subset of JSON schema . The allowed types are: string number boolean array object The array type takes an items parameter, that does define the element types it can hold. The object type takes a properties parameter, that defines the nested object structure. array and object metrics can be nested. No other schema parameters are allowed. All fields are optional. Data is validated against this schema at recording time. Missing values will not be serialized into the payload.","breadcrumbs":"Metric types » Object » Metric parameters","id":"644","title":"Metric parameters"},"645":{"body":"party: balloons: type: object description: A collection of balloons bugs: - https://bugzilla.mozilla.org/TODO data_reviews: - http://example.com/reviews notification_emails: - CHANGE-ME@example.com expires: never structure: type: array items: type: object properties: colour: type: string diameter: type: number For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Object » Example object metric definition:","id":"645","title":"Example object metric definition:"},"646":{"body":"What is the crash stack after a Firefox main process crash? Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Object » Data questions","id":"646","title":"Data questions"},"647":{"body":"Glean-owned pings are submitted automatically Products do not need to submit Glean built-in pings, as their scheduling is managed internally. The APIs on this page are only relevant for products defining custom pings .","breadcrumbs":"Pings » Pings","id":"647","title":"Pings"},"648":{"body":"","breadcrumbs":"Pings » Submission API","id":"648","title":"Submission API"},"649":{"body":"Collect and queue a custom ping for eventual uploading. By default, if the ping doesn't currently have any events or metrics set, submit will do nothing. However, if the send_if_empty flag is set to true in the ping definition, it will always be submitted. It is not necessary for the caller to check if Glean is disabled before calling submit. If Glean is disabled submit is a no-op. For example, to submit the custom ping defined in Adding new custom pings : import org.mozilla.yourApplication.GleanMetrics.Pings\nPings.search.submit( Pings.searchReasonCodes.performed\n) import org.mozilla.yourApplication.GleanMetrics.Pings Pings.INSTANCE.search.submit( Pings.INSTANCE.searchReasonCodes.performed\n); import Glean GleanMetrics.Pings.shared.search.submit( reason: .performed\n) from glean import load_pings pings = load_pings(\"pings.yaml\") pings.search.submit(pings.search_reason_codes.PERFORMED) use glean::Pings; pings::search.submit(pings::SearchReasonCodes::Performed); import * as pings from \"./path/to/generated/files/pings.js\"; pings.search.submit(pings.searchReasonCodes.Performed); C++ mozilla::glean_pings::Search.Submit(\"performed\"_ns); JavaScript GleanPings.search.submit(\"performed\");","breadcrumbs":"Pings » submit","id":"649","title":"submit"},"65":{"body":"The Glean SDKs are a collection of cross platform libraries and tools that facilitate collection of Glean conforming telemetry from applications. Consult the list of the currently supported platforms and languages . If your product's tech stack isn't currently supported, please reach out to the Glean team: significant work will be required to create a new integration. In previous efforts, this has ranged from 1 to 3 months FTE of work, so it is important to plan for this work well in advance. While the first phase of this work generally requires the specialized expertise of the Glean team, the second half can benefit from outside developers to move faster.","breadcrumbs":"Integrating Glean for project managers » (Optional) Adapting Glean to your platform","id":"65","title":"(Optional) Adapting Glean to your platform"},"650":{"body":"","breadcrumbs":"Pings » Testing API","id":"650","title":"Testing API"},"651":{"body":"Gets a set of the currently registered ping names. Useful when debugging to know which pings are able to be sent. val knownPings = Glean.getRegisteredPingNames() let knownPings = Glean.shared.getRegisteredPingNames() let known_pings = glean.get_registered_ping_names();","breadcrumbs":"Pings » getRegisteredPingNames","id":"651","title":"getRegisteredPingNames"},"652":{"body":"Runs a validation function before the ping is collected. import org.mozilla.yourApplication.GleanMetrics.Search\nimport org.mozilla.yourApplication.GleanMetrics.Pings // Record some data.\nSearch.defaultEngine.add(5); // Instruct the ping API to validate the ping data.\nvar validatorRun = false\nPings.search.testBeforeNextSubmit { reason -> assertEquals(Pings.searchReasonCodes.performed, reason) assertEquals(5, Search.defaultEngine.testGetValue()) validatorRun = true\n} // Submit the ping.\nPings.search.submit( Pings.searchReasonCodes.performed\n) // Verify that the validator run.\nassertTrue(validatorRun) import org.mozilla.yourApplication.GleanMetrics.Search\nimport org.mozilla.yourApplication.GleanMetrics.Pings // Record some data.\nSearch.INSTANCE.defaultEngine.add(5); // Instruct the ping API to validate the ping data.\nboolean validatorRun = false;\nPings.INSTANCE.search.testBeforeNextSubmit((reason) -> { assertEquals(Pings.searchReasonCodes.performed, reason); assertEquals(5, Search.INSTANCE.defaultEngine.testGetValue()); validatorRun = true;\n}); // Submit the ping.\nPings.INSTANCE.search.submit( Pings.INSTANCE.searchReasonCodes.performed\n); // Verify that the validator run.\nassertTrue(validatorRun); // Record some data.\nSearch.defaultEngine.add(5) // Instruct the ping API to validate the ping data.\nvar validatorRun = false\nGleanMetrics.pings.shared.search.testBeforeNextSubmit { reason in XCTAssertEqual(.performed, reason, \"Unexpected reason for search ping submitted\") XCTAssertEqual(5, try Search.defaultEngine.testGetValue(), \"Unexpected value for default engine in search ping\") validatorRun = true\n} // Submit the ping.\nGleanMetrics.Pings.shared.search.submit( reason: .performed\n) // Verify that the validator run.\nXCTAssert(validatorRun, \"Expected validator to be called by now.\") from glean import load_metrics, load_pings pings = load_pings(\"pings.yaml\")\nmetrics = load_metrics(\"metrics.yaml\") # Record some data.\nmetrics.search.default_engine.add(5) # Need a mutable object and plain booleans are not.\ncallback_was_called = [False] def check_custom_ping(reason): assert reason == pings.search_reason_codes.PERFORMED assert 5 == metrics.search.default_engine.test_get_value() callback_was_called[0] = True # Instruct the ping API to validate the ping data.\npings.search.test_before_next_submit(check_custom_ping) # Submit the ping.\npings.search.submit(pings.search_reason_codes.PERFORMED) # Verify that the validator run.\nassert callback_was_called[0] use glean_metrics::{search, pings}; // Record some data.\nsearch::default_engine.add(5); // Instruct the ping API to validate the ping data.\npings::search.test_before_next_submit(move |reason| { assert_eq!(pings::SearchReasonCodes::Performed, reason); assert_eq!(5, search::default_engine.test_get_value(None).unwrap());\n}); // When the `submit` API is not directly called by the\n// test code, it may be worth checking that the validator\n// function run by using a canary boolean in the closure\n// used in `test_before_next_submit` and asserting on its\n// value after submission. // Submit the ping.\npings::search.submit(pings::SearchReasonCodes::Performed); import * as search from \"./path/to/generated/files/search.js\";\nimport * as pings from \"./path/to/generated/files/pings.js\"; // Record some data.\nsearch.defaultEngine.add(5); // Instruct the ping API to validate the ping data.\nlet validatorRun = false;\nconst p = pings.search.testBeforeNextSubmit(async reason => { assert.strictEqual(reason, \"performed\"); assert.strictEqual(await search.defaultEngine.testGetValue(), 5); validatorRun = true;\n}); // Submit the ping.\npings.search.submit(\"performed\");\n// Wait for the validation to finish.\nassert.doesNotThrow(async () => await p); // Verify that the validator run.\nassert.ok(validatorRun); JavaScript: Glean.search.defaultEngine.add(5);\nlet submitted = false;\nGleanPings.search.testBeforeNextSubmit(reason => { submitted = true; Assert.equal(5, Glean.search.defaultEngine.testGetValue());\n});\nGleanPings.search.submit();\nAssert.ok(submitted); C++: mozilla::glean::search::default_engine.Add(5);\nbool submitted = false;\nmozilla::glean_pings::Search.TestBeforeNextSubmit([&submitted](const nsACString& aReason) { submitted = true; ASSERT_EQ(false, mozilla::glean::search::default_engine.TestGetValue().unwrap().ref());\n});\nmozilla::glean_pings::Search.Submit();\nASSERT_TRUE(submitted); Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » testBeforeNextSubmit","id":"652","title":"testBeforeNextSubmit"},"653":{"body":"The Glean SDKs are available for several programming languages and development environments. Although there are different SDKs, each of them is based off of either a JavaScript core or a Rust core. These cores contain the bulk of the logic of the client libraries. Thin wrappers around them expose APIs for the target platforms. Each SDK may also send a different set of default pings and collect a different set of default metrics . Finally, each SDK may also be [1] accompanied by glean_parser, a Python command line utility that provides a list of useful development tools for developers instrumenting a project using Glean. Some SDKs are not bundled with glean_parser and it is left to the user to install it separately. Rust Core-based SDKs Rust Kotlin Swift Python JavaScript Core-based SDKs JavaScript QML","breadcrumbs":"Overview » Overview","id":"653","title":"Overview"},"654":{"body":"The code for the Rust Core-based SDKs is available on the mozilla/glean repository. These group of SDKs were previously referred to as \"language bindings\" i.e. \"the Kotlin language bindings\" or \"the Python language bindings\".","breadcrumbs":"Overview » Rust Core-based SDKs","id":"654","title":"Rust Core-based SDKs"},"655":{"body":"The Glean Rust SDK can be used with any Rust application. It can serve a wide variety of usage patterns, such as short-lived CLI applications as well as longer-running desktop or server applications. It can optionally send builtin pings at startup. It does not assume an interaction model and the integrating application is responsible to connect the respective hooks. It is available as the glean crate on crates.io.","breadcrumbs":"Overview » Rust","id":"655","title":"Rust"},"656":{"body":"The Glean Kotlin SDK is primarily used for integration with Android applications. It assumes a common interaction model for mobile applications. It sends builtin pings at startup of the integrating application. It is available standalone as org.mozilla.telemetry:glean from the Mozilla Maven instance . The Kotlin SDK can also be used from Java. See Android for more on integrating Glean on Android.","breadcrumbs":"Overview » Kotlin","id":"656","title":"Kotlin"},"657":{"body":"The Glean Swift SDK is primarily used for integration with iOS applications. It assumes a common interaction model for mobile applications. It sends builtin pings at startup of the integrating application. It is available as a standalone Xcode framework from the Glean releases page or bundled with the AppServices framework .","breadcrumbs":"Overview » Swift","id":"657","title":"Swift"},"658":{"body":"The Glean Python SDK allows integration with any Python application. It can serve a wide variety of usage patterns, such as short-lived CLI applications as well as longer-running desktop or server applications. It is available as glean-sdk on PyPI .","breadcrumbs":"Overview » Python","id":"658","title":"Python"},"659":{"body":"The code for the JavaScript Core-based SDKs is available on the mozilla/glean.js repository. This collection of SDKs is commonly referred to as Glean.js .","breadcrumbs":"Overview » JavaScript Core-based SDKs","id":"659","title":"JavaScript Core-based SDKs"},"66":{"body":"The Glean SDKs periodically send telemetry to our servers in a bundle known as a \" ping \". For mobile applications with common interaction models, such as web browsers, the Glean SDKs provide basic pings out-of-the-box . For other kinds of products, it may be necessary to carefully design what triggers the submission of a ping. It is important to have a solid telemetry plan (see above) so we can make sure the ping submission will be able to answer the telemetry questions required of the product.","breadcrumbs":"Integrating Glean for project managers » (Optional) Designing ping submission","id":"66","title":"(Optional) Designing ping submission"},"660":{"body":"The Glean JavaScript SDK allows integration with three distint JavaScript environments: websites, web extension and Node.js. It is available as @mozilla/glean on npm . This package has different entry points to access the different SDKs. @mozilla/glean/web gives access to the websites SDK @mozilla/glean/webext gives access to the web extension SDK @mozilla/glean/node gives access to the Node.js SDK","breadcrumbs":"Overview » JavaScript","id":"660","title":"JavaScript"},"661":{"body":"The Glean QML SDK allows integration with Qt/QML applications and libraries. It is available as a compressed file attached to each new Glean.js release and may be downloaded from the project GitHub releases page . Found a bug? Edit this page on GitHub.","breadcrumbs":"Overview » QML","id":"661","title":"QML"},"662":{"body":"The Glean Kotlin SDK can be used in Android applications. The integration into the build system for Android applications can be tuned to your needs. See the following chapters for details. Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Android-specific information","id":"662","title":"Android-specific information"},"663":{"body":"This chapter describes build configuration options that control the behavior of the Glean Kotlin SDK's Gradle plugin. These options are not usually required for normal use. Options can be turned on by setting a variable on the Gradle ext object before applying the Glean Gradle plugin.","breadcrumbs":"Android » Android build configuration options » Android build script configuration options","id":"663","title":"Android build script configuration options"},"664":{"body":"Overwrite the auto-generated build date. If set to 0 a static UNIX epoch time will be used. If set to a ISO8601 datetime string it will use that date. Note that any timezone offset will be ignored and UTC will be used. For other values it will throw an error. ext.gleanBuildDate = \"2022-01-03T17:30:00\"","breadcrumbs":"Android » Android build configuration options » gleanBuildDate","id":"664","title":"gleanBuildDate"},"665":{"body":"Normally, the Glean Kotlin SDK looks for metrics.yaml and pings.yaml files in the root directory of the Glean-using project. However, in some cases, these files may need to ship inside the dependencies of the project. For example, this is used in the engine-gecko component to grab the metrics.yaml from the geckoview AAR. ext.allowMetricsFromAAR = true When this flag is set, every direct dependency of your library will be searched for a metrics.yaml file, and those metrics will be treated as the metrics as if they were defined by your library. That is, API wrappers accessible from your library will be generated for those metrics. The metrics.yaml can be added to the dependency itself by calling this on each relevant build variant: variant.packageLibraryProvider.get().from(\"${topsrcdir}/path/metrics.yaml\")","breadcrumbs":"Android » Android build configuration options » allowMetricsFromAAR","id":"665","title":"allowMetricsFromAAR"},"666":{"body":"The Glean Kotlin SDK can automatically generate Markdown documentation for metrics and pings defined in the registry files, in addition to the metrics API code. ext.gleanGenerateMarkdownDocs = true Flipping the feature to true will generate a metrics.md file in $projectDir/docs at build-time. In general this is not necessary for projects using Mozilla's data ingestion infrastructure: in those cases human-readable documentation will automatically be viewable via the Glean Dictionary .","breadcrumbs":"Android » Android build configuration options » gleanGenerateMarkdownDocs","id":"666","title":"gleanGenerateMarkdownDocs"},"667":{"body":"The gleanDocsDirectory can be used to customize the path of the documentation output directory. If gleanGenerateMarkdownDocs is disabled, it does nothing. Please note that only the metrics.md will be overwritten: any other file available in the target directory will be preserved. ext.gleanDocsDirectory = \"$rootDir/docs/user/telemetry\"","breadcrumbs":"Android » Android build configuration options » gleanDocsDirectory","id":"667","title":"gleanDocsDirectory"},"668":{"body":"By default, the Glean Gradle plugin will look for metrics.yaml and pings.yaml files in the same directory that the plugin is included from in your application or library. To override this, ext.gleanYamlFiles may be set to a list of explicit paths. ext.gleanYamlFiles = [\"$rootDir/glean-core/metrics.yaml\", \"$rootDir/glean-core/pings.yaml\"]","breadcrumbs":"Android » Android build configuration options » gleanYamlFiles","id":"668","title":"gleanYamlFiles"},"669":{"body":"Expire the metrics and pings by version, using the provided major version. If enabled, expiring metrics or pings by date will produce an error. ext.gleanExpireByVersion = 25 Different products have different ways to compute the product version at build-time. For this reason the Glean Gradle plugin cannot provide an automated way to detect the product major version at build time. When using the expiration by version feature in Android, products must provide the major version by themselves.","breadcrumbs":"Android » Android build configuration options » gleanExpireByVersion","id":"669","title":"gleanExpireByVersion"},"67":{"body":"The Glean SDKs have a number of different metric types that it can collect. Metric types provide \"guardrails\" to make sure that telemetry is being collected correctly, and to present the data at analysis time more automatically. Occasionally, products need to collect data that doesn't fit neatly into one of the available metric types. Glean has a process to request and introduce more metric types and we will work with you to design something appropriate. This design and implementation work is at least 4 weeks, though we are working on the foundation to accelerate that. Having a telemetry plan (see above) will help to identify this work early.","breadcrumbs":"Integrating Glean for project managers » (Optional) New metric types","id":"67","title":"(Optional) New metric types"},"670":{"body":"By default, the Glean Gradle plugin will manage its own Python virtualenv in $gradleUserHomeDir/glean to install glean_parser. By specifying a path in ext.gleanPythonEnvDir you can reuse an existing Python virtualenv. ext.gleanPythonEnvDir = \"$buildDir/externallyManagedVenv\" glean_parser must be available in that virtualenv, the Gradle plugin will make no attempt at installing it. Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Android build configuration options » gleanPythonEnvDir","id":"670","title":"gleanPythonEnvDir"},"671":{"body":"The Glean Kotlin SDK has basic support for building Android applications that use Glean in offline mode. The Glean Kotlin SDK uses a Python script, glean_parser to generate code for metrics from the metrics.yaml and pings.yaml files when Glean-using applications are built. When online, the pieces necessary to run this script are installed automatically. For offline builds, the Python environment, and packages of glean_parser and its dependencies must be provided prior to building the Glean-using application. To build a Glean-using application in offline mode, you can either:","breadcrumbs":"Android » Android offline builds » Offline builds of Android applications that use Glean","id":"671","title":"Offline builds of Android applications that use Glean"},"672":{"body":"Set ext.gleanPythonEnvDir to your existing virtualenv before applying the plugin, see gleanPythonEnvDir .","breadcrumbs":"Android » Android offline builds » Provide an externally-managed virtualenv","id":"672","title":"Provide an externally-managed virtualenv"},"673":{"body":"In this mode Glean will setup its own virtualenv in $gradleUserHomeDir/glean, controlled by the GLEAN_PYTHON and GLEAN_PYTHON_WHEELS_DIR environment variables. Install Python 3.8 or later and ensure it's on the PATH. On Linux, installing Python from your Linux distribution's package manager is usually sufficient. On macOS, installing Python from homebrew is known to work, but other package managers may also work. On Windows, we recommend installing one of the official Python installers from python.org . Determine the version of glean_parser required. It can be really difficult to manually determine the version of glean_parser that is required for a given application, since it needs to be tracked through android-components, to glean-core and finally to glean_parser. The required version of glean_parser can be determined by running the following at the top-level of the Glean-using application: $ ./gradlew | grep \"Requires glean_parser\"\nRequires glean_parser==1.28.1 Download packages for glean_parser and its dependencies: In the root directory of the Glean-using project, create a directory called glean-wheels and cd into it. Download packages for glean_parser and its dependencies, replacing X.Y.Z with the correct version of glean_parser: $ python3 -m pip download glean_parser==X.Y.Z Build the Glean-using project using ./gradlew, but passing in the --offline flag. There are a couple of environment variables that control offline building: To override the location of the Python interpreter to use, set the GLEAN_PYTHON environment variable. If unset, the first Python interpreter on the PATH will be used. To override the location of the downloaded Python wheels, set the GLEAN_PYTHON_WHEELS_DIR environment variable. If unset ${projectDir}/glean-wheels will be used. Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Android offline builds » Provide a Python interpreter and the required wheels","id":"673","title":"Provide a Python interpreter and the required wheels"},"674":{"body":"One of the things that might be useful to collect data on in an Android application is crashes. This guide will walk through a basic strategy for instrumenting an Android application with crash telemetry using a custom ping. Note: This is a very simple example of instrumenting crashes using the Glean SDK. There will be challenges to using this approach in a production application that should be considered. For instance, when an app crashes it can be in an unknown state and may not be able to do things like upload data to a server. The recommended way of instrumenting crashes with Android Components is called lib-crash , which takes into consideration things like multiple processes and persistence.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Instrumenting Android crashes with the Glean SDK","id":"674","title":"Instrumenting Android crashes with the Glean SDK"},"675":{"body":"There are a few things that need to be installed in order to proceed, mainly Android Studio . If you include the Android SDK, Android Studio can take a little while to download and get installed. This walk-through assumes some knowledge of Android application development. Knowing where to go to create a new project and how to add dependencies to a Gradle file will be helpful in following this guide.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Before You Start","id":"675","title":"Before You Start"},"676":{"body":"Please follow the instruction in the \"Adding Glean to your project\" chapter in order to set up Glean in an Android project.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Setup Build Configuration","id":"676","title":"Setup Build Configuration"},"677":{"body":"Since crashes will be instrumented with some custom metrics, the next step will be to add a metrics.yaml file to define the metrics used to record the crash information and a pings.yaml file to define a custom ping which will give some control over the scheduling of the uploading. See \"Adding new metrics\" for more information about adding metrics. What metric type should be used to represent the crash data? While this could be implemented several ways, an event is an excellent choice, simply because events capture information in a nice concise way and they have a built-in way of passing additional information using the extras field. If it is necessary to pass along the cause of the exception or a few lines of description, events let us do that easily (with some limitations ). Now that a metric type has been chosen to represent the metric, the next step is creating the metrics.yaml. Inside of the root application folder of the Android Studio project create a new file named metrics.yaml. After adding the schema definition and event metric definition, the metrics.yaml should look like this: # Required to indicate this is a `metrics.yaml` file\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 crash: exception: type: event description: | Event to record crashes caused by unhandled exceptions notification_emails: - crashes@example.com bugs: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 expires: 2021-01-01 send_in_pings: - crash extra_keys: cause: description: The cause of the crash message: description: The exception message As a brief explanation, this creates a metric called exception within a metric category called crash. There is a text description and the required notification_emails, bugs, data_reviews, and expires fields. The send_in_pings field is important to note here that it has a value of - crash. This means that the crash event metric will be sent via a custom ping named crash (which hasn't been created yet). Finally, note the extra_keys field which has two keys defined, cause and message. This allows for sending additional information along with the event to be associated with these keys. Note: For Mozilla applications, a mandatory data review is required in order to collect information with the Glean SDK.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Add A Custom Metric","id":"677","title":"Add A Custom Metric"},"678":{"body":"Define the custom ping that will help control the upload scheduling by creating a pings.yaml file in the same directory as the metrics.yaml file. For more information about adding custom pings, see the section on custom pings . The name of the ping will be crash, so the pings.yaml file should look like this: # Required to indicate this is a `pings.yaml` file\n$schema: moz://mozilla.org/schemas/glean/pings/2-0-0 crash: description: > A ping to transport crash data include_client_id: true notification_emails: - crash@example.com bugs: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 Before the newly defined metric or ping can be used, the application must first be built. This will cause the glean_parser to execute and generate the API files that represent the metric and ping that were newly defined. Note: If changes to the YAML files aren't showing up in the project, try running the clean task on the project before building any time one of the Glean YAML files has been modified. It is recommended that Glean be initialized as early in the application startup as possible, which is why it's good to use a custom Application, like the Glean Sample App GleanApplication.kt . Initializing Glean in the Application.onCreate() is ideal for this purpose. Start by adding the import statement to allow the usage of the custom ping that was created, adding the following to the top of the file: import org.mozilla.gleancrashexample.GleanMetrics.Pings Next, register the custom ping by calling Glean.registerPings(Pings) in the onCreate() function, preferably before calling Glean.initialize(). The completed function should look something like this: override fun onCreate() { super.onCreate() // Register the application's custom pings. Glean.registerPings(Pings) // Initialize the Glean library Glean.initialize(applicationContext)\n} This completes the registration of the custom ping with the Glean Kotlin SDK so that it knows about it and can manage the storage and other important details of it like sending it when send() is called.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Add A Custom Ping","id":"678","title":"Add A Custom Ping"},"679":{"body":"In order to make the custom Application class handle uncaught exceptions, extend the class definition by adding Thread.UncaughtExceptionHandler as an inherited class like this: class MainActivity : AppCompatActivity(), Thread.UncaughtExceptionHandler { ...\n} As part of implementing the Thread.UncaughtExceptionHandler interface, the custom Application needs to implement the override of the uncaughtException() function. An example of this override that records data and sends the ping could look something like this: override fun uncaughtException(thread: Thread, exception: Throwable) { Crash.exception.record( mapOf( Crash.exceptionKeys.cause to exception.cause!!.toString(), Crash.exceptionKeys.message to exception.message!! ) ) Pings.crash.submit()\n} This records data to the Crash.exception metric from the metrics.yaml. The category of the metric is crash and the name is exception so it is accessed it by calling record() on the Crash.exception object. The extra information for the cause and the message is set as well. Finally, calling Pings.crash.submit() forces the crash ping to be scheduled to be sent. The final step is to register the custom Application as the default uncaught exception handler by adding the following to the onCreate() function after Glean.initialize(this): Thread.setDefaultUncaughtExceptionHandler(this)","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Instrument The App To Record The Event","id":"679","title":"Instrument The App To Record The Event"},"68":{"body":"To use GLAM for analysis of your application's data file a ticket in the GLAM repository . A data engineer from the GLAM team will reach out to you if further information is required. Found a bug? Edit this page on GitHub.","breadcrumbs":"Integrating Glean for project managers » Integrating Glean into GLAM","id":"68","title":"Integrating Glean into GLAM"},"680":{"body":"This information didn't really get recorded by anything, as it would be rejected by the telemetry pipeline unless the application was already known. In order to collect telemetry from a new application, there is additional work that is necessary that is beyond the scope of this example. In order for data to be collected from your project, metadata must be added to the probe_scraper. The instructions for accomplishing this can be found in the probe_scraper documentation . Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Next Steps","id":"680","title":"Next Steps"},"681":{"body":"The Glean Swift SDK can be used in iOS applications. The integration into the build system for iOS applications can be tuned to your needs. See the following chapters for details. Found a bug? Edit this page on GitHub.","breadcrumbs":"iOS » iOS-specific information","id":"681","title":"iOS-specific information"},"682":{"body":"This chapter describes build configuration options that control the behavior of the Glean Swift SDK's sdk_generator.sh. These options are not usually required for normal use. Options can be passed as command-line flags.","breadcrumbs":"iOS » iOS build configuration options » iOS build script configuration options","id":"682","title":"iOS build script configuration options"},"683":{"body":"Default: $SOURCE_ROOT/$PROJECT/Generated The folder to place generated code in.","breadcrumbs":"iOS » iOS build configuration options » --output / -o / -o / -b ","id":"684","title":"--build-date / -b "},"685":{"body":"Default: none. Expire the metrics and pings by version, using the provided major version. If enabled, expiring metrics or pings by date will produce an error. bash sdk_generator.sh --expire-by-version 95 Different products have different ways to compute the product version at build-time. For this reason the sdk_generator.sh script cannot provide an automated way to detect the product major version at build time. When using the expiration by version feature in iOS, products must provide the major version by themselves.","breadcrumbs":"iOS » iOS build configuration options » --expire-by-version ","id":"685","title":"--expire-by-version "},"686":{"body":"Default: unset. The Glean Swift SDK can automatically generate Markdown documentation for metrics and pings defined in the registry files, in addition to the metrics API code. If set the documentation will be generated in the provided path. bash sdk_generator.sh --markdown $SOURCE_ROOT/docs In general this is not necessary for projects using Mozilla's data ingestion infrastructure: in those cases human-readable documentation will automatically be viewable via the Glean Dictionary .","breadcrumbs":"iOS » iOS build configuration options » --markdown / -m ","id":"686","title":"--markdown / -m "},"687":{"body":"Default: Glean The Glean namespace to use in generated code. bash sdk_generator.sh --glean-namespace AnotherGlean If you are using the combined release of application-services and the Glean Swift SDK you need to set the namespace to MozillaAppServices, e.g.: bash sdk_generator.sh --glean-namespace MozillaAppServices Found a bug? Edit this page on GitHub.","breadcrumbs":"iOS » iOS build configuration options » --glean-namespace / -g ","id":"687","title":"--glean-namespace / -g "},"688":{"body":"The Glean JavaScript SDK allows integration with three distinct JavaScript environments: websites, web extension and Node.js. It is available as @mozilla/glean on npm . This package has different entry points to access the different SDKs. @mozilla/glean/web gives access to the websites SDK @mozilla/glean/webext gives access to the web extension SDK @mozilla/glean/node gives access to the Node.js SDK Found a bug? Edit this page on GitHub.","breadcrumbs":"JavaScript » Glean JavaScript SDK","id":"688","title":"Glean JavaScript SDK"},"689":{"body":"The @mozilla/glean package exposes the glean CLI. This utility installs glean_parser in a virtual environment and allows users to execute glean_parser command through it. In order to get a list of all commands available run npx glean --help.","breadcrumbs":"JavaScript » Command Line Interface » Command Line Interface","id":"689","title":"Command Line Interface"},"69":{"body":"","breadcrumbs":"Metrics » Adding new metrics","id":"69","title":"Adding new metrics"},"690":{"body":"The glean CLI will look for / create a .venv virtual environment at the directory it is called from and install glean_parser there by default. However, it is possible to customize the directory in which it looks for a virtual environment, by setting the VIRTUAL_ENV environment variable. Example: VIRTUAL_ENV=\"my/venv/path\" npx glean --help By default Glean will try and use specific binaries based on the platform: python.exe on windows and python3 everywhere else. You can customize the Python binary used through environment variables. You are able to define both GLEAN_PYTHON and GLEAN_PIP. Example: Mac: export GLEAN_PYTHON=\nexport GLEAN_PIP= Windows: SET GLEAN_PYTHON=\nSET GLEAN_PIP=","breadcrumbs":"JavaScript » Command Line Interface » Customizing virtual environment","id":"690","title":"Customizing virtual environment"},"691":{"body":"The VIRTUAL_ENV environment variable is automatically set while a virtual environment in active , in which case Glean will not create a new environment, but use the currently active one.","breadcrumbs":"JavaScript » Command Line Interface » What if the glean command is called from inside an active virtual environment?","id":"691","title":"What if the glean command is called from inside an active virtual environment?"},"692":{"body":"In order to prevent the glean CLI from installing glean_parser itself, it must be provided with the path to a virtual environment that already has glean_parser installed. When doing that it is important to keep the separate installation of glean_parser in sync with the version expected by the Glean SDK version in use. The glean CLI exposes the --glean-parser-version command that returns the expected version of glean_parser for such use cases. With this command it is possible to something like: pip install -U glean_parser==$(npx glean --glean-parser-version) Found a bug? Edit this page on GitHub.","breadcrumbs":"JavaScript » Command Line Interface » Preventing automatic installation of glean_parser","id":"692","title":"Preventing automatic installation of glean_parser"},"693":{"body":"The Glean JavaScript SDK accepts a plugin array as an initialization parameter. import Glean from \"@mozilla/glean/webext\"\n// This is not a real available plugin,\n// it is a hypothetical one for illustration purposes.\nimport HypotheticalPlugin from \"@mozilla/glean/plugins/hypothetical\" Glean.initialize( \"my.fancy.modified.app\", uploadStatus, { plugins: [ new HypotheticalPlugin(\"with\", \"hypothetical\", \"arguments\") ] }\n); Plugins attach to specific internal events on the SDK and can modify its behavior. A big advantage of plugins is that they can address very specific use cases of Glean without bloating the final size of the SDK or overloading Glean's configuration object.","breadcrumbs":"JavaScript » Plugins » Plugins","id":"693","title":"Plugins"},"694":{"body":"It is not currently possible for users to write their own plugins, as this feature is still in its infancy.","breadcrumbs":"JavaScript » Plugins » On writing your own plugins","id":"694","title":"On writing your own plugins"},"695":{"body":"","breadcrumbs":"JavaScript » Plugins » Available plugins","id":"695","title":"Available plugins"},"696":{"body":"The PingEncryptionPlugin encrypts the pings payloads before pings are sent. Found a bug? Edit this page on GitHub.","breadcrumbs":"JavaScript » Plugins » PingEncryptionPlugin","id":"696","title":"PingEncryptionPlugin"},"697":{"body":"The PingEncryptionPlugin encrypts the pings payloads before pings are sent. The encryption happens after a ping is collected and before it is sent, the scope of this plugin does not include data encryption before collection. In other words, Glean will still store plain data on the user's machine and the data will only be encrypted during transit. Encrypted pings will not be compliant with the usual Glean ping schema . Instead they will follow a specific encrypted ping schema that looks like this: { \"payload\": \"eyJhbGciOiJFQ0RILUVTI...\"\n} The schema has one field, payload, which is an unbounded string containing the output of the encryption of the common Glean payload. Since JSON is the supported transport for our data ingestion platform, the encrypted payload will be in the JWE Compact Serialization format and must include a key id (kid) header identifying the public key used for encryption. A matching key is derived from the document namespace that uniquely identifies the application instead of the key id derived from the public key.","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » PingEncryptionPlugin","id":"697","title":"PingEncryptionPlugin"},"698":{"body":"The encryption key is provisioned by Data SRE and must be generated before new pings can be successfully ingested into a data store. Without a valid encryption key, the Glean pipeline will not be able to parse the pings and they will be thrown into the error stream. The encryption key should be requested as part of the process of adding a Glean application id to the ingestion pipeline (see this checklist ).","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » Requesting an encryption key","id":"698","title":"Requesting an encryption key"},"699":{"body":"","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » Usage","id":"699","title":"Usage"},"7":{"body":"The Glean SDKs Source Code is subject to the terms of the Mozilla Public License v2.0. You can obtain a copy of the MPL at https://mozilla.org/MPL/2.0/ .","breadcrumbs":"Glean » License","id":"7","title":"License"},"70":{"body":"Process overview Choosing a metric type Is it a single measurement? Are you measuring user behavior? Are you counting things? Are you measuring time? For how long do you need to collect this data? When should the Glean SDK automatically clear the measurement? A lifetime example What if none of these lifetimes are appropriate? What should this new metric be called? Reuse names from other applications Make names unique within an application Be as specific as possible What if none of these metric types is the right fit? How do I make sure my metric is working? Adding the metric to the metrics.yaml file Using the metric from your code Capitalization","breadcrumbs":"Metrics » Table of Contents","id":"70","title":"Table of Contents"},"700":{"body":"//esm\nimport PingEncryptionPlugin from \"@mozilla/glean/plugins/encryption\"\n// cjs\nconst { default: PingEncryptionPlugin } = require(\"@mozilla/glean/plugins/encryption\");","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » Entry point","id":"700","title":"Entry point"},"701":{"body":"The PingEncryptionPlugin constructor expects a JWK as a parameter. This JWK is the key provided by Data SRE during the \"Requesting an encryption key\" step. Glean.initialize({ \"my.fancy.encrypted.app\", uploadStatus, { plugins: [ new PingEncryptionPlugin({ \"crv\": \"P-256\", \"kid\": \"fancy\", \"kty\": \"EC\", \"x\": \"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\", \"y\": \"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\" }) ] }\n}); Note on logPings The logPings debug feature can still be used if ping encryption is turned on. Pings will be logged in their plain format, right before encryption happens. Found a bug? Edit this page on GitHub.","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » Instantiating","id":"701","title":"Instantiating"},"702":{"body":"A glossary with explanations and background for wording used in the Glean project.","breadcrumbs":"Glossary » Glossary","id":"702","title":"Glossary"},"703":{"body":"According to the dictionary the word “glean” means: to gather information or material bit by bit Glean is the combination of the Glean SDK, the Glean pipeline & Glean tools. See also: Glean - product analytics & telemetry .","breadcrumbs":"Glossary » Glean","id":"703","title":"Glean"},"704":{"body":"The general data pipeline is the infrastructure that collects, stores, and analyzes telemetry data from our products and logs from various services. See An overview of Mozilla’s Data Pipeline . The Glean pipeline additionally consists of the Probe Info Service , the schema generator , the JSON Schema transpiler , the ping schemas .","breadcrumbs":"Glossary » Glean Pipeline","id":"704","title":"Glean Pipeline"},"705":{"body":"The Glean SDKs are a bundle of libraries with support for different platforms. The source code is available at https://github.com/mozilla/glean and https://github.com/mozilla/glean.js .","breadcrumbs":"Glossary » Glean SDKs","id":"705","title":"Glean SDKs"},"706":{"body":"This documentation.","breadcrumbs":"Glossary » Glean SDKs book","id":"706","title":"Glean SDKs book"},"707":{"body":"Glean provides additional tools for its usage: Glean parser (Source code: https://github.com/mozilla/glean_parser/ )","breadcrumbs":"Glossary » Glean tools","id":"707","title":"Glean tools"},"708":{"body":"Metrics are the individual things being measured using Glean. They are defined in metrics.yaml files, also known as registry files . Glean itself provides some metrics out of the box .","breadcrumbs":"Glossary » Metric","id":"708","title":"Metric"},"709":{"body":"A ping is a bundle of related metrics, gathered in a payload to be transmitted. The Glean SDKs provide default pings and allows for custom pings, see Glean Pings .","breadcrumbs":"Glossary » Ping","id":"709","title":"Ping"},"71":{"body":"When adding a new metric, the process is: Consider the question you are trying to answer with this data, and choose the metric type and parameters to use. Add a new entry to metrics.yaml . Add code to your project to record into the metric by calling the Glean SDK. Important : Any new data collection requires documentation and data-review . This is also required for any new metric automatically collected by the Glean SDK.","breadcrumbs":"Metrics » Process overview","id":"71","title":"Process overview"},"710":{"body":"\"To submit\" means to collect & to enqueue a ping for uploading. The Glean SDKs store locally all the metrics set by it or by its clients. Each ping has its own schedule to gather all its locally saved metrics and create a JSON payload with them. This is called \"collection\". Upon successful collection, the payload is queued for upload, which may not happen immediately or at all (in case network connectivity is not available). Unless the user has defined their own custom pings, they don’t need to worry too much about submitting pings. All the default pings have their scheduling and submission handled by the SDK.","breadcrumbs":"Glossary » Submission","id":"710","title":"Submission"},"711":{"body":"The measurement window of a ping is the time frame in which metrics are being actively gathered for it. The measurement window start time is the moment the previous ping is submitted. In the absence of a previous ping, this time will be the time the application process started. The measurement window end time is the moment the current ping gets submitted. Any new metric recorded after submission will be part of the next ping, so this pings measurement window is over.","breadcrumbs":"Glossary » Measurement window","id":"711","title":"Measurement window"},"712":{"body":"This Week in Glean is a series of blog posts that the Glean Team at Mozilla is using to try to communicate better about our work. Found a bug? Edit this page on GitHub.","breadcrumbs":"Glossary » This Week in Glean (TWiG)","id":"712","title":"This Week in Glean (TWiG)"},"713":{"body":"mozilla/glean mozilla/glean.js Found a bug? Edit this page on GitHub.","breadcrumbs":"Changelog » Changelog","id":"713","title":"Changelog"},"714":{"body":"Full changelog","breadcrumbs":"Changelog » mozilla/glean » Unreleased changes","id":"714","title":"Unreleased changes"},"715":{"body":"Full changelog General Add methods to access current Glean debugging settings and the list of currently registered pings( Bug 1921976 ). Require glean_parser v16.1.0 ( #3006 ) BREAKING CHANGE: Add new collection-enabled mode (and follows_collection_enabled setting for pings). This allows to control a subset of pings independently from the Glean-wide upload-enabled flag. This deprecates the setUploadEnabled API in favor of setCollectionEnabled. ( #3006 ) Rust Permit Glean shutdown to interrupt UploadManager Wait tasks ( bug 1928288 )","breadcrumbs":"Changelog » mozilla/glean » v63.0.0 (2024-11-28)","id":"715","title":"v63.0.0 (2024-11-28)"},"716":{"body":"Full changelog General BREAKING : Remove LMDB-to-safe-mode migration. Safe-mode became the default in Glean v51. ( bug 1780370 ) BREAKING : Stop sending buckets with 0 counts in memory_distribution and timing_distribution metric payloads ( bug 1898336 ) Require glean_parser v15.2.0 ( bug 1925346 ) Disabled the glean.database.write_time metric as the instrumented behavior was triggering metrics pings to be sent containing only that metric ( Bug 1928168 ) Rust New Metric Type: labeled_quantity ( bug 1925346 )","breadcrumbs":"Changelog » mozilla/glean » v62.0.0 (2024-11-05)","id":"716","title":"v62.0.0 (2024-11-05)"},"717":{"body":"Full changelog Kotlin Accept a ping schedule map on initialize ( #2967 ) Swift Accept a ping schedule map on initialize ( #2967 )","breadcrumbs":"Changelog » mozilla/glean » v61.2.0 (2024-10-07)","id":"717","title":"v61.2.0 (2024-10-07)"},"718":{"body":"Full changelog Kotlin Change Metrics Ping Scheduler to use daemon threads ( #2930 ) Dispatch metric recording for event, object and timing distribution on the task queue ( #2942 ) Rust Experimental : Buffered API for timing, memory and custom distribution ( #2948 )","breadcrumbs":"Changelog » mozilla/glean » v61.1.0 (2024-09-24)","id":"718","title":"v61.1.0 (2024-09-24)"},"719":{"body":"Full changelog General BREAKING CHANGE: Updated to UniFFI 0.28.0 ( #2920 ) BREAKING CHANGE: Update to glean_parser v15.0.0 ( release notes ) Kotlin BREAKING CHANGE: Remove now obsolete type alias ( #2935 )","breadcrumbs":"Changelog » mozilla/glean » v61.0.0 (2024-08-21)","id":"719","title":"v61.0.0 (2024-08-21)"},"72":{"body":"The following is a set of questions to ask about the data being collected to help better determine which metric type to use.","breadcrumbs":"Metrics » Choosing a metric type","id":"72","title":"Choosing a metric type"},"720":{"body":"Full changelog General Make auto-flush behavior configurable and time-based ( #2871 ) Require glean_parser v14.5.0 ( #2916 ) Android Update to Gradle v8.9 ( #2909 ) Fixed GleanTestLocalServer test rule to prevent leaking between tests( Bug 1787234 ) Rust Remove cargo feature preinit_million_queue and set the default pre-init queue size to 10^6 for all consumers ( Bug 1909246 )","breadcrumbs":"Changelog » mozilla/glean » v60.5.0 (2024-08-06)","id":"720","title":"v60.5.0 (2024-08-06)"},"721":{"body":"Full changelog General Bump the string length limit to 255 characters ( #2857 ) New metric glean.database.write_time to measure database writes ( #2845 ) Require glean_parser v14.3.0 ( bug 1909244 ) Android Delay log init until Glean is getting initialized ( #2858 ) Update to Gradle v8.8 ( #2860 ) Updated Kotlin to version 1.9.24 ( #2861 ) Default-enable delayPingLifetimeIo ( #2863 ) Preparing Glean to be able to remove service-glean from Android Components ( #2891 ) Gradle Plugin: Support for using an external Python environment ( #2889 ) Rust New Metric Types: labeled_custom_distribution, labeled_memory_distribution, and labeled_timing_distribution ( bug 1657947 )","breadcrumbs":"Changelog » mozilla/glean » v60.4.0 (2024-07-23)","id":"721","title":"v60.4.0 (2024-07-23)"},"722":{"body":"Full changelog Android Allow configuring delayPingLifetimeIo in Kotlin and auto-flush this data after 1000 writes. It is also auto-flushed on background. ( #2851 )","breadcrumbs":"Changelog » mozilla/glean » v60.3.0 (2024-05-31)","id":"722","title":"v60.3.0 (2024-05-31)"},"723":{"body":"Full changelog Rust Accept a ping schedule map on initialize ( #2839 )","breadcrumbs":"Changelog » mozilla/glean » v60.2.0 (2024-05-23)","id":"723","title":"v60.2.0 (2024-05-23)"},"724":{"body":"Full changelog Android Allow configuring delayPingLifetimeIo in Kotlin and auto-flush this data after 1000 writes. It is also auto-flushed on background. ( #2851 ) (Backported changes)","breadcrumbs":"Changelog » mozilla/glean » v60.1.1 (2024-05-31)","id":"724","title":"v60.1.1 (2024-05-31)"},"725":{"body":"Full changelog Rust New TimingDistribution API for no-allocation single-duration accumulation. ( bug 1892097 ) Python Replace use of deprecated functionality (and make installs work on Python 3.12) ( #2820 )","breadcrumbs":"Changelog » mozilla/glean » v60.1.0 (2024-05-06)","id":"725","title":"v60.1.0 (2024-05-06)"},"726":{"body":"Full changelog Android Allow configuring delayPingLifetimeIo in Kotlin and auto-flush this data after 1000 writes. It is also auto-flushed on background. ( #2851 ) (Backported changes)","breadcrumbs":"Changelog » mozilla/glean » v60.0.1 (2024-05-31)","id":"726","title":"v60.0.1 (2024-05-31)"},"727":{"body":"Full changelog General BREAKING CHANGE: Server Knobs API changes requiring changes to consuming applications which make use of Server Knobs ( Bug 1889114 ) BREAKING CHANGE: Deprecated Server Knobs API setMetricsDisabled has been removed from all bindings. ( #2792 ) Added support for ping_schedule metadata property so that pings can be scheduled to be sent when other pings are sent. ( #2791 ) Android Updated Kotlin to version 1.9.23 ( #2737 ) New metric type: Object ( #2796 ) iOS New metric type: Object ( #2796 ) Python New metric type: Object ( #2796 )","breadcrumbs":"Changelog » mozilla/glean » v60.0.0 (2024-04-22)","id":"727","title":"v60.0.0 (2024-04-22)"},"728":{"body":"Full changelog General Hide glean_timestamp from event extras in tests ( #2776 ) Timing Distribution's timer ids now begin at 1, rather than 0, to make some multi-language use cases easier. ( 2777 ) Add a configuration option to disable internal pings ( #2786 ) Updated to UniFFI 0.27.0 ( #2762 )","breadcrumbs":"Changelog » mozilla/glean » v59.0.0 (2024-03-28)","id":"728","title":"v59.0.0 (2024-03-28)"},"729":{"body":"Full changelog General Enable wall clock timestamp on all events by default ( #2767 ) Rust Timing distribution and Custom distributions now expose accumulate_single_sample. This includes their traits and consumers that make use of them will need to implement the new functions ( Bug 1881297 ) Android Timing and Custom Distributions now have a accumulate_single_sample API that don't require use of a collection ( Bug 1881297 ) Python Timing Distributions now have both a accumulate_samples and accumulate_single_sample ( Bug 1881297 )","breadcrumbs":"Changelog » mozilla/glean » v58.1.0 (2024-03-12)","id":"729","title":"v58.1.0 (2024-03-12)"},"73":{"body":"If the value is true or false, use a boolean metric . If the value is a string, use a string metric . For example, to record the name of the default search engine. Beware: string metrics are exceedingly general, and you are probably best served by selecting the most specific metric for the job, since you'll get better error checking and richer analysis tools for free. For example, avoid storing a number in a string metric --- you probably want a counter metric instead. If you need to store multiple string values in a metric, use a string list metric . For example, you may want to record the list of other Mozilla products installed on the device. For all of the metric types in this section that measure single values, it is especially important to consider how the lifetime of the value relates to the ping it is being sent in. Since these metrics don't perform any aggregation on the client side, when a ping containing the metric is submitted, it will contain only the \"last known\" value for the metric, potentially resulting in data loss . There is further discussion of metric lifetimes below.","breadcrumbs":"Metrics » Is it a single measurement?","id":"73","title":"Is it a single measurement?"},"730":{"body":"Full changelog General Update glean_parser to v13.0.0 ( release notes ) Rust New metric type: Object ( #2489 ) BREAKING CHANGE: Support pings without {client|ping}_info sections ( #2756 ) Android Upgrade Android NDK to r26c ( #2745 )","breadcrumbs":"Changelog » mozilla/glean » v58.0.0 (2024-02-29)","id":"730","title":"v58.0.0 (2024-02-29)"},"731":{"body":"Full changelog General Added an experimental event listener API ( #2719 ) Android BREAKING CHANGE: Update JNA to version 5.14.0. Projects using older JNA releases may encounter errors until they update. ( #2727 ) Set the target Android SDK to version 34 ( #2709 ) Fixed an incorrectly named method. The method is now correctly named setExperimentationId. Update to Gradle v8.6 ( #2721 / #2731 )","breadcrumbs":"Changelog » mozilla/glean » v57.0.0 (2024-02-12)","id":"731","title":"v57.0.0 (2024-02-12)"},"732":{"body":"Full changelog General Errors are now recorded in cases where we had to create a new data store for Glean due to a failure ( bug 1815253 ) Update glean_parser to v11.0.0 ( release notes ) Event metrics can now record a maximum of 50 keys in the event extra object ( Bug 1869429 ) iOS Glean for iOS is now being built with Xcode 15.1 ( #2669 ) Android Replaced whenTaskAdded with configureEach in GleanGradlePlugin to avoid unnecessary configuration. ( #2697 )","breadcrumbs":"Changelog » mozilla/glean » v56.1.0 (2024-01-16)","id":"732","title":"v56.1.0 (2024-01-16)"},"733":{"body":"Full changelog General Updated to UniFFI 0.25.2 ( #2678 ) iOS Dropped support for iOS < 15 ( #2681 )","breadcrumbs":"Changelog » mozilla/glean » v56.0.0 (2023-11-30)","id":"733","title":"v56.0.0 (2023-11-30)"},"734":{"body":"Python BREAKING CHANGE: Dropped support for Python 3.7 ( # ) Full changelog General BREAKING CHANGE: Adding 0 to a counter or labeled_counter metric will be silently ignored instead of raising an invalid_value error ( bug 1762859 ) Trigger the uploader thread after scanning the pending pings directory ( bug 1847950 ) Extend start/stop time of a ping to millisecond precision. Custom pings can opt-out using precise_timestamps: false ( #2456 ) Update glean_parser to v10.0.0. Disallow unit field for anything but quantity, disallows ping lifetime metrics on the events ping, allows to configure precise timestamps in pings ( release notes ) Add an API to set an Experimentation ID that will be annotated to all pings ( Bug 1848201 )","breadcrumbs":"Changelog » mozilla/glean » v55.0.0 (2023-10-23)","id":"734","title":"v55.0.0 (2023-10-23)"},"735":{"body":"Full changelog General Experimental: Add configuration to add a wall clock timestamp to all events ( #2513 ) Python Switched the build system to maturin. This should not have any effect on consumers. ( #2345 ) BREAKING CHANGE: Dropped support for Python 3.6 ( #2345 ) Kotlin Update to Gradle v8.2.1 ( #2516 ) Increase Android compile SDK to version 34 ( #2614 )","breadcrumbs":"Changelog » mozilla/glean » v54.0.0 (2023-09-12)","id":"735","title":"v54.0.0 (2023-09-12)"},"736":{"body":"Full changelog General Update glean_parser to v8.1.0. Subsequently, metric names now have a larger limit of 70 characters ( release notes ) Rust The Ping Rate Limit type is now accessible in the Rust Language Binding ( #2528 ) Gracefully handle a failure when starting the upload thread. Glean no longer crashes in that case. ( #2545 ) locale now exposed through the RLB so it can be set by consumers ( #2531 ) Python Added the shutdown API for Python to ensure orderly shutdown and waiting for uploader processes ( #2538 ) Kotlin Move running of upload task when Glean is running in a background service to use the internal Glean Dispatchers rather than WorkManager. Bug 1844533","breadcrumbs":"Changelog » mozilla/glean » v53.2.0 (2023-08-02)","id":"736","title":"v53.2.0 (2023-08-02)"},"737":{"body":"Full changelog General Gracefully handle the waiting thread going away during shutdown ( #2503 ) Updated to UniFFI 0.24.1 ( #2510 ) Try blocking shutdown 10s for init to complete ( #2518 ) Android Update minimum supported Java byte code generation to 17 ( #2498 )","breadcrumbs":"Changelog » mozilla/glean » v53.1.0 (2023-06-28)","id":"737","title":"v53.1.0 (2023-06-28)"},"738":{"body":"Full changelog General Adds the capability to merge remote metric configurations, enabling multiple Nimbus Features or components to share this functionality ( Bug 1833381 ) StringList metric type limits have been increased. The length of strings allowed has been increased from 50 to 100 to match the String metric type, and the list length has been increased from 20 to 100 ( Bug 1833870 ) Make ping rate limiting configurable on Glean init. ( bug 1647630 ) Rust Timing distribution traits now expose accumulate_samples and accumulate_raw_samples_nanos. This is a breaking change for consumers that make use of the trait as they will need to implement the new functions ( Bug 1829745 ) iOS Make debugging APIs available on Swift ( #2470 ) Added a shutdown API for Swift. This should only be necessary for when Glean is running in a process other than the main process (like in the VPN daemon, for instance)( Bug 1832324 ) Glean for iOS is now being built with Xcode 14.3 ( #2253 )","breadcrumbs":"Changelog » mozilla/glean » v53.0.0 (2023-06-07)","id":"738","title":"v53.0.0 (2023-06-07)"},"739":{"body":"Full changelog General Allow user to configure how verbose the internal logging is ( #2459 ) Added a timeout waiting for the dispatcher at shutdown ( #2461 ) Added a new Glean metric glean.validation.shutdown_dispatcher_wait measuring the wait time at shutdown ( #2461 ) Kotlin Update Kotlin to version 1.8.21 ( #2462 ) Make debugging APIs available on Android ( Bug 1830937 )","breadcrumbs":"Changelog » mozilla/glean » v52.7.0 (2023-05-10)","id":"739","title":"v52.7.0 (2023-05-10)"},"74":{"body":"For tracking user behavior, it is usually meaningful to know the over of events that lead to the use of a feature. Therefore, for user behavior, an event metric is usually the best choice. Be aware, however, that events can be particularly expensive to transmit, store and analyze, so should not be used for higher-frequency measurements - though this is less of a concern in server environments .","breadcrumbs":"Metrics » Are you measuring user behavior?","id":"74","title":"Are you measuring user behavior?"},"740":{"body":"Full changelog Rust The Text metric type is now available in the Rust language bindings ( #2451 )","breadcrumbs":"Changelog » mozilla/glean » v52.6.0 (2023-04-20)","id":"740","title":"v52.6.0 (2023-04-20)"},"741":{"body":"Full changelog General On Rkv detecting a corrupted database delete the old RKV, create a new one and log the error ( #2425 ) Add the Date header as late as possible before the uploader acts ( #2436 ) The logic of the Server Knobs API has been flipped. Instead of applying a list of metrics and their disabled state, the API now accepts a list of metrics and their enabled state ( bug 1811253 ) Kotlin Adds the ability to record metrics on a non-main process. This is enabled by setting a dataPath in the Glean configuration ( bug 1815233 ) iOS Adds the ability to record metrics on a non-main process. This is enabled by setting a dataPath in the Glean configuration ( bug 1815233 )","breadcrumbs":"Changelog » mozilla/glean » v52.5.0 (2023-04-11)","id":"741","title":"v52.5.0 (2023-04-11)"},"742":{"body":"Full changelog General Expose Server Knobs functionality via UniFFI for use on mobile iOS BUGFIX: Prevent another test-only issue: The storage going away when the uploader reports back its status ( #2430 )","breadcrumbs":"Changelog » mozilla/glean » v52.4.3 (2023-03-24)","id":"742","title":"v52.4.3 (2023-03-24)"},"743":{"body":"Full changelog Rust Revert to libstd's remove_dir_all instead of external crate ( #2415 ) Python BUGFIX: Implement an empty shutdown function ( #2417 )","breadcrumbs":"Changelog » mozilla/glean » v52.4.2 (2023-03-15)","id":"743","title":"v52.4.2 (2023-03-15)"},"744":{"body":"Full changelog General Update tempfile crate to remove dependency on potentially vulnerable version of remove_dir_all@0.5.3","breadcrumbs":"Changelog » mozilla/glean » v52.4.1 (2023-03-10)","id":"744","title":"v52.4.1 (2023-03-10)"},"745":{"body":"Full changelog General Update glean_parser to v7.1.0 ( release notes ) Kotlin Upgrade Android NDK to r25c ( #2399 ) iOS BUGFIX: Reworking the HTTP uploader to avoid background uploading issues ( Bug 1819161 )","breadcrumbs":"Changelog » mozilla/glean » v52.4.0 (2023-03-09)","id":"745","title":"v52.4.0 (2023-03-09)"},"746":{"body":"Full changelog General No functional change from v52.3.0, just CI updates.","breadcrumbs":"Changelog » mozilla/glean » v52.3.1 (2023-03-01)","id":"746","title":"v52.3.1 (2023-03-01)"},"747":{"body":"Full changelog General Loosen label restrictions to \"at most 71 characters of printable ASCII\" ( bug 1672273 ) Introduced 2 new Glean health metrics: glean.upload.send_failure and glean.upload.send_success to measure the time for sending a ping ( #2365 ) Introduced a new Glean metric: glean.validation.shutdown_wait to measure the time Glean waits for the uploader on shutdown ( #2365 ) Rust On shutdown wait up to 30s on the uploader to finish work ( #2232 ) iOS BUGFIX: Avoid an invalid state (double-starting) for baseline.duration when Glean is first initialized ( #2368 )","breadcrumbs":"Changelog » mozilla/glean » v52.3.0 (2023-02-23)","id":"747","title":"v52.3.0 (2023-02-23)"},"748":{"body":"Full changelog General Update to UniFFI 0.23 ( #2338 )","breadcrumbs":"Changelog » mozilla/glean » v52.2.0 (2023-01-30)","id":"748","title":"v52.2.0 (2023-01-30)"},"749":{"body":"Full changelog General BUGFIX: Properly invoke the windows build number function from whatsys ( bug 1812672 )","breadcrumbs":"Changelog » mozilla/glean » v52.1.1 (2023-01-26)","id":"749","title":"v52.1.1 (2023-01-26)"},"75":{"body":"If you want to know how many times something happened, use a counter metric . If you are counting a group of related things, or you don't know what all of the things to count are at build time, use a labeled counter metric . If you need to know how many times something happened relative to the number of times something else happened, use a rate metric . If you need to know when the things being counted happened relative to other things, consider using an event .","breadcrumbs":"Metrics » Are you counting things?","id":"75","title":"Are you counting things?"},"750":{"body":"Full changelog General BUGFIX: Custom Pings with events should no longer erroneously post InvalidState errors ( bug 1811872 ) Upgrade to glean_parser v7.0.0 ( #2346 ) Kotlin Update to Gradle v7.6 ( #2317 ) Rust Added a new client_info field windows_build_number (Windows only) ( #2325 ) A new ConfigurationBuilder allows to create the Glean configuration before initialization ( #2313 ) Drop dependency on env_logger for regular builds ( #2312 )","breadcrumbs":"Changelog » mozilla/glean » v52.1.0 (2023-01-26)","id":"750","title":"v52.1.0 (2023-01-26)"},"751":{"body":"Full changelog Android The GleanDebugActivity can run without Glean being initialized ( #2336 ) Python Ship universal2 (aarch64 + x86_64 in one) wheels ( #2340 )","breadcrumbs":"Changelog » mozilla/glean » v52.0.1 (2023-01-19)","id":"751","title":"v52.0.1 (2023-01-19)"},"752":{"body":"Full changelog General Remove the metric glean.validation.first_run_hour. Note that this will mean no reason=upgrade metrics pings from freshly installed clients anymore. ( #2271 ) BEHAVIOUR CHANGE: Events in Custom Pings no longer trigger their submission. ( bug 1716725 ) Custom Pings with unsent events will no longer be sent at startup with reason startup. glean.restarted events will be included in Custom Pings with other events to rationalize event timestamps across restarts. test_reset_glean will remove all previous data if asked to clear stores, even if Glean never has been initialized ( #2294 ) Upgrade to glean_parser v6.5.0, with support for Cow in Rust code ( #2300 ) API REMOVED: The deprecated-since-v38 event metric record(map) API has been removed ( bug 1802550 ) BEHAVIOUR CHANGE: \"events\" pings will no longer be sent if they have metrics but no events ( bug 1803513 ) Experimental: Add functionality necessary to remotely configure the metric disabled property ( bug 1798919 ) This change has no effect when the API is not used and is transparent to consumers. The API is currently experimental because it is not stable and may change. Rust Static labels for labeled metrics are now Cow<'static, str> to reduce heap allocations ( #2272 ) NEW INTERNAL CONFIGURATION OPTION: trim_data_to_registered_pings will trim event storage to just the registered pings. Consult with the Glean Team before using. ( bug 1804915 )","breadcrumbs":"Changelog » mozilla/glean » v52.0.0 (2022-12-13)","id":"752","title":"v52.0.0 (2022-12-13)"},"753":{"body":"Full changelog General Upgrade to rkv 0.18.3. This comes with a bug fix that ensures that interrupted database writes don't corrupt/truncate the database file ( #2288 ) iOS Avoid building a dynamic library ( #2285 ). Note: v51.8.1 and 51.8.2 are not working on iOS and will break the build due to accidentally including a link to a dynamic library.","breadcrumbs":"Changelog » mozilla/glean » v51.8.3 (2022-11-25)","id":"753","title":"v51.8.3 (2022-11-25)"},"754":{"body":"Full changelog General BUGFIX: Reliably clear pending pings and events on Windows using remove_dir_all crate ( bug 1801128 ) Update to rkv v0.18.2 ( #2270 )","breadcrumbs":"Changelog » mozilla/glean » v51.8.2 (2022-11-17)","id":"754","title":"v51.8.2 (2022-11-17)"},"755":{"body":"Full changelog General Do not serialize count field in distribution payload ( #2267 ) BUGFIX: The glean-core \"metrics\" ping scheduler will now schedule and send \"upgrade\"-reason pings. ( bug 1800646 )","breadcrumbs":"Changelog » mozilla/glean » v51.8.1 (2022-11-15)","id":"755","title":"v51.8.1 (2022-11-15)"},"756":{"body":"Full changelog General Upgrade to glean_parser v6.3.0, increases the event extra limit to 15 ( #2255 ) Increase event extras value limit to 500 bytes ( #2255 ) Kotlin Increase to Android target/compile SDK version 33 ( #2246 ) iOS Try to avoid a crash by not invalidating upload sessions ( #2254 )","breadcrumbs":"Changelog » mozilla/glean » v51.8.0 (2022-11-03)","id":"756","title":"v51.8.0 (2022-11-03)"},"757":{"body":"Full changelog iOS Glean for iOS is now being built with Xcode 13.4 again ( #2242 ) Rust Add cargo feature preinit_million_queue to up the preinit queue length from 10^3 to 10^6 ( bug 1796258 )","breadcrumbs":"Changelog » mozilla/glean » v51.7.0 (2022-10-25)","id":"757","title":"v51.7.0 (2022-10-25)"},"758":{"body":"Full changelog General The internal glean-core dispatch queue changed from bounded to unbounded, while still behaving as a bounded queue. iOS BUGFIX: Additional work to address an iOS crash due to an invalidated session ( #2235 )","breadcrumbs":"Changelog » mozilla/glean » v51.6.0 (2022-10-24)","id":"758","title":"v51.6.0 (2022-10-24)"},"759":{"body":"Full changelog General Add count to DistributionData payload ( #2196 ) Update to UniFFI 0.21.0 ( #2229 ) Android Synchronize AndroidX dependencies with AC ( #2219 ) Bump jna to 5.12.1 #2221 ( #2221 ) iOS Glean for iOS is now being built with Xcode 14.0 ( #2188 )","breadcrumbs":"Changelog » mozilla/glean » v51.5.0 (2022-10-18)","id":"759","title":"v51.5.0 (2022-10-18)"},"76":{"body":"If you need to record an absolute time, use a datetime metric . Datetimes are recorded in the user's local time, according to their device's real time clock, along with a timezone offset from UTC. Datetime metrics allow specifying the resolution they are collected at, and to stay lean , they should only be collected at the minimum resolution required to answer your question. If you need to record how long something takes you have a few options. If you need to measure the total time spent doing a particular task, look to the timespan metric . Timespan metrics allow specifying the resolution they are collected at, and to stay lean , they should only be collected at the minimum resolution required to answer your question. Note that this metric should only be used to measure time on a single thread. If multiple overlapping timespans are measured for the same metric, an invalid state error is recorded. If you need to measure the relative occurrences of many timings, use a timing distribution . It builds a histogram of timing measurements, and is safe to record multiple concurrent timespans on different threads. If you need to know the time between multiple distinct actions that aren't a simple \"begin\" and \"end\" pair, consider using an event .","breadcrumbs":"Metrics » Are you measuring time?","id":"76","title":"Are you measuring time?"},"760":{"body":"Full changelog Kotlin Update Kotlin and Android Gradle Plugin to the latest releases ( #2211 ) Swift Fix for iOS startup crash caused by Glean ( #2206 )","breadcrumbs":"Changelog » mozilla/glean » v51.4.0 (2022-10-04)","id":"760","title":"v51.4.0 (2022-10-04)"},"761":{"body":"Full changelog General Update URL metric character limit to 8k to support longer URLs. URLs that are too long now are truncated to MAX_URL_LENGTH and still recorded along with an Overflow error. ( #2199 ) Kotlin Gradle plugin: Fix quoting issue in Python wrapper code ( #2193 ) Bumped the required Android NDK to version 25.1.8937393 ( #2195 )","breadcrumbs":"Changelog » mozilla/glean » v51.3.0 (2022-09-28)","id":"761","title":"v51.3.0 (2022-09-28)"},"762":{"body":"Full changelog General Relax glean_parser version requirement. All \"compatible releases\" are now allowed ( #2086 ) Uploaders can now signal that they can't upload anymore ( #2136 ) Update UniFFI to version 0.19.6 ( #2175 ) Kotlin BUGFIX: Re-enable correctly collecting glean.validation.foreground_count again ( #2153 ) BUGFIX: Gradle plugin: Correctly remove the version conflict check. Now the consuming module need to ensure it uses a single version across all dependencies ( #2155 ) Upgrade dependencies and increase to Android target/compile SDK version 32 ( #2150 ) Upgrade Android NDK to r25 ( #2159 ) BUGFIX: Correctly set os_version and architecture again ( #2174 ) iOS BUGFIX: Correctly set os_version and architecture again ( #2174 ) Python BUGFIX: Correctly handle every string that represents a UUID, including non-hyphenated random 32-character strings ( #2182 )","breadcrumbs":"Changelog » mozilla/glean » v51.2.0 (2022-09-08)","id":"762","title":"v51.2.0 (2022-09-08)"},"763":{"body":"Full changelog General BUGFIX: Handle that Glean might be uninitialized when an upload task is requested ( #2131 ) Updated the glean_parser to version 6.1.2 Kotlin BUGFIX: When setting a local endpoint in testing check for testing mode, not initialization ( #2145 ) Gradle plugin: Remove the version conflict check. Now the consuming module need to ensure it uses a single version across all dependencies ( #2143 )","breadcrumbs":"Changelog » mozilla/glean » v51.1.0 (2022-08-08)","id":"763","title":"v51.1.0 (2022-08-08)"},"764":{"body":"Full changelog General BUGFIX: Set the following client_info fields correctly again: android_sdk_version, device_manufacturer, device_model, locale. These were never set in Glean v50.0.0 to v51.0.0 ( #2131 )","breadcrumbs":"Changelog » mozilla/glean » v51.0.1 (2022-07-26)","id":"764","title":"v51.0.1 (2022-07-26)"},"765":{"body":"Full changelog General Remove testHasValue from all implementations. testGetValue always returns a null value (null, nil, None depending on the language) and does not throw an exception ( #2087 ). BREAKING CHANGE: Dropped ping_name argument from all test_get_num_recorded_errors methods ( #2088 ) Errors default to the metrics ping, so that's what is queried internally. BREAKING: Disable safe-mode everywhere. This causes all clients to migrate from LMDB to safe-mode storage ( #2123 ) Kotlin Fix the Glean Gradle Plugin to work with Android Gradle Plugin v7.2.1 ( #2114 ) Rust Add a method to construct an Event with runtime-known allowed extra keys. ( bug 1767037 )","breadcrumbs":"Changelog » mozilla/glean » v51.0.0 (2022-07-22)","id":"765","title":"v51.0.0 (2022-07-22)"},"766":{"body":"Full changelog General BUGFIX: Handle that Glean might be uninitialized when an upload task is requested ( #2131 )","breadcrumbs":"Changelog » mozilla/glean » v50.1.4 (2022-08-01)","id":"766","title":"v50.1.4 (2022-08-01)"},"767":{"body":"Full changelog General BUGFIX: Set the following client_info fields correctly again: android_sdk_version, device_manufacturer, device_model, locale. These were never set in Glean v50.0.0 to v51.0.0 ( #2131 )","breadcrumbs":"Changelog » mozilla/glean » v50.1.3 (2022-07-26)","id":"767","title":"v50.1.3 (2022-07-26)"},"768":{"body":"Full changelog General Update UniFFI to version 0.19.3 Fix rust-beta-tests linting","breadcrumbs":"Changelog » mozilla/glean » v50.1.2 (2022-07-08)","id":"768","title":"v50.1.2 (2022-07-08)"},"769":{"body":"Full changelog Kotlin Fix bug in Glean Gradle plugin by using correct quoting in embedded Python script ( #2097 ) Fix bug in Glean Gradle plugin by removing references to Linux paths ( #2098 )","breadcrumbs":"Changelog » mozilla/glean » v50.1.1 (2022-06-17)","id":"769","title":"v50.1.1 (2022-06-17)"},"77":{"body":"Think carefully about how long the metric will be needed, and set the expires parameter to disable the metric at the earliest possible time. This is an important component of Mozilla's lean data practices . When the metric passes its expiration date (determined at build time), it will automatically stop collecting data. When a metric's expiration is within in 14 days, emails will be sent from telemetry-alerts@mozilla.com to the notification_emails addresses associated with the metric. At that time, the metric should be removed, which involves removing it from the metrics.yaml file and removing uses of it in the source code. Removing a metric does not affect the availability of data already collected by the pipeline. If the metric is still needed after its expiration date, it should go back for another round of data review to have its expiration date extended. Important: Ensure that telemetry alerts are received and are reviewed in a timely manner. Expired metrics don't record any data, extending or removing a metric should be done in time. Consider adding both a group email address and an individual who is responsible for this metric to the notification_emails list.","breadcrumbs":"Metrics » For how long do you need to collect this data?","id":"77","title":"For how long do you need to collect this data?"},"770":{"body":"Full changelog General Updated to glean_parser v6.1.1 ( #2092 ) Swift Dropped usage of Carthage for internal dependencies ( #2089 ) Implement the text metric ( #2073 ) Kotlin Implement the text metric ( #2073 ) Rust Derive serde::{Deserialize, Serialize} on Lifetime and CommonMetricData ( bug 1772156 )","breadcrumbs":"Changelog » mozilla/glean » v50.1.0 (2022-06-15)","id":"770","title":"v50.1.0 (2022-06-15)"},"771":{"body":"Full changelog General Updated to glean_parser v6.0.1 Python Remove duplicate log initialization and prevent crash ( #2064 )","breadcrumbs":"Changelog » mozilla/glean » v50.0.1 (2022-05-25)","id":"771","title":"v50.0.1 (2022-05-25)"},"772":{"body":"Full changelog This release is a major refactoring of the internals and contains several breaking changes to exposed APIs. Exposed functionality should be unaffected. See below for details. General Switch to UniFFI-defined and -generated APIs for all 3 foreign-language SDKs The task dispatcher has been moved to Rust for all foreign-language SDKs Updated to glean_parser v6.0.0 Swift testGetValue on all metric types now returns nil when no data is recorded instead of throwing an exception. testGetValue on metrics with more complex data now return new objects for inspection. See the respective documentation for details. testHasValue on all metric types is deprecated. It is currently still available as extension methods. Use testGetValue with not-null checks. Kotlin testGetValue on all metric types now returns null when no data is recorded instead of throwing an exception. testGetValue on metrics with more complex data now return new objects for inspection. See the respective documentation for details. testHasValue on all metric types is deprecated. It is currently still available as extension methods and thus require an additional import. Use testGetValue with not-null checks. On TimingDistributionMetric, CustomDistributionMetric, MemoryDistributionMetric the accumulateSamples method now takes a List instead of LongArray. Use listOf instead of longArrayOf or call .toList TimingDistributionMetricType.start now always returns a valid TimerId, TimingDistributionMetricType.stopAndAccumulate always requires a TimerId. Python test_get_value on all metric types now returns None when no data is recorded instead of throwing an exception. test_has_value on all metric types was removed. Use test_get_value with not-null checks.","breadcrumbs":"Changelog » mozilla/glean » v50.0.0 (2022-05-20)","id":"772","title":"v50.0.0 (2022-05-20)"},"773":{"body":"Full changelog General The glean.error.preinit_tasks_overflow metric now reports only the number of overflowing tasks. It is marked as version 1 in the definition now. ( #2026 ) Kotlin (Development only) Allow to override the used glean_parser in the Glean Gradle Plugin ( #2029 ) setSourceTags is now a public API ( #2035 )) iOS setSourceTags is now a public API ( #2035 ) Rust Implemented try_get_num_recorded_errors for Boolean in Rust Language Bindings ( #2049 )","breadcrumbs":"Changelog » mozilla/glean » v44.2.0 (2022-05-16)","id":"773","title":"v44.2.0 (2022-05-16)"},"774":{"body":"Full changelog Rust Raise the global dispatcher queue limit from 100 to 1000 tasks. ( bug 1764549 ) iOS Enable expiry by version in the sdk_generator.sh script ( #2013 )","breadcrumbs":"Changelog » mozilla/glean » v44.1.1 (2022-04-14)","id":"774","title":"v44.1.1 (2022-04-14)"},"775":{"body":"Full changelog Android The glean-native-forUnitTests now ships with separate libraries for macOS x86_64 and macOS aarch64 ( #1967 ) Rust Glean will no longer overwrite the User-Agent header, but instead send that information as X-Telemetry-Agent ( bug 1711928 )","breadcrumbs":"Changelog » mozilla/glean » v44.1.0 (2022-04-06)","id":"775","title":"v44.1.0 (2022-04-06)"},"776":{"body":"General BREAKING CHANGE: Updated glean_parser version to 5.0.1 ( #1852 ). This update drops support for generating C# specific metrics API. Rust Ensure test-only destroy_glean() handles initialize() having started but not completed ( bug 1750235 ) Swift Dropping support of the Carthage-compatible framework archive ( #1943 ). The Swift Package (https://github.com/mozilla/glean-swift) is the recommended way of consuming Glean iOS. Python BUGFIX: Datetime metrics now correctly record the local timezone ( #1953 ). Full changelog","breadcrumbs":"Changelog » mozilla/glean » v44.0.0 (2022-02-09)","id":"776","title":"v44.0.0 (2022-02-09)"},"777":{"body":"Full changelog General Fix artifact publishing properly ( #1930 )","breadcrumbs":"Changelog » mozilla/glean » v43.0.2 (2022-01-17)","id":"777","title":"v43.0.2 (2022-01-17)"},"778":{"body":"Full changelog General Fix artifact publishing ( #1930 )","breadcrumbs":"Changelog » mozilla/glean » v43.0.1 (2022-01-17)","id":"778","title":"v43.0.1 (2022-01-17)"},"779":{"body":"Full changelog General Removed invalid_timezone_offset metric ( #1923 ) Python It is now possible to emit log messages from the networking subprocess by using the new log_level parameter to Glean.initialize. ( #1918 ) Kotlin Automatically pass build date as part of the build info ( #1917 ) iOS BREAKING CHANGE: Pass build info into initialize, which contains the build date ( #1917 ). A suitable instance is generated by glean_parser in GleanMetrics.GleanBuild.info.","breadcrumbs":"Changelog » mozilla/glean » v43.0.0 (2022-01-17)","id":"779","title":"v43.0.0 (2022-01-17)"},"78":{"body":"The lifetime parameter of a metric defines when its value will be cleared. There are three lifetime options available: ping (default) The metric is cleared each time it is submitted in the ping. This is the most common case, and should be used for metrics that are highly dynamic, such as things computed in response to the user's interaction with the application. application The metric is related to an application run, and is cleared after the application restarts and any Glean-owned ping, due at startup, is submitted. This should be used for things that are constant during the run of an application, such as the operating system version. In practice, these metrics are generally set during application startup. A common mistake--- using the ping lifetime for these type of metrics---means that they will only be included in the first ping sent during a particular run of the application. user NOTE: Reach out to the Glean team before using this. The metric is part of the user's profile and will live as long as the profile lives. This is often not the best choice unless the metric records a value that really needs to be persisted for the full lifetime of the user profile, e.g. an identifier like the client_id, the day the product was first executed. It is rare to use this lifetime outside of some metrics that are built in to the Glean SDK. While lifetimes are important to understand for all metric types, they are particularly important for the metric types that record single values and don't aggregate on the client (boolean, string, labeled_string, string_list, datetime and uuid), since these metrics will send the \"last known\" value and missing the earlier values could be a form of unintended data loss.","breadcrumbs":"Metrics » When should the Glean SDK automatically clear the measurement?","id":"78","title":"When should the Glean SDK automatically clear the measurement?"},"780":{"body":"Full changelog Python Reuse existing environment when launching subprocess ( #1908 )","breadcrumbs":"Changelog » mozilla/glean » v42.3.2 (2021-12-15)","id":"780","title":"v42.3.2 (2021-12-15)"},"781":{"body":"Full changelog iOS Fix Carthage archive release ( #1891 )","breadcrumbs":"Changelog » mozilla/glean » v42.3.1 (2021-12-07)","id":"781","title":"v42.3.1 (2021-12-07)"},"782":{"body":"Full changelog Rust BUGFIX: Correct category & name for preinit_tasks_overflow metric. Previously it would have been wrongly recorded as preinit_tasks_overflow.glean.error ( #1887 ) BUGFIX: Fix to name given to the events ping when instantiated ( #1885 ) iOS BUGFIX: Make fields of RecordedEventData publicly accessible ( #1867 ) Skip code generation in indexbuild build ( #1889 ) Python Don't let environment affect subprocess module search path ( #1542 )","breadcrumbs":"Changelog » mozilla/glean » v42.3.0 (2021-12-07)","id":"782","title":"v42.3.0 (2021-12-07)"},"783":{"body":"Full changelog General Updated glean_parser version to 4.3.1 ( #1852 ) Android Automatic detection of tags.yaml files ( #1852 )","breadcrumbs":"Changelog » mozilla/glean » v42.2.0 (2021-11-03)","id":"783","title":"v42.2.0 (2021-11-03)"},"784":{"body":"Full changelog Rust Backwards-compatible API Change: Make experiment test APIs public. ( #1834 )","breadcrumbs":"Changelog » mozilla/glean » v42.1.0 (2021-10-18)","id":"784","title":"v42.1.0 (2021-10-18)"},"785":{"body":"Full changelog General BUGFIX: Avoid a crash when accessing labeled metrics by caching created objects ( #1823 ). Python Glean now officially supports Python 3.10 ( #1818 )","breadcrumbs":"Changelog » mozilla/glean » v42.0.1 (2021-10-11)","id":"785","title":"v42.0.1 (2021-10-11)"},"786":{"body":"Full changelog Android Updated to Gradle 7, Android Gradle Plugin 7 and Rust Android Plugin 0.9 as well as building with Java 11 ( #1801 ) iOS Add support for the URL metric type ( #1791 ) Remove reliance on Operation for uploading and instead use the background capabilities of URLSession ( #1783 ) Glean for iOS is now being built with Xcode 13.0.0 ( #1802 ). Rust BUGFIX: No panic if trying to flush ping-lifetime data after shutdown ( #1800 ) BREAKING CHANGE: glean::persist_ping_lifetime_data is now async ( #1812 )","breadcrumbs":"Changelog » mozilla/glean » v42.0.0 (2021-10-06)","id":"786","title":"v42.0.0 (2021-10-06)"},"787":{"body":"Full changelog Android BUGFIX: Limit logging to Glean crates ( #1808 )","breadcrumbs":"Changelog » mozilla/glean » v41.1.1 (2021-09-29)","id":"787","title":"v41.1.1 (2021-09-29)"},"788":{"body":"Full changelog Rust BUGFIX: Ensure RLB persists ping lifetime data on shutdown ( #1793 ) Expose persist_ping_lifetime_data in the RLB. Consumers can call this to persist data at convenient times, data is also persisted on shutdown ( #1793 )","breadcrumbs":"Changelog » mozilla/glean » v41.1.0 (2021-09-16)","id":"788","title":"v41.1.0 (2021-09-16)"},"789":{"body":"Full changelog General BUGFIX: Only clear specified storage in delayed ping io mode ( #1782 ) Require Rust >= 1.53.0 ( #1782 ) Android Glean.initialize now requires a buildInfo parameter to pass in build time version information. A suitable instance is generated by glean_parser in ${PACKAGE_ROOT}.GleanMetrics.GleanBuildInfo.buildInfo. Support for not passing in a buildInfo object has been removed. ( #1752 )","breadcrumbs":"Changelog » mozilla/glean » v41.0.0 (2021-09-13)","id":"789","title":"v41.0.0 (2021-09-13)"},"79":{"body":"Let's work through an example to see how these lifetimes play out in practice. Let's suppose we have a user preference, \"turbo mode\", which defaults to false, but the user can turn it to true at any time. We want to know when this flag is true so we can measure its affect on other metrics in the same ping. In the following diagram, we look at a time period that sends 4 pings across two separate runs of the application. We assume here, that like the Glean SDK's built-in metrics ping , the developer writing the metric isn't in control of when the ping is submitted. In this diagram, the ping measurement windows are represented as rectangles, but the moment the ping is \"submitted\" is represented by its right edge. The user changes the \"turbo mode\" setting from false to true in the first run, and then toggles it again twice in the second run. Metric lifetime timeline A. Ping lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. It is included in the first ping after being recorded (Ping 2), which causes it to be cleared. B. Ping lifetime, set on init and change : The default value is included in Ping 1, and the changed value is included in Ping 2, which causes it to be cleared. It therefore misses Ping 3, but when the application is started, it is recorded again and it is included in Ping 4. However, this causes it to be cleared again and it is not in Ping 5. C. Application lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. After the value is changed, it is included in Pings 2 and 3, but then due to application restart it is cleared, so it is not included until the value is manually toggled again. D. Application, set on init and change : The default value is included in Ping 1, and the changed value is included in Pings 2 and 3. Even though the application startup causes it to be cleared, it is set again, and all subsequent pings also have the value. E. User, set on change : The default value is missing from Ping 1, but since user lifetime metrics aren't cleared unless the user profile is reset (e.g. on Android, when the product is uninstalled), it is included in all subsequent pings. F. User, set on init and change : Since user lifetime metrics aren't cleared unless the user profile is reset, it is included in all subsequent pings. This would be true even if the \"turbo mode\" preference were never changed again. Note that for all of the metric configurations, the toggle of the preference off and on during Ping 4 is completely missed. If you need to create a ping containing one, and only one, value for this metric, consider using a custom ping to create a ping whose lifetime matches the lifetime of the value.","breadcrumbs":"Metrics » A lifetime example","id":"79","title":"A lifetime example"},"790":{"body":"Full changelog General Updated glean_parser version to 4.0.0 Android Add support for the URL metric type ( #1778 ) Rust Add support for the URL metric type ( #1778 ) Python Add support for the URL metric type ( #1778 )","breadcrumbs":"Changelog » mozilla/glean » v40.2.0 (2021-09-08)","id":"790","title":"v40.2.0 (2021-09-08)"},"791":{"body":"Full changelog iOS Use 'Unknown' value if system data can't be decoded as UTF-8 ( #1769 ) BUGFIX: Add quantity metric type to the build ( #1774 ). Previous builds are unable to use quantity metrics","breadcrumbs":"Changelog » mozilla/glean » v40.1.1 (2021-09-02)","id":"791","title":"v40.1.1 (2021-09-02)"},"792":{"body":"Full changelog Android Updated to Kotlin 1.5, Android Gradle Plugin 4.2.2 and Gradle 6.7.1 ( #1747 ) The glean-gradle-plugin now forces a compile failure when multiple Glean versions are detected in the build ( #1756 ) The glean-gradle-plugin does not enable a glean-native capability on GeckoView anymore. That will be done by GeckoView directly ( #1759 )","breadcrumbs":"Changelog » mozilla/glean » v40.1.0 (2021-08-25)","id":"792","title":"v40.1.0 (2021-08-25)"},"793":{"body":"Full changelog Android Breaking Change : Split the Glean Kotlin SDK into two packages: glean and glean-native ( #1595 ). Consumers will need to switch to org.mozilla.telemetry:glean-native-forUnitTests. Old code in build.gradle: testImplementation \"org.mozilla.telemetry:glean-forUnitTests:${project.ext.glean_version}\" New code in build.gradle: testImplementation \"org.mozilla.telemetry:glean-native-forUnitTests:${project.ext.glean_version}\" The glean-gradle-plugin now automatically excludes the glean-native dependency if geckoview-omni is also part of the build. Glean native functionality will be provided by the geckoview-omni package. Rust The glean-ffi is no longer compiled as a cdylib. Other language SDKs consume glean-bundle instead as a cdylib. This doesn't affect consumers.","breadcrumbs":"Changelog » mozilla/glean » v40.0.0 (2021-07-28)","id":"793","title":"v40.0.0 (2021-07-28)"},"794":{"body":"Full changelog General Updated glean_parser version to 3.6.0 Allow Custom Distribution metric type on all platforms ( #1679 )","breadcrumbs":"Changelog » mozilla/glean » v39.1.0 (2021-07-26)","id":"794","title":"v39.1.0 (2021-07-26)"},"795":{"body":"Full changelog General Extend invalid_timezone_offset metric until the end of the year ( #1697 )","breadcrumbs":"Changelog » mozilla/glean » v39.0.4 (2021-07-26)","id":"795","title":"v39.0.4 (2021-07-26)"},"796":{"body":"Full changelog Android Unbreak Event#record API by accepting null on the deprecated API. The previous 39.0.0 release introduced the new API, but accidentally broke certain callers that just forward arguments. This restores passing null (or nothing) when using the old API. It remains deprecated.","breadcrumbs":"Changelog » mozilla/glean » v39.0.3 (2021-06-09)","id":"796","title":"v39.0.3 (2021-06-09)"},"797":{"body":"Full changelog iOS Fix iOS release build ( #1668 , #1669 )","breadcrumbs":"Changelog » mozilla/glean » v39.0.2 (2021-06-07)","id":"797","title":"v39.0.2 (2021-06-07)"},"798":{"body":"Full changelog iOS Build and release Glean as an xcframework ( #1663 ) This will now also auto-update the Glean package at https://github.com/mozilla/glean-swift.","breadcrumbs":"Changelog » mozilla/glean » v39.0.1 (2021-06-04)","id":"798","title":"v39.0.1 (2021-06-04)"},"799":{"body":"Full changelog General Add new event extras API to all implementations. See below for details ( #1603 ) Updated glean_parser version to 3.4.0 ( #1603 ) Rust Breaking Change : Allow event extras to be passed as an object. This replaces the old HashMap-based API. Values default to string. See the event documentation for details. ( #1603 ) Old code: let mut extra = HashMap::new();\nextra.insert(SomeExtra::Key1, \"1\".into());\nextra.insert(SomeExtra::Key2, \"2\".into());\nmetric.record(extra); New code: let extra = SomeExtra { key1: Some(\"1\".into()), key2: Some(\"2\".into()),\n};\nmetric.record(extra); Android Deprecation : The old event recording API is replaced by a new one, accepting a typed object ( #1603 ). See the event documentation for details. Skip build info generation for libraries ( #1654 ) Python Deprecation : The old event recording API is replaced by a new one, accepting a typed object ( #1603 ). See the event documentation for details. Swift Deprecation : The old event recording API is replaced by a new one, accepting a typed object ( #1603 ). See the event documentation for details.","breadcrumbs":"Changelog » mozilla/glean » v39.0.0 (2021-05-31)","id":"799","title":"v39.0.0 (2021-05-31)"},"8":{"body":"This page describes the steps for adding Glean to a project. This does not include the steps for adding a new metrics or pings to an existing Glean integration. If that is what your are looking for, refer to the Adding new metrics or the Adding new pings guide.","breadcrumbs":"Adding Glean to your project » Adding Glean to your project","id":"8","title":"Adding Glean to your project"},"80":{"body":"If the timing at which the metric is sent in the ping needs to closely match the timing of the metrics value, the best option is to use a custom ping to manually control when pings are sent. This is especially useful when metrics need to be tightly related to one another, for example when you need to measure the distribution of frame paint times when a particular rendering backend is in use. If these metrics were in different pings, with different measurement windows, it is much harder to do that kind of reasoning with much certainty.","breadcrumbs":"Metrics » What if none of these lifetimes are appropriate?","id":"80","title":"What if none of these lifetimes are appropriate?"},"800":{"body":"Full changelog General BUGFIX: Invert the lock order in glean-core's metrics ping scheduler ( #1637 )","breadcrumbs":"Changelog » mozilla/glean » v38.0.1 (2021-05-17)","id":"800","title":"v38.0.1 (2021-05-17)"},"801":{"body":"Full changelog General Update documentation to recommend using Glean Dictionary instead of metrics.md ( #1604 ) Rust Breaking Change : Don't return a result from submit_ping. The boolean return value indicates whether a ping was submitted ( #1613 ) Breaking Change : Glean now schedules \"metrics\" pings, accepting a new Configuration parameter. ( #1599 ) Dispatch setting the source tag to avoid a potential crash ( #1614 ) Testing mode will wait for init & upload tasks to finish ( #1628 ) Android Set required fields for client_info before optional ones ( #1633 ) Provide forward-compatibility with Gradle 6.8 ( #1616 )","breadcrumbs":"Changelog » mozilla/glean » v38.0.0 (2021-05-12)","id":"801","title":"v38.0.0 (2021-05-12)"},"802":{"body":"Full changelog General Breaking Change : \"deletion-request\" pings now include the reason upload was disabled: at_init (Glean detected a change between runs) or set_upload_enabled (Glean was told of a change as it happened). ( #1593 ). Attempt to upload a ping even in the face of IO Errors ( #1576 ). Implement an additional check to avoid crash due to faulty timezone offset ( #1581 ) This now records a new metric glean.time.invalid_timezone_offset, counting how often we failed to get a valid timezone offset. Use proper paths throughout to hopefully handle non-UTF-8 paths more gracefully ( #1596 ) Updated glean_parser version to 3.2.0 ( #1609 ) iOS Code generator: Ensure at least pip 20.3 is available in iOS build ( #1590 )","breadcrumbs":"Changelog » mozilla/glean » v37.0.0 (2021-04-30)","id":"802","title":"v37.0.0 (2021-04-30)"},"803":{"body":"Full changelog RLB Provide an internal-use-only API to pass in raw samples for timing distributions ( #1561 ). Expose Timespan's set_raw to Rust ( #1578 ). Android BUGFIX: TimespanMetricType.measure and TimingDistributionMetricType.measure won't get inlined anymore ( #1560 ). This avoids a potential bug where a return used inside the closure would end up not measuring the time. Use return@measure for early returns. Python The Glean Python bindings now use rkv's safe mode backend. This should avoid intermittent segfaults in the LMDB backend.","breadcrumbs":"Changelog » mozilla/glean » v36.0.1 (2021-04-09)","id":"803","title":"v36.0.1 (2021-04-09)"},"804":{"body":"Full changelog General Introduce a new API Ping#test_before_next_submit to run a callback right before a custom ping is submitted ( #1507 ). The new API exists for all language bindings (Kotlin, Swift, Rust, Python). Updated glean_parser version to 2.5.0 Change the fmt- and lint- make commands for consistency ( #1526 ) The Glean SDK can now produce testing coverage reports for your metrics ( #1482 ). Python Update minimal required version of cffi dependency to 1.13.0 ( #1520 ). Ship wheels for arm64 macOS ( #1534 ). RLB Added rate metric type ( #1516 ). Set internal_metrics::os_version for MacOS, Windows and Linux ( #1538 ) Expose a function get_timestamp_ms to get a timestamp from a monotonic clock on all supported operating systems, to be used for event timestamps ( #1546 ). Expose a function to record events with an externally provided timestamp. iOS Breaking Change : Event timestamps are now correctly recorded in milliseconds ( #1546 ). Since the first release event timestamps were erroneously recorded with nanosecond precision ( #1549 ). This is now fixed and event timestamps are in milliseconds. This is equivalent to how it works in all other language bindings.","breadcrumbs":"Changelog » mozilla/glean » v36.0.0 (2021-03-16)","id":"804","title":"v36.0.0 (2021-03-16)"},"805":{"body":"Full changelog Android Glean.initialize can now take a buildInfo parameter to pass in build time version information, and avoid calling out to the Android package manager at runtime. A suitable instance is generated by glean_parser in ${PACKAGE_ROOT}.GleanMetrics.GleanBuildInfo.buildInfo ( #1495 ). Not passing in a buildInfo object is still supported, but is deprecated. The testGetValue APIs now include a message on the NullPointerException thrown when the value is missing. Breaking change: LEGACY_TAG_PINGS is removed from GleanDebugActivity ( #1510 ) RLB Breaking change: Configuration.data_path is now a std::path::PathBuf( #1493 ).","breadcrumbs":"Changelog » mozilla/glean » v35.0.0 (2021-02-22)","id":"805","title":"v35.0.0 (2021-02-22)"},"806":{"body":"Full changelog General A new metric glean.validation.pings_submitted tracks the number of pings sent. It is included in both the metrics and baseline pings. iOS The metric glean.validation.foreground_count is now sent in the metrics ping ( #1472 ). BUGFIX: baseline pings with reason dirty_startup are no longer sent if Glean did not full initialize in the previous run ( #1476 ). Python Expose the client activity API ( #1481 ). BUGFIX: Publish a macOS wheel again. The previous release failed to build a Python wheel for macOS platforms ( #1471 ). RLB BUGFIX: baseline pings with reason dirty_startup are no longer sent if Glean did shutdown cleanly ( #1483 ).","breadcrumbs":"Changelog » mozilla/glean » v34.1.0 (2021-02-04)","id":"806","title":"v34.1.0 (2021-02-04)"},"807":{"body":"Full changelog General Other bindings detect when RLB is used and try to flush the RLB dispatcher to unblock the Rust API ( #1442 ). This is detected automatically, no changes needed for consuming code. Add support for the client activity API ( #1455 ). This API is either automatically used or exposed by the language bindings. Rename the reason background to inactive for both the baseline and events ping. Rename the reason foreground to active for the baseline ping. RLB When the pre-init task queue overruns, this is now recorded in the metric glean.error.preinit_tasks_overflow ( #1438 ). Expose the client activity API ( #1455 ). Send the baseline ping with reason dirty_startup, if needed, at startup. Expose all required types directly ( #1452 ). Rust consumers will not need to depend on glean-core anymore. Android BUGFIX: Don't crash the ping uploader when throttled due to reading too large wait time values ( #1454 ). Use the client activity API ( #1455 ). Update AndroidX dependencies ( #1441 ). iOS Use the client activity API ( #1465 ). Note: this now introduces a baseline ping with reason active on startup.","breadcrumbs":"Changelog » mozilla/glean » v34.0.0 (2021-01-29)","id":"807","title":"v34.0.0 (2021-01-29)"},"808":{"body":"Full changelog Rust Upgrade rkv to 0.17 ( #1434 )","breadcrumbs":"Changelog » mozilla/glean » v33.10.3 (2021-01-18)","id":"808","title":"v33.10.3 (2021-01-18)"},"809":{"body":"Full changelog General: A new metric glean.error.io has been added, counting the times an IO error happens when writing a pending ping to disk ( #1428 ) Android A new metric glean.validation.foreground_count was added to the metrics ping ( #1418 ). Rust BUGFIX: Fix lock order inversion in RLB Timing Distribution ( #1431 ). Use RLB types instead of glean-core ones for RLB core metrics. ( #1432 ).","breadcrumbs":"Changelog » mozilla/glean » v33.10.2 (2021-01-15)","id":"809","title":"v33.10.2 (2021-01-15)"},"81":{"body":"Metric names have a maximum length of 30 characters.","breadcrumbs":"Metrics » What should this new metric be called?","id":"81","title":"What should this new metric be called?"},"810":{"body":"Full changelog No functional changes. v33.10.0 failed to generated iOS artifacts due to broken tests ( #1421 ).","breadcrumbs":"Changelog » mozilla/glean » v33.10.1 (2021-01-06)","id":"810","title":"v33.10.1 (2021-01-06)"},"811":{"body":"Full changelog General A new metric glean.validation.first_run_hour, analogous to the existing first_run_date but with hour resolution, has been added. Only clients running the app for the first time after this change will report this metric ( #1403 ). Rust BUGFIX: Don't require mutable references in RLB traits ( #1417 ). Python Building the Python package from source now works on musl-based Linux distributions, such as Alpine Linux ( #1416 ).","breadcrumbs":"Changelog » mozilla/glean » v33.10.0 (2021-01-06)","id":"811","title":"v33.10.0 (2021-01-06)"},"812":{"body":"Full changelog Rust BUGFIX: Don't panic on shutdown and avoid running tasks if uninitialized ( #1398 ). BUGFIX: Don't fail on empty database files ( #1398 ). BUGFIX: Support ping registration before Glean initializes ( #1393 ).","breadcrumbs":"Changelog » mozilla/glean » v33.9.1 (2020-12-17)","id":"812","title":"v33.9.1 (2020-12-17)"},"813":{"body":"Full changelog Rust Introduce the String List metric type in the RLB. ( #1380 ). Introduce the Datetime metric type in the RLB ( #1384 ). Introduce the CustomDistribution and TimingDistribution metric type in the RLB ( #1394 ).","breadcrumbs":"Changelog » mozilla/glean » v33.9.0 (2020-12-15)","id":"813","title":"v33.9.0 (2020-12-15)"},"814":{"body":"Full changelog Rust Introduce the Memory Distribution metric type in the RLB. ( #1376 ). Shut down Glean in tests before resetting to make sure they don't mistakenly init Glean twice in parallel ( #1375 ). BUGFIX: Fixing 2 lock-order-inversion bugs found by TSan ( #1378 ). TSan runs on mozilla-central tests, which found two (potential) bugs where 2 different locks were acquired in opposite order in different code paths, which could lead to deadlocks in multi-threaded code. As RLB uses multiple threads (e.g. for init and the dispatcher) by default, this can easily become an actual issue. Python All log messages from the Glean SDK are now on the glean logger, obtainable through logging.getLogger(\"glean\"). (Prior to this, each module had its own logger, for example glean.net.ping_upload_worker).","breadcrumbs":"Changelog » mozilla/glean » v33.8.0 (2020-12-10)","id":"814","title":"v33.8.0 (2020-12-10)"},"815":{"body":"Full changelog Rust Upgrade rkv to 0.16.0 (no functional changes) ( #1355 ). Introduce the Event metric type in the RLB ( #1361 ). Python Python Linux wheels no longer work on Linux distributions released before 2014 (they now use the manylinux2014 ABI) ( #1353 ). Unbreak Python on non-Linux ELF platforms (BSD, Solaris/illumos) ( #1363 ).","breadcrumbs":"Changelog » mozilla/glean » v33.7.0 (2020-12-07)","id":"815","title":"v33.7.0 (2020-12-07)"},"816":{"body":"Full changelog Rust BUGFIX: Negative timespans for the timespan metric now correctly record an InvalidValue error ( #1347 ). Introduce the Timespan metric type in the RLB ( #1347 ). Python BUGFIX: Network slowness or errors will no longer block the main dispatcher thread, leaving work undone on shutdown ( #1350 ). BUGFIX: Lower sleep time on upload waits to avoid being stuck when the main process ends ( #1349 ).","breadcrumbs":"Changelog » mozilla/glean » v33.6.0 (2020-12-02)","id":"816","title":"v33.6.0 (2020-12-02)"},"817":{"body":"Full changelog Rust Introduce the UUID metric type in the RLB. Introduce the Labeled metric type in the RLB ( #1327 ). Introduce the Quantity metric type in the RLB. Introduce the shutdown API. Add Glean debugging APIs. Python BUGFIX: Setting a UUID metric to a value that is not in the expected UUID format will now record an error with the Glean error reporting system.","breadcrumbs":"Changelog » mozilla/glean » v33.5.0 (2020-12-01)","id":"817","title":"v33.5.0 (2020-12-01)"},"818":{"body":"Full changelog General When Rkv's safe mode is enabled (features = [\"rkv-safe-mode\"] on the glean-core crate) LMDB data is migrated at first start ( #1322 ). Rust Introduce the Counter metric type in the RLB. Introduce the String metric type in the RLB. BUGFIX: Track the size of the database directory at startup ( #1304 ). Python BUGFIX: Fix too-long sleep time in uploader due to unit mismatch ( #1325 ). Swift BUGFIX: Fix too-long sleep time in uploader due to unit mismatch ( #1325 ).","breadcrumbs":"Changelog » mozilla/glean » v33.4.0 (2020-11-17)","id":"818","title":"v33.4.0 (2020-11-17)"},"819":{"body":"Full changelog General Do not require default-features on rkv and downgrade bincode ( #1317 ) Do not require default-features on rkv and downgrade bincode ( #1317 ) Rust Implement the experiments API ( #1314 )","breadcrumbs":"Changelog » mozilla/glean » v33.3.0 (2020-11-12)","id":"819","title":"v33.3.0 (2020-11-12)"},"82":{"body":"There's a lot of value using the same name for analogous metrics collected across different products. For example, BigQuery makes it simple to join columns with the same name across multiple tables. Therefore, we encourage you to investigate if a similar metric is already being collected by another product. If it is, there may be an opportunity for code reuse across these products, and if all the projects are using the Glean SDK, it's easy for libraries to send their own metrics. If sharing the code doesn't make sense, at a minimum we recommend using the same metric name for similar actions and concepts whenever possible.","breadcrumbs":"Metrics » Reuse names from other applications","id":"82","title":"Reuse names from other applications"},"820":{"body":"Full changelog Python Fix building of Linux wheels ( #1303 ) Python Linux wheels no longer work on Linux distributions released before 2010. (They now use the manylinux2010 ABI, rather than the manylinux1 ABI.) Rust Introduce the RLB net module ( #1292 )","breadcrumbs":"Changelog » mozilla/glean » v33.2.0 (2020-11-10)","id":"820","title":"v33.2.0 (2020-11-10)"},"821":{"body":"Full changelog No changes. v33.1.1 was tagged incorrectly.","breadcrumbs":"Changelog » mozilla/glean » v33.1.2 (2020-11-04)","id":"821","title":"v33.1.2 (2020-11-04)"},"822":{"body":"Full changelog No changes. v33.1.0 was tagged incorrectly.","breadcrumbs":"Changelog » mozilla/glean » v33.1.1 (2020-11-04)","id":"822","title":"v33.1.1 (2020-11-04)"},"823":{"body":"Full changelog General Standardize throttle backoff time throughout all bindings. ( #1240 ) Update glean_parser to 1.29.0 Generated code now includes a comment next to each metric containing the name of the metric in its original snake_case form. Expose the description of the metric types in glean_core using traits. Rust Add the BooleanMetric type. Add the dispatcher module (copied over from mozilla-central ). Allow consumers to specify a custom uploader. Android Update the JNA dependency from 5.2.0 to 5.6.0 The glean-gradle-plugin now makes sure that only a single Miniconda installation will happen at the same time to avoid a race condition when multiple components within the same project are using Glean.","breadcrumbs":"Changelog » mozilla/glean » v33.1.0 (2020-11-04)","id":"823","title":"v33.1.0 (2020-11-04)"},"824":{"body":"Full changelog Note: Previous 33.0.z releases were broken. This release now includes all changes from 33.0.0 to 33.0.3. General Update glean_parser to 1.28.6 BUGFIX: Ensure Kotlin arguments are deterministically ordered Android Breaking change: Updated to the Android Gradle Plugin v4.0.1 and Gradle 6.5.1. Projects using older versions of these components will need to update in order to use newer versions of the Glean SDK. Update the Kotlin Gradle Plugin to version 1.4.10. Fixed the building of .aar releases on Android so they include the Rust shared objects.","breadcrumbs":"Changelog » mozilla/glean » v33.0.4 (2020-09-28)","id":"824","title":"v33.0.4 (2020-09-28)"},"825":{"body":"Full changelog General v33.0.2 was tagged incorrectly. This release is just to correct that mistake.","breadcrumbs":"Changelog » mozilla/glean » v33.0.3 (2020-09-25)","id":"825","title":"v33.0.3 (2020-09-25)"},"826":{"body":"Full changelog Android Fixed the building of .aar releases on Android so they include the Rust shared objects.","breadcrumbs":"Changelog » mozilla/glean » v33.0.2 (2020-09-25)","id":"826","title":"v33.0.2 (2020-09-25)"},"827":{"body":"Full changelog General Update glean_parser to 1.28.6 BUGFIX: Ensure Kotlin arguments are deterministically ordered Android Update the Kotlin Gradle Plugin to version 1.4.10.","breadcrumbs":"Changelog » mozilla/glean » v33.0.1 (2020-09-24)","id":"827","title":"v33.0.1 (2020-09-24)"},"828":{"body":"Full changelog Android Breaking change: Updated to the Android Gradle Plugin v4.0.1 and Gradle 6.5.1. Projects using older versions of these components will need to update in order to use newer versions of the Glean SDK.","breadcrumbs":"Changelog » mozilla/glean » v33.0.0 (2020-09-22)","id":"828","title":"v33.0.0 (2020-09-22)"},"829":{"body":"Full changelog General Update glean_parser to 1.28.6 BUGFIX: Ensure Kotlin arguments are deterministically ordered BUGFIX: Transform ping directory size from bytes to kilobytes before accumulating to glean.upload.pending_pings_directory_size ( #1236 ).","breadcrumbs":"Changelog » mozilla/glean » v32.4.1 (2020-10-01)","id":"829","title":"v32.4.1 (2020-10-01)"},"83":{"body":"Metric identifiers (the combination of a metric's category and name) must be unique across all metrics that are sent by a single application. This includes not only the metrics defined in the app's metrics.yaml, but the metrics.yaml of any Glean SDK-using library that the application uses, including the Glean SDK itself. Therefore, care should be taken to name things specifically enough so as to avoid namespace collisions. In practice, this generally involves thinking carefully about the category of the metric, more than the name. Note: Duplicate metric identifiers are not currently detected at build time. See bug 1578383 for progress on that. However, the probe_scraper process, which runs nightly, will detect duplicate metrics and e-mail the notification_emails associated with the given metrics.","breadcrumbs":"Metrics » Make names unique within an application","id":"83","title":"Make names unique within an application"},"830":{"body":"Full changelog General Allow using quantity metric type outside of Gecko ( #1198 ) Update glean_parser to 1.28.5 The SUPERFLUOUS_NO_LINT warning has been removed from the glinter. It likely did more harm than good, and makes it hard to make metrics.yaml files that pass across different versions of glean_parser. Expired metrics will now produce a linter warning, EXPIRED_METRIC. Expiry dates that are more than 730 days (~2 years) in the future will produce a linter warning, EXPIRATION_DATE_TOO_FAR. Allow using the Quantity metric type outside of Gecko. New parser configs custom_is_expired and custom_validate_expires added. These are both functions that take the expires value of the metric and return a bool. (See Metric.is_expired and Metric.validate_expires). These will allow FOG to provide custom validation for its version-based expires values. Add a limit of 250 pending ping files. ( #1217 ). Android Don't retry the ping uploader when waiting, sleep instead. This avoids a never-ending increase of the backoff time ( #1217 ).","breadcrumbs":"Changelog » mozilla/glean » v32.4.0 (2020-09-18)","id":"830","title":"v32.4.0 (2020-09-18)"},"831":{"body":"Full changelog General Track the size of the database file at startup ( #1141 ). Submitting a ping with upload disabled no longer shows an error message ( #1201 ). BUGFIX: scan the pending pings directories after dealing with upload status on initialization. This is important, because in case upload is disabled we delete any outstanding non-deletion ping file, and if we scan the pending pings folder before doing that we may end up sending pings that should have been discarded. ( #1205 ) iOS Disabled code coverage in release builds ( #1195 ). Python Glean now ships a source package to pip install on platforms where wheels aren't provided.","breadcrumbs":"Changelog » mozilla/glean » v32.3.2 (2020-09-11)","id":"831","title":"v32.3.2 (2020-09-11)"},"832":{"body":"Full changelog Python Fixed the release process to generate all wheels ( #1193 ).","breadcrumbs":"Changelog » mozilla/glean » v32.3.1 (2020-09-09)","id":"832","title":"v32.3.1 (2020-09-09)"},"833":{"body":"Full changelog Android Handle ping registration off the main thread. This removes a potential blocking call ( #1132 ). iOS Handle ping registration off the main thread. This removes a potential blocking call ( #1132 ). Glean for iOS is now being built with Xcode 12.0.0 (Beta 5) ( #1170 ).","breadcrumbs":"Changelog » mozilla/glean » v32.3.0 (2020-08-27)","id":"833","title":"v32.3.0 (2020-08-27)"},"834":{"body":"Full changelog General Move logic to limit the number of retries on ping uploading \"recoverable failures\" to glean-core. ( #1120 ) The functionality to limit the number of retries in these cases was introduced to the Glean SDK in v31.1.0. The work done now was to move that logic to the glean-core in order to avoid code duplication throughout the language bindings. Update glean_parser to v1.28.3 BUGFIX: Generate valid C# code when using Labeled metric types. BUGFIX: Support HashSet and Dictionary in the C# generated code. Add a 10MB quota to the pending pings storage. ( #1100 ) C# Add support for the String List metric type ( #1108 ). Enable generating the C# APIs using the glean_parser ( #1092 ). Add support for the EventMetricType in C# ( #1129 ). Add support for the TimingDistributionMetricType in C# ( #1131 ). Implement the experiments API in C# ( #1145 ). This is the last release with C# language bindings changes. Reach out to the Glean SDK team if you want to use the C# bindings in a new product and require additional features. Python BUGFIX: Limit the number of retries for 5xx server errors on ping uploads ( #1120 ). This kinds of failures yield a \"recoverable error\", which means the ping gets re-enqueued. That can cause infinite loops on the ping upload worker. For python we were incorrectly only limiting the number of retries for I/O errors, another type of \"recoverable error\". kebab-case ping names are now converted to snake_case so they are available on the object returned by load_pings ( #1122 ). For performance reasons, the glinter is no longer run as part of glean.load_metrics(). We recommend running glinter as part of your project's continuous integration instead ( #1124 ). A measure context manager for conveniently measuring runtimes has been added to TimespanMetricType and TimingDistributionMetricType ( #1126 ). Networking errors have changed from ERROR level to DEBUG level so they aren't displayed by default ( #1166 ). iOS Changed logging to use OSLog rather than a mix of NSLog and print. ( #1133 )","breadcrumbs":"Changelog » mozilla/glean » v32.2.0 (2020-08-25)","id":"834","title":"v32.2.0 (2020-08-25)"},"835":{"body":"Full changelog Android Support installing glean_parser in offline mode ( #1065 ). Fix a startup crash on some Android 8 (SDK=25) devices, due to a bug in the Java compiler ( #1135 ).","breadcrumbs":"Changelog » mozilla/glean » v32.1.1 (2020-08-24)","id":"835","title":"v32.1.1 (2020-08-24)"},"836":{"body":"Full changelog General The upload rate limiter has been changed from 10 pings per minute to 15 pings per minute.","breadcrumbs":"Changelog » mozilla/glean » v32.1.0 (2020-08-17)","id":"836","title":"v32.1.0 (2020-08-17)"},"837":{"body":"Full changelog General Limit ping request body size to 1MB. ( #1098 ) iOS Implement ping tagging (i.e. the X-Source-Tags header) through custom URL ( #1100 ). C# Add support for Labeled Strings and Labeled Booleans. Add support for the Counter metric type and Labeled Counter. Add support for the MemoryDistributionMetricType. Python Breaking change: data_dir must always be passed to Glean.initialize. Prior to this, a missing value would store Glean data in a temporary directory. Logging messages from the Rust core are now sent through Python's standard library logging module. Therefore all logging in a Python application can be controlled through the logging module interface. Android BUGFIX: Require activities executed via GleanDebugView to be exported.","breadcrumbs":"Changelog » mozilla/glean » v32.0.0 (2020-08-03)","id":"837","title":"v32.0.0 (2020-08-03)"},"838":{"body":"Full changelog General Implement JWE metric type ( #1073 , #1062 ). DEPRECATION: getUploadEnabled is deprecated (respectively get_upload_enabled in Python) ( #1046 ) Due to Glean's asynchronous initialization the return value can be incorrect. Applications should not rely on Glean's internal state. Upload enabled status should be tracked by the application and communicated to Glean if it changes. Note: The method was removed from the C# and Python implementation. Update glean_parser to v1.28.1 The glean_parser linting was leading consumers astray by incorrectly suggesting that deletion-request be instead deletion_request when used for send_in_pings. This was causing metrics intended for the deletion-request ping to not be included when it was collected and submitted. Consumers that are sending metrics in the deletion-request ping will need to update the send_in_pings value in their metrics.yaml to correct this. Fixes a bug in doc rendering.","breadcrumbs":"Changelog » mozilla/glean » v31.6.0 (2020-07-24)","id":"838","title":"v31.6.0 (2020-07-24)"},"839":{"body":"Full changelog General Implement ping tagging (i.e. the X-Source-Tags header) ( #1074 ). Note that this is not yet implemented for iOS. String values that are too long now record invalid_overflow rather than invalid_value through the Glean error reporting mechanism. This affects the string, event and string list metrics. metrics.yaml files now support a data_sensitivity field to all metrics for specifying the type of data collected in the field. Python The Python unit tests no longer send telemetry to the production telemetry endpoint. BUGFIX: If an application_version isn't provided to Glean.initialize, the client_info.app_display_version metric is set to \"Unknown\", rather than resulting in invalid pings. Android Allow defining which Activity to run next when using the GleanDebugActivity. iOS BUGFIX: The memory unit is now correctly set on the MemoryDistribution metric type in Swift in generated metrics code. C# Metrics can now be generated from the metrics.yaml files.","breadcrumbs":"Changelog » mozilla/glean » v31.5.0 (2020-07-22)","id":"839","title":"v31.5.0 (2020-07-22)"},"84":{"body":"More broadly, you should choose the names of metrics to be as specific as possible. It is not necessary to put the type of the metric in the category or name, since this information is retained in other ways through the entire end-to-end system. For example, if defining a set of events related to search, put them in a category called search, rather than just events or search_events. The events word here would be redundant.","breadcrumbs":"Metrics » Be as specific as possible","id":"84","title":"Be as specific as possible"},"840":{"body":"Full changelog General BUGFIX: fix int32 to ErrorType mapping. The InvalidOverflow had a value mismatch between glean-core and the bindings. This would only be a problem in unit tests. ( #1063 ) Android Enable propagating options to the main product Activity when using the GleanDebugActivity. BUGFIX: Fix the metrics ping collection for startup pings such as reason=upgrade to occur in the same thread/task as Glean initialize. Otherwise, it gets collected after the application lifetime metrics are cleared such as experiments that should be in the ping. ( #1069 )","breadcrumbs":"Changelog » mozilla/glean » v31.4.1 (2020-07-20)","id":"840","title":"v31.4.1 (2020-07-20)"},"841":{"body":"Full changelog General Enable debugging features through environment variables. ( #1058 )","breadcrumbs":"Changelog » mozilla/glean » v31.4.0 (2020-07-16)","id":"841","title":"v31.4.0 (2020-07-16)"},"842":{"body":"Full changelog General Remove locale from baseline ping. ( 1609968 , #1016 ) Persist X-Debug-ID header on store ping. ( 1605097 , #1042 ) BUGFIX: raise an error if Glean is initialized with an empty string as the application_id ( #1043 ). Python BUGFIX: correctly set the app_build metric to the newly provided application_build_id initialization option ( #1031 ). The Python bindings now report networking errors in the glean.upload.ping_upload_failure metric (like all the other bindings) ( #1039 ). Python default upgraded to Python 3.8 ( #995 ) iOS BUGFIX: Make LabeledMetric subscript public, so consuming applications can actually access it ( #1027 )","breadcrumbs":"Changelog » mozilla/glean » v31.3.0 (2020-07-10)","id":"842","title":"v31.3.0 (2020-07-10)"},"843":{"body":"Full changelog General Move debug view tag management to the Rust core. ( 1640575 , #998 ) BUGFIX: Fix mismatch in events keys and values by using glean_parser version 1.23.0.","breadcrumbs":"Changelog » mozilla/glean » v31.2.3 (2020-06-29)","id":"843","title":"v31.2.3 (2020-06-29)"},"844":{"body":"Full changelog Android BUGFIX: Compile dependencies with NDEBUG to avoid linking unavailable symbols. This fixes a crash due to a missing stderr symbol on older Android ( #1020 )","breadcrumbs":"Changelog » mozilla/glean » v31.2.2 (2020-06-26)","id":"844","title":"v31.2.2 (2020-06-26)"},"845":{"body":"Full changelog Python BUGFIX: Core metrics are now present in every ping, even if submit is called before initialize has a chance to complete. ( #1012 )","breadcrumbs":"Changelog » mozilla/glean » v31.2.1 (2020-06-25)","id":"845","title":"v31.2.1 (2020-06-25)"},"846":{"body":"Full changelog General Add rate limiting capabilities to the upload manager. ( 1543612 , #974 ) Android BUGFIX: baseline pings with reason \"dirty startup\" are no longer sent if Glean did not full initialize in the previous run ( #996 ). Python Support for Python 3.5 was dropped ( #987 ). Python wheels are now shipped with Glean release builds, resulting in much smaller libraries ( #1002 ) The Python bindings now use locale.getdefaultlocale() rather than locale.getlocale() to determine the locale ( #1004 ).","breadcrumbs":"Changelog » mozilla/glean » v31.2.0 (2020-06-24)","id":"846","title":"v31.2.0 (2020-06-24)"},"847":{"body":"Full changelog General BUGFIX: Correctly format the date and time in the Date header ( #993 ). Python BUGFIX: Additional time is taken at shutdown to make sure pings are sent and telemetry is recorded. ( 1646173 , #983 ) BUGFIX: Glean will run on the main thread when running in a multiprocessing subprocess ( #986 ).","breadcrumbs":"Changelog » mozilla/glean » v31.1.2 (2020-06-23)","id":"847","title":"v31.1.2 (2020-06-23)"},"848":{"body":"Full changelog Android Dropping the version requirement for lifecycle extensions down again. Upping the required version caused problems in A-C.","breadcrumbs":"Changelog » mozilla/glean » v31.1.1 (2020-06-12)","id":"848","title":"v31.1.1 (2020-06-12)"},"849":{"body":"Full changelog General: The regex crate is no longer required, making the Glean binary smaller ( #949 ) Record upload failures into a new metric ( #967 ) Log FFI errors as actual errors ( #935 ) Limit the number of upload retries in all implementations ( #953 , #968 ) Python Additional safety guarantees for applications that use Python threading ( #962 )","breadcrumbs":"Changelog » mozilla/glean » v31.1.0 (2020-06-11)","id":"849","title":"v31.1.0 (2020-06-11)"},"85":{"body":"The current set of metrics the Glean SDKs support is based on known common use cases, but new use cases are discovered all the time. Please reach out to us on #glean:mozilla.org . If you think you need a new metric type, we have a process for that .","breadcrumbs":"Metrics » What if none of these metric types is the right fit?","id":"85","title":"What if none of these metric types is the right fit?"},"850":{"body":"Full changelog Rust Fix list of included files in published crates","breadcrumbs":"Changelog » mozilla/glean » v31.0.2 (2020-05-29)","id":"850","title":"v31.0.2 (2020-05-29)"},"851":{"body":"Full changelog Rust Relax version requirement for flate2 for compatibility reasons","breadcrumbs":"Changelog » mozilla/glean » v31.0.1 (2020-05-29)","id":"851","title":"v31.0.1 (2020-05-29)"},"852":{"body":"Full changelog General: The version of glean_parser has been upgraded to v1.22.0 A maximum of 10 extra_keys is now enforced for event metric types. Breaking change : (Swift only) Combine all metrics and pings into a single generated file Metrics.swift. For Swift users this requires to change the list of output files for the sdk_generator.sh script. It now only needs to include the single file Generated/Metrics.swift. Python: BUGFIX: lifetime: application metrics are no longer recorded as lifetime: user. BUGFIX: glean-core is no longer crashing when calling uuid.set with invalid UUIDs. Refactor the ping uploader to use the new upload mechanism and add gzip compression. Most of the work in Glean.initialize happens on a worker thread and no longer blocks the main thread. Rust: Expose Datetime types to Rust consumers.","breadcrumbs":"Changelog » mozilla/glean » v31.0.0 (2020-05-28)","id":"852","title":"v31.0.0 (2020-05-28)"},"853":{"body":"Full changelog Android & iOS Ping payloads are now compressed using gzip. iOS Glean.initialize is now a no-op if called from an embedded extension. This means that Glean will only run in the base application process in order to prevent extensions from behaving like separate applications with different client ids from the base application. Applications are responsible for ensuring that extension metrics are only collected within the base application. Python lifetime: application metrics are now cleared after the Glean-owned pings are sent, after the product starts. Glean Python bindings now build in a native Windows environment. BUGFIX: MemoryDistributionMetric now parses correctly in metrics.yaml files. BUGFIX: Glean will no longer crash if run as part of another library's coverage testing.","breadcrumbs":"Changelog » mozilla/glean » v30.1.0 (2020-05-22)","id":"853","title":"v30.1.0 (2020-05-22)"},"854":{"body":"Full changelog General: We completely replaced how the upload mechanism works. glean-core (the Rust part) now controls all upload and coordinates the platform side with its own internals. All language bindings implement ping uploading around a common API and protocol. There is no change for users of Glean, the language bindings for Android and iOS have been adopted to the new mechanism already. Expose RecordedEvent and DistributionData types to Rust consumers ( #876 ) Log crate version at initialize ( #873 ) Android: Refactor the ping uploader to use the new upload mechanism. iOS: Refactor the ping uploader to use the new upload mechanism.","breadcrumbs":"Changelog » mozilla/glean » v30.0.0 (2020-05-13)","id":"854","title":"v30.0.0 (2020-05-13)"},"855":{"body":"Full changelog This is an iOS release only, built with Xcode 11.7 Otherwise no functional changes. iOS Build with Xcode 11.7 ( #1457 )","breadcrumbs":"Changelog » mozilla/glean » v29.1.2 (2021-01-26)","id":"855","title":"v29.1.2 (2021-01-26)"},"856":{"body":"Full changelog Android BUGFIX: Fix a race condition that leads to a ConcurrentModificationException. Bug 1635865","breadcrumbs":"Changelog » mozilla/glean » v29.1.1 (2020-05-22)","id":"856","title":"v29.1.1 (2020-05-22)"},"857":{"body":"Full changelog General: The version of glean_parser has been upgraded to v1.20.4 BUGFIX: yamllint errors are now reported using the correct file name. The minimum and maximum values of a timing distribution can now be controlled by the time_unit parameter. See bug 1630997 for more details.","breadcrumbs":"Changelog » mozilla/glean » v29.1.0 (2020-05-11)","id":"857","title":"v29.1.0 (2020-05-11)"},"858":{"body":"Full changelog General: The version of glean_parser has been upgraded to v1.20.2 ( #827 ): Breaking change: glinter errors found during code generation will now return an error code. glean_parser now produces a linter warning when user lifetime metrics are set to expire. See bug 1604854 for additional context. Android: The PingType.submit() can now be called without a null by Java consumers ( #853 ). Python: BUGFIX: Fixed a race condition in the atexit handler, that would have resulted in the message \"No database found\" ( #854 ). The Glean FFI header is now parsed at build time rather than runtime. Relevant for packaging in PyInstaller, the wheel no longer includes glean.h and adds _glean_ffi.py ( #852 ). The minimum versions of many secondary dependencies have been lowered to make the Glean SDK compatible with more environments. Dependencies that depend on the version of Python being used are now specified using the Declaring platform specific dependencies syntax in setuptools . This means that more recent versions of dependencies are likely to be installed on Python 3.6 and later, and unnecessary backport libraries won't be installed on more recent Python versions. iOS: Glean for iOS is now being built with Xcode 11.4.1 ( #856 )","breadcrumbs":"Changelog » mozilla/glean » v29.0.0 (2020-05-05)","id":"858","title":"v29.0.0 (2020-05-05)"},"859":{"body":"Full changelog General: The baseline ping is now sent when the application goes to foreground, in addition to background and dirty-startup. Python: BUGFIX: The ping uploader will no longer display a trace back when the upload fails due to a failed DNS lookup, network outage, or related issues that prevent communication with the telemetry endpoint. The dependency on inflection has been removed. The Python bindings now use subprocess rather than multiprocessing to perform ping uploading in a separate process. This should be more compatible on all of the platforms Glean supports.","breadcrumbs":"Changelog » mozilla/glean » v28.0.0 (2020-04-23)","id":"859","title":"v28.0.0 (2020-04-23)"},"86":{"body":"The Glean SDK has rich support for writing unit tests involving metrics. Writing a good unit test is a large topic, but in general, you should write unit tests for all new telemetry that does the following: Performs the operation being measured. Asserts that metrics contain the expected data, using the testGetValue API on the metric. Where applicable, asserts that no errors are recorded, such as when values are out of range, using the testGetNumRecordedErrors API. In addition to unit tests, it is good practice to validate the incoming data for the new metric on a pre-release channel to make sure things are working as expected.","breadcrumbs":"Metrics » How do I make sure my metric is working?","id":"86","title":"How do I make sure my metric is working?"},"860":{"body":"Full changelog General: BUGFIX: baseline pings sent at startup with the dirty_startup reason will now include application lifetime metrics ( #810 ) iOS: Breaking change: Change Glean iOS to use Application Support directory #815 . No migration code is included. This will reset collected data if integrated without migration. Please contact the Glean SDK team if this affects you. Python BUGFIX: Fixed a race condition between uploading pings and deleting the temporary directory on shutdown of the process.","breadcrumbs":"Changelog » mozilla/glean » v27.1.0 (2020-04-09)","id":"860","title":"v27.1.0 (2020-04-09)"},"861":{"body":"Full changelog General Glean will now detect when the upload enabled flag changes outside of the application, for example due to a change in a config file. This means that if upload is disabled while the application wasn't running (e.g. between the runs of a Python command using the Glean SDK), the database is correctly cleared and a deletion request ping is sent. See #791 . The events ping now includes a reason code: startup, background or max_capacity. iOS: BUGFIX: A bug where the metrics ping is sent immediately at startup on the last day of the month has been fixed. Glean for iOS is now being built with Xcode 11.4.0 The measure convenience function on timing distributions and time spans will now cancel the timing if the measured function throws, then rethrow the exception ( #808 ) Broken doc generation has been fixed ( #805 ). Kotlin The measure convenience function on timing distributions and time spans will now cancel the timing if the measured function throws, then rethrow the exception ( #808 ) Python: Glean will now wait at application exit for up to one second to let its worker thread complete. Ping uploading now happens in a separate child process by default. This can be disabled with the allow_multiprocessing configuration option.","breadcrumbs":"Changelog » mozilla/glean » v27.0.0 (2020-04-08)","id":"861","title":"v27.0.0 (2020-04-08)"},"862":{"body":"Full changelog General: The version of glean_parser has been updated to 1.19.0: Breaking change: The regular expression used to validate labels is stricter and more correct. Add more information about pings to markdown documentation: State whether the ping includes client id; Add list of data review links; Add list of related bugs links. glean_parser now makes it easier to write external translation functions for different language targets. BUGFIX: glean_parser now works on 32-bit Windows. Android: gradlew clean will no longer remove the Miniconda installation in ~/.gradle/glean. Therefore clean can be used without reinstalling Miniconda afterward every time. Python: Breaking Change : The glean.util and glean.hardware modules, which were unintentionally public, have been made private. Most Glean work and I/O is now done on its own worker thread. This brings the parallelism Python in line with the other platforms. The timing distribution, memory distribution, string list, labeled boolean and labeled string metric types are now supported in Python ( #762 , #763 , #765 , #766 )","breadcrumbs":"Changelog » mozilla/glean » v26.0.0 (2020-03-27)","id":"862","title":"v26.0.0 (2020-03-27)"},"863":{"body":"Full changelog Python: The Boolean, Datetime and Timespan metric types are now supported in Python ( #731 , #732 , #737 ) Make public, document and test the debugging features ( #733 )","breadcrumbs":"Changelog » mozilla/glean » v25.1.0 (2020-02-26)","id":"863","title":"v25.1.0 (2020-02-26)"},"864":{"body":"Full changelog General: ping_type is not included in the ping_info any more ( #653 ), the pipeline takes the value from the submission URL. The version of glean_parser has been upgraded to 1.18.2: Breaking Change (Java API) Have the metrics names in Java match the names in Kotlin. See Bug 1588060 . The reasons a ping are sent are now included in the generated markdown documentation. Android: The Glean.initialize method runs mostly off the main thread ( #672 ). Labels in labeled metrics now have a correct, and slightly stricter, regular expression. See label format for more information. iOS: The baseline ping will now include reason codes that indicate why it was submitted. If an unclean shutdown is detected (e.g. due to force-close), this ping will be sent at startup with reason: dirty_startup. Per Bug 1614785 , the clearing of application lifetime metrics now occurs after the metrics ping is sent in order to preserve values meant to be included in the startup metrics ping. initialize() now performs most of its work in a background thread. Python: When the pre-init task queue overruns, this is now recorded in the metric glean.error.preinit_tasks_overflow. glinter warnings are printed to stderr when loading metrics.yaml and pings.yaml files.","breadcrumbs":"Changelog » mozilla/glean » v25.0.0 (2020-02-17)","id":"864","title":"v25.0.0 (2020-02-17)"},"865":{"body":"Full changelog General: Add locale to client_info section. Deprecation Warning Since locale is now in the client_info section, the one in the baseline ping ( glean.baseline.locale ) is redundant and will be removed by the end of the quarter. Drop the Glean handle and move state into glean-core ( #664 ) If an experiment includes no extra fields, it will no longer include {\"extra\": null} in the JSON payload. Support for ping reason codes was added. The metrics ping will now include reason codes that indicate why it was submitted. The version of glean_parser has been upgraded to 1.17.3 Android: Collections performed before initialization (preinit tasks) are now dispatched off the main thread during initialization. The baseline ping will now include reason codes that indicate why it was submitted. If an unclean shutdown is detected (e.g. due to force-close), this ping will be sent at startup with reason: dirty_startup. iOS: Collections performed before initialization (preinit tasks) are now dispatched off the main thread and not awaited during initialization. Added recording of glean.error.preinit_tasks_overflow to report when the preinit task queue overruns, leading to data loss. See bug 1609734","breadcrumbs":"Changelog » mozilla/glean » v24.2.0 (2020-02-11)","id":"865","title":"v24.2.0 (2020-02-11)"},"866":{"body":"Full changelog General: Stopping a non started measurement in a timing distribution will now be reported as an invalid_state error. Android: A new metric glean.error.preinit_tasks_overflow was added to report when the preinit task queue overruns, leading to data loss. See bug 1609482","breadcrumbs":"Changelog » mozilla/glean » v24.1.0 (2020-01-16)","id":"866","title":"v24.1.0 (2020-01-16)"},"867":{"body":"Full changelog General: Breaking Change An enableUpload parameter has been added to the initialize() function. This removes the requirement to call setUploadEnabled() prior to calling the initialize() function. Android: The metrics ping scheduler will now only send metrics pings while the application is running. The application will no longer \"wake up\" at 4am using the Work Manager. The code for migrating data from Glean SDK before version 19 was removed. When using the GleanTestLocalServer rule in instrumented tests, pings are immediately flushed by the WorkManager and will reach the test endpoint as soon as possible. Python: The Python bindings now support Python 3.5 - 3.7. The Python bindings are now distributed as a wheel on Linux, macOS and Windows.","breadcrumbs":"Changelog » mozilla/glean » v24.0.0 (2020-01-14)","id":"867","title":"v24.0.0 (2020-01-14)"},"868":{"body":"Full changelog Android: BUGFIX: The Glean Gradle plugin will now work if an app or library doesn't have a metrics.yaml or pings.yaml file. iOS: The released iOS binaries are now built with Xcode 11.3.","breadcrumbs":"Changelog » mozilla/glean » v23.0.1 (2020-01-08)","id":"868","title":"v23.0.1 (2020-01-08)"},"869":{"body":"Full changelog Python bindings: Support for events and UUID metrics was added. Android: The Glean Gradle Plugin correctly triggers docs and API updates when registry files change, without requiring them to be deleted. parseISOTimeString has been made 4x faster. This had an impact on Glean migration and initialization. Metrics with lifetime: application are now cleared when the application is started, after startup Glean SDK pings are generated. All platforms: The public method PingType.send() (in all platforms) have been deprecated and renamed to PingType.submit(). Rename deletion_request ping to deletion-request ping after glean_parser update","breadcrumbs":"Changelog » mozilla/glean » v23.0.0 (2020-01-07)","id":"869","title":"v23.0.0 (2020-01-07)"},"87":{"body":"The metrics.yaml file defines the metrics your application or library will send. They are organized into categories. The overall organization is: # Required to indicate this is a `metrics.yaml` file\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 toolbar: click: type: event description: | Event to record toolbar clicks. metadata: tags: - Interaction notification_emails: - CHANGE-ME@example.com bugs: - https://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review expires: 2019-06-01 # <-- Update to a date in the future double_click: ... Refer to the metrics YAML registry format for a full reference on the metrics.yaml file structure.","breadcrumbs":"Metrics » Adding the metric to the metrics.yaml file","id":"87","title":"Adding the metric to the metrics.yaml file"},"870":{"body":"Full changelog Add InvalidOverflow error to TimingDistributions ( #583 )","breadcrumbs":"Changelog » mozilla/glean » v22.1.0 (2019-12-17)","id":"870","title":"v22.1.0 (2019-12-17)"},"871":{"body":"Full changelog Add option to defer ping lifetime metric persistence ( #530 ) Add a crate for the nice control API ( #542 ) Pending deletion_request pings are resent on start ( #545 )","breadcrumbs":"Changelog » mozilla/glean » v22.0.0 (2019-12-05)","id":"871","title":"v22.0.0 (2019-12-05)"},"872":{"body":"Full changelog Timers are reset when disabled. That avoids recording timespans across disabled/enabled toggling ( #495 ). Add a new flag to pings: send_if_empty ( #528 ) Upgrade glean_parser to v1.12.0 Implement the deletion request ping in Glean ( #526 )","breadcrumbs":"Changelog » mozilla/glean » v21.3.0 (2019-12-03)","id":"872","title":"v21.3.0 (2019-12-03)"},"873":{"body":"Full changelog All platforms The experiments API is no longer ignored before the Glean SDK initialized. Calls are recorded and played back once the Glean SDK is initialized. String list items were being truncated to 20, rather than 50, bytes when using .set() (rather than .add()). This has been corrected, but it may result in changes in the sent data if using string list items longer than 20 bytes.","breadcrumbs":"Changelog » mozilla/glean » v21.2.0 (2019-11-21)","id":"873","title":"v21.2.0 (2019-11-21)"},"874":{"body":"Full changelog Android: Use the LifecycleEventObserver interface, rather than the DefaultLifecycleObserver interface, since the latter isn't compatible with old SDK targets.","breadcrumbs":"Changelog » mozilla/glean » v21.1.1 (2019-11-20)","id":"874","title":"v21.1.1 (2019-11-20)"},"875":{"body":"Full changelog Android: Two new metrics were added to investigate sending of metrics and baseline pings. See bug 1597980 for more information. Glean's two lifecycle observers were refactored to avoid the use of reflection. All platforms: Timespans will now not record an error if stopping after setting upload enabled to false.","breadcrumbs":"Changelog » mozilla/glean » v21.1.0 (2019-11-20)","id":"875","title":"v21.1.0 (2019-11-20)"},"876":{"body":"Full changelog Android: The GleanTimerId can now be accessed in Java and is no longer a typealias. Fixed a bug where the metrics ping was getting scheduled twice on startup. All platforms Bumped glean_parser to version 1.11.0.","breadcrumbs":"Changelog » mozilla/glean » v21.0.0 (2019-11-18)","id":"876","title":"v21.0.0 (2019-11-18)"},"877":{"body":"Full changelog In earlier 20.x.x releases, the version of glean-ffi was incorrectly built against the wrong version of glean-core.","breadcrumbs":"Changelog » mozilla/glean » v20.2.0 (2019-11-11)","id":"877","title":"v20.2.0 (2019-11-11)"},"878":{"body":"Full changelog The version of Glean is included in the Glean Gradle plugin. When constructing a ping, events are now sorted by their timestamp. In practice, it rarely happens that event timestamps are unsorted to begin with, but this guards against a potential race condition and incorrect usage of the lower-level API.","breadcrumbs":"Changelog » mozilla/glean » v20.1.0 (2019-11-11)","id":"878","title":"v20.1.0 (2019-11-11)"},"879":{"body":"Full changelog Glean users should now use a Gradle plugin rather than a Gradle script. (#421) See integrating with the build system docs for more information. In Kotlin, metrics that can record errors now have a new testing method, testGetNumRecordedErrors. (#401)","breadcrumbs":"Changelog » mozilla/glean » v20.0.0 (2019-11-11)","id":"879","title":"v20.0.0 (2019-11-11)"},"88":{"body":"The reference documentation for each metric type goes into detail about using each metric type from your code. Note that all Glean metrics are write-only. Outside of unit tests, it is impossible to retrieve a value from the Glean SDK's database. While this may seem limiting, this is required to: enforce the semantics of certain metric types (e.g. that Counters can only be incremented). ensure the lifetime of the metric (when it is cleared or reset) is correctly handled.","breadcrumbs":"Metrics » Using the metric from your code","id":"88","title":"Using the metric from your code"},"880":{"body":"Full changelog Fixed a crash calling start on a timing distribution metric before Glean is initialized. Timings are always measured, but only recorded when upload is enabled ( #400 ) BUGFIX: When the Debug Activity is used to log pings, each ping is now logged only once ( #407 ) New invalid state error, used in timespan recording ( #230 ) Add an Android crash instrumentation walk-through ( #399 ) Fix crashing bug by avoiding assert-printing in LMDB ( #422 ) Upgrade dependencies, including rkv ( #416 )","breadcrumbs":"Changelog » mozilla/glean » v19.1.0 (2019-10-29)","id":"880","title":"v19.1.0 (2019-10-29)"},"881":{"body":"Full changelog First stable release of Glean in Rust (aka glean-core). This is a major milestone in using a cross-platform implementation of Glean on the Android platform. Fix round-tripping of timezone offsets in dates ( #392 ) Handle dynamic labels in coroutine tasks ( #394 )","breadcrumbs":"Changelog » mozilla/glean » v19.0.0 (2019-10-22)","id":"881","title":"v19.0.0 (2019-10-22)"},"882":{"body":"Full changelog Ignore dynamically stored labels if Glean is not initialized ( #374 ) Make sure ProGuard doesn't remove Glean classes from the app ( #380 ) Keep track of pings in all modes ( #378 ) Add jnaTest dependencies to the forUnitTest JAR ( #382 )","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING6 (2019-10-18)","id":"882","title":"v0.0.1-TESTING6 (2019-10-18)"},"883":{"body":"Full changelog Upgrade to NDK r20 ( #365 )","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING5 (2019-10-10)","id":"883","title":"v0.0.1-TESTING5 (2019-10-10)"},"884":{"body":"Full changelog Take DST into account when converting a calendar into its items ( #359 ) Include a macOS library in the forUnitTests builds ( #358 ) Keep track of all registered pings in test mode ( #363 )","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING4 (2019-10-09)","id":"884","title":"v0.0.1-TESTING4 (2019-10-09)"},"885":{"body":"Full changelog Allow configuration of Glean through the GleanTestRule Bump glean_parser version to 1.9.2","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING3 (2019-10-08)","id":"885","title":"v0.0.1-TESTING3 (2019-10-08)"},"886":{"body":"Full changelog Include a Windows library in the forUnitTests builds","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING2 (2019-10-07)","id":"886","title":"v0.0.1-TESTING2 (2019-10-07)"},"887":{"body":"Full changelog","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING1 (2019-10-02)","id":"887","title":"v0.0.1-TESTING1 (2019-10-02)"},"888":{"body":"First testing release. Found a bug? Edit this page on GitHub.","breadcrumbs":"Changelog » mozilla/glean » General","id":"888","title":"General"},"889":{"body":"Full changelog","breadcrumbs":"Changelog » mozilla/glean.js » Unreleased changes","id":"889","title":"Unreleased changes"},"89":{"body":"One thing to note is that we try to adhere to the coding conventions of each language wherever possible, so the metric name and category in the metrics.yaml (which is in snake_case) may be changed to some other case convention, such as camelCase, when used from code. Event extras and labels are never capitalized, no matter the target language. Category and metric names in the metrics.yaml are in snake_case, but given the Kotlin coding standards defined by ktlint , these identifiers must be camelCase in Kotlin. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: import org.mozilla.yourApplication.GleanMetrics.Views\nGleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, but given the Swift coding standards defined by swiftlint , these identifiers must be camelCase in Swift. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: GleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, which matches the PEP8 standard, so no translation is needed for Python. Given the Rust coding standards defined by clippy , identifiers should all be snake_case. This includes category names which in the metrics.yaml are dotted.snake_case: compound.category: metric_name: ... In Rust this becomes: use firefox_on_glean::metrics; metrics::compound_category::metric_name... JavaScript identifiers are customarily camelCase. This requires transforming a metric defined in the metrics.yaml as: compound.category: metric_name: ... to a form useful in JS as: import * as compoundCategory from \"./path/to/generated/files/compoundCategory.js\"; compoundCategory.metricName... Firefox Desktop has Coding Style Guidelines for both C++ and JS. This results in, for a metric defined in the metrics.yaml as: compound.category: metric_name: ... an identifier that looks like: C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::compound_category::metric_name... JavaScript Glean.compoundCategory.metricName... Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Capitalization","id":"89","title":"Capitalization"},"890":{"body":"Full changelog #1971 : Bumped glean_parser version to 14.5.0. #1970 : Add window.Glean.debugSession API for automatically opening a link to the Debug Ping Viewer with your current session selected.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.3 (2024-08-02)","id":"890","title":"v5.0.3 (2024-08-02)"},"891":{"body":"Full changelog #1935 : BREAKING CHANGE : Remove migrateFromLegacyStorage capability and configuration option. If your project currently sets the migrateFromLegacyStorage value, this will no longer work. #1942 : Bumped glean_parser version to 14.1.2.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.2 (2024-05-23)","id":"891","title":"v5.0.2 (2024-05-23)"},"892":{"body":"Full changelog #1923 : Bumped glean_parser version to 14.0.1. #1921 : BUGFIX: Fix issue causing glean.client.annotation.experimentation_id metric to not get added in certain pings. #1919 : Add glean.page_id to Glean automatic events.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.1 (2024-04-30)","id":"892","title":"v5.0.1 (2024-04-30)"},"893":{"body":"Full changelog This is the official release based on the v5.0.0-pre.0 release.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.0 (2024-03-25)","id":"893","title":"v5.0.0 (2024-03-25)"},"894":{"body":"Full changelog #1895 : Improve automatic click events for nested elements. #1899 : Bug 1886113 - Add wall-clock timestamps to all events. #1900 : Bug 1886443 - automatic click events in web sample project.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.0-pre.0 (2024-03-21)","id":"894","title":"v5.0.0-pre.0 (2024-03-21)"},"895":{"body":"Full changelog #1866 : Added a new uploader that falls back to fetch if navigator.sendBeacon fails. #1876 : BREAKING CHANGE : navigator.sendBeacon with fallback to fetch (see #1866) is now the default uploader. This can be changed manually. #1850 : Automatically record basic session information (session_id & session_count) for web properties.","breadcrumbs":"Changelog » mozilla/glean.js » v4.1.0-pre.0 (2024-03-05)","id":"895","title":"v4.1.0-pre.0 (2024-03-05)"},"896":{"body":"Full changelog This is the official release based on the v4.0.0-pre.x releases.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0 (2024-01-24)","id":"896","title":"v4.0.0 (2024-01-24)"},"897":{"body":"Full changelog #1848 : Support for automatically collecting element click events (first version) #1849 : Truncate event extra strings to 500 bytes. This also updates other string-based metrics to truncate based on max bytes rather than a set number of characters.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0-pre.3 (2023-12-22)","id":"897","title":"v4.0.0-pre.3 (2023-12-22)"},"898":{"body":"Full changelog #1835 : Added support for automatic page load instrumentation. #1846 : Add logging messages when using the debugging APIs from the browser console.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0-pre.2 (2023-12-06)","id":"898","title":"v4.0.0-pre.2 (2023-12-06)"},"899":{"body":"Full changelog #1834 : Added support for navigator.sendBeacon. This is not turned on by default and needs to be enabled manually.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0-pre.1 (2023-12-01)","id":"899","title":"v4.0.0-pre.1 (2023-12-01)"},"9":{"body":"The Glean integration checklist can help to ensure your Glean SDK-using product is meeting all of the recommended guidelines. Products (applications or libraries) using a Glean SDK to collect telemetry must : Integrate the Glean SDK into the build system . Since the Glean SDK does some code generation for your metrics at build time, this requires a few more steps than just adding a library. Go through data review process for all newly collected data. Ensure that telemetry coming from automated testing or continuous integration is either not sent to the telemetry server or tagged with the automation tag using the sourceTag feature . At least one week before releasing your product, enable your product's application id and metrics to be ingested by the data platform (and, as a consequence, indexed by the Glean Dictionary ). Important consideration for libraries: For libraries that are adding Glean, you will need to indicate which applications use the library as a dependency so that the library metrics get correctly indexed and added to the products that consume the library. If the library is added to a new product later, then it is necessary to file a new [bug][dataeng-bug] to add it as a dependency to that product in order for the library metrics to be collected along with the data from the new product. Additionally, applications (but not libraries) must : Request a data review to add Glean to your application (since it can send data out of the box). Initialize Glean as early as possible at application startup. Provide a way for users to turn data collection off (e.g. providing settings to control Glean.setUploadEnabled()). The exact method used is application-specific. Looking for an integration guide? Step-by-step tutorials for each supported language/platform, can be found on the specific integration guides: JavaScript Kotlin Python Rust Swift Qt/QML Server Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Glean integration checklist","id":"9","title":"Glean integration checklist"},"90":{"body":"","breadcrumbs":"Metrics » Adding new metrics » Adding new metrics","id":"90","title":"Adding new metrics"},"900":{"body":"Full changelog #1808 : BREAKING CHANGE : Make glean.js fully synchronous. #1835 : Automatic instrumentation of page load events for simple web properties.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0-pre.0 (2023-11-27)","id":"900","title":"v4.0.0-pre.0 (2023-11-27)"},"901":{"body":"Full changelog This is the official release based on v3.0.0-pre.1.","breadcrumbs":"Changelog » mozilla/glean.js » v3.0.0 (2023-11-16)","id":"901","title":"v3.0.0 (2023-11-16)"},"902":{"body":"Full changelog #1814 : BREAKING CHANGE : Temporarily drop support for web extensions. This platform will be added again once we complete the Glean.js platform refactoring.","breadcrumbs":"Changelog » mozilla/glean.js » v3.0.0-pre.1 (2023-11-15)","id":"902","title":"v3.0.0-pre.1 (2023-11-15)"},"903":{"body":"Full changelog #1810 : BREAKING CHANGE : Drop support for QT. #1811 : Update glean_parser to v10.0.3.","breadcrumbs":"Changelog » mozilla/glean.js » v3.0.0-pre.0 (2023-11-10)","id":"903","title":"v3.0.0-pre.0 (2023-11-10)"},"904":{"body":"Full changelog #1788 : Fix window is undefined error when setting up browser debugging.","breadcrumbs":"Changelog » mozilla/glean.js » v2.0.5 (2023-10-16)","id":"904","title":"v2.0.5 (2023-10-16)"},"905":{"body":"Full changelog #1772 : Fix bug where window.Glean functions were getting set on non-browser properties. #1784 : Store window.Glean debugging values in sessionStorage. This will set debug options on page init while the current session is still active.","breadcrumbs":"Changelog » mozilla/glean.js » v2.0.4 (2023-10-10)","id":"905","title":"v2.0.4 (2023-10-10)"},"906":{"body":"Full changelog #1770 : Allow debugging in browser console via window.Glean.","breadcrumbs":"Changelog » mozilla/glean.js » v2.0.3 (2023-09-27)","id":"906","title":"v2.0.3 (2023-09-27)"},"907":{"body":"Full changelog #1768 : Add support for GLEAN_PYTHON and GLEAN_PIP environment variables. #1755 : Add sync check to set function for the URL metric. #1766 : Update default maxEvents count to 1. This means an events ping will be sent after each recorded event unless the maxEvents count is explicitly set to a larger number.","breadcrumbs":"Changelog » mozilla/glean.js » v2.0.2 (2023-09-14)","id":"907","title":"v2.0.2 (2023-09-14)"},"908":{"body":"Full changelog #1751 : Add a migration flag to initialize. If not explicitly set in the config object the migration from IndexedDB to LocalStorage will not occur. The only projects that should ever set this flag are those that have used Glean.js in production with a version /uploader entry point. #580 : Limit size of pings database to 250 pings or 10MB. #580 : BUGFIX: Pending pings at startup up are uploaded from oldest to newest. #607 : Record an error when incoherent timestamps are calculated for events after a restart. #630 : Accept booleans and numbers as event extras. #647 : Implement the Text metric type. #658 : Implement rate limiting for ping upload. Only up to 15 ping submissions every 60 seconds are now allowed. #658 : BUGFIX: Unblock ping uploading jobs after the maximum of upload failures are hit for a given uploading window. #661 : Include unminified version of library on Qt/QML builds. #681 : BUGFIX: Fix error in scanning events database upon initialization on Qt/QML. This bug prevents the changes introduced in #526 from working properly in Qt/QML. #692 : BUGFIX: Ensure events database is initialized at a time Glean is already able to record metrics. This bug also prevents the changes introduced in #526 from working properly in all platforms.","breadcrumbs":"Changelog » mozilla/glean.js » v0.19.0 (2021-09-03)","id":"929","title":"v0.19.0 (2021-09-03)"},"93":{"body":"The following is a set of questions to ask about the data being collected to help better determine which metric type to use.","breadcrumbs":"Metrics » Adding new metrics » Choosing a metric type","id":"93","title":"Choosing a metric type"},"930":{"body":"Full changelog #552 : BUGFIX: Do not clear deletion-request ping from upload queue when disabling upload.","breadcrumbs":"Changelog » mozilla/glean.js » v0.18.1 (2021-07-22)","id":"930","title":"v0.18.1 (2021-07-22)"},"931":{"body":"Full changelog #542 : Implement shutdown API.","breadcrumbs":"Changelog » mozilla/glean.js » v0.18.0 (2021-07-20)","id":"931","title":"v0.18.0 (2021-07-20)"},"932":{"body":"Full changelog #529 : Implement the URL metric type. #526 : Implement new events sorting logic, which allows for reliable sorting of events throughout restarts.","breadcrumbs":"Changelog » mozilla/glean.js » v0.17.0 (2021-07-16)","id":"932","title":"v0.17.0 (2021-07-16)"},"933":{"body":"Full changelog #346 : Provide default HTTP client for Qt/QML platform. #399 : Check if there are ping data before attempting to delete it. This change lowers the amount of log messages related to attempting to delete nonexistent data. #411 : Tag all messages logged by Glean with the component they are coming from. #415 , #430 : Gzip ping payload before upload This changes the signature of Uploader.post to accept string | Uint8Array for the body parameter, instead of only string. #431 : BUGFIX: Record the timestamp for events before dispatching to the internal task queue. #462 : Implement persistent storage for Qt/QML platform. #466 : Expose ErrorType enum, for using with the testGetNumRecordedErrors API. #497 : Implement limit of 1MB for ping request payload. Limit is calculated after gzip compression.","breadcrumbs":"Changelog » mozilla/glean.js » v0.16.0 (2021-07-06)","id":"933","title":"v0.16.0 (2021-07-06)"},"934":{"body":"Full changelog #389 : BUGFIX: Make sure to submit a deletion-request ping before clearing data when toggling upload. #375 : Release Glean.js for Qt as a QML module.","breadcrumbs":"Changelog » mozilla/glean.js » v0.15.0 (2021-06-03)","id":"934","title":"v0.15.0 (2021-06-03)"},"935":{"body":"Full changelog #342 : BUGFIX: Fix timespan payload representation to match exactly the payload expected according to the Glean schema. #343 : BUGFIX: Report the correct failure exit code when the Glean command line tool fails.","breadcrumbs":"Changelog » mozilla/glean.js » v0.14.1 (2021-05-21)","id":"935","title":"v0.14.1 (2021-05-21)"},"936":{"body":"Full changelog #313 : Send Glean.js version and platform information on X-Telemetry-Agent header instead of User-Agent header.","breadcrumbs":"Changelog » mozilla/glean.js » v0.14.0 (2021-05-19)","id":"936","title":"v0.14.0 (2021-05-19)"},"937":{"body":"Full changelog #313 : Implement error recording mechanism and error checking testing API. #319 : BUGFIX: Do not allow recording floats with the quantity and counter metric types.","breadcrumbs":"Changelog » mozilla/glean.js » v0.13.0 (2021-05-18)","id":"937","title":"v0.13.0 (2021-05-18)"},"938":{"body":"Full changelog #279 : BUGFIX: Ensure only empty pings triggers logging of \"empty ping\" messages. #288 : Support collecting PlatformInfo from Qt applications. Only OS name and locale are supported. #281 : Add the QuantityMetricType. #303 : Implement setRawNanos API for the TimespanMetricType.","breadcrumbs":"Changelog » mozilla/glean.js » v0.12.0 (2021-05-11)","id":"938","title":"v0.12.0 (2021-05-11)"},"939":{"body":"Full changelog #260 : Set minimum node (>= 12.0.0) and npm (>= 7.0.0) versions. #202 : Add a testing API for the ping type. #253 : Implement the timespan metric type. BUGFIX: Report event timestamps in milliseconds. #261 : Show a spinner while setting up python virtual environment #273 : BUGFIX: Expose the missing LabeledMetricType and TimespanMetricType in Qt.","breadcrumbs":"Changelog » mozilla/glean.js » v0.11.0 (2021-05-03)","id":"939","title":"v0.11.0 (2021-05-03)"},"94":{"body":"If the value is true or false, use a boolean metric . If the value is a string, use a string metric . For example, to record the name of the default search engine. Beware: string metrics are exceedingly general, and you are probably best served by selecting the most specific metric for the job, since you'll get better error checking and richer analysis tools for free. For example, avoid storing a number in a string metric --- you probably want a counter metric instead. If you need to store multiple string values in a metric, use a string list metric . For example, you may want to record the list of other Mozilla products installed on the device. For all of the metric types in this section that measure single values, it is especially important to consider how the lifetime of the value relates to the ping it is being sent in. Since these metrics don't perform any aggregation on the client side, when a ping containing the metric is submitted, it will contain only the \"last known\" value for the metric, potentially resulting in data loss . There is further discussion of metric lifetimes below.","breadcrumbs":"Metrics » Adding new metrics » Is it a single measurement?","id":"94","title":"Is it a single measurement?"},"940":{"body":"Full changelog #256 : BUGFIX: Add the missing js extension to the dispatcher.","breadcrumbs":"Changelog » mozilla/glean.js » v0.10.2 (2021-04-26)","id":"940","title":"v0.10.2 (2021-04-26)"},"941":{"body":"Full changelog #254 : BUGFIX: Allow the usage of the Glean specific metrics API before Glean is initialized.","breadcrumbs":"Changelog » mozilla/glean.js » v0.10.1 (2021-04-26)","id":"941","title":"v0.10.1 (2021-04-26)"},"942":{"body":"Full changelog #228 : Provide a Qt build with every new release. #227 : BUGFIX: Fix a bug that prevented using labeled_string and labeled_boolean. #226 : BUGFIX: Fix Qt build configuration to target ES5.","breadcrumbs":"Changelog » mozilla/glean.js » v0.10.0 (2021-04-20)","id":"942","title":"v0.10.0 (2021-04-20)"},"943":{"body":"Full changelog #220 : Update glean_parser to version 3.1.1.","breadcrumbs":"Changelog » mozilla/glean.js » v0.9.2 (2021-04-19)","id":"943","title":"v0.9.2 (2021-04-19)"},"944":{"body":"Full changelog #219 : BUGFIX: Fix path to ping entry point in package.json.","breadcrumbs":"Changelog » mozilla/glean.js » v0.9.1 (2021-04-19)","id":"944","title":"v0.9.1 (2021-04-19)"},"945":{"body":"Full changelog #201 : BUGFIX: Do not let the platform be changed after Glean is initialized. #215 : Update the glean-parser to version 3.1.0. #214 : Improve error reporting of the Glean command.","breadcrumbs":"Changelog » mozilla/glean.js » v0.9.0 (2021-04-19)","id":"945","title":"v0.9.0 (2021-04-19)"},"946":{"body":"Full changelog #206 : BUGFIX: Fix ping URL path. Application ID was being reporting as undefined.","breadcrumbs":"Changelog » mozilla/glean.js » v0.8.1 (2021-04-14)","id":"946","title":"v0.8.1 (2021-04-14)"},"947":{"body":"Full changelog #173 : Drop Node.js support from webext entry points #155 : Allow to define custom uploaders in the configuration. #184 : Correctly report appBuild and appDisplayVersion if provided by the user. #198 , #192 , #184 , #180 , #174 , #165 : BUGFIX: Remove all circular dependencies.","breadcrumbs":"Changelog » mozilla/glean.js » v0.8.0 (2021-04-13)","id":"947","title":"v0.8.0 (2021-04-13)"},"948":{"body":"Full changelog #143 : Provide a way to initialize and reset Glean.js in tests.","breadcrumbs":"Changelog » mozilla/glean.js » v0.7.0 (2021-03-26)","id":"948","title":"v0.7.0 (2021-03-26)"},"949":{"body":"Full changelog #130 : BUGFIX: Fix destination path of CommonJS' build package.json.","breadcrumbs":"Changelog » mozilla/glean.js » v0.6.1 (2021-03-22)","id":"949","title":"v0.6.1 (2021-03-22)"},"95":{"body":"For tracking user behavior, it is usually meaningful to know the over of events that lead to the use of a feature. Therefore, for user behavior, an event metric is usually the best choice. Be aware, however, that events can be particularly expensive to transmit, store and analyze, so should not be used for higher-frequency measurements - though this is less of a concern in server environments .","breadcrumbs":"Metrics » Adding new metrics » Are you measuring user behavior?","id":"95","title":"Are you measuring user behavior?"},"950":{"body":"Full changelog #123 : BUGFIX: Fix support for ES6 environments. Include .js extensions in all local import statements. ES6' module resolution algorithm does not currently support automatic resolution of file extensions and does not have the ability to import directories that have an index file. The extension and the name of the file being import need to always be specified. See: https://nodejs.org/api/esm.html#esm_customizing_esm_specifier_resolution_algorithm Add a type: module declaration to the main package.json. Without this statement, ES6 support is disabled. See: https://nodejs.org/docs/latest-v13.x/api/esm.html#esm_enabling.: To keep support for CommonJS, in our CommonJS build we include a package.json that overrides the type: module of the main package.json with a type: commonjs.","breadcrumbs":"Changelog » mozilla/glean.js » v0.6.0 (2021-03-22)","id":"950","title":"v0.6.0 (2021-03-22)"},"951":{"body":"Full changelog #96 : Provide a ping encryption plugin. This plugin listens to the afterPingCollection event. It receives the collected payload of a ping and returns an encrypted version of it using a JWK provided upon instantiation. #95 : Add a plugins property to the configuration options and create an event abstraction for triggering internal Glean events. The only internal event triggered at this point is the afterPingCollection event, which is triggered after ping collection and logging, and before ping storing. Plugins are built to listen to a specific Glean event. Each plugin must define an action, which is executed every time the event they are listening to is triggered. #101 : BUGFIX: Only validate Debug View Tag and Source Tags when they are present. #102 : BUGFIX: Include a Glean User-Agent header in all pings. #97 : Add support for labeled metric types (string, boolean and counter). #105 : Introduce and publish the glean command for using the glean-parser in a virtual environment.","breadcrumbs":"Changelog » mozilla/glean.js » v0.5.0 (2021-03-18)","id":"951","title":"v0.5.0 (2021-03-18)"},"952":{"body":"Full changelog #92 : Remove web-ext-types from peerDependencies list. #98 : Add external APIs for setting the Debug View Tag and Source Tags. #99 : BUGFIX: Add a default ping value in the testing APIs.","breadcrumbs":"Changelog » mozilla/glean.js » v0.4.0 (2021-03-10)","id":"952","title":"v0.4.0 (2021-03-10)"},"953":{"body":"Full changelog #90 : Provide exports for CommonJS and browser environments. #90 : BUGFIX: Accept lifetimes as strings when instantiating metric types. #90 : BUGFIX: Fix type declaration paths. #90 : BUGFIX: Make web-ext-types a peer dependency. This is quick fix until Bug 1694701 is fixed.","breadcrumbs":"Changelog » mozilla/glean.js » v0.3.0 (2021-02-24)","id":"953","title":"v0.3.0 (2021-02-24)"},"954":{"body":"#85 : Include type declarations in @mozilla/glean webext package bundle. Full changelog","breadcrumbs":"Changelog » mozilla/glean.js » v0.2.0 (2021-02-23)","id":"954","title":"v0.2.0 (2021-02-23)"},"955":{"body":"Full changelog #77 : Include README.md file in @mozilla/glean package bundle.","breadcrumbs":"Changelog » mozilla/glean.js » v0.1.1 (2021-02-17)","id":"955","title":"v0.1.1 (2021-02-17)"},"956":{"body":"Full changelog #73 : Add this changelog file. #42 : Implement the deletion-request ping. #41 : Implement the logPings debug tool. When logPings is enabled, pings are logged upon collection. #40 : Use the dispatcher in all Glean external API functions. Namely: Metric recording functions; Ping submission; initialize and setUploadEnabled. #36 : Implement the event metric type. #31 : Implement a task Dispatcher to help in executing Promises in a deterministic order. #26 : Implement the setUploadEnabled API. #25 : Implement an adapter that leverages browser APIs to upload pings. #24 : Implement a ping upload manager. #23 : Implement the initialize API and glean internal metrics. #22 : Implement the PingType structure and a ping maker. #20 : Implement the datetime metric type. #17 : Implement the UUID metric type. #14 : Implement the counter metric type. #13 : Implement the string metric type. #11 : Implement the boolean metric type. #9 : Implement a metrics database module. #8 : Implement a web extension version of the underlying storage module. #6 : Implement an abstract underlying storage module. Found a bug? Edit this page on GitHub.","breadcrumbs":"Changelog » mozilla/glean.js » v0.1.0 (2021-02-17)","id":"956","title":"v0.1.0 (2021-02-17)"},"957":{"body":"“This Week in Glean” is a series of blog posts that the Glean Team at Mozilla is using to try to communicate better about our work. They could be release notes, documentation, hopes, dreams, or whatever: so long as it is inspired by Glean.","breadcrumbs":"This Week in Glean » This Week in Glean (TWiG)","id":"957","title":"This Week in Glean (TWiG)"},"958":{"body":"2019-10-17: Glean on Desktop (Project FOG) 2019-10-24: A Release 2019-11-01: A detective story 2019-11-08: Instrumenting Android Crashes with Glean 2019-11-19: GeckoView + Glean = Fenix performance metrics 2019-11-21: What is the Glean logo about? 2019-11-22: Glean in Private 2019-11-29: Differences 2019-12-06: Migrations 2020-01-10: Glossary 2020-02-03: Cargo features - an investigation 2020-02-14: Extending Glean: build re-usable types for new use-cases 2020-02-21: A Distributed Team Echoes Distributed Workflow 2020-02-28: mozregression telemetry (part 1) 2020-03-09: Metric lifetimes 2020-03-13: Adding support for GLAM on Glean 2020-03-25: Comparing Apples to Oranges 2020-04-15: How Much Does That Data Cost 2020-04-27: Glean for Python on Windows 2020-05-04: Bytes in Memory (on Android) 2020-05-08: mozregression telemetry (part 2) 2020-05-26: How does the Glean SDK send gzipped pings 2020-06-03: The Glean SDK and iOS Application Extensions, or a Tale of Two Sandboxes 2020-06-12: Project FOG Update, end of H12020 2020-07-16: Mozilla Telemetry in 2020: From “Just Firefox” to a “Galaxy of Data” 2020-07-24: Automated end-to-end tests for Glean 2020-08-06: Experimental integration Glean with Unity applications 2020-09-01: Leveraging Rust to build cross-platform mobile libraries 2020-09-25: glean-core to Wasm experiment 2020-10-06: FOG Progress report 2020-10-21: Cross-Platform Language Binding Generation with Rust and “uniffi” 2020-11-02: Glean.js 2020-11-19: Fantastic Facts and Where To Find Them 2020-12-01: Glean is Frictionless Data Collection 2020-12-18: Glean in 2021 2021-01-15: Proposals for Asynchronous Design 2021-01-28: The Glean Dictionary 2021-02-24: Boring Monitoring 2021-03-16: Reducing Release Friction 2021-04-07: Publishing Glean.js or “How I configured an npm package that has multiple entry points” 2021-04-16: rustc, iOS and an M1 2021-05-03: Glean Dictionary updates 2021-06-14: ⚠️Danger zone⚠️: handling sensitive data in Glean 2021-06-25: Funday! 2021-07-22: Firefox Telemetry is to Glean as C++ is to Rust 2021-07-26: Shipping Glean with GeckoView 2021-08-05: Building a Mobile Acquisition Dashboard in Looker 2021-08-23: Why choosing the right data type for your metric matters 2021-09-07: Data Reviews are Important, Glean Parser makes them Easy 2021-09-17: Glean & GeckoView 2021-09-30: Glean.js v0.19.0 Supports Node.js 2021-10-18: Designing a telemetry collection with Glean 2021-10-22: The Three Roles of Data Engagements 2021-11-01: Crashes & a buggy Glean 2021-12-14: How Long Must I Wait Before I Can See My Data? 2021-12-17: Looking back at Glean in 2021 2022-01-31: Building and Deploying a Rust library on iOS 2022-02-09: Migrating Legacy Telemetry Collections to Glean 2022-02-16: What If I Want To Collect All The Data? 2022-02-25: Your personal Glean data pipeline 2022-10-27: Page Load Data, Three Ways (Or, How Expensive Are Events?) 2023-05-25: Reading “The Manager’s Path” by Camille Fournier 2024-06-27: Cosmic Rays From Outer Space! (What Comes Next?) Found a bug? Edit this page on GitHub.","breadcrumbs":"This Week in Glean » Blog posts","id":"958","title":"Blog posts"},"959":{"body":"There are two important questions to answer before adding new content to this book: Where to include this content? In which format to present it? This guide aims to provide context for answering both questions.","breadcrumbs":"Contribution Guidelines » Contribution Guidelines","id":"959","title":"Contribution Guidelines"},"96":{"body":"If you want to know how many times something happened, use a counter metric . If you are counting a group of related things, or you don't know what all of the things to count are at build time, use a labeled counter metric . If you need to know how many times something happened relative to the number of times something else happened, use a rate metric . If you need to know when the things being counted happened relative to other things, consider using an event .","breadcrumbs":"Metrics » Adding new metrics » Are you counting things?","id":"96","title":"Are you counting things?"},"960":{"body":"Where to add new content? Overview User Guides API Reference SDK Specific Information Appendix In which format to present content? General guidelines Link to other internal pages and sections whenever that is possible Prefer using headers whenever a new topic is introduced Favor creating new pages, instead of adding unrelated content to an already existing page Custom elements Tabs Tab tooltips Custom block quotes","breadcrumbs":"Contribution Guidelines » Table of contents","id":"960","title":"Table of contents"},"961":{"body":"This book is divided in five different sections. Each section contains pages that are of a specific type. New content will fit in one of these section. Following is an explanation on what kind of content fits in each section.","breadcrumbs":"Contribution Guidelines » Where to add new content?","id":"961","title":"Where to add new content?"},"962":{"body":"Is the content you want to add an essay or high level explanation on some aspect of Glean? The overview section is the place to provide important higher level context for users of Glean. This section may include essays about Glean’s views, principles, data practices, etc. It also contains primers on information such as what are the Glean SDKs","breadcrumbs":"Contribution Guidelines » Overview","id":"962","title":"Overview"},"963":{"body":"Is the content you want to add a general purpose guide on a Glean aspect or feature? This section is the place for Glean SDK user guides. Pages under this section contain prose format guides on how to include Glean in a project, how to add metrics, how to create pings, and so on. Pages on this section may link to the API Reference pages, but should not themselves be API References. Guides can be quite long, thus we should favor having one page per SDK instead of using tabs.","breadcrumbs":"Contribution Guidelines » User Guides","id":"963","title":"User Guides"},"964":{"body":"Is the content you want to add a developer reference on a specific Glean API? This section of the book contains reference for all of Glean’s user APIs. Its pages follow a strict structure. Each API description contains: A title with the name of the API. It’s important to use titles, because they automatically generate links to that API. A brief description of what the API does. Tabs with examples for using that API in each SDK. Even if a certain SDK does not contain a given API, the tab will be included in the tabs bar in the disabled state. The API Reference pages should not contain any guides in prose format, they should all be linked from the User’s Guide when convenient.","breadcrumbs":"Contribution Guidelines » API Reference","id":"964","title":"API Reference"},"965":{"body":"Is the content you want to add a SDK specific guide on a Glean feature? Different SDKs may require some dedicated pages, these section contains these pages. Each SDK has a top level section under this section, specific pages live under these titles.","breadcrumbs":"Contribution Guidelines » SDK Specific Information","id":"965","title":"SDK Specific Information"},"966":{"body":"Is the content you want to add support content for the rest of the content on book? The appendix contains support information related to the Glean SDKs or the content of this book.","breadcrumbs":"Contribution Guidelines » Appendix","id":"966","title":"Appendix"},"967":{"body":"","breadcrumbs":"Contribution Guidelines » In which format to present content?","id":"967","title":"In which format to present content?"},"968":{"body":"Link to other internal pages and sections whenever that is possible Each page of the book should be written as if it were the first page a user is visiting ever. There should be links to other pages of the book wherever there is missing context in the current page. This is important, because documentations are first and foremost reference books, manuals. They should not be expected to be read in order. Prefer using headers whenever a new topic is introduced mdbook (the tool used to build this book) turns all headers into links. Which is useful to refer to specific documentation sections. Favor creating new pages, instead of adding unrelated content to an already existing page This makes it easier to find content through the Summary.","breadcrumbs":"Contribution Guidelines » General guidelines","id":"968","title":"General guidelines"},"969":{"body":"Tabs Tabs are useful for providing small code examples of Glean's APIs for each SDK. A tabs section starts with the tab_header include and ends with the tab_footer include . Each tab is declared in between these include statements. Each tab content is placed inside an html div tag with the data-lang and class=\"tab\" attributes. The data-lang attribute contains the title of the tab. Titles must match for different tabs on the same SDK. Whenever a user clicks in a tab with a specific title, all tabs with that same title will be opened by default, until the user clicks in a tab with a different title. Every tab section should contain tabs for all Glean SDKs, even if an SDK does not provide the API in question. In this case, the tab div should still be there without any inner HTML. When that is the case that tab will be rendered in a disabled state. These are the tabs every tab section is expected to contain, in order: Kotlin Java Swift Python Rust JavaScript Firefox Desktop Finally, here is an example code for a tabs sections: {{#include ../../shared/tab_header.md}}\n Kotlin information...\n\n Java information...\n\n Swift information...\n\n Python information...`\n\n Rust information...\n\n\n\n\n{{#include ../../shared/tab_footer.md}} And this is how those tabs will look like: Kotlin information... Java information... Swift information... Python information...` Rust information... Tab tooltips Tabs in a disabled i.e. tabs that do not have any content, will show a tooltip when hovered. By default, this tooltip will show the message doe not provide this API. The following data-* attributes can be used to modify this message. data-bug This attribute expects a Bugzilla bug number. When this attribute is added a link to the provided bug will be added to the tooltip text. data-info This attribute expects free form text or valid HTML. Be careful when adding long texts here. If a text needs to be too long, consider adding it as an actual section / paragraph to the page instead of as a tooltip. This is how you can use the above attributes. {{#include ../../shared/tab_header.md}}\n... \n\n\n\n\n\n{{#include ../../shared/tab_footer.md}} And this is how each tool tip is rendered. Custom block quotes Sometimes it is necessary to bring attention to a special piece of information, or simply to provide extra context related to the a given text. In order to do that, there are three custom block quote formats available. Info quote An information block quote format, to provide useful extra context for a given text. Warning quote A warning block quote format, to provide useful warning related to a given text. Stop quote A stronger warning block quote format, to provide useful warning related to a given text in a more emphatic format. Use these sparingly. To include such quotes, again you can use mdbook include statements. For the above quotes, this is the corresponding code. {{#include ../../shared/blockquote-info.html}} ##### Info quote > An information blockquote format, to provide useful extra context for a given text. {{#include ../../shared/blockquote-warning.html}} ##### Warning quote > A warning blockquote format, to provide useful warning related to a given text. {{#include ../../shared/blockquote-stop.html}} ##### Stop quote > A stronger warning blockquote format, to provide useful warning related to a given text in a\n> more emphatic format. Use these sparingly. It is possible to use any level header with these special block quotes and also no header at all. Found a bug? Edit this page on GitHub.","breadcrumbs":"Contribution Guidelines » Custom elements","id":"969","title":"Custom elements"},"97":{"body":"If you need to record an absolute time, use a datetime metric . Datetimes are recorded in the user's local time, according to their device's real time clock, along with a timezone offset from UTC. Datetime metrics allow specifying the resolution they are collected at, and to stay lean , they should only be collected at the minimum resolution required to answer your question. If you need to record how long something takes you have a few options. If you need to measure the total time spent doing a particular task, look to the timespan metric . Timespan metrics allow specifying the resolution they are collected at, and to stay lean , they should only be collected at the minimum resolution required to answer your question. Note that this metric should only be used to measure time on a single thread. If multiple overlapping timespans are measured for the same metric, an invalid state error is recorded. If you need to measure the relative occurrences of many timings, use a timing distribution . It builds a histogram of timing measurements, and is safe to record multiple concurrent timespans on different threads. If you need to know the time between multiple distinct actions that aren't a simple \"begin\" and \"end\" pair, consider using an event .","breadcrumbs":"Metrics » Adding new metrics » Are you measuring time?","id":"97","title":"Are you measuring time?"},"98":{"body":"Think carefully about how long the metric will be needed, and set the expires parameter to disable the metric at the earliest possible time. This is an important component of Mozilla's lean data practices . When the metric passes its expiration date (determined at build time), it will automatically stop collecting data. When a metric's expiration is within in 14 days, emails will be sent from telemetry-alerts@mozilla.com to the notification_emails addresses associated with the metric. At that time, the metric should be removed, which involves removing it from the metrics.yaml file and removing uses of it in the source code. Removing a metric does not affect the availability of data already collected by the pipeline. If the metric is still needed after its expiration date, it should go back for another round of data review to have its expiration date extended. Important: Ensure that telemetry alerts are received and are reviewed in a timely manner. Expired metrics don't record any data, extending or removing a metric should be done in time. Consider adding both a group email address and an individual who is responsible for this metric to the notification_emails list.","breadcrumbs":"Metrics » Adding new metrics » For how long do you need to collect this data?","id":"98","title":"For how long do you need to collect this data?"},"99":{"body":"The lifetime parameter of a metric defines when its value will be cleared. There are three lifetime options available: ping (default) The metric is cleared each time it is submitted in the ping. This is the most common case, and should be used for metrics that are highly dynamic, such as things computed in response to the user's interaction with the application. application The metric is related to an application run, and is cleared after the application restarts and any Glean-owned ping, due at startup, is submitted. This should be used for things that are constant during the run of an application, such as the operating system version. In practice, these metrics are generally set during application startup. A common mistake--- using the ping lifetime for these type of metrics---means that they will only be included in the first ping sent during a particular run of the application. user NOTE: Reach out to the Glean team before using this. The metric is part of the user's profile and will live as long as the profile lives. This is often not the best choice unless the metric records a value that really needs to be persisted for the full lifetime of the user profile, e.g. an identifier like the client_id, the day the product was first executed. It is rare to use this lifetime outside of some metrics that are built in to the Glean SDK. While lifetimes are important to understand for all metric types, they are particularly important for the metric types that record single values and don't aggregate on the client (boolean, string, labeled_string, string_list, datetime and uuid), since these metrics will send the \"last known\" value and missing the earlier values could be a form of unintended data loss.","breadcrumbs":"Metrics » Adding new metrics » When should the Glean SDK automatically clear the measurement?","id":"99","title":"When should the Glean SDK automatically clear the measurement?"}},"length":970,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"2":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"6":{".":{"0":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"808":{"tf":1.0}}},"8":{".":{"3":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"768":{"tf":1.0}}},"6":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{".":{"0":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"748":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"2":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{".":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":54,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.4142135623730951},"482":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"664":{"tf":1.0},"677":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"732":{"tf":1.0},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"766":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"817":{"tf":1.0},"829":{"tf":1.0},"855":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"896":{"tf":1.0},"899":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0},"958":{"tf":2.8284271247461903}}},"2":{"df":19,"docs":{"730":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"791":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"816":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":3.0}}},"3":{"df":33,"docs":{"158":{"tf":1.7320508075688772},"164":{"tf":1.0},"171":{"tf":1.7320508075688772},"288":{"tf":1.0},"554":{"tf":2.449489742783178},"728":{"tf":1.0},"729":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.0},"804":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"872":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"909":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.0},"934":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"958":{"tf":2.6457513110645907}},"t":{"1":{"7":{":":{"3":{"0":{":":{"0":{"0":{"df":2,"docs":{"664":{"tf":1.0},"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":{}},"df":0,"docs":{}}},"4":{":":{"0":{"0":{"df":11,"docs":{"158":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"175":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"727":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"760":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"798":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"892":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"958":{"tf":2.23606797749979}}},"5":{":":{"0":{"0":{"df":2,"docs":{"183":{"tf":1.0},"554":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"716":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"871":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.0},"910":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"958":{"tf":2.449489742783178}}},"6":{"df":30,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"720":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"775":{"tf":1.0},"786":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"87":{"tf":1.0},"898":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"958":{"tf":2.8284271247461903}},"t":{"0":{"9":{":":{"5":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"717":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"869":{"tf":1.0},"886":{"tf":1.0},"913":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"958":{"tf":2.449489742783178}}},"8":{"df":22,"docs":{"719":{"tf":1.0},"720":{"tf":1.0},"736":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"766":{"tf":1.0},"768":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":2.23606797749979}}},"9":{"df":31,"docs":{"718":{"tf":1.0},"735":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"796":{"tf":1.0},"803":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"860":{"tf":1.0},"884":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"958":{"tf":2.6457513110645907}}},"df":64,"docs":{"108":{"tf":1.4142135623730951},"127":{"tf":1.0},"138":{"tf":1.4142135623730951},"142":{"tf":2.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"271":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"386":{"tf":2.0},"396":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":2.23606797749979},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":2.23606797749979},"428":{"tf":2.23606797749979},"438":{"tf":2.23606797749979},"449":{"tf":2.0},"464":{"tf":2.8284271247461903},"465":{"tf":1.7320508075688772},"468":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"508":{"tf":2.23606797749979},"520":{"tf":1.0},"532":{"tf":2.23606797749979},"544":{"tf":2.8284271247461903},"551":{"tf":2.449489742783178},"553":{"tf":2.449489742783178},"555":{"tf":2.0},"560":{"tf":1.0},"566":{"tf":2.23606797749979},"575":{"tf":1.0},"578":{"tf":2.0},"589":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":2.0},"609":{"tf":1.0},"612":{"tf":1.4142135623730951},"618":{"tf":1.0},"624":{"tf":2.23606797749979},"635":{"tf":2.23606797749979},"643":{"tf":1.4142135623730951},"664":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"716":{"tf":1.0},"728":{"tf":1.0},"734":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"1":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},",":{"0":{"2":{"4":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{",":{"5":{"7":{"6":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{",":{"7":{"4":{"1":{",":{"8":{"2":{"4":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"0":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"3":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"1":{"1":{".":{"0":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"3":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"2":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"5":{"df":1,"docs":{"830":{"tf":1.0}}},"6":{"df":3,"docs":{"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"0":{"df":2,"docs":{"824":{"tf":1.0},"827":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{".":{"0":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"792":{"tf":1.0}}},"8":{".":{"2":{"1":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"2":{"3":{"df":1,"docs":{"727":{"tf":1.0}}},"4":{"df":1,"docs":{"721":{"tf":1.0}}},"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"8":{".":{"0":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":3,"docs":{"585":{"tf":2.449489742783178},"586":{"tf":2.449489742783178},"590":{"tf":1.0}}},"df":8,"docs":{"142":{"tf":1.7320508075688772},"171":{"tf":1.0},"315":{"tf":1.0},"551":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"774":{"tf":1.0}}},"1":{"df":1,"docs":{"142":{"tf":1.0}}},"2":{"df":1,"docs":{"846":{"tf":1.0}}},"4":{"df":1,"docs":{"846":{"tf":1.0}}},"6":{"df":1,"docs":{"918":{"tf":1.0}}},"df":15,"docs":{"328":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"524":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.4142135623730951},"616":{"tf":1.0},"738":{"tf":1.4142135623730951},"774":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"845":{"tf":1.0}}},"5":{"df":1,"docs":{"919":{"tf":1.0}}},"6":{"df":2,"docs":{"842":{"tf":1.0},"919":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"844":{"tf":1.0}}},"4":{"df":2,"docs":{"505":{"tf":2.8284271247461903},"507":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"842":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"842":{"tf":1.0}}},"9":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"842":{"tf":1.0}}},"3":{"df":1,"docs":{"842":{"tf":1.0}}},"5":{"df":1,"docs":{"917":{"tf":1.0}}},"6":{"df":2,"docs":{"838":{"tf":1.0},"916":{"tf":1.0}}},"8":{"5":{"7":{"6":{".":{"0":{"df":1,"docs":{"517":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"df":1,"docs":{"841":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"838":{"tf":1.0}}},"3":{"df":1,"docs":{"840":{"tf":1.0}}},"5":{"df":2,"docs":{"835":{"tf":1.0},"916":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"918":{"tf":1.0}}},"9":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"916":{"tf":1.0}}},"3":{"df":1,"docs":{"838":{"tf":1.0}}},"4":{"df":1,"docs":{"839":{"tf":1.0}}},"7":{"df":1,"docs":{"917":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"834":{"tf":1.0}}},"8":{"df":1,"docs":{"837":{"tf":1.0}}},"df":0,"docs":{}},":":{"1":{"0":{":":{"1":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"3":{"df":1,"docs":{"757":{"tf":1.0}}},"6":{"df":2,"docs":{"720":{"tf":1.0},"757":{"tf":1.0}}},"df":0,"docs":{}},"df":64,"docs":{"127":{"tf":1.0},"183":{"tf":2.23606797749979},"218":{"tf":1.0},"258":{"tf":1.0},"275":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"717":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"744":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.0},"842":{"tf":1.0},"852":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"917":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"952":{"tf":1.0},"958":{"tf":2.8284271247461903}},"m":{"b":{"df":4,"docs":{"135":{"tf":1.0},"521":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}}},"1":{".":{"3":{"df":1,"docs":{"868":{"tf":1.0}}},"4":{".":{"0":{"df":1,"docs":{"861":{"tf":1.0}}},"1":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"855":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"834":{"tf":1.0},"837":{"tf":1.0}}},"8":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"834":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"834":{"tf":1.0}}},"4":{"df":1,"docs":{"834":{"tf":1.0}}},"6":{"df":1,"docs":{"834":{"tf":1.0}}},"9":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"1":{"df":1,"docs":{"834":{"tf":1.0}}},"2":{"df":2,"docs":{"833":{"tf":1.4142135623730951},"915":{"tf":1.0}}},"3":{"df":1,"docs":{"834":{"tf":1.0}}},"5":{"df":1,"docs":{"835":{"tf":1.0}}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"831":{"tf":1.0}}},"5":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"833":{"tf":1.0},"915":{"tf":1.0}}},"8":{"df":1,"docs":{"915":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"832":{"tf":1.0}}},"5":{"df":1,"docs":{"831":{"tf":1.0}}},"8":{"df":1,"docs":{"830":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"258":{"tf":1.0},"288":{"tf":1.0},"480":{"tf":1.0},"507":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"733":{"tf":1.0},"741":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"831":{"tf":1.0},"849":{"tf":1.0},"857":{"tf":1.0},"865":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"938":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":3.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"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":{".":{"0":{".":{"0":{"df":2,"docs":{"833":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":1,"docs":{"831":{"tf":1.0}}},"5":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"7":{"df":2,"docs":{"830":{"tf":1.4142135623730951},"914":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"3":{"df":1,"docs":{"915":{"tf":1.0}}},"8":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"914":{"tf":1.4142135623730951}}},"4":{"/":{"a":{"df":2,"docs":{"132":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"829":{"tf":1.0}}},"df":1,"docs":{"950":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"820":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"164":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"729":{"tf":1.0},"731":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"801":{"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},"819":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"958":{"tf":2.449489742783178}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"0":{"3":{"df":1,"docs":{"820":{"tf":1.0}}},"4":{"df":1,"docs":{"818":{"tf":1.0}}},"df":1,"docs":{"949":{"tf":1.0}}},"1":{"4":{"df":1,"docs":{"819":{"tf":1.0}}},"7":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"818":{"tf":1.0}}},"5":{"df":1,"docs":{"818":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}},"3":{"5":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"df":1,"docs":{"816":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"816":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"816":{"tf":1.0}}},"3":{"df":1,"docs":{"815":{"tf":1.0}}},"5":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"815":{"tf":1.0}}},"3":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"814":{"tf":1.0}}},"6":{"df":1,"docs":{"814":{"tf":1.0}}},"8":{"df":1,"docs":{"814":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"813":{"tf":1.0}}},"4":{"df":1,"docs":{"813":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"812":{"tf":1.0}}},"4":{"df":1,"docs":{"813":{"tf":1.0}}},"8":{"df":1,"docs":{"812":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":8,"docs":{"151":{"tf":1.0},"288":{"tf":1.0},"752":{"tf":1.0},"789":{"tf":1.0},"854":{"tf":1.0},"947":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0}}},"4":{".":{"0":{".":{"1":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"759":{"tf":1.0}}},"1":{".":{"2":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"738":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"3":{"df":1,"docs":{"811":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"913":{"tf":1.0}}},"6":{"df":1,"docs":{"811":{"tf":1.0}}},"7":{"df":1,"docs":{"811":{"tf":1.0}}},"8":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"810":{"tf":1.0}}},"8":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"809":{"tf":1.0}}},"2":{"df":1,"docs":{"809":{"tf":1.0}}},"4":{"df":1,"docs":{"808":{"tf":1.0}}},"8":{"df":1,"docs":{"807":{"tf":1.0}}},"df":1,"docs":{"948":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"807":{"tf":1.0}}},"2":{"df":1,"docs":{"807":{"tf":1.0}}},"9":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"2":{"df":2,"docs":{"807":{"tf":1.0},"912":{"tf":1.0}}},"4":{"df":1,"docs":{"807":{"tf":1.0}}},"5":{"df":1,"docs":{"807":{"tf":1.7320508075688772}}},"7":{"df":2,"docs":{"855":{"tf":1.0},"912":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"806":{"tf":1.0}}},"2":{"df":1,"docs":{"806":{"tf":1.0}}},"5":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"806":{"tf":1.0}}},"2":{"df":1,"docs":{"804":{"tf":1.0}}},"3":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"805":{"tf":1.0}}},"5":{"df":1,"docs":{"805":{"tf":1.0}}},"9":{"7":{"6":{"1":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"288":{"tf":1.0},"77":{"tf":1.0},"774":{"tf":1.0},"867":{"tf":1.0},"907":{"tf":1.0},"946":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"5":{".":{"1":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"7":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"805":{"tf":1.0}}},"2":{"9":{"3":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"912":{"tf":1.0}}},"4":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":2,"docs":{"804":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"6":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"3":{"4":{"df":1,"docs":{"804":{"tf":1.0}}},"8":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"782":{"tf":1.0}}},"3":{"6":{"1":{"2":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"947":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"803":{"tf":1.0}}},"1":{"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"802":{"tf":1.0}}},"8":{"3":{"8":{"3":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"802":{"tf":1.0}}},"6":{"7":{"6":{"4":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"6":{"0":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"4":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"1":{"9":{"1":{"2":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"802":{"tf":1.0}}},"5":{"df":1,"docs":{"793":{"tf":1.0}}},"6":{"df":1,"docs":{"802":{"tf":1.0}}},"7":{"7":{"6":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"0":{"df":1,"docs":{"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"5":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"135":{"tf":1.0},"315":{"tf":1.0},"733":{"tf":1.0},"743":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"770":{"tf":1.0},"780":{"tf":1.0},"809":{"tf":1.0},"813":{"tf":1.0},"836":{"tf":1.0},"902":{"tf":1.0},"920":{"tf":1.0},"922":{"tf":1.0},"929":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"6":{"0":{"1":{"5":{"5":{"0":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"799":{"tf":2.449489742783178}}},"4":{"8":{"5":{"4":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"801":{"tf":1.0}}},"5":{"0":{"9":{"7":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"8":{"2":{"df":2,"docs":{"127":{"tf":1.0},"866":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"4":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"8":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"801":{"tf":1.0}}},"4":{"7":{"8":{"5":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"801":{"tf":1.0}}},"6":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},"2":{"8":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"9":{"9":{"7":{"df":1,"docs":{"857":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"801":{"tf":1.0}}},"5":{"8":{"6":{"5":{"df":1,"docs":{"856":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"5":{"7":{"5":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"7":{"3":{"df":1,"docs":{"847":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"3":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"799":{"tf":1.0}}},"6":{"5":{"8":{"9":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"4":{"7":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"947":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"798":{"tf":1.0}}},"5":{"0":{"4":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"797":{"tf":1.0}}},"9":{"df":1,"docs":{"797":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"910":{"tf":1.0}}},"2":{"2":{"7":{"3":{"df":1,"docs":{"747":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"910":{"tf":1.0}}},"9":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"8":{"3":{"7":{"0":{"7":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"7":{"0":{"1":{"df":1,"docs":{"953":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"3":{"6":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"909":{"tf":1.0}}},"7":{"df":1,"docs":{"795":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"732":{"tf":1.0},"773":{"tf":1.0},"788":{"tf":1.0},"804":{"tf":1.0},"841":{"tf":1.0},"866":{"tf":1.0},"901":{"tf":1.0},"904":{"tf":1.0},"932":{"tf":1.0},"958":{"tf":2.0}}},"7":{"1":{"1":{"9":{"2":{"8":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{"2":{"5":{"df":2,"docs":{"124":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"8":{"0":{"7":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"909":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"909":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"4":{"3":{"1":{"4":{"0":{"df":1,"docs":{"919":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"5":{"3":{"df":1,"docs":{"626":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"792":{"tf":1.0}}},"8":{"df":1,"docs":{"909":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"5":{"0":{"2":{"3":{"5":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"908":{"tf":1.0}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"5":{"df":1,"docs":{"907":{"tf":1.0}}},"6":{"df":1,"docs":{"792":{"tf":1.0}}},"9":{"df":1,"docs":{"792":{"tf":1.0}}},"df":3,"docs":{"498":{"tf":1.0},"521":{"tf":1.0},"590":{"tf":1.0}}},"6":{"2":{"8":{"5":{"9":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"4":{"9":{"df":1,"docs":{"774":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"907":{"tf":1.0}}},"7":{"0":{"3":{"7":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"907":{"tf":1.0}}},"9":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"906":{"tf":1.0}}},"2":{"1":{"5":{"6":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"905":{"tf":1.0}}},"4":{"df":1,"docs":{"791":{"tf":1.0}}},"5":{"4":{"2":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"790":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"0":{"3":{"7":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"789":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"786":{"tf":1.0}}},"4":{"df":1,"docs":{"905":{"tf":1.0}}},"7":{"2":{"3":{"4":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"904":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"786":{"tf":1.0}}},"3":{"df":1,"docs":{"788":{"tf":1.4142135623730951}}},"6":{"2":{"5":{"8":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"1":{"9":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"0":{"0":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"737":{"tf":1.0},"754":{"tf":1.0},"769":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"800":{"tf":1.0},"812":{"tf":1.0},"818":{"tf":1.0},"836":{"tf":1.0},"864":{"tf":1.0},"870":{"tf":1.0},"914":{"tf":1.0},"928":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"8":{"0":{"0":{"6":{"4":{"6":{"df":1,"docs":{"755":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"1":{"1":{"2":{"8":{"df":1,"docs":{"754":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"2":{"5":{"5":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"3":{"5":{"1":{"3":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{"1":{"5":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":2,"docs":{"787":{"tf":1.0},"900":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"903":{"tf":1.0}}},"1":{"2":{"5":{"3":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"2":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"903":{"tf":1.0}}},"2":{"6":{"7":{"2":{"df":1,"docs":{"749":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"4":{"5":{"9":{"2":{"df":1,"docs":{"127":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"902":{"tf":1.0}}},"5":{"2":{"3":{"3":{"df":1,"docs":{"741":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"0":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"785":{"tf":1.0}}},"9":{"1":{"6":{"1":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"785":{"tf":1.0}}},"8":{"0":{"6":{"6":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"4":{"5":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"9":{"3":{"7":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"2":{"4":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"8":{"1":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"784":{"tf":1.0},"899":{"tf":1.0}}},"5":{"df":2,"docs":{"898":{"tf":1.0},"900":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"5":{"3":{"3":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"898":{"tf":1.0}}},"7":{"9":{"5":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"0":{"1":{"df":2,"docs":{"124":{"tf":1.0},"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}},"9":{"df":1,"docs":{"897":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"895":{"tf":1.0}}},"2":{"df":2,"docs":{"776":{"tf":1.0},"783":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"895":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"782":{"tf":1.0}}},"9":{"4":{"2":{"9":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"2":{"9":{"7":{"df":1,"docs":{"729":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"782":{"tf":1.0}}},"6":{"1":{"1":{"3":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"782":{"tf":1.0}}},"9":{"1":{"1":{"4":{"df":1,"docs":{"727":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"781":{"tf":1.0}}},"2":{"0":{"9":{"7":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"894":{"tf":1.0}}},"8":{"3":{"3":{"6":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"759":{"tf":1.0},"784":{"tf":1.0},"808":{"tf":1.0},"830":{"tf":1.0},"876":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"9":{"0":{"0":{"df":1,"docs":{"894":{"tf":1.0}}},"8":{"df":1,"docs":{"780":{"tf":1.0}}},"9":{"2":{"4":{"4":{"df":1,"docs":{"721":{"tf":1.0}}},"6":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"779":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"9":{"7":{"6":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}}},"3":{"df":2,"docs":{"779":{"tf":1.0},"892":{"tf":1.0}}},"5":{"3":{"4":{"6":{"df":1,"docs":{"716":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"8":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"8":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"947":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"777":{"tf":1.0},"778":{"tf":1.0}}},"5":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"891":{"tf":1.0}}},"3":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"890":{"tf":1.0}}},"1":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"947":{"tf":1.0}}},"df":12,"docs":{"258":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"751":{"tf":1.0},"867":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}}},">":{"&":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"100":{"tf":2.23606797749979},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"127":{"tf":4.0},"146":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.7320508075688772},"264":{"tf":1.0},"266":{"tf":1.0},"289":{"tf":1.4142135623730951},"310":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"404":{"tf":2.6457513110645907},"414":{"tf":2.6457513110645907},"416":{"tf":1.4142135623730951},"465":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"517":{"tf":1.0},"524":{"tf":1.4142135623730951},"537":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":3.0},"624":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"728":{"tf":1.0},"773":{"tf":1.0},"79":{"tf":2.23606797749979},"907":{"tf":1.0},"958":{"tf":1.0}},"m":{"b":{"df":3,"docs":{"135":{"tf":1.0},"837":{"tf":1.0},"933":{"tf":1.0}}},"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"n":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"μ":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}}},"2":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"0":{".":{"2":{"df":1,"docs":{"561":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"3":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"877":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"590":{"tf":1.0}}},"4":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":1,"docs":{"632":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"3":{"df":1,"docs":{"774":{"tf":1.0}}},"4":{"df":1,"docs":{"815":{"tf":1.0}}},"5":{"df":1,"docs":{"927":{"tf":1.0}}},"6":{"df":1,"docs":{"927":{"tf":1.0}}},"9":{"df":30,"docs":{"108":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"87":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"958":{"tf":3.0}}},"df":1,"docs":{"945":{"tf":1.0}}},"2":{"0":{"df":79,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"958":{"tf":5.196152422706632}}},"1":{"df":73,"docs":{"677":{"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"855":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0},"958":{"tf":4.795831523312719}}},"2":{"df":39,"docs":{"664":{"tf":1.0},"684":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.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},"765":{"tf":1.0},"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},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0},"958":{"tf":2.23606797749979}}},"3":{"df":34,"docs":{"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},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"958":{"tf":1.0}}},"4":{"df":27,"docs":{"258":{"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},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.0},"958":{"tf":1.0}}},"6":{"df":1,"docs":{"773":{"tf":1.0}}},"9":{"df":1,"docs":{"773":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"3":{"5":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"9":{"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"771":{"tf":1.0}}},"df":1,"docs":{"946":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"770":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"762":{"tf":1.0}}},"7":{"df":1,"docs":{"765":{"tf":1.0}}},"8":{"df":1,"docs":{"765":{"tf":1.0}}},"9":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"770":{"tf":1.0}}},"7":{"df":1,"docs":{"769":{"tf":1.0}}},"8":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"258":{"tf":1.0},"328":{"tf":1.4142135623730951},"738":{"tf":1.0},"740":{"tf":1.0},"772":{"tf":1.0},"840":{"tf":1.0},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"931":{"tf":1.0},"942":{"tf":1.0},"956":{"tf":1.0}}},"1":{"1":{"4":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":4,"docs":{"763":{"tf":1.0},"764":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}},"6":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"763":{"tf":1.0}}},"5":{"df":1,"docs":{"763":{"tf":1.0}}},"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"404":{"tf":1.0},"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"945":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"762":{"tf":1.0}}},"3":{"df":1,"docs":{"762":{"tf":1.0}}},"5":{"df":1,"docs":{"762":{"tf":1.0}}},"9":{"df":1,"docs":{"762":{"tf":1.0}}},"df":1,"docs":{"945":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"762":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"8":{"2":{"df":1,"docs":{"762":{"tf":1.0}}},"8":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"761":{"tf":1.0}}},"5":{"df":1,"docs":{"761":{"tf":1.0}}},"6":{"df":1,"docs":{"759":{"tf":1.0}}},"9":{"df":1,"docs":{"761":{"tf":1.0}}},"df":1,"docs":{"944":{"tf":1.0}}},"df":7,"docs":{"258":{"tf":1.0},"719":{"tf":1.0},"873":{"tf":1.0},"894":{"tf":1.0},"912":{"tf":1.0},"935":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"760":{"tf":1.0}}},"df":1,"docs":{"943":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"760":{"tf":1.0}}},"9":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"759":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"747":{"tf":1.0}}},"5":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"757":{"tf":1.0}}},"6":{"df":1,"docs":{"756":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"738":{"tf":1.0}}},"4":{"df":1,"docs":{"756":{"tf":1.0}}},"5":{"df":1,"docs":{"756":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"755":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"7":{"0":{"df":1,"docs":{"754":{"tf":1.0}}},"1":{"df":1,"docs":{"752":{"tf":1.0}}},"2":{"df":1,"docs":{"752":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"753":{"tf":1.0}}},"8":{"df":1,"docs":{"753":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"9":{"4":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"727":{"tf":1.0},"765":{"tf":1.0},"805":{"tf":1.0},"828":{"tf":1.0},"839":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.0},"920":{"tf":1.0},"930":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"3":{"0":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":1,"docs":{"880":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"750":{"tf":1.0}}},"3":{"df":1,"docs":{"750":{"tf":1.0}}},"7":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"751":{"tf":1.0}}},"8":{"df":1,"docs":{"748":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"751":{"tf":1.0}}},"5":{"df":1,"docs":{"735":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"747":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"747":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"553":{"tf":1.0},"574":{"tf":1.0},"721":{"tf":1.0},"723":{"tf":1.0},"734":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"859":{"tf":1.0},"891":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"511":{"tf":1.0},"524":{"tf":1.0}}},"1":{"5":{"df":1,"docs":{"743":{"tf":1.0}}},"7":{"df":1,"docs":{"743":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"742":{"tf":1.0}}},"6":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"740":{"tf":1.0}}},"6":{"df":1,"docs":{"734":{"tf":1.0}}},"9":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"739":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"173":{"tf":1.0},"718":{"tf":1.0},"742":{"tf":1.0},"758":{"tf":1.0},"827":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"846":{"tf":1.0},"896":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"5":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{".":{"8":{"9":{"3":{"7":{"3":{"9":{"3":{"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":{}},"0":{"3":{"df":1,"docs":{"737":{"tf":1.0}}},"df":3,"docs":{"135":{"tf":1.0},"830":{"tf":1.0},"929":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"737":{"tf":1.0}}},"3":{"df":1,"docs":{"735":{"tf":1.0}}},"6":{"df":1,"docs":{"735":{"tf":1.0}}},"8":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"2":{"8":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"736":{"tf":1.0}}},"8":{"df":1,"docs":{"736":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"4":{"5":{"df":1,"docs":{"736":{"tf":1.0}}},"df":1,"docs":{"941":{"tf":1.0}}},"5":{"df":2,"docs":{"425":{"tf":1.0},"721":{"tf":1.0}}},"6":{"df":2,"docs":{"701":{"tf":1.0},"940":{"tf":1.0}}},"df":16,"docs":{"551":{"tf":2.0},"553":{"tf":1.7320508075688772},"554":{"tf":2.449489742783178},"669":{"tf":1.0},"753":{"tf":1.0},"757":{"tf":1.0},"771":{"tf":1.0},"792":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"834":{"tf":1.0},"845":{"tf":1.0},"893":{"tf":1.0},"916":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":2.23606797749979}}},"6":{"0":{"df":1,"docs":{"939":{"tf":1.0}}},"1":{"4":{"df":1,"docs":{"735":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"6":{"9":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"9":{"7":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":15,"docs":{"258":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"844":{"tf":1.0},"855":{"tf":1.0},"863":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"948":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"7":{"0":{"9":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"1":{"9":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"731":{"tf":1.0}}},"7":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"731":{"tf":1.0}}},"7":{"df":1,"docs":{"727":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"4":{"5":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"728":{"tf":1.0}}},"7":{"df":1,"docs":{"729":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"728":{"tf":1.0}}},"7":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"727":{"tf":1.0}}},"2":{"df":1,"docs":{"727":{"tf":1.0}}},"6":{"df":1,"docs":{"727":{"tf":1.7320508075688772}}},"df":1,"docs":{"938":{"tf":1.0}}},"df":7,"docs":{"158":{"tf":1.0},"171":{"tf":1.0},"833":{"tf":1.0},"862":{"tf":1.0},"900":{"tf":1.0},"906":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"8":{"1":{"df":1,"docs":{"938":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":3,"docs":{"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0}}},"7":{"df":1,"docs":{"721":{"tf":1.0}}},"8":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"1":{"df":1,"docs":{"721":{"tf":1.0}}},"3":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"721":{"tf":1.0}}},"df":1,"docs":{"938":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"164":{"tf":1.0},"715":{"tf":1.0},"728":{"tf":1.0},"737":{"tf":1.0},"761":{"tf":1.0},"793":{"tf":1.0},"824":{"tf":1.0},"852":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"718":{"tf":1.0}}},"5":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"718":{"tf":1.0}}},"8":{"df":1,"docs":{"718":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"717":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":13,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"730":{"tf":1.0},"787":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"880":{"tf":1.0},"958":{"tf":1.0}},"t":{"0":{"9":{":":{"5":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"3":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"2":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},">":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"1":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":30,"docs":{"100":{"tf":2.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"146":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"259":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"642":{"tf":1.0},"747":{"tf":1.0},"79":{"tf":2.0},"814":{"tf":1.4142135623730951},"830":{"tf":1.0},"958":{"tf":1.0}}},"3":{".":{"1":{".":{"0":{"df":1,"docs":{"945":{"tf":1.0}}},"1":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"785":{"tf":1.0}}},"2":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"799":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"846":{"tf":1.0},"867":{"tf":1.0}}},"6":{".":{"0":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"735":{"tf":1.0},"858":{"tf":1.0}}},"7":{"df":5,"docs":{"40":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0}}},"8":{"df":4,"docs":{"15":{"tf":1.0},"30":{"tf":1.0},"673":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"6":{"df":1,"docs":{"715":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"938":{"tf":1.0}}},"5":{"df":1,"docs":{"258":{"tf":1.0}}},"df":14,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"22":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"802":{"tf":1.0},"81":{"tf":1.0},"892":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"958":{"tf":1.0}}},"1":{".":{"5":{".":{"0":{"df":4,"docs":{"425":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"563":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":2,"docs":{"936":{"tf":1.0},"937":{"tf":1.0}}},"9":{"df":1,"docs":{"937":{"tf":1.0}}},"df":6,"docs":{"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"799":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0}}},"2":{"df":6,"docs":{"258":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"621":{"tf":1.0},"762":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"824":{"tf":1.0}}},"3":{"df":1,"docs":{"824":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"824":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"756":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"2":{"df":1,"docs":{"935":{"tf":1.0}}},"3":{"df":1,"docs":{"935":{"tf":1.0}}},"6":{"df":1,"docs":{"933":{"tf":1.0}}},"df":2,"docs":{"731":{"tf":1.0},"735":{"tf":1.0}}},"5":{"8":{"df":1,"docs":{"884":{"tf":1.0}}},"9":{"df":1,"docs":{"884":{"tf":1.0}}},"d":{"a":{"b":{"8":{"5":{"2":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"884":{"tf":1.0}}},"5":{"df":1,"docs":{"883":{"tf":1.0}}},"df":2,"docs":{"258":{"tf":1.0},"956":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"882":{"tf":1.0}}},"5":{"df":1,"docs":{"934":{"tf":1.0}}},"8":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"882":{"tf":1.0}}},"2":{"df":1,"docs":{"882":{"tf":1.0}}},"9":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"881":{"tf":1.0}}},"4":{"df":1,"docs":{"881":{"tf":1.0}}},"9":{"df":2,"docs":{"880":{"tf":1.0},"933":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"169":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":1.0},"289":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"416":{"tf":1.4142135623730951},"546":{"tf":1.0},"551":{"tf":2.23606797749979},"553":{"tf":2.0},"632":{"tf":1.0},"65":{"tf":1.0},"772":{"tf":1.0},"79":{"tf":1.7320508075688772},"915":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"318":{"tf":1.0}}},"2":{".":{"2":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"783":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"3":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"880":{"tf":1.0}}},"1":{"df":1,"docs":{"879":{"tf":1.0}}},"7":{"df":1,"docs":{"880":{"tf":1.0}}},"9":{"6":{"df":8,"docs":{"377":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.0},"170":{"tf":1.0},"285":{"tf":1.0},"570":{"tf":1.0},"920":{"tf":1.0},"956":{"tf":1.0}},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"1":{"1":{"df":1,"docs":{"933":{"tf":1.0}}},"5":{"df":1,"docs":{"933":{"tf":1.0}}},"6":{"df":1,"docs":{"880":{"tf":1.0}}},"df":1,"docs":{"956":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"879":{"tf":1.0}}},"2":{"df":1,"docs":{"880":{"tf":1.0}}},"df":2,"docs":{"588":{"tf":1.0},"956":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}}},"3":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"1":{"df":1,"docs":{"933":{"tf":1.0}}},"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":1,"docs":{"553":{"tf":1.0}},"f":{"4":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{"df":1,"docs":{"933":{"tf":1.0}}},"6":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"9":{"5":{"df":1,"docs":{"872":{"tf":1.0}}},"7":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":2.23606797749979},"867":{"tf":1.0}}}},"d":{"2":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"184":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"546":{"tf":1.0},"632":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.7320508075688772}},"k":{"b":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"869":{"tf":1.0}}}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"1":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":11,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"315":{"tf":1.0},"468":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"756":{"tf":1.0},"897":{"tf":1.0}}},"df":6,"docs":{"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"873":{"tf":1.0}}},"1":{".":{"8":{".":{"2":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"df":3,"docs":{"872":{"tf":1.0},"929":{"tf":1.7320508075688772},"932":{"tf":1.0}}},"8":{"df":1,"docs":{"872":{"tf":1.0}}},"9":{"df":1,"docs":{"932":{"tf":1.0}}},"df":1,"docs":{"158":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"871":{"tf":1.0}}},"4":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":2,"docs":{"404":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"871":{"tf":1.0},"931":{"tf":1.0}}},"5":{"df":1,"docs":{"871":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"930":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"929":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"870":{"tf":1.0}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":2.449489742783178},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"642":{"tf":1.0},"652":{"tf":1.4142135623730951},"79":{"tf":1.0},"833":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"6":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"834":{"tf":1.0}}}}},"6":{".":{"1":{".":{"2":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":2,"docs":{"824":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"1":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"801":{"tf":1.0}}},"9":{"4":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"929":{"tf":1.0}}},"df":5,"docs":{"135":{"tf":1.4142135623730951},"315":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"929":{"tf":1.0}}},"1":{"4":{"7":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"df":1,"docs":{"929":{"tf":1.0}}},"df":4,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"864":{"tf":1.0}}},"8":{"df":1,"docs":{"929":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"929":{"tf":1.0}}},"3":{"5":{"5":{"2":{"0":{"0":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"864":{"tf":1.0}}},"df":1,"docs":{"258":{"tf":1.0}}},"8":{"1":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"929":{"tf":1.0}}},"5":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.0},"379":{"tf":1.0},"406":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"956":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{"df":2,"docs":{"30":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"910":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":1,"docs":{"736":{"tf":1.0}}},"1":{"df":16,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"830":{"tf":1.0}}},"1":{"df":1,"docs":{"863":{"tf":1.0}}},"2":{"df":1,"docs":{"863":{"tf":1.0}}},"3":{"df":1,"docs":{"863":{"tf":1.0}}},"7":{"df":1,"docs":{"863":{"tf":1.0}}},"df":1,"docs":{"956":{"tf":1.0}}},"4":{"d":{"b":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"927":{"tf":1.0}}},"5":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"862":{"tf":1.0}}},"3":{"df":1,"docs":{"862":{"tf":1.0}}},"5":{"df":1,"docs":{"862":{"tf":1.0}}},"6":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"927":{"tf":1.0}}},"9":{"df":1,"docs":{"927":{"tf":1.0}}},"df":1,"docs":{"955":{"tf":1.0}}},"8":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"861":{"tf":1.0}}},"6":{"df":1,"docs":{"925":{"tf":1.0}}},"9":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"272":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"786":{"tf":1.4142135623730951}}},"8":{".":{"0":{"df":1,"docs":{"517":{"tf":1.7320508075688772}}},"1":{".":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"df":1,"docs":{"861":{"tf":1.0}}},"8":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}},"df":2,"docs":{"288":{"tf":1.4142135623730951},"303":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"860":{"tf":1.0}}},"1":{"df":1,"docs":{"924":{"tf":1.0}}},"5":{"df":1,"docs":{"860":{"tf":1.0}}},"9":{"2":{"df":1,"docs":{"541":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"924":{"tf":1.0}}},"5":{"df":1,"docs":{"924":{"tf":1.0}}},"7":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"858":{"tf":1.0}}},"3":{"df":1,"docs":{"858":{"tf":1.0}}},"4":{"df":1,"docs":{"858":{"tf":1.0}}},"6":{"df":2,"docs":{"858":{"tf":1.0},"923":{"tf":1.7320508075688772}}},"df":1,"docs":{"954":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}}},"6":{",":{"4":{"0":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":1,"docs":{"554":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"854":{"tf":1.0}}},"6":{"df":1,"docs":{"854":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"8":{"4":{"2":{"1":{"1":{"df":0,"docs":{},"e":{"5":{"4":{"5":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"a":{"a":{"0":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"136":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"273":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"471":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"791":{"tf":1.0},"802":{"tf":1.0},"835":{"tf":1.0},"956":{"tf":1.0}},"k":{"df":2,"docs":{"761":{"tf":1.0},"912":{"tf":1.0}}}},"9":{"0":{"8":{"df":1,"docs":{"923":{"tf":1.0}}},"df":1,"docs":{"953":{"tf":2.0}}},"2":{"4":{"df":1,"docs":{"922":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"3":{"5":{"df":1,"docs":{"849":{"tf":1.0}}},"df":0,"docs":{}},"4":{"9":{"df":1,"docs":{"849":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"922":{"tf":1.0}}},"3":{"df":1,"docs":{"849":{"tf":1.0}}},"df":2,"docs":{"685":{"tf":1.0},"951":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}}},"6":{"2":{"df":1,"docs":{"849":{"tf":1.0}}},"5":{"df":1,"docs":{"921":{"tf":1.0}}},"7":{"df":2,"docs":{"849":{"tf":1.0},"920":{"tf":1.0}}},"8":{"df":2,"docs":{"849":{"tf":1.0},"921":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"7":{"0":{"df":1,"docs":{"921":{"tf":1.0}}},"4":{"df":1,"docs":{"846":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"8":{"1":{"df":1,"docs":{"920":{"tf":1.0}}},"3":{"df":1,"docs":{"847":{"tf":1.0}}},"4":{"df":1,"docs":{"919":{"tf":1.0}}},"6":{"df":1,"docs":{"847":{"tf":1.0}}},"7":{"df":1,"docs":{"846":{"tf":1.0}}},"8":{"df":1,"docs":{"919":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"9":{"3":{"df":1,"docs":{"847":{"tf":1.0}}},"4":{"df":1,"docs":{"919":{"tf":1.0}}},"5":{"df":1,"docs":{"842":{"tf":1.0}}},"6":{"df":1,"docs":{"846":{"tf":1.0}}},"8":{"df":1,"docs":{"843":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"df":9,"docs":{"164":{"tf":1.0},"183":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"274":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"956":{"tf":1.0}}},"_":{"_":{"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":1,"docs":{"473":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"_":{"df":24,"docs":{"377":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.4142135623730951},"414":{"tf":2.0},"419":{"tf":1.4142135623730951},"435":{"tf":2.0},"440":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"858":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":3.4641016151377544}}}},"k":{".":{"a":{"df":2,"docs":{"187":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"1":{"df":0,"docs":{},"i":{"df":3,"docs":{"376":{"tf":1.4142135623730951},"387":{"tf":1.0},"397":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"751":{"tf":1.0},"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"665":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.4142135623730951}},"l":{"df":6,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"741":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"478":{"tf":1.0},"492":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"223":{"tf":1.0},"354":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.4142135623730951},"377":{"tf":1.0},"427":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"711":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"376":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"549":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":18,"docs":{"135":{"tf":1.0},"313":{"tf":1.0},"357":{"tf":1.0},"446":{"tf":1.0},"529":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.4142135623730951},"693":{"tf":1.0},"717":{"tf":1.4142135623730951},"723":{"tf":1.0},"741":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":1.7320508075688772},"801":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"953":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":31,"docs":{"110":{"tf":1.4142135623730951},"177":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"32":{"tf":2.0},"356":{"tf":1.0},"389":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"418":{"tf":1.0},"660":{"tf":2.0},"665":{"tf":1.0},"679":{"tf":1.0},"688":{"tf":2.0},"715":{"tf":1.0},"736":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"842":{"tf":1.0},"876":{"tf":1.0},"89":{"tf":1.4142135623730951},"917":{"tf":1.0},"924":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.7320508075688772}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.4142135623730951}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"396":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"297":{"tf":1.4142135623730951},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"753":{"tf":1.0},"796":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"653":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"680":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"703":{"tf":1.0},"76":{"tf":1.0},"935":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":2.0},"884":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":1,"docs":{"517":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"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":1,"docs":{"517":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"738":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"729":{"tf":1.0},"738":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"729":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"494":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"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":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"475":{"tf":1.0},"493":{"tf":1.0},"574":{"tf":1.0},"585":{"tf":1.0},"772":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"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":{"c":{"!":{"[":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"476":{"tf":1.0},"494":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"586":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"586":{"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":15,"docs":{"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"725":{"tf":1.0},"829":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"456":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"759":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"257":{"tf":1.0},"376":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"590":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"814":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"741":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"340":{"tf":1.0},"376":{"tf":1.0},"560":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"909":{"tf":1.0},"951":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":28,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"195":{"tf":1.0},"224":{"tf":2.6457513110645907},"233":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.4142135623730951},"318":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0},"691":{"tf":1.7320508075688772},"711":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.449489742783178},"837":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"880":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{},"n":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"233":{"tf":1.4142135623730951},"315":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.0},"814":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"956":{"tf":1.0}}}}},"b":{"df":2,"docs":{"224":{"tf":2.0},"227":{"tf":1.7320508075688772}}},"d":{"df":100,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":2.449489742783178},"195":{"tf":1.0},"198":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":2.449489742783178},"24":{"tf":1.0},"254":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"315":{"tf":1.0},"318":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":3.605551275463989},"414":{"tf":3.605551275463989},"419":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"474":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"71":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"728":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.7320508075688772},"752":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"799":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"823":{"tf":1.4142135623730951},"830":{"tf":1.0},"834":{"tf":2.0},"837":{"tf":1.7320508075688772},"846":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"882":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"898":{"tf":1.0},"9":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"927":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"956":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":50,"docs":{"107":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"289":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"568":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"63":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"707":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":1.0},"802":{"tf":1.0},"834":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"120":{"tf":1.0},"136":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.0},"471":{"tf":1.0},"52":{"tf":1.0},"704":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"500":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"134":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"288":{"tf":2.0},"289":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"693":{"tf":1.0},"758":{"tf":1.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}}},"df":91,"docs":{"0":{"tf":2.8284271247461903},"10":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.4142135623730951},"306":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"379":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"563":{"tf":2.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"621":{"tf":2.23606797749979},"649":{"tf":1.0},"665":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"69":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.4142135623730951},"750":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.23606797749979},"804":{"tf":1.0},"809":{"tf":1.4142135623730951},"811":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.0},"902":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"98":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"340":{"tf":1.0},"854":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"693":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"308":{"tf":1.0},"318":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"580":{"tf":1.0},"77":{"tf":1.0},"782":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"_":{"df":1,"docs":{"461":{"tf":1.0}}},"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"951":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"132":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"862":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"100":{"tf":2.449489742783178},"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"757":{"tf":1.0},"762":{"tf":1.7320508075688772},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":2.449489742783178},"806":{"tf":1.0},"848":{"tf":1.0},"902":{"tf":1.0},"919":{"tf":1.0},"969":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"119":{"tf":1.0},"288":{"tf":1.0},"644":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"775":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"951":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"175":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}}}}},"h":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"252":{"tf":1.0},"959":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}},"s":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"288":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":4,"docs":{"471":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"950":{"tf":1.0}}}}}}}}},"i":{"a":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"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":{},"y":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":5,"docs":{"494":{"tf":1.0},"509":{"tf":1.0},"512":{"tf":1.0},"725":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":2,"docs":{"22":{"tf":1.0},"861":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":82,"docs":{"12":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"306":{"tf":1.0},"320":{"tf":1.0},"37":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"510":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"537":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0},"632":{"tf":1.0},"644":{"tf":1.4142135623730951},"658":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"709":{"tf":1.0},"715":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"734":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"750":{"tf":1.0},"76":{"tf":1.4142135623730951},"762":{"tf":1.0},"765":{"tf":1.0},"773":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"823":{"tf":1.0},"830":{"tf":1.7320508075688772},"839":{"tf":1.0},"885":{"tf":1.0},"906":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0},"947":{"tf":1.0},"97":{"tf":1.4142135623730951}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0}},"g":{"df":15,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"330":{"tf":1.0},"541":{"tf":1.0},"677":{"tf":1.4142135623730951},"76":{"tf":1.0},"761":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"df":1,"docs":{"334":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"285":{"tf":1.0},"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"811":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":29,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"456":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"680":{"tf":1.0},"692":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"98":{"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":{"27":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"223":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"653":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":24,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"401":{"tf":1.0},"412":{"tf":1.0},"471":{"tf":1.4142135623730951},"487":{"tf":1.0},"514":{"tf":1.0},"560":{"tf":1.0},"567":{"tf":1.0},"632":{"tf":1.0},"649":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0},"880":{"tf":1.0},"916":{"tf":1.0},"923":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"132":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.0},"404":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"916":{"tf":1.0},"933":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"103":{"tf":1.0},"811":{"tf":1.0},"82":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"261":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":8,"docs":{"288":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}}},"t":{"df":1,"docs":{"703":{"tf":1.0}}},"z":{"df":5,"docs":{"267":{"tf":1.0},"471":{"tf":1.0},"704":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"252":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"'":{"df":1,"docs":{"315":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":100,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"132":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"271":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"349":{"tf":1.0},"431":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"656":{"tf":1.7320508075688772},"662":{"tf":1.7320508075688772},"663":{"tf":1.0},"669":{"tf":1.0},"671":{"tf":1.4142135623730951},"673":{"tf":1.0},"674":{"tf":2.0},"675":{"tf":2.0},"676":{"tf":1.0},"677":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"732":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"745":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"765":{"tf":1.0},"775":{"tf":1.0},"783":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.4142135623730951},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"826":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"830":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.4142135623730951},"837":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.4142135623730951}},"x":{"df":2,"docs":{"759":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":10,"docs":{"118":{"tf":1.0},"131":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"288":{"tf":1.0},"326":{"tf":2.449489742783178},"328":{"tf":1.7320508075688772},"329":{"tf":1.0},"332":{"tf":1.0},"734":{"tf":1.0}}},"y":{"df":1,"docs":{"923":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"118":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":17,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"61":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"687":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0},"959":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"752":{"tf":1.0},"762":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.0},"919":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"600":{"tf":1.0},"611":{"tf":1.0},"680":{"tf":1.0},"734":{"tf":1.0},"925":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":203,"docs":{"0":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.0},"13":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"26":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.7320508075688772},"306":{"tf":2.0},"307":{"tf":2.23606797749979},"31":{"tf":1.7320508075688772},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":2.0},"320":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":2.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.7320508075688772},"337":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"390":{"tf":1.7320508075688772},"392":{"tf":1.0},"394":{"tf":1.0},"400":{"tf":1.7320508075688772},"403":{"tf":1.0},"405":{"tf":1.0},"411":{"tf":1.7320508075688772},"413":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"426":{"tf":1.0},"432":{"tf":1.7320508075688772},"434":{"tf":1.0},"436":{"tf":1.0},"442":{"tf":1.7320508075688772},"444":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.7320508075688772},"455":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.0},"470":{"tf":1.7320508075688772},"472":{"tf":1.0},"479":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"495":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"513":{"tf":1.7320508075688772},"516":{"tf":1.0},"518":{"tf":1.0},"523":{"tf":1.0},"525":{"tf":1.0},"527":{"tf":1.0},"530":{"tf":1.0},"536":{"tf":1.7320508075688772},"539":{"tf":1.0},"542":{"tf":1.0},"550":{"tf":1.0},"552":{"tf":1.0},"559":{"tf":1.7320508075688772},"562":{"tf":1.0},"564":{"tf":1.0},"568":{"tf":1.0},"571":{"tf":1.7320508075688772},"572":{"tf":1.0},"573":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"584":{"tf":1.0},"587":{"tf":1.0},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.7320508075688772},"607":{"tf":1.0},"608":{"tf":1.0},"610":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":2.23606797749979},"622":{"tf":1.0},"628":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"650":{"tf":1.0},"652":{"tf":2.6457513110645907},"653":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"678":{"tf":1.0},"686":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.4142135623730951},"729":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"752":{"tf":2.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"784":{"tf":1.4142135623730951},"796":{"tf":2.0},"799":{"tf":2.23606797749979},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.449489742783178},"817":{"tf":1.4142135623730951},"819":{"tf":1.0},"834":{"tf":1.4142135623730951},"854":{"tf":1.0},"86":{"tf":1.4142135623730951},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"878":{"tf":1.0},"890":{"tf":1.0},"898":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.7320508075688772},"919":{"tf":1.7320508075688772},"920":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.7320508075688772},"927":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"952":{"tf":1.4142135623730951},"956":{"tf":2.0},"960":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":3.1622776601683795},"969":{"tf":1.7320508075688772}}},"k":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"p":{"'":{"df":3,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"83":{"tf":1.0}}},"/":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"?":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"&":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"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":{}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"315":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"315":{"tf":1.0},"947":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"947":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"169":{"tf":1.0},"175":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":2.8284271247461903},"234":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"338":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"674":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"811":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"476":{"tf":1.0},"494":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"5":{"tf":1.0},"960":{"tf":1.0},"966":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"958":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":11,"docs":{"137":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":2.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0}}},"(":{"_":{":":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"232":{"tf":1.0},"316":{"tf":1.4142135623730951},"338":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"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":{"136":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"316":{"tf":1.0},"318":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"839":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"0":{".":{"1":{".":{"0":{"df":3,"docs":{"316":{"tf":1.0},"318":{"tf":1.0},"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":{}}}}}}}}},"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":1,"docs":{"315":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"151":{"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"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":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":144,"docs":{"0":{"tf":2.0},"100":{"tf":2.449489742783178},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"132":{"tf":4.358898943540674},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.8284271247461903},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":2.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"173":{"tf":2.0},"175":{"tf":2.6457513110645907},"179":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.23606797749979},"184":{"tf":3.1622776601683795},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.7320508075688772},"22":{"tf":2.23606797749979},"222":{"tf":2.0},"224":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":2.449489742783178},"259":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.6457513110645907},"290":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":3.3166247903554},"316":{"tf":2.6457513110645907},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.4142135623730951},"338":{"tf":1.0},"349":{"tf":2.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"418":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"549":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"59":{"tf":1.0},"632":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":2.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.7320508075688772},"658":{"tf":1.7320508075688772},"66":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.4142135623730951},"668":{"tf":1.0},"671":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"679":{"tf":1.7320508075688772},"680":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"687":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.4142135623730951},"711":{"tf":1.0},"727":{"tf":1.0},"78":{"tf":2.6457513110645907},"79":{"tf":2.449489742783178},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"840":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":2.449489742783178},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.7320508075688772},"864":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":2.6457513110645907},"91":{"tf":1.4142135623730951},"938":{"tf":1.0},"946":{"tf":1.0},"958":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}},"df":26,"docs":{"13":{"tf":1.7320508075688772},"169":{"tf":1.0},"195":{"tf":2.0},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"267":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"529":{"tf":1.0},"663":{"tf":1.0},"672":{"tf":1.0},"741":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"674":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"202":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0}}}}},"v":{"df":1,"docs":{"342":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"145":{"tf":1.0},"258":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"326":{"tf":1.0},"377":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"572":{"tf":1.0},"583":{"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":8,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"762":{"tf":1.4142135623730951},"923":{"tf":1.0},"924":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"776":{"tf":1.0},"781":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"17":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"22":{"tf":1.0},"321":{"tf":1.0},"377":{"tf":1.0},"678":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}},"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":36,"docs":{"318":{"tf":1.7320508075688772},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"565":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"796":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"921":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"268":{"tf":1.0}}}},"m":{"6":{"4":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"184":{"tf":1.0},"227":{"tf":1.0},"259":{"tf":1.0},"50":{"tf":1.0},"653":{"tf":1.0},"854":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"170":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.0},"446":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0},"644":{"tf":1.7320508075688772},"645":{"tf":1.0},"693":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"254":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":6,"docs":{"226":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.4142135623730951},"637":{"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"tf":1.7320508075688772}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"635":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"635":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"635":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":{".":{"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"635":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"634":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"777":{"tf":1.0},"778":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":17,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"188":{"tf":1.0},"205":{"tf":1.0},"233":{"tf":1.4142135623730951},"342":{"tf":1.0},"72":{"tf":1.0},"752":{"tf":1.0},"93":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"962":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"385":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"385":{"tf":1.0},"395":{"tf":1.0},"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"553":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"652":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"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":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"1":{"df":1,"docs":{"507":{"tf":1.4142135623730951}}},"df":5,"docs":{"416":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}},"df":2,"docs":{"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"2":{"df":2,"docs":{"519":{"tf":1.0},"588":{"tf":1.0}}},"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"385":{"tf":1.0},"395":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"553":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"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":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"333":{"tf":1.0},"508":{"tf":1.0},"578":{"tf":1.0},"642":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"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":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"496":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"480":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"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":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"2":{"0":{"1":{"9":{"df":1,"docs":{"554":{"tf":1.0}}},"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":{},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"416":{"tf":1.0}}},"2":{"df":1,"docs":{"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"407":{"tf":1.0},"428":{"tf":1.0},"465":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}},"df":6,"docs":{"416":{"tf":1.0},"465":{"tf":1.0},"519":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.0}}},"df":4,"docs":{"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"2":{"df":3,"docs":{"519":{"tf":1.0},"588":{"tf":1.0},"611":{"tf":1.0}}},"3":{"3":{"df":2,"docs":{"600":{"tf":1.0},"611":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":2,"docs":{"406":{"tf":1.0},"427":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"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":{"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"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":{"565":{"tf":1.0}}}}}},"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":1,"docs":{"531":{"tf":1.0}}}},"df":0,"docs":{}},"(":{"1":{"1":{"df":1,"docs":{"507":{"tf":1.0}}},"df":2,"docs":{"588":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}},"2":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}},"4":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"519":{"tf":1.0},"588":{"tf":1.0}}}}},"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"385":{"tf":1.0},"652":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":27,"docs":{"333":{"tf":1.0},"334":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.4142135623730951},"624":{"tf":1.0},"635":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"!":{"(":{"4":{"0":{"0":{"df":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"\"":{"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":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"427":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"480":{"tf":1.0},"496":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"600":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"553":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"531":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"107":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"497":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"565":{"tf":1.7320508075688772},"566":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"tf":2.0},"86":{"tf":1.4142135623730951},"880":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"\"":{"2":{"0":{"1":{"9":{"df":1,"docs":{"554":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"tf":1.4142135623730951}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"0":{"df":3,"docs":{"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"601":{"tf":1.0}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951}}},"df":2,"docs":{"416":{"tf":1.4142135623730951},"642":{"tf":1.0}},"l":{"df":1,"docs":{"577":{"tf":1.7320508075688772}}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}},"df":1,"docs":{"565":{"tf":1.0}},"l":{"df":2,"docs":{"480":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951}}}},"3":{"df":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.4142135623730951}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"652":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"623":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"333":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"601":{"tf":1.0},"624":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"643":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"272":{"tf":1.0}}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"203":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.0},"297":{"tf":1.4142135623730951},"474":{"tf":1.0},"677":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":16,"docs":{"100":{"tf":1.0},"252":{"tf":1.4142135623730951},"258":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"514":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"675":{"tf":1.0},"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"838":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"342":{"tf":1.0},"786":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"312":{"tf":1.0},"340":{"tf":1.0},"838":{"tf":1.0},"958":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"802":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"858":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"150":{"tf":1.0},"259":{"tf":1.0},"661":{"tf":1.0},"693":{"tf":1.0}}},"k":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"160":{"tf":1.0},"233":{"tf":1.0},"462":{"tf":1.0},"563":{"tf":1.0},"670":{"tf":1.0},"802":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0},"252":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"218":{"tf":1.0}}}}},"o":{"df":14,"docs":{"459":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"565":{"tf":2.23606797749979},"577":{"tf":1.0},"588":{"tf":1.0},"623":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.4142135623730951},"720":{"tf":1.0},"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"798":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":48,"docs":{"12":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"162":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":2.0},"218":{"tf":1.4142135623730951},"288":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"647":{"tf":1.0},"666":{"tf":1.4142135623730951},"67":{"tf":1.0},"671":{"tf":1.0},"686":{"tf":1.4142135623730951},"691":{"tf":1.0},"692":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"783":{"tf":1.0},"793":{"tf":1.0},"807":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"91":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":14,"docs":{"117":{"tf":1.0},"136":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"289":{"tf":1.0},"36":{"tf":1.0},"371":{"tf":1.4142135623730951},"45":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"9":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":73,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"306":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.0},"376":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"568":{"tf":1.0},"572":{"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.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"693":{"tf":1.0},"695":{"tf":1.0},"705":{"tf":1.0},"710":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.4142135623730951},"78":{"tf":1.0},"802":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"969":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":36,"docs":{"104":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"310":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"785":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"844":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"318":{"tf":1.0},"342":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"577":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"652":{"tf":1.0},"865":{"tf":1.0}}}},"r":{"df":3,"docs":{"223":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":4,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":3.1622776601683795}}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"120":{"tf":1.0},"127":{"tf":1.4142135623730951},"135":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"267":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"859":{"tf":1.0},"873":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"125":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"245":{"tf":1.0},"271":{"tf":1.0},"315":{"tf":1.0},"346":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"786":{"tf":1.0},"807":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"823":{"tf":1.0},"830":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"724":{"tf":1.0},"726":{"tf":1.0},"858":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"289":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"640":{"tf":2.0},"645":{"tf":1.4142135623730951}},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"640":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"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":{}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"521":{"tf":1.0},"523":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"226":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0},"964":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":37,"docs":{"106":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":2.0},"275":{"tf":1.0},"276":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"52":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"583":{"tf":1.0},"653":{"tf":1.7320508075688772},"654":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"690":{"tf":1.0},"720":{"tf":1.0},"799":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.7320508075688772},"893":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":30,"docs":{"123":{"tf":1.0},"125":{"tf":2.449489742783178},"127":{"tf":2.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":2.6457513110645907},"210":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"275":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":2.0},"842":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"875":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"747":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"df":6,"docs":{"116":{"tf":1.0},"17":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951}}},"i":{"c":{"df":6,"docs":{"294":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"671":{"tf":1.0},"674":{"tf":1.0},"895":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"561":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"297":{"tf":1.0},"684":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.7320508075688772},"168":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"814":{"tf":1.0},"89":{"tf":1.0}}}}},"df":52,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"461":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"514":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"708":{"tf":1.0},"711":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":1.0},"816":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"858":{"tf":1.4142135623730951},"86":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":71,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"150":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"338":{"tf":2.0},"342":{"tf":1.4142135623730951},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"541":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"630":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"663":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.7320508075688772},"696":{"tf":1.0},"697":{"tf":1.7320508075688772},"698":{"tf":1.0},"701":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"801":{"tf":1.0},"804":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"845":{"tf":1.0},"865":{"tf":1.4142135623730951},"867":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"941":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"184":{"tf":1.4142135623730951},"231":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.4142135623730951},"728":{"tf":1.0},"76":{"tf":1.0},"878":{"tf":1.0},"97":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":7,"docs":{"117":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"758":{"tf":1.0},"853":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":25,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"456":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"693":{"tf":1.0},"70":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"74":{"tf":1.7320508075688772},"91":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"923":{"tf":1.0},"95":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"752":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":29,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"435":{"tf":1.0},"446":{"tf":1.4142135623730951},"46":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"630":{"tf":1.0},"73":{"tf":1.0},"772":{"tf":1.0},"799":{"tf":1.0},"915":{"tf":1.0},"94":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"132":{"tf":1.0},"254":{"tf":1.0},"26":{"tf":1.4142135623730951},"334":{"tf":2.0},"768":{"tf":1.0},"833":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"288":{"tf":1.0},"401":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"126":{"tf":1.4142135623730951},"142":{"tf":2.0},"173":{"tf":1.0},"192":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"626":{"tf":1.0},"720":{"tf":1.0},"76":{"tf":1.0},"802":{"tf":1.0},"840":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"693":{"tf":1.0},"919":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"11":{"tf":1.0},"690":{"tf":1.4142135623730951},"849":{"tf":1.0},"868":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"df":20,"docs":{"26":{"tf":1.0},"654":{"tf":1.7320508075688772},"727":{"tf":1.0},"736":{"tf":1.0},"740":{"tf":1.0},"773":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"834":{"tf":1.7320508075688772},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"846":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"859":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"t":{"df":11,"docs":{"144":{"tf":1.0},"254":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"621":{"tf":1.0},"703":{"tf":1.4142135623730951},"862":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"693":{"tf":1.0}}}},"b":{"df":1,"docs":{"422":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"459":{"tf":1.0},"477":{"tf":1.0},"737":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.4142135623730951},"852":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":2.449489742783178}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"5":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"328":{"tf":3.0},"329":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.449489742783178},"640":{"tf":1.0},"642":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"129":{"tf":1.0},"135":{"tf":1.4142135623730951},"317":{"tf":1.0},"837":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":13,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.7320508075688772},"706":{"tf":1.0},"959":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.4142135623730951},"968":{"tf":2.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":5,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.0},"652":{"tf":1.0},"830":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":35,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"376":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"393":{"tf":1.4142135623730951},"395":{"tf":2.449489742783178},"396":{"tf":1.0},"397":{"tf":1.0},"439":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":1.7320508075688772},"73":{"tf":1.0},"773":{"tf":1.0},"78":{"tf":1.0},"801":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"823":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}},"t":{"df":2,"docs":{"266":{"tf":1.0},"267":{"tf":1.0}},"h":{"df":22,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"272":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"729":{"tf":1.0},"77":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"830":{"tf":1.0},"89":{"tf":1.0},"959":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"310":{"tf":1.0},"496":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"758":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":13,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":2.449489742783178},"63":{"tf":1.0},"66":{"tf":1.0},"708":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"=":{"\"":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"131":{"tf":2.0},"158":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":2.6457513110645907},"326":{"tf":1.4142135623730951},"328":{"tf":2.8284271247461903},"333":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":39,"docs":{"175":{"tf":1.0},"377":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.4142135623730951},"719":{"tf":1.7320508075688772},"727":{"tf":1.4142135623730951},"730":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"738":{"tf":1.0},"753":{"tf":1.0},"765":{"tf":1.4142135623730951},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"786":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.4142135623730951},"824":{"tf":1.0},"828":{"tf":1.0},"837":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.4142135623730951},"677":{"tf":1.0},"964":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"254":{"tf":1.0},"862":{"tf":1.0},"969":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"796":{"tf":1.0}},"n":{"df":8,"docs":{"191":{"tf":1.0},"224":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"810":{"tf":1.0},"824":{"tf":1.0},"861":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"289":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"342":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"136":{"tf":1.4142135623730951},"190":{"tf":1.0},"233":{"tf":2.449489742783178},"241":{"tf":1.7320508075688772},"245":{"tf":1.0},"31":{"tf":2.449489742783178},"316":{"tf":1.0},"33":{"tf":1.0},"342":{"tf":1.0},"66":{"tf":1.0},"898":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"909":{"tf":1.0},"915":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"112":{"tf":2.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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"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":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"d":{"df":2,"docs":{"19":{"tf":1.0},"815":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"575":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"376":{"tf":1.0},"471":{"tf":2.0},"474":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"503":{"tf":2.0},"507":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"519":{"tf":1.4142135623730951},"572":{"tf":1.0},"577":{"tf":2.0},"580":{"tf":2.449489742783178},"582":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.4142135623730951},"591":{"tf":2.23606797749979},"716":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"718":{"tf":1.0}}}}}},"g":{"=":{"\"":{"0":{"0":{"0":{"0":{"0":{"0":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":201,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":4.242640687119285},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"390":{"tf":1.0},"397":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":2.0},"502":{"tf":1.0},"509":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"567":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"594":{"tf":1.0},"6":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"613":{"tf":1.0},"617":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"628":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"715":{"tf":1.4142135623730951},"716":{"tf":2.23606797749979},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"725":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.7320508075688772},"732":{"tf":1.4142135623730951},"734":{"tf":1.7320508075688772},"736":{"tf":1.0},"738":{"tf":2.23606797749979},"739":{"tf":1.0},"741":{"tf":1.7320508075688772},"745":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":2.23606797749979},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"814":{"tf":1.4142135623730951},"83":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"880":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"905":{"tf":1.0},"913":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.0},"929":{"tf":1.4142135623730951},"942":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":88,"docs":{"742":{"tf":1.0},"743":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"758":{"tf":1.0},"762":{"tf":2.23606797749979},"763":{"tf":1.4142135623730951},"764":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.7320508075688772},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.7320508075688772},"814":{"tf":1.0},"816":{"tf":1.7320508075688772},"817":{"tf":1.0},"818":{"tf":1.7320508075688772},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":1.7320508075688772},"837":{"tf":1.0},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"868":{"tf":1.0},"880":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.7320508075688772},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":2.0},"921":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":2.0},"930":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0},"953":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"958":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":5,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"379":{"tf":1.0},"6":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"793":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"914":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"670":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":94,"docs":{"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":1.4142135623730951},"17":{"tf":2.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"224":{"tf":2.0},"227":{"tf":1.7320508075688772},"254":{"tf":1.0},"26":{"tf":2.6457513110645907},"268":{"tf":2.23606797749979},"27":{"tf":1.0},"280":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"377":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"63":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.4142135623730951},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.4142135623730951},"684":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"735":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"753":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"811":{"tf":1.0},"820":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"83":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"853":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"879":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"9":{"tf":1.4142135623730951},"910":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"942":{"tf":1.4142135623730951},"949":{"tf":1.0},"950":{"tf":1.0},"958":{"tf":2.0},"96":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":37,"docs":{"100":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"647":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"78":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":1.0},"833":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"877":{"tf":1.0},"951":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"208":{"tf":1.0},"312":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"653":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"289":{"tf":1.0},"721":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":14,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"48":{"tf":1.0},"653":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"793":{"tf":1.0},"916":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"379":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"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":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"254":{"tf":2.6457513110645907},"328":{"tf":3.0},"329":{"tf":2.23606797749979},"332":{"tf":2.0},"333":{"tf":3.1622776601683795},"376":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":21,"docs":{"170":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"510":{"tf":2.0},"511":{"tf":1.0},"514":{"tf":1.7320508075688772},"522":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"737":{"tf":1.0},"756":{"tf":1.0},"829":{"tf":1.0},"873":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":3.1622776601683795}}}}}}}},"1":{"d":{"b":{"d":{"6":{"df":0,"docs":{},"e":{"0":{"6":{"1":{"7":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"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":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"234":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"785":{"tf":1.0}}}},"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"127":{"tf":1.0},"142":{"tf":1.7320508075688772},"560":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":7,"docs":{"127":{"tf":2.449489742783178},"175":{"tf":2.8284271247461903},"224":{"tf":1.0},"231":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"884":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"652":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"[":{"0":{"df":1,"docs":{"652":{"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":7,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"804":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"26":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":2.0},"346":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"565":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.4142135623730951},"665":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"710":{"tf":1.0},"772":{"tf":1.0},"788":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":1.0},"833":{"tf":1.4142135623730951},"84":{"tf":1.0},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"867":{"tf":1.4142135623730951},"873":{"tf":1.0},"880":{"tf":1.0},"91":{"tf":1.0},"919":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"340":{"tf":1.0},"649":{"tf":1.0},"796":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":2.0},"563":{"tf":1.0},"89":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"958":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"34":{"tf":1.0},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"461":{"tf":1.0},"538":{"tf":1.0},"762":{"tf":1.0},"791":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"652":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"492":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"492":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"321":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"861":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"738":{"tf":1.0},"786":{"tf":1.0},"792":{"tf":1.0},"846":{"tf":1.0},"891":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"110":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"259":{"tf":1.0},"289":{"tf":1.0},"618":{"tf":1.0},"677":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":21,"docs":{"104":{"tf":1.0},"17":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"83":{"tf":1.0},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"557":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"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":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}},"df":8,"docs":{"114":{"tf":1.0},"19":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"720":{"tf":1.0},"757":{"tf":1.0},"958":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"770":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":48,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"142":{"tf":2.0},"169":{"tf":1.4142135623730951},"175":{"tf":2.0},"184":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"203":{"tf":1.0},"22":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"476":{"tf":1.0},"618":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"710":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"78":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"919":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":26,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":2.23606797749979},"120":{"tf":1.4142135623730951},"127":{"tf":1.0},"142":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"176":{"tf":1.0},"234":{"tf":1.0},"265":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":2.8284271247461903},"289":{"tf":3.3166247903554},"346":{"tf":1.0},"546":{"tf":1.0},"632":{"tf":1.4142135623730951},"677":{"tf":1.0},"679":{"tf":1.0},"782":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"124":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"s":{"df":21,"docs":{"100":{"tf":2.0},"120":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"50":{"tf":1.0},"578":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"679":{"tf":1.0},"760":{"tf":1.0},"765":{"tf":1.0},"79":{"tf":2.0},"834":{"tf":1.0},"838":{"tf":1.0},"848":{"tf":1.0},"892":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"[":{"\"":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{";":{"1":{"\"":{"]":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"(":{"c":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":1,"docs":{"673":{"tf":1.0}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":76,"docs":{"100":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"203":{"tf":3.0},"297":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"834":{"tf":3.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"89":{"tf":1.4142135623730951},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"814":{"tf":1.0},"823":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"109":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"796":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"964":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"316":{"tf":1.0},"342":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"674":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"125":{"tf":1.0},"845":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":122,"docs":{"100":{"tf":3.3166247903554},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"324":{"tf":1.0},"344":{"tf":1.0},"379":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"425":{"tf":2.449489742783178},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"568":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.0},"614":{"tf":1.4142135623730951},"645":{"tf":1.0},"678":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.7320508075688772},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":2.0},"730":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"738":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":2.0},"758":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"784":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":3.3166247903554},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"807":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.4142135623730951},"828":{"tf":1.0},"834":{"tf":1.7320508075688772},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"873":{"tf":1.0},"889":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.4142135623730951},"900":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"909":{"tf":1.0},"916":{"tf":1.4142135623730951},"919":{"tf":1.7320508075688772},"920":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"945":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":244,"docs":{"5":{"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},"746":{"tf":1.0},"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},"755":{"tf":1.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},"765":{"tf":1.0},"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"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.0},"895":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"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.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"107":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"205":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"246":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":42,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"231":{"tf":1.0},"285":{"tf":1.7320508075688772},"286":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"303":{"tf":1.0},"378":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.4142135623730951},"414":{"tf":2.0},"419":{"tf":1.4142135623730951},"435":{"tf":2.0},"440":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"570":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"721":{"tf":1.0},"736":{"tf":1.0},"747":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"81":{"tf":1.0},"897":{"tf":1.0},"912":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":38,"docs":{"10":{"tf":1.0},"112":{"tf":2.449489742783178},"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"18":{"tf":1.0},"218":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"57":{"tf":1.0},"580":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"73":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"772":{"tf":1.7320508075688772},"802":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"579":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"579":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"698":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"22":{"tf":1.0},"861":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"289":{"tf":1.4142135623730951},"401":{"tf":1.0},"677":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"376":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"958":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"128":{"tf":1.0},"28":{"tf":1.0},"460":{"tf":1.0},"677":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"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":{"245":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"915":{"tf":1.0}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"245":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"i":{"df":6,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0},"746":{"tf":1.0},"912":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"912":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"947":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"j":{"df":2,"docs":{"32":{"tf":1.7320508075688772},"700":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"969":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"315":{"tf":1.7320508075688772},"316":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"338":{"tf":1.0},"347":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"563":{"tf":1.0},"679":{"tf":2.0},"882":{"tf":1.0},"929":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"318":{"tf":1.0},"678":{"tf":1.0},"862":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"806":{"tf":1.0}}}}},"r":{"df":26,"docs":{"100":{"tf":2.6457513110645907},"109":{"tf":1.0},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":2.23606797749979},"321":{"tf":1.0},"427":{"tf":1.0},"531":{"tf":1.0},"567":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"78":{"tf":2.0},"789":{"tf":1.0},"79":{"tf":2.6457513110645907},"840":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"917":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"17":{"tf":1.0},"226":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"289":{"tf":1.0},"87":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"897":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":8,"docs":{"43":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.4142135623730951},"912":{"tf":1.0},"915":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"184":{"tf":1.0},"533":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"330":{"tf":1.0},"533":{"tf":1.0},"78":{"tf":1.0},"909":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"268":{"tf":1.0},"839":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"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":{},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":23,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"338":{"tf":1.0},"342":{"tf":1.4142135623730951},"750":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"801":{"tf":1.0},"865":{"tf":1.4142135623730951}}}}}}},"df":43,"docs":{"0":{"tf":1.0},"111":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.7320508075688772},"17":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.7320508075688772},"258":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"376":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"526":{"tf":1.0},"535":{"tf":1.0},"570":{"tf":1.0},"653":{"tf":1.0},"710":{"tf":1.0},"73":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.0},"811":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"916":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}},"|":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{"730":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"254":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"142":{"tf":1.4142135623730951},"184":{"tf":1.0},"315":{"tf":1.0},"456":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"76":{"tf":1.0},"804":{"tf":1.0},"894":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"224":{"tf":1.0},"241":{"tf":1.0},"379":{"tf":1.0},"80":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"803":{"tf":1.0}}}}},"u":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"m":{"d":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"557":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":2.0},"116":{"tf":1.0}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}},"df":87,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":2.449489742783178},"111":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"175":{"tf":2.6457513110645907},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"317":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.0},"683":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"71":{"tf":1.0},"737":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.0},"782":{"tf":1.0},"793":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"802":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"823":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.7320508075688772},"839":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.7320508075688772},"867":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.449489742783178},"9":{"tf":1.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"969":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"498":{"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":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"268":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":88,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"175":{"tf":2.8284271247461903},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":2.23606797749979},"297":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"346":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"580":{"tf":1.0},"632":{"tf":1.0},"645":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"652":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.0},"67":{"tf":1.7320508075688772},"674":{"tf":1.0},"677":{"tf":1.0},"680":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"70":{"tf":1.0},"704":{"tf":1.0},"71":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"715":{"tf":1.0},"72":{"tf":1.0},"729":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"853":{"tf":1.0},"860":{"tf":1.0},"865":{"tf":1.4142135623730951},"897":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"938":{"tf":1.0},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":2.0},"97":{"tf":2.0},"98":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"645":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"288":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"289":{"tf":1.7320508075688772},"687":{"tf":1.0},"703":{"tf":1.0},"83":{"tf":1.0},"852":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"117":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"471":{"tf":1.0},"753":{"tf":1.0},"9":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"958":{"tf":1.0}}},"m":{"a":{"df":6,"docs":{"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"353":{"tf":1.0},"370":{"tf":1.4142135623730951}},"n":{"d":{">":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"115":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":2.23606797749979},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":3.7416573867739413},"232":{"tf":1.0},"233":{"tf":3.4641016151377544},"234":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"653":{"tf":1.0},"682":{"tf":1.0},"689":{"tf":1.7320508075688772},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"804":{"tf":1.0},"861":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":2.6457513110645907},"935":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":2,"docs":{"379":{"tf":1.0},"823":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":35,"docs":{"106":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.0},"21":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"34":{"tf":1.0},"38":{"tf":1.0},"387":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"854":{"tf":1.0},"99":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"949":{"tf":1.0},"950":{"tf":1.7320508075688772},"953":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"659":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":8,"docs":{"160":{"tf":1.0},"289":{"tf":1.7320508075688772},"5":{"tf":1.0},"546":{"tf":1.0},"712":{"tf":1.0},"838":{"tf":1.0},"859":{"tf":1.0},"957":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":6,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"52":{"tf":1.0},"958":{"tf":1.0}}},"t":{"df":10,"docs":{"289":{"tf":1.0},"51":{"tf":1.0},"762":{"tf":1.0},"776":{"tf":1.0},"784":{"tf":1.0},"801":{"tf":1.0},"851":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"735":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"835":{"tf":1.0},"844":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":16,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.4142135623730951},"340":{"tf":1.0},"379":{"tf":1.0},"678":{"tf":1.4142135623730951},"737":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"845":{"tf":1.0},"854":{"tf":1.0},"861":{"tf":1.0},"902":{"tf":1.0}}},"x":{"df":3,"docs":{"144":{"tf":1.0},"22":{"tf":1.0},"772":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"538":{"tf":1.0},"697":{"tf":1.0}}}}},"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"13":{"tf":1.0},"193":{"tf":1.0},"316":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"665":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0},"77":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"933":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{".":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"915":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"135":{"tf":1.0},"661":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"913":{"tf":1.0},"933":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"378":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"572":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"169":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"677":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"823":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"878":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":8,"docs":{"203":{"tf":4.123105625617661},"205":{"tf":1.0},"254":{"tf":1.0},"316":{"tf":1.4142135623730951},"830":{"tf":1.0},"861":{"tf":1.0},"908":{"tf":1.0},"912":{"tf":1.0}},"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":{},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"805":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":71,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"168":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":4.358898943540674},"197":{"tf":2.449489742783178},"198":{"tf":3.4641016151377544},"199":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":2.6457513110645907},"203":{"tf":4.358898943540674},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.0},"210":{"tf":1.0},"214":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":4.898979485566356},"258":{"tf":2.0},"261":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"307":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":3.0},"316":{"tf":2.8284271247461903},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"342":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"503":{"tf":1.0},"514":{"tf":1.4142135623730951},"60":{"tf":1.0},"663":{"tf":1.4142135623730951},"676":{"tf":1.0},"682":{"tf":1.4142135623730951},"693":{"tf":1.0},"720":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.4142135623730951},"79":{"tf":1.0},"801":{"tf":1.0},"861":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"732":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"563":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"289":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"592":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":2.23606797749979},"627":{"tf":1.0},"655":{"tf":1.0},"710":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"d":{"df":28,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"190":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"371":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.0},"674":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"258":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.0},"674":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"330":{"tf":1.0},"346":{"tf":1.0},"493":{"tf":1.0},"704":{"tf":1.0},"804":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"898":{"tf":1.0},"906":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":19,"docs":{"32":{"tf":1.7320508075688772},"324":{"tf":1.0},"448":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"490":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"577":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"700":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"175":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"765":{"tf":1.0},"878":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"65":{"tf":1.0},"752":{"tf":1.0}}}},"m":{"df":34,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"230":{"tf":1.0},"276":{"tf":1.4142135623730951},"307":{"tf":1.0},"316":{"tf":1.4142135623730951},"326":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"379":{"tf":1.0},"43":{"tf":1.0},"492":{"tf":1.0},"720":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"788":{"tf":1.0},"793":{"tf":1.7320508075688772},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"838":{"tf":1.4142135623730951},"842":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"858":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"422":{"tf":1.0},"537":{"tf":1.0},"6":{"tf":1.4142135623730951},"860":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":88,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"234":{"tf":1.0},"246":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.7320508075688772},"328":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"423":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"443":{"tf":1.0},"48":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"501":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"538":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"609":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"653":{"tf":1.0},"697":{"tf":1.0},"716":{"tf":1.0},"73":{"tf":1.4142135623730951},"772":{"tf":1.0},"779":{"tf":1.0},"79":{"tf":1.0},"823":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.4142135623730951},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"129":{"tf":1.4142135623730951},"136":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"163":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"186":{"tf":1.0},"188":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"289":{"tf":2.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"422":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"546":{"tf":1.0},"592":{"tf":1.0},"60":{"tf":1.0},"634":{"tf":2.449489742783178},"636":{"tf":1.4142135623730951},"637":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"959":{"tf":1.4142135623730951},"960":{"tf":2.0},"961":{"tf":1.7320508075688772},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":2.0},"967":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{".":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"111":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.7320508075688772},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"834":{"tf":1.0},"858":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"959":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":43,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":2.449489742783178},"191":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.449489742783178},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"471":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"602":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"682":{"tf":1.0},"715":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"837":{"tf":1.0},"854":{"tf":1.0},"857":{"tf":1.0},"871":{"tf":1.0},"9":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"407":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"406":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"459":{"tf":1.0},"477":{"tf":1.0},"788":{"tf":1.0},"834":{"tf":1.0},"861":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"t":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}},"t":{"df":7,"docs":{"115":{"tf":1.0},"377":{"tf":1.4142135623730951},"471":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"834":{"tf":1.0},"884":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"854":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"254":{"tf":2.8284271247461903},"7":{"tf":1.0},"823":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"800":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"130":{"tf":1.0},"322":{"tf":1.4142135623730951},"653":{"tf":2.23606797749979},"654":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"673":{"tf":1.0},"755":{"tf":1.0},"758":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.4142135623730951},"818":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"881":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"11":{"tf":1.0},"117":{"tf":1.0},"17":{"tf":1.0},"315":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"619":{"tf":1.4142135623730951},"673":{"tf":1.0},"769":{"tf":1.0},"782":{"tf":1.0},"825":{"tf":1.0},"838":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"873":{"tf":1.0},"919":{"tf":1.0},"935":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":21,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"315":{"tf":1.0},"67":{"tf":1.0},"731":{"tf":1.0},"762":{"tf":2.23606797749979},"764":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"804":{"tf":1.0},"816":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"847":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"926":{"tf":1.0},"947":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"138":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"741":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"958":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"190":{"tf":1.0},"62":{"tf":1.0},"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":40,"docs":{"124":{"tf":2.0},"125":{"tf":1.7320508075688772},"127":{"tf":2.23606797749979},"347":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"406":{"tf":1.0},"408":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":2.0},"582":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.7320508075688772},"607":{"tf":1.7320508075688772},"618":{"tf":1.4142135623730951},"619":{"tf":2.0},"621":{"tf":1.0},"70":{"tf":1.0},"716":{"tf":1.0},"75":{"tf":2.0},"755":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"907":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":34,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"127":{"tf":2.6457513110645907},"131":{"tf":1.4142135623730951},"288":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":2.0},"402":{"tf":1.7320508075688772},"404":{"tf":3.7416573867739413},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.4142135623730951},"412":{"tf":2.23606797749979},"414":{"tf":3.7416573867739413},"416":{"tf":2.6457513110645907},"417":{"tf":1.0},"418":{"tf":1.0},"456":{"tf":1.0},"544":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"621":{"tf":2.23606797749979},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"734":{"tf":1.0},"75":{"tf":1.4142135623730951},"818":{"tf":1.0},"837":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"421":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"266":{"tf":1.0},"267":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"673":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"804":{"tf":1.0},"831":{"tf":1.0},"853":{"tf":1.0}}}},"df":1,"docs":{"261":{"tf":1.0}}}}},"w":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"752":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"679":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"679":{"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":{"679":{"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":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":31,"docs":{"166":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.7320508075688772},"289":{"tf":1.0},"376":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"646":{"tf":1.4142135623730951},"674":{"tf":2.6457513110645907},"677":{"tf":3.3166247903554},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"736":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"771":{"tf":1.0},"785":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"835":{"tf":1.0},"844":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"880":{"tf":1.7320508075688772},"958":{"tf":1.4142135623730951}},"e":{"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":{"df":1,"docs":{"677":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"26":{"tf":1.4142135623730951},"315":{"tf":1.0},"655":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"754":{"tf":1.0},"787":{"tf":1.0},"818":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"854":{"tf":1.0},"871":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"655":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.7320508075688772},"259":{"tf":1.0},"27":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"710":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"785":{"tf":1.0},"79":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.0},"925":{"tf":1.0},"951":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"538":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"31":{"tf":1.0},"65":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"701":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"579":{"tf":1.0},"618":{"tf":1.0},"627":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":1,"docs":{"254":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":50,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":2.0},"14":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.0},"283":{"tf":1.0},"293":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"334":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.0},"54":{"tf":1.0},"572":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.0},"691":{"tf":1.0},"694":{"tf":1.0},"711":{"tf":1.0},"715":{"tf":1.4142135623730951},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"950":{"tf":1.0},"968":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":1,"docs":{"551":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"579":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"813":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"594":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":83,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"223":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"259":{"tf":2.23606797749979},"261":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":2.0},"317":{"tf":3.0},"336":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"520":{"tf":1.0},"551":{"tf":2.449489742783178},"560":{"tf":1.0},"572":{"tf":1.7320508075688772},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.7320508075688772},"582":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"647":{"tf":1.0},"649":{"tf":1.7320508075688772},"667":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":3.0},"679":{"tf":1.7320508075688772},"690":{"tf":1.7320508075688772},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"729":{"tf":1.4142135623730951},"734":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.7320508075688772},"79":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"804":{"tf":1.0},"823":{"tf":1.0},"830":{"tf":1.0},"837":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"922":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.4142135623730951},"969":{"tf":1.7320508075688772}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"718":{"tf":1.0},"738":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"145":{"tf":1.0},"173":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"4":{"1":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"837":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"316":{"tf":1.0},"318":{"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":32,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"466":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"636":{"tf":1.0},"839":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":18,"docs":{"109":{"tf":1.0},"127":{"tf":1.0},"264":{"tf":1.4142135623730951},"721":{"tf":1.0},"741":{"tf":1.0},"753":{"tf":1.4142135623730951},"812":{"tf":1.0},"818":{"tf":1.0},"831":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"88":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.4142135623730951},"917":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":203,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":3.872983346207417},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"160":{"tf":2.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"185":{"tf":2.6457513110645907},"187":{"tf":2.6457513110645907},"190":{"tf":2.23606797749979},"191":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.6457513110645907},"218":{"tf":2.23606797749979},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":4.69041575982343},"292":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"33":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"385":{"tf":1.7320508075688772},"389":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"406":{"tf":1.7320508075688772},"410":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.7320508075688772},"452":{"tf":1.0},"464":{"tf":1.7320508075688772},"469":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":2.0},"485":{"tf":1.0},"487":{"tf":3.1622776601683795},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"496":{"tf":2.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":2.23606797749979},"512":{"tf":1.0},"514":{"tf":3.1622776601683795},"517":{"tf":1.4142135623730951},"519":{"tf":2.23606797749979},"522":{"tf":1.4142135623730951},"523":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.7320508075688772},"535":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"54":{"tf":1.4142135623730951},"541":{"tf":1.0},"543":{"tf":1.7320508075688772},"546":{"tf":1.0},"548":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"558":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"569":{"tf":1.0},"57":{"tf":2.0},"577":{"tf":2.23606797749979},"580":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"588":{"tf":2.23606797749979},"59":{"tf":1.0},"591":{"tf":1.4142135623730951},"592":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.7320508075688772},"604":{"tf":1.0},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"611":{"tf":1.7320508075688772},"614":{"tf":1.4142135623730951},"615":{"tf":1.0},"623":{"tf":1.7320508075688772},"627":{"tf":1.0},"63":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"637":{"tf":1.0},"638":{"tf":1.0},"642":{"tf":2.23606797749979},"644":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":3.4641016151377544},"666":{"tf":1.0},"67":{"tf":1.4142135623730951},"674":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"697":{"tf":2.0},"698":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"704":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":2.449489742783178},"772":{"tf":2.23606797749979},"78":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"791":{"tf":1.0},"818":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"86":{"tf":1.4142135623730951},"860":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"873":{"tf":1.0},"9":{"tf":2.6457513110645907},"91":{"tf":1.0},"916":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":3.3166247903554},"962":{"tf":1.0},"969":{"tf":4.358898943540674},"98":{"tf":2.449489742783178},"99":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"315":{"tf":2.23606797749979},"316":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"\"":{"2":{"0":{"2":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"915":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"551":{"tf":1.4142135623730951},"553":{"tf":1.0}}}}}}}},"df":25,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.0},"288":{"tf":2.0},"376":{"tf":1.0},"549":{"tf":1.4142135623730951},"551":{"tf":2.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"556":{"tf":1.0},"664":{"tf":1.4142135623730951},"669":{"tf":1.0},"684":{"tf":2.0},"685":{"tf":1.0},"741":{"tf":1.0},"77":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951},"830":{"tf":1.0},"847":{"tf":1.4142135623730951},"87":{"tf":1.0},"881":{"tf":1.0},"914":{"tf":1.0},"98":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":23,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"376":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"549":{"tf":1.7320508075688772},"551":{"tf":2.8284271247461903},"553":{"tf":1.7320508075688772},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.7320508075688772},"776":{"tf":1.0},"78":{"tf":1.0},"813":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"956":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{".":{"d":{"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":{"(":{"1":{"9":{"9":{"3":{"df":1,"docs":{"553":{"tf":1.0}}},"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":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":27,"docs":{"117":{"tf":1.7320508075688772},"127":{"tf":2.449489742783178},"132":{"tf":1.0},"175":{"tf":2.8284271247461903},"224":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":1.0},"379":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"830":{"tf":1.0},"861":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"814":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"831":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":59,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":2.449489742783178},"2":{"tf":1.0},"215":{"tf":1.7320508075688772},"218":{"tf":2.23606797749979},"221":{"tf":2.6457513110645907},"222":{"tf":2.0},"223":{"tf":1.7320508075688772},"224":{"tf":2.6457513110645907},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.449489742783178},"234":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"239":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":2.0},"315":{"tf":1.0},"348":{"tf":1.7320508075688772},"349":{"tf":2.23606797749979},"350":{"tf":1.0},"352":{"tf":1.4142135623730951},"363":{"tf":2.0},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":2.0},"651":{"tf":1.0},"701":{"tf":1.0},"715":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"817":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"863":{"tf":1.0},"880":{"tf":1.0},"890":{"tf":1.0},"898":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"906":{"tf":1.0},"915":{"tf":1.0},"920":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"379":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"276":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"858":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"965":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":107,"docs":{"100":{"tf":2.0},"116":{"tf":1.0},"131":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":3.3166247903554},"205":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.4142135623730951},"289":{"tf":3.3166247903554},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.4142135623730951},"565":{"tf":1.7320508075688772},"568":{"tf":1.0},"570":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.4142135623730951},"668":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"690":{"tf":1.4142135623730951},"700":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"799":{"tf":1.0},"814":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"842":{"tf":1.0},"861":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"952":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"874":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":12,"docs":{"318":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0},"652":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"871":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":77,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":2.6457513110645907},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"326":{"tf":1.7320508075688772},"336":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"38":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"568":{"tf":1.4142135623730951},"593":{"tf":1.0},"60":{"tf":1.0},"616":{"tf":1.0},"626":{"tf":1.0},"644":{"tf":1.7320508075688772},"647":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.7320508075688772},"686":{"tf":1.0},"690":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.6457513110645907},"947":{"tf":1.0},"951":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":49,"docs":{"190":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"35":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"649":{"tf":1.0},"677":{"tf":1.4142135623730951},"679":{"tf":1.0},"773":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"22":{"tf":1.0},"272":{"tf":1.4142135623730951},"315":{"tf":1.0},"721":{"tf":1.0},"789":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"315":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":33,"docs":{"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"135":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"254":{"tf":1.4142135623730951},"295":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"342":{"tf":1.4142135623730951},"741":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.4142135623730951},"838":{"tf":1.7320508075688772},"860":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.7320508075688772},"917":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"956":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"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":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"838":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0}}}}}}}}}},"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":{"334":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"334":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"621":{"tf":2.23606797749979}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"626":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":4.358898943540674},"623":{"tf":1.7320508075688772},"626":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":45,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.7320508075688772},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"270":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"376":{"tf":1.0},"41":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"665":{"tf":1.7320508075688772},"671":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"744":{"tf":1.0},"750":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"844":{"tf":1.0},"858":{"tf":2.23606797749979},"859":{"tf":1.0},"880":{"tf":1.0},"882":{"tf":1.0},"9":{"tf":1.4142135623730951},"947":{"tf":1.0},"953":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"234":{"tf":1.0},"252":{"tf":1.0},"958":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":16,"docs":{"129":{"tf":1.0},"136":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"380":{"tf":1.4142135623730951},"715":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"805":{"tf":1.0},"838":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"315":{"tf":1.0},"330":{"tf":1.0},"697":{"tf":1.4142135623730951},"770":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":9,"docs":{"136":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":61,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"224":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":2.449489742783178},"292":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"315":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"579":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"823":{"tf":1.0},"87":{"tf":1.0},"964":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"568":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"175":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"462":{"tf":1.0}}},"df":20,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"354":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":2.0}},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"949":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":32,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":2.0},"318":{"tf":1.0},"488":{"tf":1.0},"5":{"tf":1.4142135623730951},"515":{"tf":1.0},"56":{"tf":1.4142135623730951},"662":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"772":{"tf":1.7320508075688772},"799":{"tf":2.23606797749979},"857":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"104":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"22":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"741":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"132":{"tf":1.7320508075688772},"205":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"456":{"tf":1.0},"673":{"tf":1.7320508075688772},"72":{"tf":1.0},"77":{"tf":1.0},"846":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"956":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":13,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"223":{"tf":1.0},"626":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.7320508075688772},"675":{"tf":1.0},"773":{"tf":1.0},"79":{"tf":1.0},"964":{"tf":1.0}}}}}},"i":{"c":{"df":21,"docs":{"132":{"tf":2.449489742783178},"184":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"289":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"431":{"tf":1.0},"50":{"tf":1.4142135623730951},"73":{"tf":1.0},"835":{"tf":1.0},"94":{"tf":1.0}},"e":{"'":{"df":5,"docs":{"231":{"tf":1.0},"351":{"tf":1.0},"549":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"498":{"tf":1.4142135623730951},"500":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"497":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"254":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"640":{"tf":2.0},"642":{"tf":1.4142135623730951},"645":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"5":{"df":1,"docs":{"640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"21":{"tf":1.0},"254":{"tf":2.6457513110645907},"276":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"37":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"60":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"703":{"tf":1.0},"801":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":70,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.0},"248":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":1.4142135623730951},"340":{"tf":1.0},"348":{"tf":1.4142135623730951},"37":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"488":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"515":{"tf":1.0},"52":{"tf":1.4142135623730951},"522":{"tf":1.0},"524":{"tf":1.0},"583":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"606":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"653":{"tf":1.7320508075688772},"660":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"685":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"705":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"82":{"tf":1.0},"830":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"912":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"402":{"tf":1.0},"619":{"tf":1.0},"673":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"376":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"613":{"tf":1.4142135623730951}}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":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":{"318":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"289":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"665":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"191":{"tf":1.0},"289":{"tf":1.4142135623730951},"33":{"tf":1.0},"652":{"tf":1.0},"792":{"tf":1.0},"807":{"tf":1.0},"916":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"114":{"tf":1.0},"127":{"tf":2.23606797749979},"135":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"338":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"665":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"690":{"tf":1.4142135623730951},"734":{"tf":1.0},"818":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"860":{"tf":1.4142135623730951},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"846":{"tf":1.0},"859":{"tf":1.0}}},"y":{"_":{"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":8,"docs":{"125":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"126":{"tf":1.4142135623730951},"145":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.23606797749979},"195":{"tf":1.0},"203":{"tf":3.1622776601683795},"206":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":2.0},"321":{"tf":1.7320508075688772},"324":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":1.4142135623730951},"649":{"tf":1.4142135623730951},"667":{"tf":1.0},"716":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951},"872":{"tf":1.0},"930":{"tf":1.0},"950":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"872":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"734":{"tf":1.4142135623730951},"927":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"224":{"tf":1.0},"371":{"tf":1.0},"476":{"tf":1.0},"831":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"168":{"tf":1.0},"22":{"tf":1.0},"809":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":19,"docs":{"127":{"tf":1.0},"340":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0},"718":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":1.0},"774":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"865":{"tf":1.4142135623730951},"933":{"tf":1.0},"940":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"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":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"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":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"601":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"600":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":18,"docs":{"226":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"288":{"tf":1.0},"376":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":2.23606797749979},"615":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"119":{"tf":1.0},"184":{"tf":1.4142135623730951},"29":{"tf":1.0},"688":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"660":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":73,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"137":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":2.6457513110645907},"41":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":2.449489742783178},"474":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.7320508075688772},"488":{"tf":2.23606797749979},"491":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":2.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"512":{"tf":1.0},"514":{"tf":1.7320508075688772},"515":{"tf":2.23606797749979},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"572":{"tf":2.6457513110645907},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":2.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.23606797749979},"588":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951},"729":{"tf":2.0},"738":{"tf":1.0},"755":{"tf":1.0},"76":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"880":{"tf":1.0},"911":{"tf":1.7320508075688772},"958":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"673":{"tf":1.0},"728":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"480":{"tf":1.0},"759":{"tf":1.0},"854":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"969":{"tf":4.123105625617661}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"961":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":1,"docs":{"859":{"tf":1.0}}},"o":{"c":{"df":36,"docs":{"134":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.4142135623730951},"315":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":2.0},"335":{"tf":1.7320508075688772},"343":{"tf":1.0},"376":{"tf":1.0},"390":{"tf":1.7320508075688772},"400":{"tf":1.7320508075688772},"411":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"432":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"502":{"tf":1.0},"513":{"tf":1.7320508075688772},"525":{"tf":1.0},"536":{"tf":1.7320508075688772},"559":{"tf":1.7320508075688772},"571":{"tf":1.7320508075688772},"581":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.7320508075688772},"617":{"tf":1.0},"628":{"tf":1.0},"838":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.0},"912":{"tf":1.0},"924":{"tf":1.0}},"s":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"]":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":71,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.6457513110645907},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.7320508075688772},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"37":{"tf":2.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":2.0},"499":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.7320508075688772},"697":{"tf":1.0},"706":{"tf":1.0},"71":{"tf":1.0},"772":{"tf":1.4142135623730951},"799":{"tf":2.0},"801":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}}}}}}}},"df":14,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"342":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"493":{"tf":1.0},"57":{"tf":1.0},"692":{"tf":1.0},"76":{"tf":1.0},"831":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":1,"docs":{"969":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"640":{"tf":1.0},"649":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.4142135623730951},"793":{"tf":1.0},"82":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":2,"docs":{"289":{"tf":1.0},"523":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":31,"docs":{"135":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"480":{"tf":2.449489742783178},"493":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"583":{"tf":1.0},"630":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"753":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"782":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"814":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"338":{"tf":1.0},"621":{"tf":2.23606797749979},"77":{"tf":1.0},"792":{"tf":1.0},"834":{"tf":1.0},"862":{"tf":1.0},"98":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"710":{"tf":1.0}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"346":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"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":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"747":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":16,"docs":{"144":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"339":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"377":{"tf":1.0},"468":{"tf":1.0},"814":{"tf":1.0},"848":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"17":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"661":{"tf":1.0},"673":{"tf":2.0},"675":{"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":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":18,"docs":{"127":{"tf":1.0},"232":{"tf":1.0},"310":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"750":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"947":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"884":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"448":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"425":{"tf":2.449489742783178},"445":{"tf":2.8284271247461903},"446":{"tf":4.0},"448":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"135":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"328":{"tf":1.0},"601":{"tf":1.0},"732":{"tf":1.0},"753":{"tf":1.0},"758":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"818":{"tf":1.4142135623730951},"835":{"tf":1.0},"838":{"tf":1.0},"844":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"921":{"tf":1.0},"99":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"289":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"771":{"tf":1.0},"83":{"tf":1.4142135623730951},"834":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"125":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"271":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"725":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"208":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":2.0},"330":{"tf":1.0},"465":{"tf":1.0},"579":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"737":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"858":{"tf":1.0},"865":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"289":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"529":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"753":{"tf":1.4142135623730951},"78":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":44,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":3.4641016151377544},"136":{"tf":1.7320508075688772},"155":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"54":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"567":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":74,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"221":{"tf":1.0},"258":{"tf":1.4142135623730951},"281":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.23606797749979},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"346":{"tf":1.0},"348":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"456":{"tf":1.0},"476":{"tf":1.4142135623730951},"482":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"560":{"tf":1.0},"568":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"653":{"tf":1.7320508075688772},"661":{"tf":1.0},"665":{"tf":1.0},"710":{"tf":1.0},"78":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"456":{"tf":1.0},"484":{"tf":1.0},"78":{"tf":1.0},"877":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"82":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"62":{"tf":1.0},"728":{"tf":1.0},"862":{"tf":1.0},"968":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"218":{"tf":1.0},"677":{"tf":1.0},"814":{"tf":1.0},"924":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}}},"df":1,"docs":{"701":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"231":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"958":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"927":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"288":{"tf":1.0},"79":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":103,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"571":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772}}}}}}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"191":{"tf":1.0},"242":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":2.0},"332":{"tf":1.7320508075688772},"735":{"tf":1.0},"752":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"?":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{")":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"65":{"tf":1.0},"916":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"549":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"328":{"tf":2.0},"644":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.0}}}}}}},"f":{"df":1,"docs":{"815":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"344":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"132":{"tf":1.0},"17":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"769":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"779":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"446":{"tf":1.0},"743":{"tf":1.0},"812":{"tf":1.0},"842":{"tf":1.0},"938":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":23,"docs":{"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"50":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":86,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"221":{"tf":2.0},"224":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"348":{"tf":1.4142135623730951},"355":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.7320508075688772},"387":{"tf":1.0},"389":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"443":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"669":{"tf":1.0},"685":{"tf":1.0},"715":{"tf":1.4142135623730951},"721":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.7320508075688772},"762":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"818":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"861":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.4142135623730951},"956":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"_":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":11,"docs":{"128":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"541":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"731":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"696":{"tf":1.0},"697":{"tf":3.0},"698":{"tf":2.0},"701":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"1":{"6":{"/":{"1":{"7":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"/":{"0":{"4":{":":{"3":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"1":{"9":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":1.0},"184":{"tf":2.0},"203":{"tf":1.4142135623730951},"329":{"tf":1.0},"711":{"tf":1.0},"76":{"tf":1.0},"795":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.4142135623730951},"865":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.7320508075688772},"969":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"263":{"tf":1.4142135623730951},"31":{"tf":1.0},"763":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"867":{"tf":1.0},"922":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"135":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"289":{"tf":1.4142135623730951},"958":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"140":{"tf":1.4142135623730951},"316":{"tf":1.0},"376":{"tf":1.0},"429":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"452":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"652":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"927":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"183":{"tf":1.0},"83":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"127":{"tf":1.0},"710":{"tf":1.0},"834":{"tf":1.0},"913":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.7320508075688772},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"493":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"63":{"tf":1.0},"673":{"tf":1.0},"736":{"tf":1.0},"753":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"776":{"tf":1.0},"788":{"tf":1.0},"802":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"853":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"929":{"tf":1.0},"938":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"439":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"105":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"526":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":29,"docs":{"138":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"32":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"34":{"tf":1.7320508075688772},"377":{"tf":1.0},"533":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"700":{"tf":1.0},"71":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"958":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"563":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"750":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":49,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"19":{"tf":1.7320508075688772},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"229":{"tf":1.7320508075688772},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"348":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"368":{"tf":1.0},"369":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"653":{"tf":1.0},"660":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":2.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":2.23606797749979},"691":{"tf":2.0},"692":{"tf":1.0},"721":{"tf":1.0},"74":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"841":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"907":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"921":{"tf":1.7320508075688772},"924":{"tf":1.0},"939":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"315":{"tf":1.0},"804":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"750":{"tf":1.0},"804":{"tf":1.0}}},"r":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":145,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":3.1622776601683795},"127":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"231":{"tf":1.0},"273":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"356":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":2.6457513110645907},"435":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"481":{"tf":2.23606797749979},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"517":{"tf":1.0},"520":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"538":{"tf":1.0},"541":{"tf":1.4142135623730951},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"570":{"tf":1.0},"575":{"tf":1.0},"578":{"tf":1.4142135623730951},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.4142135623730951},"609":{"tf":1.0},"612":{"tf":1.0},"618":{"tf":1.4142135623730951},"621":{"tf":1.0},"623":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":2.449489742783178},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"698":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"76":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":2.449489742783178},"839":{"tf":1.0},"842":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"86":{"tf":1.0},"866":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"904":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"917":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":2.0},"929":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"94":{"tf":1.0},"945":{"tf":1.0},"97":{"tf":1.0}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":21,"docs":{"396":{"tf":1.0},"407":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.4142135623730951},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.4142135623730951},"578":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951},"635":{"tf":1.0},"643":{"tf":1.0},"840":{"tf":1.0},"913":{"tf":1.0},"924":{"tf":1.0},"933":{"tf":1.0}},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"396":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"428":{"tf":1.0},"544":{"tf":1.0},"566":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":13,"docs":{"386":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"578":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.4142135623730951},"643":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"396":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"428":{"tf":1.0},"476":{"tf":1.0},"544":{"tf":1.0},"566":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":13,"docs":{"386":{"tf":1.0},"407":{"tf":1.0},"476":{"tf":1.0},"497":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.4142135623730951},"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"5":{"df":1,"docs":{"942":{"tf":1.0}}},"6":{"df":1,"docs":{"950":{"tf":1.7320508075688772}}},"a":{"df":1,"docs":{"224":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"132":{"tf":1.4142135623730951},"224":{"tf":2.23606797749979}},"m":{"df":3,"docs":{"32":{"tf":1.7320508075688772},"700":{"tf":1.0},"912":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"922":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"2":{"tf":1.0},"4":{"tf":1.0},"962":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"261":{"tf":1.0},"289":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"145":{"tf":1.0},"22":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"752":{"tf":1.0},"79":{"tf":1.4142135623730951},"802":{"tf":1.0},"845":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"580":{"tf":1.0},"591":{"tf":1.0}}}},"t":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{">":{".":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":2.449489742783178},"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":124,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":3.4641016151377544},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"137":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":4.242640687119285},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":2.23606797749979},"169":{"tf":1.0},"170":{"tf":2.8284271247461903},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.23606797749979},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":2.6457513110645907},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":4.795831523312719},"259":{"tf":3.3166247903554},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":2.23606797749979},"266":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":2.23606797749979},"324":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":2.6457513110645907},"376":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"560":{"tf":2.8284271247461903},"561":{"tf":1.7320508075688772},"563":{"tf":2.23606797749979},"565":{"tf":2.449489742783178},"566":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":2.23606797749979},"570":{"tf":1.0},"579":{"tf":1.0},"649":{"tf":1.0},"677":{"tf":2.8284271247461903},"679":{"tf":1.0},"693":{"tf":1.0},"718":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.4142135623730951},"734":{"tf":1.0},"735":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":3.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"799":{"tf":3.0},"804":{"tf":2.23606797749979},"807":{"tf":1.0},"815":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.7320508075688772},"843":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.7320508075688772},"897":{"tf":1.4142135623730951},"900":{"tf":1.0},"907":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"929":{"tf":2.6457513110645907},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"939":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":2.6457513110645907},"956":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"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":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"[":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"565":{"tf":1.4142135623730951}}}}}}}},"s":{"df":1,"docs":{"112":{"tf":1.0}}}},"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"261":{"tf":1.0}}}},"[":{"0":{"]":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"?":{"[":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"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":{"565":{"tf":1.0}}}}}}}}},"[":{"0":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"565":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"u":{"df":2,"docs":{"289":{"tf":1.0},"649":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"122":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"289":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"690":{"tf":1.0},"765":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"402":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"5":{"tf":1.0},"935":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":93,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"119":{"tf":1.0},"120":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":3.1622776601683795},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.7320508075688772},"175":{"tf":1.0},"178":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":2.6457513110645907},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"316":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":3.1622776601683795},"377":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"595":{"tf":1.0},"602":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"674":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"690":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"964":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":17,"docs":{"135":{"tf":1.4142135623730951},"168":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"378":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"127":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":3,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"677":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":34,"docs":{"130":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"288":{"tf":1.0},"321":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"677":{"tf":2.23606797749979},"679":{"tf":2.0},"765":{"tf":1.0},"772":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"u":{"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":{"679":{"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"679":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"267":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"203":{"tf":1.0},"318":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":1,"docs":{"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"289":{"tf":1.0},"340":{"tf":1.4142135623730951},"346":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"78":{"tf":1.0},"837":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"379":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"780":{"tf":1.0},"8":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"861":{"tf":1.0},"935":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"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":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":33,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"118":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":2.23606797749979},"416":{"tf":2.449489742783178},"427":{"tf":2.6457513110645907},"437":{"tf":2.449489742783178},"460":{"tf":1.0},"480":{"tf":2.449489742783178},"507":{"tf":2.6457513110645907},"531":{"tf":2.449489742783178},"563":{"tf":1.0},"577":{"tf":2.6457513110645907},"600":{"tf":2.0},"652":{"tf":1.0},"692":{"tf":1.4142135623730951},"701":{"tf":1.0},"817":{"tf":1.0},"86":{"tf":1.4142135623730951},"935":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772}},"e":{"d":{"_":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"553":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":38,"docs":{"129":{"tf":1.0},"131":{"tf":2.6457513110645907},"158":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"203":{"tf":3.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":2.8284271247461903},"306":{"tf":1.0},"307":{"tf":2.0},"315":{"tf":1.0},"326":{"tf":3.0},"328":{"tf":2.0},"329":{"tf":1.7320508075688772},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"784":{"tf":1.0},"819":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"865":{"tf":1.0},"873":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"376":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}},"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"124":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":3.0},"315":{"tf":1.0},"330":{"tf":2.0},"334":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"718":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.4142135623730951},"958":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"328":{"tf":2.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":3.4641016151377544},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"685":{"tf":2.23606797749979},"77":{"tf":2.449489742783178},"830":{"tf":1.7320508075688772},"858":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":2.449489742783178}},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"774":{"tf":1.0},"830":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"251":{"tf":1.0},"266":{"tf":1.0}}}},"n":{"df":4,"docs":{"677":{"tf":1.0},"702":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"137":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"318":{"tf":1.0},"342":{"tf":1.0},"460":{"tf":1.0},"529":{"tf":2.449489742783178},"60":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"471":{"tf":1.0},"503":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"224":{"tf":1.4142135623730951},"317":{"tf":1.0},"34":{"tf":1.0},"690":{"tf":1.4142135623730951},"837":{"tf":1.0},"953":{"tf":1.0}}}},"s":{"df":34,"docs":{"111":{"tf":1.0},"211":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"236":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"317":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"742":{"tf":1.0},"772":{"tf":1.4142135623730951},"788":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"823":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"913":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"862":{"tf":1.0},"864":{"tf":1.0}}}}}}},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"13":{"tf":1.0},"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"670":{"tf":1.4142135623730951},"672":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"663":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"184":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"679":{"tf":1.0},"734":{"tf":1.0},"77":{"tf":1.4142135623730951},"795":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":24,"docs":{"0":{"tf":1.0},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"500":{"tf":1.0},"592":{"tf":1.0},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"848":{"tf":1.0},"853":{"tf":1.7320508075688772},"902":{"tf":1.0},"915":{"tf":1.0},"940":{"tf":1.0},"950":{"tf":1.7320508075688772},"956":{"tf":1.0},"958":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"494":{"tf":1.0},"621":{"tf":3.1622776601683795},"626":{"tf":1.4142135623730951},"672":{"tf":1.0},"721":{"tf":1.0},"743":{"tf":1.0},"804":{"tf":1.0},"862":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.0}}}}},"r":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"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":{"328":{"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{":":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"799":{"tf":1.0}}},"2":{"df":1,"docs":{"799":{"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":7,"docs":{"560":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"852":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"41":{"tf":1.0}}}},"df":52,"docs":{"110":{"tf":1.0},"112":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"224":{"tf":2.0},"259":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":2.8284271247461903},"333":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"510":{"tf":1.0},"522":{"tf":1.0},"534":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"563":{"tf":3.605551275463989},"565":{"tf":1.7320508075688772},"568":{"tf":2.6457513110645907},"570":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"799":{"tf":2.0},"865":{"tf":1.4142135623730951},"89":{"tf":1.0},"897":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"183":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"697":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"802":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"230":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"303":{"tf":1.0},"958":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"162":{"tf":1.0},"19":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"859":{"tf":1.4142135623730951},"895":{"tf":1.0},"935":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"127":{"tf":2.0},"273":{"tf":1.0},"294":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"792":{"tf":1.0},"834":{"tf":1.4142135623730951},"849":{"tf":1.0},"929":{"tf":1.0},"935":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"895":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"203":{"tf":1.0},"289":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0}}},"s":{"df":32,"docs":{"100":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"652":{"tf":2.6457513110645907},"73":{"tf":1.0},"734":{"tf":1.0},"79":{"tf":1.4142135623730951},"875":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":1,"docs":{"923":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"958":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"288":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"183":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"869":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"802":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"715":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0}}}}}},"df":8,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":71,"docs":{"0":{"tf":1.0},"138":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":3.0},"196":{"tf":1.0},"197":{"tf":2.449489742783178},"198":{"tf":2.8284271247461903},"199":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":5.830951894845301},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":2.23606797749979},"209":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"418":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"694":{"tf":1.0},"701":{"tf":1.0},"720":{"tf":1.0},"738":{"tf":1.0},"74":{"tf":1.0},"757":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"841":{"tf":1.0},"863":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0},"963":{"tf":1.0},"965":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"b":{"8":{"/":{"1":{"7":{":":{"0":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.6457513110645907}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"958":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"132":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":2.0},"198":{"tf":1.0},"316":{"tf":1.7320508075688772},"895":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"117":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"793":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"877":{"tf":1.0}}}},"i":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":29,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"644":{"tf":1.0},"677":{"tf":2.0},"697":{"tf":1.0},"734":{"tf":1.0},"750":{"tf":1.0},"755":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"782":{"tf":1.0},"801":{"tf":1.0},"839":{"tf":1.4142135623730951},"865":{"tf":1.0}}},"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":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":119,"docs":{"108":{"tf":2.0},"11":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":2.23606797749979},"116":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":3.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"21":{"tf":2.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":2.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.0},"292":{"tf":1.0},"293":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":2.0},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.4142135623730951},"31":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"340":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"38":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"41":{"tf":1.0},"419":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":2.0},"440":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"499":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"533":{"tf":1.0},"55":{"tf":1.0},"563":{"tf":1.0},"59":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"614":{"tf":1.4142135623730951},"661":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":2.8284271247461903},"68":{"tf":1.0},"686":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.4142135623730951},"753":{"tf":1.0},"77":{"tf":1.0},"783":{"tf":1.0},"812":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"850":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.0},"9":{"tf":1.0},"91":{"tf":1.0},"924":{"tf":1.0},"950":{"tf":1.7320508075688772},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"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":2,"docs":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"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":{},"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":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":2,"docs":{"232":{"tf":1.0},"379":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"234":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"315":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"11":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.0},"653":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.4142135623730951},"693":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"d":{"df":10,"docs":{"232":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.7320508075688772},"34":{"tf":1.0},"401":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"376":{"tf":1.0},"467":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"149":{"tf":1.0},"22":{"tf":1.4142135623730951},"318":{"tf":1.0},"339":{"tf":1.0},"652":{"tf":1.0},"747":{"tf":1.0},"801":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":25,"docs":{"110":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"289":{"tf":2.0},"31":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"354":{"tf":1.0},"462":{"tf":1.0},"646":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"?":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":1,"docs":{"565":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"d":{"df":10,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"313":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"811":{"tf":1.0},"909":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"556":{"tf":1.0}}}}}},"df":66,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":3.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"328":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":2.449489742783178},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"65":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"747":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"804":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"881":{"tf":1.0},"888":{"tf":1.0},"897":{"tf":1.0},"968":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"t":{"df":8,"docs":{"106":{"tf":1.0},"22":{"tf":1.0},"630":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"961":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"371":{"tf":1.0},"961":{"tf":1.0}}}},"x":{"df":58,"docs":{"117":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"50":{"tf":1.0},"541":{"tf":1.0},"632":{"tf":1.0},"720":{"tf":1.0},"731":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"797":{"tf":1.0},"804":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.0},"818":{"tf":1.4142135623730951},"820":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.4142135623730951},"843":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"876":{"tf":1.0},"880":{"tf":1.4142135623730951},"881":{"tf":1.0},"892":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"924":{"tf":2.23606797749979},"926":{"tf":1.0},"929":{"tf":1.0},"935":{"tf":1.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"946":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"d":{"(":{"2":{"0":{"1":{"9":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"100":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"355":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"682":{"tf":1.0},"715":{"tf":1.0},"79":{"tf":1.0},"861":{"tf":1.0},"872":{"tf":1.0},"908":{"tf":1.4142135623730951}},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"383":{"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":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"2":{"df":1,"docs":{"851":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"p":{"df":3,"docs":{"342":{"tf":1.0},"666":{"tf":1.0},"741":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"918":{"tf":1.4142135623730951},"937":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"459":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"720":{"tf":1.0},"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"786":{"tf":1.0},"807":{"tf":1.0},"867":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.0}}}},"n":{"df":12,"docs":{"26":{"tf":1.0},"342":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":5,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"830":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"44":{"tf":1.0},"677":{"tf":1.0},"683":{"tf":1.0},"831":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":80,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":2.23606797749979},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"55":{"tf":1.0},"560":{"tf":1.0},"580":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"60":{"tf":1.0},"614":{"tf":1.0},"626":{"tf":1.0},"662":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"697":{"tf":1.0},"72":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0},"919":{"tf":1.0},"93":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"715":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"c":{"df":8,"docs":{"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"354":{"tf":1.0},"679":{"tf":1.0},"792":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.4142135623730951},"224":{"tf":1.0},"231":{"tf":1.0},"807":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"476":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"968":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"268":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":62,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"128":{"tf":1.0},"138":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.7320508075688772},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"285":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"864":{"tf":1.0},"87":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"969":{"tf":3.0}}}},"df":14,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"288":{"tf":1.0},"320":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"823":{"tf":1.0},"89":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"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":6,"docs":{"12":{"tf":1.0},"775":{"tf":1.0},"793":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0}},"s":{":":{"$":{"df":0,"docs":{},"{":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"793":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"288":{"tf":1.0},"796":{"tf":1.0},"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":135,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"548":{"tf":1.0},"553":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"565":{"tf":1.0},"571":{"tf":1.0},"577":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"617":{"tf":1.0},"623":{"tf":1.0},"628":{"tf":1.0},"634":{"tf":1.0},"637":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"814":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"117":{"tf":1.0},"289":{"tf":1.0},"350":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"618":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"63":{"tf":1.0},"711":{"tf":1.0},"80":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"318":{"tf":1.0},"356":{"tf":1.0},"657":{"tf":1.4142135623730951},"776":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"22":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"297":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"752":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"958":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"282":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":281,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"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},"746":{"tf":1.0},"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},"755":{"tf":1.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},"765":{"tf":1.0},"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},"78":{"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"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.0},"895":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"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.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":6,"docs":{"184":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"22":{"tf":1.0},"538":{"tf":1.0},"900":{"tf":1.0}}}}},"n":{"c":{"df":14,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"111":{"tf":1.4142135623730951},"144":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"318":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"338":{"tf":1.7320508075688772},"342":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":2.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"471":{"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},"48":{"tf":1.0},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"514":{"tf":1.0},"652":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"725":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.0},"743":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.0},"772":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.4142135623730951},"810":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.0},"867":{"tf":1.4142135623730951},"905":{"tf":1.0},"907":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"924":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"958":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"315":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"190":{"tf":1.0},"310":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"830":{"tf":1.0},"87":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"613":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"958":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"334":{"tf":2.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"703":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0}}}}}}},"df":1,"docs":{"687":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"580":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"270":{"tf":1.0},"316":{"tf":1.0},"376":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.4142135623730951},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"830":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"792":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"/":{"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":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":186,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"144":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.7320508075688772},"224":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"371":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"51":{"tf":1.0},"514":{"tf":1.7320508075688772},"52":{"tf":1.0},"528":{"tf":2.8284271247461903},"54":{"tf":1.0},"563":{"tf":2.0},"582":{"tf":1.7320508075688772},"65":{"tf":1.0},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.7320508075688772},"671":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":1.7320508075688772},"687":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"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.4142135623730951},"738":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"78":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"888":{"tf":1.0},"9":{"tf":1.0},"914":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"b":{"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":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"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":0,"docs":{},"m":{"df":1,"docs":{"804":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"838":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":53,"docs":{"127":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"360":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"651":{"tf":1.0},"711":{"tf":1.0},"721":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"876":{"tf":1.0},"905":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"838":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"612":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"609":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"612":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"613":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"510":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":1,"docs":{"22":{"tf":1.0}}},"t":{"df":4,"docs":{"132":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"60":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":107,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"571":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"60":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.4142135623730951},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"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":{"17":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"32":{"tf":1.7320508075688772},"44":{"tf":1.0},"660":{"tf":1.7320508075688772},"677":{"tf":1.0},"688":{"tf":1.7320508075688772}},"n":{"df":90,"docs":{"104":{"tf":1.0},"110":{"tf":1.7320508075688772},"130":{"tf":1.0},"140":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"673":{"tf":1.0},"782":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"929":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":2.6457513110645907}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"276":{"tf":1.0},"68":{"tf":2.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"'":{"df":10,"docs":{"2":{"tf":1.0},"22":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.0},"349":{"tf":1.0},"693":{"tf":1.0},"838":{"tf":1.4142135623730951},"875":{"tf":1.0},"969":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"393":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"157":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"865":{"tf":1.0}}}},"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":{},"n":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":2,"docs":{"124":{"tf":1.0},"892":{"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"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":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"22":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"716":{"tf":1.0},"721":{"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":{},"v":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"i":{"d":{"]":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"492":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"493":{"tf":1.0},"494":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"120":{"tf":1.0},"124":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"\"":{"df":0,"docs":{},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"127":{"tf":1.0},"809":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"127":{"tf":1.0},"310":{"tf":1.0},"773":{"tf":1.0},"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"120":{"tf":1.0},"176":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"383":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"2":{"3":{"df":1,"docs":{"574":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"858":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"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":{"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":{"338":{"tf":1.0},"678":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"679":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"238":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.7320508075688772},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"701":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"551":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":28,"docs":{"121":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"222":{"tf":1.0},"240":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"561":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":2.0},"916":{"tf":1.0},"923":{"tf":1.4142135623730951},"934":{"tf":1.0},"936":{"tf":1.0},"948":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"834":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"243":{"tf":1.0}}}}}},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"585":{"tf":1.0},"586":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"585":{"tf":1.0},"586":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"[":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"519":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"df":3,"docs":{"315":{"tf":1.0},"338":{"tf":1.0},"678":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"168":{"tf":1.0},"752":{"tf":1.0},"912":{"tf":1.0},"929":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}},"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"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":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":1,"docs":{"920":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"920":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"920":{"tf":1.0}},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":3,"docs":{"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"342":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"9":{"tf":1.0},"921":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":2,"docs":{"316":{"tf":1.0},"338":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"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":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":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":{"407":{"tf":1.0},"532":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"643":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"333":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"924":{"tf":1.0},"927":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"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":{},"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":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"802":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"135":{"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":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"127":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"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":{},"s":{"df":3,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"829":{"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.0},"842":{"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":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":2,"docs":{"127":{"tf":1.0},"747":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"747":{"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":{},"r":{".":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"l":{"df":1,"docs":{"862":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"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":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"752":{"tf":1.0},"811":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"127":{"tf":1.0},"762":{"tf":1.0},"806":{"tf":1.0},"809":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"806":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"739":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"747":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"/":{"4":{"0":{".":{"0":{".":{"0":{"df":1,"docs":{"136":{"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":{},"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":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"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":{},"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":{"318":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":23,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":3,"docs":{"316":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"338":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"26":{"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":{},"r":{"df":1,"docs":{"823":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":1,"docs":{"369":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":4,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"362":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"362":{"tf":1.7320508075688772}}}}}},"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":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":3,"docs":{"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"505":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"n":{"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":11,"docs":{"497":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"652":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":84,"docs":{"115":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"288":{"tf":1.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"567":{"tf":1.0},"653":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":2.8284271247461903},"678":{"tf":1.0},"689":{"tf":1.4142135623730951},"690":{"tf":1.0},"692":{"tf":2.23606797749979},"715":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"783":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"864":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":2.23606797749979},"943":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"=":{"=":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"8":{".":{"1":{"df":1,"docs":{"673":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}},"df":0,"docs":{}},"df":2,"docs":{"690":{"tf":1.0},"907":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"673":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"673":{"tf":1.4142135623730951},"690":{"tf":1.0},"907":{"tf":1.0}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"375":{"tf":1.4142135623730951}},"s":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}},"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}},"e":{"=":{"$":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"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":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"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":{"728":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"751":{"tf":1.0},"805":{"tf":1.0},"839":{"tf":1.0},"840":{"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":{"837":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":447,"docs":{"0":{"tf":3.7416573867739413},"10":{"tf":2.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":2.23606797749979},"111":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.0},"126":{"tf":2.6457513110645907},"127":{"tf":2.0},"128":{"tf":1.0},"13":{"tf":2.8284271247461903},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":3.1622776601683795},"14":{"tf":2.0},"141":{"tf":1.0},"142":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":2.8284271247461903},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"18":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":2.0},"182":{"tf":2.0},"183":{"tf":3.0},"184":{"tf":1.7320508075688772},"185":{"tf":2.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"192":{"tf":1.0},"194":{"tf":2.23606797749979},"195":{"tf":3.1622776601683795},"197":{"tf":2.23606797749979},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"2":{"tf":2.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.449489742783178},"206":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"218":{"tf":2.449489742783178},"22":{"tf":2.449489742783178},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"223":{"tf":2.0},"224":{"tf":2.6457513110645907},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":1.7320508075688772},"231":{"tf":2.449489742783178},"232":{"tf":2.449489742783178},"233":{"tf":2.8284271247461903},"234":{"tf":2.23606797749979},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":3.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":2.449489742783178},"259":{"tf":1.7320508075688772},"26":{"tf":2.23606797749979},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":2.0},"280":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":2.23606797749979},"308":{"tf":1.7320508075688772},"309":{"tf":1.7320508075688772},"31":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":3.3166247903554},"316":{"tf":4.242640687119285},"317":{"tf":1.7320508075688772},"318":{"tf":5.385164807134504},"32":{"tf":3.605551275463989},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.23606797749979},"326":{"tf":1.7320508075688772},"328":{"tf":2.23606797749979},"329":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"330":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":2.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":1.7320508075688772},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":2.0},"371":{"tf":1.4142135623730951},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"39":{"tf":1.7320508075688772},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"419":{"tf":1.4142135623730951},"422":{"tf":1.0},"425":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":2.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.23606797749979},"522":{"tf":1.4142135623730951},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"561":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.4142135623730951},"580":{"tf":1.0},"591":{"tf":1.4142135623730951},"598":{"tf":1.0},"6":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772},"600":{"tf":1.0},"601":{"tf":1.0},"614":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"62":{"tf":2.8284271247461903},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.4142135623730951},"630":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":1.7320508075688772},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"647":{"tf":1.4142135623730951},"649":{"tf":2.0},"65":{"tf":2.23606797749979},"652":{"tf":1.0},"653":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"656":{"tf":1.4142135623730951},"657":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.0},"67":{"tf":1.4142135623730951},"670":{"tf":1.0},"671":{"tf":2.6457513110645907},"673":{"tf":2.449489742783178},"674":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":2.449489742783178},"68":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":2.449489742783178},"688":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"690":{"tf":1.7320508075688772},"691":{"tf":1.4142135623730951},"692":{"tf":2.449489742783178},"693":{"tf":1.7320508075688772},"697":{"tf":1.7320508075688772},"698":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":2.6457513110645907},"704":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.7320508075688772},"708":{"tf":1.4142135623730951},"709":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"710":{"tf":1.0},"712":{"tf":1.7320508075688772},"715":{"tf":1.7320508075688772},"716":{"tf":1.0},"721":{"tf":1.7320508075688772},"732":{"tf":1.4142135623730951},"736":{"tf":1.7320508075688772},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":2.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.4142135623730951},"755":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"78":{"tf":2.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"79":{"tf":1.7320508075688772},"792":{"tf":2.0},"793":{"tf":2.8284271247461903},"798":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":2.0},"817":{"tf":1.4142135623730951},"818":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"828":{"tf":1.0},"83":{"tf":1.4142135623730951},"831":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":2.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":2.0},"854":{"tf":1.4142135623730951},"858":{"tf":1.7320508075688772},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":2.0},"862":{"tf":1.0},"865":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.7320508075688772},"872":{"tf":1.0},"873":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"881":{"tf":1.7320508075688772},"882":{"tf":1.4142135623730951},"885":{"tf":1.0},"892":{"tf":1.0},"9":{"tf":3.1622776601683795},"91":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":2.449489742783178},"916":{"tf":2.23606797749979},"917":{"tf":1.0},"919":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"920":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"945":{"tf":1.7320508075688772},"951":{"tf":2.23606797749979},"956":{"tf":1.4142135623730951},"957":{"tf":2.0},"958":{"tf":5.196152422706632},"962":{"tf":1.7320508075688772},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"347":{"tf":1.4142135623730951}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"[":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"112":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"779":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"649":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"670":{"tf":1.0},"672":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"720":{"tf":1.0},"867":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"885":{"tf":1.0}},"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":{},"p":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{"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":1,"docs":{"318":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"473":{"tf":1.7320508075688772},"876":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"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":1,"docs":{"318":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"’":{"df":3,"docs":{"3":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"830":{"tf":1.0},"834":{"tf":1.4142135623730951},"858":{"tf":1.0},"864":{"tf":1.0}}}}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"22":{"tf":1.0},"239":{"tf":1.0},"318":{"tf":1.0},"774":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"702":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"t":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"136":{"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":{},"t":{"c":{"+":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"445":{"tf":1.0},"446":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"df":3,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"df":22,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"425":{"tf":2.449489742783178},"445":{"tf":2.449489742783178},"446":{"tf":2.449489742783178},"448":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"619":{"tf":1.0},"675":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":5,"docs":{"109":{"tf":1.0},"145":{"tf":1.4142135623730951},"198":{"tf":1.0},"859":{"tf":1.0},"88":{"tf":1.0}}},"o":{"d":{"df":7,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"233":{"tf":1.0},"63":{"tf":1.0},"678":{"tf":1.0},"830":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"448":{"tf":1.0}}}}}},"r":{"a":{"b":{"df":1,"docs":{"665":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"339":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"802":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"l":{"df":32,"docs":{"11":{"tf":1.0},"13":{"tf":3.0},"318":{"tf":1.0},"663":{"tf":1.7320508075688772},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.4142135623730951},"675":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"731":{"tf":1.0},"735":{"tf":1.0},"750":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"786":{"tf":1.4142135623730951},"792":{"tf":2.0},"793":{"tf":1.0},"801":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"670":{"tf":1.0},"673":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"673":{"tf":1.4142135623730951},"862":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"467":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"2":{"3":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"578":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"578":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"2":{"3":{"df":1,"docs":{"574":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"578":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"2":{"3":{"df":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"578":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"577":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"577":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"288":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"tf":1.4142135623730951}}}},"p":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"673":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"297":{"tf":1.0},"654":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"142":{"tf":1.0},"342":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"849":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"878":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":25,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"117":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.7320508075688772},"23":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"29":{"tf":1.0},"349":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":2.23606797749979},"964":{"tf":1.4142135623730951},"965":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"110":{"tf":1.0},"5":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"852":{"tf":1.0},"853":{"tf":1.0},"913":{"tf":1.0},"933":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}}},"h":{"1":{"2":{"0":{"2":{"0":{"df":1,"docs":{"958":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"521":{"tf":1.0}}},"3":{"df":1,"docs":{"521":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"65":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"514":{"tf":1.0}},"l":{"df":27,"docs":{"109":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"371":{"tf":1.0},"402":{"tf":1.0},"563":{"tf":2.0},"679":{"tf":1.0},"710":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"833":{"tf":1.4142135623730951},"865":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"679":{"tf":1.0},"858":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"120":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.0},"155":{"tf":1.0},"312":{"tf":1.0},"376":{"tf":1.7320508075688772},"401":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.4142135623730951},"60":{"tf":1.0},"618":{"tf":1.7320508075688772},"697":{"tf":1.0},"701":{"tf":1.0},"710":{"tf":1.0},"75":{"tf":2.0},"802":{"tf":1.0},"809":{"tf":1.0},"823":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"878":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"96":{"tf":2.0}}}},"i":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"r":{"d":{"df":3,"docs":{"22":{"tf":1.0},"461":{"tf":1.0},"830":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"274":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"114":{"tf":1.0}},"m":{"df":2,"docs":{"830":{"tf":1.0},"923":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"328":{"tf":1.0},"799":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"677":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"267":{"tf":1.0},"476":{"tf":1.4142135623730951},"494":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"776":{"tf":1.0},"963":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":21,"docs":{"129":{"tf":1.0},"136":{"tf":2.6457513110645907},"317":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"697":{"tf":1.0},"741":{"tf":1.0},"775":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"847":{"tf":1.0},"858":{"tf":1.0},"913":{"tf":1.0},"936":{"tf":1.4142135623730951},"951":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"747":{"tf":1.0}}}}},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"509":{"tf":1.0},"512":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"606":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":22,"docs":{"117":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"226":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"461":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.7320508075688772}}}}}},"n":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"127":{"tf":1.0},"254":{"tf":2.449489742783178},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"677":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"728":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"117":{"tf":1.0},"145":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"456":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"135":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"289":{"tf":1.4142135623730951},"546":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"289":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":1.0},"632":{"tf":1.0}}}}}}}}},"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}}}},"df":12,"docs":{"376":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"503":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":8,"docs":{"132":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}},"i":{"df":1,"docs":{"289":{"tf":1.7320508075688772}}}}}}},"t":{"df":5,"docs":{"127":{"tf":1.0},"142":{"tf":1.0},"50":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"315":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"df":3,"docs":{"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"198":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"655":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"802":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"142":{"tf":1.0},"173":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"811":{"tf":1.0}}},"s":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"0":{"df":1,"docs":{"521":{"tf":1.0}}},"1":{"df":1,"docs":{"521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"519":{"tf":1.0}}},"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"590":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"590":{"tf":1.0}}},":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"df":2,"docs":{"138":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"87":{"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":1,"docs":{"645":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"626":{"tf":1.0}},"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":2,"docs":{"625":{"tf":1.0},"626":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"626":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"521":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"317":{"tf":1.0}}}}}}}},"df":18,"docs":{"237":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"745":{"tf":1.0},"922":{"tf":1.4142135623730951},"933":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"0":{"0":{"0":{"0":{"0":{"0":{"df":21,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"df":3,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"9":{"3":{"8":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"9":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"8":{"7":{"7":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"6":{"2":{"2":{"df":1,"docs":{"126":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"0":{"0":{"0":{"0":{"0":{"#":{"c":{"3":{"df":22,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"1":{"2":{"9":{"3":{"8":{"#":{"c":{"3":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"0":{"4":{"8":{"#":{"c":{"1":{"3":{"df":1,"docs":{"127":{"tf":1.0}}},"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":{"2":{"4":{"7":{"9":{"df":2,"docs":{"677":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"5":{"#":{"c":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"8":{"7":{"7":{"#":{"c":{"2":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"6":{"2":{"2":{"#":{"c":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"645":{"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"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":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"3":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"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":{},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"705":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"707":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"705":{"tf":1.0},"776":{"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":{}}}}}},"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":{},"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"31":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"11":{"tf":1.0},"13":{"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":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"/":{"2":{".":{"0":{"df":1,"docs":{"7":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"540":{"tf":1.0},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"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":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"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":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"254":{"tf":1.0},"288":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"294":{"tf":1.0},"762":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"693":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"693":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"693":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"i":{".":{"df":10,"docs":{"157":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"338":{"tf":1.0},"371":{"tf":1.0},"563":{"tf":1.0},"654":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"969":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"834":{"tf":1.0},"862":{"tf":1.0}}}},"6":{"8":{"6":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"7":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"232":{"tf":1.7320508075688772}}}}},"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":48,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":2.0},"136":{"tf":1.0},"160":{"tf":2.23606797749979},"163":{"tf":1.0},"17":{"tf":1.0},"205":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"347":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"526":{"tf":1.0},"59":{"tf":1.0},"592":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"728":{"tf":1.0},"734":{"tf":1.0},"842":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"9":{"tf":1.0},"946":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":3,"docs":{"119":{"tf":1.0},"173":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}},"i":{"df":36,"docs":{"104":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"118":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"160":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"289":{"tf":2.449489742783178},"315":{"tf":2.0},"330":{"tf":2.0},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"423":{"tf":1.0},"443":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"538":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"697":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"99":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"142":{"tf":1.0},"17":{"tf":1.0},"231":{"tf":1.4142135623730951},"357":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"664":{"tf":1.0},"684":{"tf":1.0},"734":{"tf":1.0},"873":{"tf":1.0},"882":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"693":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":16,"docs":{"127":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"184":{"tf":1.0},"224":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"354":{"tf":1.0},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"710":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.7320508075688772},"271":{"tf":1.0},"318":{"tf":1.0},"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":51,"docs":{"11":{"tf":1.4142135623730951},"144":{"tf":1.0},"192":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":2.23606797749979},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":2.449489742783178},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"379":{"tf":1.0},"52":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"67":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.4142135623730951},"729":{"tf":1.0},"738":{"tf":1.0},"743":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.4142135623730951},"773":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"819":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"849":{"tf":1.0},"854":{"tf":1.0},"872":{"tf":1.0},"881":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.7320508075688772},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"956":{"tf":4.123105625617661}}}}}}},"i":{"df":1,"docs":{"256":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":151,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":2.8284271247461903},"317":{"tf":1.4142135623730951},"318":{"tf":2.449489742783178},"32":{"tf":2.6457513110645907},"324":{"tf":2.449489742783178},"328":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":2.23606797749979},"34":{"tf":1.7320508075688772},"342":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.7320508075688772},"383":{"tf":2.0},"385":{"tf":2.0},"386":{"tf":1.4142135623730951},"393":{"tf":2.0},"395":{"tf":2.0},"396":{"tf":2.23606797749979},"398":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":2.0},"406":{"tf":2.0},"407":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"414":{"tf":2.0},"416":{"tf":2.0},"417":{"tf":2.23606797749979},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"423":{"tf":1.0},"425":{"tf":2.0},"427":{"tf":2.0},"428":{"tf":2.23606797749979},"435":{"tf":2.0},"437":{"tf":2.0},"438":{"tf":2.23606797749979},"44":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"448":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.7320508075688772},"461":{"tf":2.0},"464":{"tf":2.0},"465":{"tf":2.23606797749979},"468":{"tf":1.0},"473":{"tf":2.6457513110645907},"474":{"tf":2.23606797749979},"475":{"tf":2.0},"476":{"tf":2.0},"477":{"tf":1.7320508075688772},"478":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951},"480":{"tf":2.0},"481":{"tf":2.23606797749979},"499":{"tf":1.0},"505":{"tf":2.23606797749979},"507":{"tf":2.0},"508":{"tf":2.23606797749979},"522":{"tf":1.0},"528":{"tf":2.0},"529":{"tf":2.23606797749979},"531":{"tf":2.0},"532":{"tf":2.449489742783178},"538":{"tf":1.0},"540":{"tf":2.0},"541":{"tf":1.0},"543":{"tf":2.0},"544":{"tf":2.23606797749979},"551":{"tf":2.23606797749979},"553":{"tf":2.23606797749979},"554":{"tf":2.0},"555":{"tf":2.6457513110645907},"563":{"tf":1.7320508075688772},"565":{"tf":2.0},"566":{"tf":2.8284271247461903},"574":{"tf":1.7320508075688772},"575":{"tf":1.7320508075688772},"577":{"tf":1.7320508075688772},"578":{"tf":2.0},"591":{"tf":1.0},"598":{"tf":2.0},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"614":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":2.6457513110645907},"623":{"tf":2.0},"624":{"tf":2.449489742783178},"630":{"tf":1.0},"632":{"tf":2.0},"634":{"tf":2.0},"635":{"tf":2.23606797749979},"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"643":{"tf":1.7320508075688772},"649":{"tf":2.23606797749979},"65":{"tf":1.0},"652":{"tf":2.6457513110645907},"66":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.7320508075688772},"692":{"tf":1.0},"693":{"tf":1.4142135623730951},"700":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"772":{"tf":1.0},"78":{"tf":1.4142135623730951},"831":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"909":{"tf":1.0},"916":{"tf":2.449489742783178},"92":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"958":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"288":{"tf":1.0}},"s":{"df":3,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"894":{"tf":1.0},"945":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":148,"docs":{"100":{"tf":3.4641016151377544},"104":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":2.8284271247461903},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":2.0},"132":{"tf":1.7320508075688772},"145":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":2.0},"264":{"tf":1.0},"27":{"tf":1.7320508075688772},"288":{"tf":1.0},"289":{"tf":3.3166247903554},"297":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.4142135623730951},"342":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"419":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"614":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":1.0},"697":{"tf":1.4142135623730951},"729":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"762":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":3.4641016151377544},"8":{"tf":1.0},"802":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"826":{"tf":1.0},"83":{"tf":1.4142135623730951},"838":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":2.0},"865":{"tf":2.0},"878":{"tf":1.0},"880":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"912":{"tf":1.0},"929":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":3.4641016151377544},"99":{"tf":1.0}},"e":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"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":{}},"_":{"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":{"d":{"df":5,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}},"m":{"df":6,"docs":{"107":{"tf":1.0},"232":{"tf":1.0},"471":{"tf":1.0},"510":{"tf":1.0},"522":{"tf":1.0},"86":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"191":{"tf":1.0},"838":{"tf":1.0},"878":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"731":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"877":{"tf":1.0},"914":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":11,"docs":{"142":{"tf":2.449489742783178},"258":{"tf":2.449489742783178},"263":{"tf":1.4142135623730951},"289":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.7320508075688772},"756":{"tf":1.7320508075688772},"762":{"tf":1.0},"830":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"621":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"202":{"tf":1.0},"239":{"tf":1.0},"346":{"tf":1.0},"715":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":16,"docs":{"37":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"9":{"tf":1.4142135623730951},"950":{"tf":1.0}},"e":{"d":{"d":{"b":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":21,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"267":{"tf":1.0},"283":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"340":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"801":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":12,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"306":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"494":{"tf":1.0},"560":{"tf":1.0},"621":{"tf":1.0},"708":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"694":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"289":{"tf":1.0},"921":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}}},"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"704":{"tf":1.0},"779":{"tf":1.4142135623730951},"799":{"tf":1.0},"969":{"tf":2.0}},"r":{"df":0,"docs":{},"m":{"df":77,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"177":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"264":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":3.3166247903554},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.0},"4":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.0},"662":{"tf":1.0},"677":{"tf":2.449489742783178},"678":{"tf":1.0},"679":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"703":{"tf":1.0},"775":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"84":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"895":{"tf":1.0},"913":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.4142135623730951},"936":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":3.605551275463989}}}}},"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":3,"docs":{"666":{"tf":1.0},"686":{"tf":1.0},"704":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.7320508075688772},"273":{"tf":1.0},"288":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"666":{"tf":1.0},"686":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"79":{"tf":1.7320508075688772},"801":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.4142135623730951},"864":{"tf":1.0},"905":{"tf":1.0}},"i":{"df":82,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"208":{"tf":1.0},"254":{"tf":1.7320508075688772},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":2.0},"315":{"tf":2.8284271247461903},"316":{"tf":2.23606797749979},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"320":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.7320508075688772},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"500":{"tf":1.0},"678":{"tf":1.7320508075688772},"693":{"tf":1.0},"717":{"tf":1.4142135623730951},"721":{"tf":1.0},"723":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"806":{"tf":1.0},"812":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"854":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":2.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"880":{"tf":1.0},"882":{"tf":1.0},"9":{"tf":1.0},"908":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"941":{"tf":1.0},"945":{"tf":1.0},"948":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"803":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"252":{"tf":1.0},"969":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"115":{"tf":1.0},"17":{"tf":1.0},"233":{"tf":1.4142135623730951},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"111":{"tf":1.0},"254":{"tf":1.0},"48":{"tf":1.0},"665":{"tf":1.0},"677":{"tf":1.0},"691":{"tf":1.0},"803":{"tf":1.0},"912":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"244":{"tf":1.0},"772":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":31,"docs":{"115":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":2.23606797749979},"22":{"tf":1.0},"233":{"tf":1.0},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.4142135623730951},"671":{"tf":1.0},"673":{"tf":2.23606797749979},"675":{"tf":1.4142135623730951},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":2.23606797749979},"725":{"tf":1.0},"73":{"tf":1.0},"752":{"tf":1.0},"823":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.4142135623730951},"862":{"tf":1.0},"915":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"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":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"1":{"9":{"df":1,"docs":{"551":{"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":{},"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":{".":{"d":{"df":1,"docs":{"551":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"551":{"tf":1.0}}}}}},"df":1,"docs":{"551":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"551":{"tf":1.0}}}}}},"df":1,"docs":{"551":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"551":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":1,"docs":{"551":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"555":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"c":{"df":22,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"565":{"tf":1.0},"656":{"tf":1.0},"674":{"tf":1.0},"738":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"336":{"tf":1.0},"701":{"tf":1.0},"782":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":33,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"253":{"tf":1.0},"288":{"tf":1.0},"34":{"tf":1.0},"402":{"tf":1.0},"52":{"tf":1.0},"583":{"tf":1.0},"619":{"tf":1.0},"697":{"tf":1.4142135623730951},"73":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"743":{"tf":1.0},"772":{"tf":2.23606797749979},"775":{"tf":1.0},"786":{"tf":1.0},"793":{"tf":1.0},"801":{"tf":1.0},"809":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"94":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"232":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.0},"356":{"tf":1.0},"54":{"tf":1.0},"652":{"tf":2.449489742783178},"676":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":27,"docs":{"117":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"320":{"tf":1.0},"461":{"tf":1.0},"497":{"tf":1.0},"520":{"tf":1.0},"589":{"tf":1.0},"653":{"tf":1.0},"674":{"tf":2.0},"677":{"tf":1.0},"679":{"tf":1.0},"716":{"tf":1.0},"867":{"tf":1.0},"880":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"958":{"tf":1.0}}}}}}}}}},"t":{"3":{"2":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"505":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":20,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"580":{"tf":1.7320508075688772},"590":{"tf":1.0},"591":{"tf":1.7320508075688772},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"685":{"tf":1.0}},"r":{"df":44,"docs":{"10":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"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},"2":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.7320508075688772},"234":{"tf":1.0},"29":{"tf":2.0},"39":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.4142135623730951},"658":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"8":{"tf":1.0},"834":{"tf":1.0},"860":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":2.449489742783178},"958":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"153":{"tf":1.0},"160":{"tf":1.0},"173":{"tf":1.0},"192":{"tf":1.0},"53":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"184":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"282":{"tf":1.0},"289":{"tf":2.23606797749979},"377":{"tf":1.0},"466":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"254":{"tf":2.0},"289":{"tf":1.0}}}}},"f":{"a":{"c":{"df":8,"docs":{"218":{"tf":1.0},"223":{"tf":1.0},"320":{"tf":1.0},"476":{"tf":1.0},"679":{"tf":1.0},"689":{"tf":1.0},"837":{"tf":1.0},"874":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"804":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":31,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":1.0},"315":{"tf":1.4142135623730951},"318":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"456":{"tf":1.0},"471":{"tf":1.0},"62":{"tf":1.0},"647":{"tf":1.0},"693":{"tf":1.0},"728":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"803":{"tf":1.0},"838":{"tf":1.0},"854":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":1.4142135623730951},"933":{"tf":1.0},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"267":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"50":{"tf":1.0},"673":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"715":{"tf":1.0},"753":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"151":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"67":{"tf":1.0},"747":{"tf":1.4142135623730951},"796":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":2.0},"818":{"tf":1.4142135623730951},"820":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.4142135623730951},"951":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"120":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.4142135623730951},"563":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"839":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"120":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"866":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"779":{"tf":1.0},"795":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"p":{"df":18,"docs":{"120":{"tf":1.0},"383":{"tf":1.0},"393":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"529":{"tf":1.0},"541":{"tf":1.0},"551":{"tf":1.0},"563":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"632":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":26,"docs":{"120":{"tf":1.0},"328":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"462":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.4142135623730951},"517":{"tf":1.0},"529":{"tf":1.0},"541":{"tf":1.0},"551":{"tf":1.0},"563":{"tf":1.4142135623730951},"575":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"640":{"tf":1.0},"734":{"tf":1.0},"839":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":32,"docs":{"120":{"tf":2.0},"124":{"tf":1.4142135623730951},"231":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"393":{"tf":1.0},"396":{"tf":2.23606797749979},"414":{"tf":1.0},"417":{"tf":2.449489742783178},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"551":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0},"642":{"tf":1.0},"747":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"76":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"880":{"tf":1.0},"916":{"tf":1.7320508075688772},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"840":{"tf":1.0},"870":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"750":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"914":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"142":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.0}}},"t":{"df":1,"docs":{"800":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"103":{"tf":1.0},"249":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"82":{"tf":1.0},"875":{"tf":1.0},"958":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.7320508075688772},"749":{"tf":1.0},"912":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":1.0},"340":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}}}}}},"o":{"df":76,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"222":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":2.23606797749979},"234":{"tf":1.7320508075688772},"288":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"50":{"tf":2.0},"657":{"tf":1.0},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"685":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"741":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.4142135623730951},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"762":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"789":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.4142135623730951},"798":{"tf":1.0},"802":{"tf":1.7320508075688772},"804":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.4142135623730951},"834":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.4142135623730951},"842":{"tf":1.0},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"p":{"df":1,"docs":{"289":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"_":{"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":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"198":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"377":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.7320508075688772},"839":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}},"o":{"8":{"6":{"0":{"1":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"288":{"tf":1.0},"294":{"tf":1.0},"554":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"19":{"tf":1.0}}}},"p":{"df":1,"docs":{"267":{"tf":2.0}}},"s":{"df":0,"docs":{},"u":{"df":20,"docs":{"22":{"tf":1.0},"234":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.4142135623730951},"6":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"814":{"tf":1.0},"859":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.7320508075688772},"915":{"tf":1.0},"925":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}}}}}}}}}}}}}},"t":{"'":{"df":36,"docs":{"103":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"17":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"232":{"tf":2.449489742783178},"328":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"873":{"tf":1.4142135623730951},"884":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":19,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.4142135623730951},"22":{"tf":1.0},"230":{"tf":1.0},"264":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"692":{"tf":1.0},"708":{"tf":1.0},"83":{"tf":1.0},"916":{"tf":1.0}}}}}},"’":{"df":3,"docs":{"182":{"tf":1.0},"254":{"tf":1.0},"964":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"882":{"tf":1.0}}},"v":{"a":{"df":8,"docs":{"656":{"tf":1.0},"737":{"tf":1.0},"786":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"864":{"tf":1.4142135623730951},"876":{"tf":1.0},"969":{"tf":1.7320508075688772}},"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":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":99,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"174":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"29":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"32":{"tf":2.23606797749979},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0},"35":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"561":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.7320508075688772},"659":{"tf":1.4142135623730951},"660":{"tf":1.7320508075688772},"688":{"tf":1.7320508075688772},"693":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"927":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":3,"docs":{"731":{"tf":1.4142135623730951},"759":{"tf":1.0},"823":{"tf":1.0}},"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":{"12":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"882":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"b":{"df":5,"docs":{"224":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"128":{"tf":1.0},"171":{"tf":1.0},"195":{"tf":1.0},"254":{"tf":2.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0},"642":{"tf":1.0},"644":{"tf":1.0},"697":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"865":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"e":{"df":3,"docs":{"380":{"tf":1.0},"697":{"tf":1.0},"838":{"tf":1.0}}},"k":{"df":2,"docs":{"701":{"tf":1.4142135623730951},"951":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"b":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"915":{"tf":1.0}}}},"df":9,"docs":{"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"190":{"tf":1.0},"261":{"tf":1.0},"41":{"tf":1.0},"692":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"950":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"565":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"799":{"tf":1.0}}},"2":{"df":1,"docs":{"799":{"tf":1.0}}},"df":27,"docs":{"120":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"232":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"560":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.0},"568":{"tf":2.23606797749979},"570":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"697":{"tf":2.23606797749979},"698":{"tf":2.0},"701":{"tf":1.4142135623730951},"732":{"tf":1.0},"765":{"tf":1.0},"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"379":{"tf":1.0}}}},"d":{"df":2,"docs":{"697":{"tf":1.0},"701":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"155":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":6,"docs":{"509":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0},"632":{"tf":1.0},"829":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":8,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"376":{"tf":1.4142135623730951},"441":{"tf":1.0},"66":{"tf":1.0},"80":{"tf":1.0},"834":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"b":{"df":17,"docs":{"168":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"212":{"tf":2.0},"213":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"727":{"tf":1.7320508075688772},"741":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":24,"docs":{"100":{"tf":1.7320508075688772},"169":{"tf":1.0},"17":{"tf":1.0},"254":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":2.6457513110645907},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"252":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":23,"docs":{"106":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"66":{"tf":1.0},"673":{"tf":1.0},"680":{"tf":1.0},"708":{"tf":1.0},"73":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"923":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"p":{"df":1,"docs":{"651":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":68,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"110":{"tf":2.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.0},"338":{"tf":1.0},"354":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.7320508075688772},"662":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.4142135623730951},"678":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"741":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.4142135623730951},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"829":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"879":{"tf":1.0},"89":{"tf":2.0},"9":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"529":{"tf":1.0}}},"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":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},"df":72,"docs":{"110":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":2.23606797749979},"376":{"tf":2.23606797749979},"377":{"tf":4.242640687119285},"378":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"393":{"tf":4.47213595499958},"395":{"tf":1.4142135623730951},"396":{"tf":2.449489742783178},"397":{"tf":1.4142135623730951},"398":{"tf":4.123105625617661},"412":{"tf":1.7320508075688772},"414":{"tf":4.47213595499958},"416":{"tf":1.4142135623730951},"417":{"tf":2.6457513110645907},"418":{"tf":1.4142135623730951},"419":{"tf":4.123105625617661},"433":{"tf":1.7320508075688772},"435":{"tf":4.47213595499958},"437":{"tf":1.4142135623730951},"438":{"tf":2.6457513110645907},"439":{"tf":1.4142135623730951},"440":{"tf":4.123105625617661},"488":{"tf":1.4142135623730951},"490":{"tf":2.449489742783178},"491":{"tf":2.23606797749979},"492":{"tf":2.0},"493":{"tf":2.23606797749979},"494":{"tf":2.23606797749979},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":4.242640687119285},"501":{"tf":3.7416573867739413},"515":{"tf":1.4142135623730951},"517":{"tf":2.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":4.123105625617661},"524":{"tf":3.7416573867739413},"583":{"tf":2.0},"585":{"tf":2.0},"586":{"tf":2.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"590":{"tf":1.4142135623730951},"591":{"tf":4.242640687119285},"593":{"tf":3.7416573867739413},"606":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"609":{"tf":2.23606797749979},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":4.242640687119285},"616":{"tf":3.7416573867739413},"747":{"tf":1.0},"75":{"tf":1.0},"752":{"tf":1.4142135623730951},"785":{"tf":1.0},"817":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.7320508075688772},"862":{"tf":1.7320508075688772},"864":{"tf":1.7320508075688772},"881":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"951":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"942":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"124":{"tf":2.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"418":{"tf":1.0},"734":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"590":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"521":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"613":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"439":{"tf":1.0},"78":{"tf":1.0},"942":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"498":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"400":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"502":{"tf":1.0},"525":{"tf":1.0},"594":{"tf":1.0},"617":{"tf":1.0},"842":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"400":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"442":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"206":{"tf":1.0},"254":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"969":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"969":{"tf":1.7320508075688772}},"u":{"a":{"df":0,"docs":{},"g":{"df":51,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"136":{"tf":1.0},"21":{"tf":1.0},"280":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"299":{"tf":1.0},"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.7320508075688772},"728":{"tf":1.0},"736":{"tf":1.0},"740":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.0},"834":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"862":{"tf":1.0},"89":{"tf":1.4142135623730951},"958":{"tf":1.0}},"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":{"9":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.0},"267":{"tf":1.0},"807":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"224":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.0},"736":{"tf":1.0},"907":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"467":{"tf":1.0},"621":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":2.6457513110645907},"142":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"204":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"861":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"741":{"tf":1.0}},"n":{"c":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":11,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"425":{"tf":2.449489742783178},"456":{"tf":1.0},"473":{"tf":1.0},"484":{"tf":1.0},"673":{"tf":1.0},"858":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"254":{"tf":1.0},"41":{"tf":1.0},"760":{"tf":1.0},"909":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"874":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"191":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":2.23606797749979},"247":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"780":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"d":{"df":8,"docs":{"141":{"tf":1.0},"74":{"tf":1.0},"814":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"467":{"tf":1.0},"720":{"tf":1.0}}},"n":{"df":4,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0}}}},"v":{"df":5,"docs":{"150":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"816":{"tf":1.0},"916":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"328":{"tf":1.0},"653":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"568":{"tf":1.0},"916":{"tf":1.0},"958":{"tf":1.0}}},"y":{"_":{"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":{"d":{"df":2,"docs":{"160":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"805":{"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":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"565":{"tf":1.0},"642":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":23,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"241":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"328":{"tf":2.0},"378":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"471":{"tf":1.0},"541":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.4142135623730951},"757":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"259":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"'":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":1,"docs":{"254":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"294":{"tf":1.0}}}}},"’":{"df":3,"docs":{"203":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":24,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"170":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"258":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"673":{"tf":1.0},"834":{"tf":1.4142135623730951},"878":{"tf":1.0},"962":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"956":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}}}}},"i":{"b":{"df":3,"docs":{"316":{"tf":1.0},"674":{"tf":1.0},"924":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":52,"docs":{"0":{"tf":2.23606797749979},"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"270":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.0},"665":{"tf":1.7320508075688772},"668":{"tf":1.0},"678":{"tf":1.0},"705":{"tf":1.0},"753":{"tf":1.4142135623730951},"775":{"tf":1.0},"799":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"9":{"tf":3.1622776601683795},"916":{"tf":1.7320508075688772},"929":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"y":{"'":{"df":2,"docs":{"21":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"'":{"df":1,"docs":{"743":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"151":{"tf":1.0},"184":{"tf":1.0},"271":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"848":{"tf":1.0},"875":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"874":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":36,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":1.0},"109":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"289":{"tf":2.449489742783178},"308":{"tf":1.0},"315":{"tf":1.0},"454":{"tf":1.0},"567":{"tf":1.4142135623730951},"632":{"tf":1.0},"636":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"734":{"tf":1.0},"770":{"tf":1.0},"78":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.0},"79":{"tf":3.1622776601683795},"80":{"tf":1.0},"840":{"tf":1.0},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"917":{"tf":1.0},"94":{"tf":1.4142135623730951},"953":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":72,"docs":{"109":{"tf":1.0},"129":{"tf":1.7320508075688772},"13":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":2.449489742783178},"170":{"tf":1.0},"224":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"357":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"456":{"tf":2.0},"476":{"tf":1.4142135623730951},"484":{"tf":1.7320508075688772},"499":{"tf":1.0},"501":{"tf":1.4142135623730951},"511":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"541":{"tf":1.0},"570":{"tf":1.0},"575":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.4142135623730951},"598":{"tf":1.0},"609":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.4142135623730951},"621":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"677":{"tf":1.0},"721":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"761":{"tf":1.0},"774":{"tf":1.0},"787":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"580":{"tf":1.0},"582":{"tf":1.0},"591":{"tf":1.0}}}},"df":18,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":2.0},"234":{"tf":1.0},"27":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"653":{"tf":1.0},"677":{"tf":1.0},"682":{"tf":1.0},"689":{"tf":1.0},"862":{"tf":1.0},"935":{"tf":1.0}}},"k":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"376":{"tf":1.0},"753":{"tf":1.0},"844":{"tf":1.0},"862":{"tf":1.4142135623730951},"890":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":1.4142135623730951}}},"t":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"21":{"tf":1.0},"294":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"768":{"tf":1.0},"804":{"tf":1.0},"838":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"288":{"tf":1.0},"38":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"858":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"132":{"tf":1.0},"19":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"769":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.4142135623730951},"815":{"tf":1.7320508075688772},"820":{"tf":1.7320508075688772},"867":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"772":{"tf":1.0}}}}}}},"df":68,"docs":{"10":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"297":{"tf":2.449489742783178},"315":{"tf":1.0},"318":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":2.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"39":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":2.0},"435":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"443":{"tf":1.7320508075688772},"445":{"tf":1.7320508075688772},"446":{"tf":2.23606797749979},"448":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"499":{"tf":2.0},"501":{"tf":1.0},"522":{"tf":2.0},"524":{"tf":1.0},"538":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"57":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":2.0},"593":{"tf":1.0},"614":{"tf":2.0},"616":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"668":{"tf":1.0},"689":{"tf":1.0},"715":{"tf":1.0},"73":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.4142135623730951},"77":{"tf":1.0},"813":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"862":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"912":{"tf":1.0},"94":{"tf":1.4142135623730951},"952":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"307":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":2.6457513110645907},"731":{"tf":1.0},"951":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"675":{"tf":1.0},"915":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":9,"docs":{"127":{"tf":1.0},"224":{"tf":1.0},"289":{"tf":1.4142135623730951},"371":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"78":{"tf":1.4142135623730951},"965":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"m":{"d":{"b":{"df":5,"docs":{"716":{"tf":1.0},"765":{"tf":1.0},"803":{"tf":1.0},"818":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":68,"docs":{"112":{"tf":1.0},"20":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"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},"480":{"tf":1.0},"481":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":68,"docs":{"112":{"tf":1.0},"20":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"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},"480":{"tf":1.0},"481":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":4,"docs":{"338":{"tf":1.4142135623730951},"649":{"tf":1.0},"652":{"tf":1.0},"834":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"338":{"tf":1.0},"649":{"tf":1.0},"652":{"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":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"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":15,"docs":{"140":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"263":{"tf":1.0},"268":{"tf":1.0},"31":{"tf":1.0},"338":{"tf":1.7320508075688772},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.4142135623730951},"592":{"tf":1.0},"864":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":27,"docs":{"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"316":{"tf":1.0},"710":{"tf":1.4142135623730951},"736":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"842":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"938":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"846":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"846":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"170":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"22":{"tf":1.0},"318":{"tf":1.0},"800":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"_":{"2":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"779":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"580":{"tf":1.0},"591":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":54,"docs":{"120":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":3.3166247903554},"237":{"tf":2.8284271247461903},"238":{"tf":2.0},"239":{"tf":3.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":2.0},"359":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"514":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"582":{"tf":1.0},"701":{"tf":1.0},"704":{"tf":1.0},"721":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"771":{"tf":1.0},"779":{"tf":1.0},"787":{"tf":1.0},"814":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":2.0},"849":{"tf":1.0},"854":{"tf":1.0},"880":{"tf":1.4142135623730951},"898":{"tf":1.0},"923":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.4142135623730951},"938":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"814":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":5,"docs":{"653":{"tf":1.0},"741":{"tf":1.0},"834":{"tf":1.4142135623730951},"919":{"tf":1.0},"932":{"tf":1.0}}},"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"438":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":10,"docs":{"376":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"441":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.0},"567":{"tf":1.4142135623730951},"569":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"tf":1.7320508075688772}}},"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":{"315":{"tf":1.0}}}}}}},"o":{"df":2,"docs":{"0":{"tf":1.0},"958":{"tf":1.0}}},"p":{"df":4,"docs":{"224":{"tf":2.0},"231":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"772":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":37,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"449":{"tf":1.0},"461":{"tf":1.0},"469":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"592":{"tf":1.0},"62":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"818":{"tf":1.4142135623730951},"839":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"963":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":49,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":1.0},"307":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"541":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"736":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.7320508075688772},"761":{"tf":1.0},"775":{"tf":1.0},"793":{"tf":1.0},"806":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"873":{"tf":1.4142135623730951},"876":{"tf":1.0},"891":{"tf":1.0},"912":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":30,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"203":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"572":{"tf":1.0},"665":{"tf":1.0},"668":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"690":{"tf":1.4142135623730951},"697":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"859":{"tf":1.0}}}}},"p":{"df":1,"docs":{"834":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"747":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"73":{"tf":1.0},"78":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":4,"docs":{"103":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"82":{"tf":1.0}}},"u":{"d":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"376":{"tf":1.0},"629":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"285":{"tf":1.0},"286":{"tf":1.0},"496":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"816":{"tf":1.0},"858":{"tf":1.0},"878":{"tf":1.0},"916":{"tf":1.0},"933":{"tf":1.0}}}}}}},"m":{"1":{"/":{"df":0,"docs":{},"m":{"2":{"/":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"958":{"tf":1.0}}},"a":{"c":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"233":{"tf":1.4142135623730951},"690":{"tf":1.0}},"h":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"289":{"tf":1.0},"697":{"tf":1.0},"910":{"tf":1.0}}}}},"o":{"df":7,"docs":{"19":{"tf":1.0},"673":{"tf":1.0},"775":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"867":{"tf":1.0},"884":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"256":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"862":{"tf":1.0},"869":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"487":{"tf":1.0},"514":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"104":{"tf":1.0},"289":{"tf":1.0},"83":{"tf":1.0}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":21,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.0},"26":{"tf":1.0},"306":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"316":{"tf":2.449489742783178},"34":{"tf":1.0},"342":{"tf":1.0},"646":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"840":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"675":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"308":{"tf":1.0},"62":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.0},"288":{"tf":2.449489742783178},"669":{"tf":1.7320508075688772},"685":{"tf":1.7320508075688772},"772":{"tf":1.0},"881":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":75,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.0},"281":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"318":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.4142135623730951},"443":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"538":{"tf":1.0},"619":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.0},"70":{"tf":1.4142135623730951},"720":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"804":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"842":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.4142135623730951},"862":{"tf":1.0},"863":{"tf":1.0},"882":{"tf":1.0},"900":{"tf":1.0},"91":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"925":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}},"r":{"df":1,"docs":{"956":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"917":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"153":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"62":{"tf":1.0},"647":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"867":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"958":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"44":{"tf":1.0},"677":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":21,"docs":{"127":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":2.449489742783178},"618":{"tf":1.4142135623730951},"625":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"858":{"tf":1.0},"915":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":5,"docs":{"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0},"673":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"968":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"820":{"tf":1.0}}},"2":{"0":{"1":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"4":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":9,"docs":{"131":{"tf":1.0},"170":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":2.23606797749979},"717":{"tf":1.4142135623730951},"723":{"tf":1.0},"840":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"328":{"tf":1.0},"679":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":11,"docs":{"21":{"tf":1.7320508075688772},"276":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"37":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"666":{"tf":1.0},"686":{"tf":1.7320508075688772},"862":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"318":{"tf":1.0},"773":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"334":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"640":{"tf":1.4142135623730951},"697":{"tf":1.0},"738":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"864":{"tf":1.0},"89":{"tf":1.0},"935":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"703":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"735":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"656":{"tf":1.0}}}}},"x":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"861":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"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":{"761":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"212":{"tf":1.0},"213":{"tf":1.0},"897":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"315":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"565":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":59,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"170":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"328":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"456":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.0},"501":{"tf":1.7320508075688772},"511":{"tf":1.0},"514":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"541":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"575":{"tf":1.0},"582":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.4142135623730951},"609":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"632":{"tf":1.0},"732":{"tf":1.0},"81":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"929":{"tf":1.0}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"968":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"673":{"tf":1.0},"686":{"tf":1.0}},"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":6,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"645":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"n":{"df":41,"docs":{"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"168":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"487":{"tf":1.4142135623730951},"499":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"677":{"tf":1.0},"703":{"tf":1.0},"710":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":5,"docs":{"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"371":{"tf":1.0},"864":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":63,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"141":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":2.0},"477":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"488":{"tf":1.0},"503":{"tf":1.0},"549":{"tf":1.0},"632":{"tf":1.0},"70":{"tf":2.0},"708":{"tf":1.0},"711":{"tf":2.23606797749979},"721":{"tf":1.0},"73":{"tf":1.4142135623730951},"739":{"tf":1.0},"74":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"834":{"tf":1.4142135623730951},"86":{"tf":1.0},"861":{"tf":2.0},"866":{"tf":1.0},"880":{"tf":1.0},"91":{"tf":2.0},"929":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":2.449489742783178},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"289":{"tf":1.0},"346":{"tf":1.0},"471":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":2.0},"929":{"tf":1.0},"937":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"173":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"510":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":25,"docs":{"289":{"tf":1.4142135623730951},"310":{"tf":1.0},"376":{"tf":1.4142135623730951},"503":{"tf":2.23606797749979},"505":{"tf":1.4142135623730951},"507":{"tf":2.6457513110645907},"508":{"tf":1.4142135623730951},"509":{"tf":1.7320508075688772},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"514":{"tf":2.0},"515":{"tf":2.0},"517":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"718":{"tf":1.0},"814":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"911":{"tf":1.0},"958":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.7320508075688772}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"507":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.7320508075688772},"509":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"514":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"839":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"772":{"tf":1.0},"853":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"525":{"tf":1.0},"837":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"738":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"677":{"tf":1.7320508075688772},"679":{"tf":1.0},"779":{"tf":1.0},"805":{"tf":1.0},"814":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"858":{"tf":1.0},"898":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.4142135623730951},"938":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"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":1,"docs":{"266":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"171":{"tf":1.0}}},"2":{"df":1,"docs":{"171":{"tf":1.0}}},"df":16,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"254":{"tf":1.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"338":{"tf":1.0},"568":{"tf":1.0},"680":{"tf":1.0},"727":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":32,"docs":{"221":{"tf":2.0},"223":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.0},"257":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":2.23606797749979},"317":{"tf":1.0},"338":{"tf":2.0},"462":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"715":{"tf":1.0},"731":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"772":{"tf":1.7320508075688772},"838":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"'":{"df":7,"docs":{"104":{"tf":1.0},"288":{"tf":1.0},"464":{"tf":1.0},"554":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"799":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"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":2,"docs":{"110":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":423,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":2.0},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":2.6457513110645907},"105":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":2.449489742783178},"110":{"tf":2.8284271247461903},"111":{"tf":1.7320508075688772},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"120":{"tf":3.872983346207417},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":3.4641016151377544},"125":{"tf":3.1622776601683795},"126":{"tf":1.4142135623730951},"127":{"tf":3.3166247903554},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"135":{"tf":1.7320508075688772},"137":{"tf":2.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":2.0},"146":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":3.0},"174":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":2.8284271247461903},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":2.0},"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":3.0},"197":{"tf":2.449489742783178},"198":{"tf":2.449489742783178},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"208":{"tf":1.0},"21":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":2.449489742783178},"231":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":4.69041575982343},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"277":{"tf":1.0},"28":{"tf":2.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":2.0},"286":{"tf":2.0},"287":{"tf":2.0},"288":{"tf":4.898979485566356},"289":{"tf":4.898979485566356},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"318":{"tf":2.6457513110645907},"321":{"tf":1.7320508075688772},"322":{"tf":2.0},"330":{"tf":1.4142135623730951},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.4142135623730951},"376":{"tf":2.449489742783178},"377":{"tf":3.0},"379":{"tf":2.0},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":2.23606797749979},"388":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"408":{"tf":2.23606797749979},"409":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"425":{"tf":2.8284271247461903},"427":{"tf":2.6457513110645907},"428":{"tf":1.4142135623730951},"429":{"tf":2.23606797749979},"43":{"tf":1.0},"430":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":2.8284271247461903},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":2.23606797749979},"451":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":2.23606797749979},"467":{"tf":1.4142135623730951},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"476":{"tf":1.7320508075688772},"477":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"51":{"tf":1.0},"510":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"52":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"526":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":2.0},"534":{"tf":1.0},"537":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":2.23606797749979},"546":{"tf":1.4142135623730951},"547":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":2.23606797749979},"557":{"tf":1.7320508075688772},"560":{"tf":1.0},"563":{"tf":2.449489742783178},"565":{"tf":1.0},"566":{"tf":1.4142135623730951},"567":{"tf":2.23606797749979},"568":{"tf":2.0},"572":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":2.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.7320508075688772},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.4142135623730951},"591":{"tf":1.7320508075688772},"596":{"tf":1.0},"598":{"tf":1.4142135623730951},"60":{"tf":2.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":2.23606797749979},"603":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"609":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":2.23606797749979},"614":{"tf":1.7320508075688772},"619":{"tf":2.23606797749979},"621":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"624":{"tf":1.0},"625":{"tf":2.23606797749979},"626":{"tf":1.0},"630":{"tf":1.0},"632":{"tf":2.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"636":{"tf":2.23606797749979},"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"643":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"645":{"tf":2.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"671":{"tf":1.0},"677":{"tf":3.4641016151377544},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.449489742783178},"708":{"tf":1.7320508075688772},"709":{"tf":1.0},"71":{"tf":2.0},"710":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"716":{"tf":2.23606797749979},"718":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"73":{"tf":3.605551275463989},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.4142135623730951},"736":{"tf":1.0},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"74":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":2.0},"747":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"752":{"tf":2.449489742783178},"755":{"tf":1.0},"76":{"tf":2.449489742783178},"761":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":3.1622776601683795},"770":{"tf":1.4142135623730951},"772":{"tf":2.8284271247461903},"773":{"tf":1.0},"776":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":3.4641016151377544},"782":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":2.8284271247461903},"790":{"tf":1.7320508075688772},"791":{"tf":1.4142135623730951},"794":{"tf":1.0},"795":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":2.0},"807":{"tf":1.0},"809":{"tf":2.0},"81":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":2.0},"818":{"tf":1.4142135623730951},"82":{"tf":2.0},"823":{"tf":1.7320508075688772},"83":{"tf":2.6457513110645907},"830":{"tf":2.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"839":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.7320508075688772},"852":{"tf":1.7320508075688772},"853":{"tf":1.4142135623730951},"858":{"tf":1.0},"86":{"tf":2.23606797749979},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":2.449489742783178},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"871":{"tf":1.0},"875":{"tf":1.4142135623730951},"876":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":2.449489742783178},"880":{"tf":1.0},"89":{"tf":2.8284271247461903},"892":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.0},"907":{"tf":1.0},"91":{"tf":2.449489742783178},"911":{"tf":1.7320508075688772},"912":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":2.0},"917":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":2.0},"925":{"tf":1.0},"929":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"932":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":3.605551275463989},"941":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":3.0},"958":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"963":{"tf":1.0},"97":{"tf":2.449489742783178},"98":{"tf":3.1622776601683795},"99":{"tf":3.4641016151377544}},"s":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"396":{"tf":1.0}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"635":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"465":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"407":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"d":{"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":{".":{"d":{"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":{"(":{"2":{"0":{"1":{"9":{"df":1,"docs":{"551":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"551":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"553":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"555":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"438":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"d":{"df":3,"docs":{"666":{"tf":1.0},"667":{"tf":1.0},"801":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"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":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"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":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"477":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"481":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"643":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"449":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"544":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"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":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"428":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"417":{"tf":1.0}}}}}}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"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":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"[":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"112":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{"d":{".":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"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":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"4":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"532":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"566":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":63,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"110":{"tf":3.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":2.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"21":{"tf":2.449489742783178},"26":{"tf":1.0},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"377":{"tf":1.4142135623730951},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"665":{"tf":2.0},"668":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"679":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"830":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.4142135623730951},"853":{"tf":1.0},"864":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":3.0},"91":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"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":{},"t":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"20":{"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":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"565":{"tf":1.0},"566":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":3,"docs":{"200":{"tf":1.0},"203":{"tf":2.23606797749979},"254":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"160":{"tf":1.0},"716":{"tf":1.0},"765":{"tf":1.0},"818":{"tf":1.0},"860":{"tf":1.4142135623730951},"867":{"tf":1.0},"869":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"891":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"881":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"258":{"tf":1.0},"310":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"131":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"170":{"tf":1.0},"462":{"tf":1.4142135623730951},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"734":{"tf":1.0},"804":{"tf":1.4142135623730951},"939":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":2,"docs":{"261":{"tf":1.0},"267":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":2,"docs":{"823":{"tf":1.0},"862":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":4,"docs":{"256":{"tf":1.0},"306":{"tf":1.0},"804":{"tf":1.0},"916":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"103":{"tf":1.0},"471":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"582":{"tf":1.0},"591":{"tf":1.4142135623730951},"737":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":11,"docs":{"131":{"tf":1.4142135623730951},"467":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"836":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"19":{"tf":1.0},"818":{"tf":1.4142135623730951},"840":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":15,"docs":{"100":{"tf":1.7320508075688772},"422":{"tf":1.0},"537":{"tf":1.0},"644":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"805":{"tf":1.0},"837":{"tf":1.0},"844":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0},"99":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"21":{"tf":1.0},"289":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0},"825":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"814":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"173":{"tf":1.0},"231":{"tf":1.0},"288":{"tf":1.0},"834":{"tf":1.0}}}},"m":{"df":1,"docs":{"288":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"127":{"tf":1.0},"155":{"tf":1.4142135623730951},"168":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"274":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"742":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}},"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":21,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.0},"237":{"tf":1.0},"318":{"tf":2.6457513110645907},"671":{"tf":1.4142135623730951},"673":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"789":{"tf":1.0},"79":{"tf":1.7320508075688772},"801":{"tf":1.0},"803":{"tf":1.0},"818":{"tf":1.4142135623730951},"835":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951}},"l":{"df":7,"docs":{"132":{"tf":1.4142135623730951},"274":{"tf":1.0},"431":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"762":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"837":{"tf":1.4142135623730951},"862":{"tf":1.0},"923":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"934":{"tf":1.0},"950":{"tf":1.7320508075688772},"956":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"160":{"tf":1.0},"402":{"tf":1.0},"711":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"53":{"tf":1.0},"958":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"142":{"tf":2.0},"289":{"tf":1.0},"456":{"tf":1.0},"493":{"tf":1.0},"804":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"65":{"tf":1.0},"861":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":62,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":2.0},"328":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"772":{"tf":1.4142135623730951},"802":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"84":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.7320508075688772},"859":{"tf":1.0},"862":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"875":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"969":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"864":{"tf":1.0},"925":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"119":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"65":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"834":{"tf":1.4142135623730951},"843":{"tf":1.0},"865":{"tf":1.0},"916":{"tf":1.0}}}},"z":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"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":{"/":{"2":{"df":4,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"677":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"2":{"df":3,"docs":{"138":{"tf":1.0},"292":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"1":{"df":1,"docs":{"301":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"l":{"a":{"'":{"df":6,"docs":{"13":{"tf":1.0},"289":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"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":{".":{"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":{"316":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"473":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.4142135623730951},"373":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"555":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"121":{"tf":1.0},"31":{"tf":1.0},"659":{"tf":1.0},"713":{"tf":1.0}}}},"/":{"<":{"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"316":{"tf":1.0},"317":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"578":{"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":13,"docs":{"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"h":{"df":56,"docs":{"110":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"660":{"tf":1.0},"688":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"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":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"693":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"923":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"342":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"693":{"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":{"34":{"tf":1.0}}}}}}}},"df":10,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"654":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"713":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"393":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"383":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"574":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":1,"docs":{"551":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"553":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"437":{"tf":1.0}},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"507":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"585":{"tf":1.4142135623730951},"586":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"623":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"519":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"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":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"480":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"448":{"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"540":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"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":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"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":{},"s":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"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":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":0,"docs":{},"e":{"d":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"]":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"687":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":18,"docs":{"133":{"tf":1.0},"21":{"tf":1.4142135623730951},"268":{"tf":1.0},"289":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"656":{"tf":1.0},"677":{"tf":1.0},"7":{"tf":1.0},"712":{"tf":1.0},"73":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0}},"’":{"df":1,"docs":{"704":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"958":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"s":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"117":{"tf":1.0},"137":{"tf":1.4142135623730951},"22":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.0},"710":{"tf":1.0},"80":{"tf":1.4142135623730951},"846":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"728":{"tf":1.0},"814":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":38,"docs":{"103":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"192":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"34":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.4142135623730951},"462":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951},"549":{"tf":1.0},"674":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"76":{"tf":1.7320508075688772},"792":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"22":{"tf":2.0},"847":{"tf":1.0},"859":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"811":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"652":{"tf":1.0},"811":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"799":{"tf":1.0}}}},"w":{"1":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772}}},"2":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0}}},"3":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"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":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"701":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"693":{"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":{},"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":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"d":{"df":2,"docs":{"20":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"/":{"a":{"df":6,"docs":{"388":{"tf":1.0},"409":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"534":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":112,"docs":{"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":2.23606797749979},"289":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"292":{"tf":1.0},"294":{"tf":2.23606797749979},"295":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"315":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"651":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.0},"687":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"731":{"tf":1.4142135623730951},"736":{"tf":1.0},"782":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"823":{"tf":1.0},"83":{"tf":2.0},"834":{"tf":1.0},"84":{"tf":1.4142135623730951},"857":{"tf":1.0},"864":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"915":{"tf":1.0},"921":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.0},"956":{"tf":1.0},"964":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":5,"docs":{"104":{"tf":1.0},"157":{"tf":1.0},"687":{"tf":2.23606797749979},"697":{"tf":1.0},"83":{"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":{"d":{"/":{"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":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"17":{"tf":1.0}}}}}}},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"456":{"tf":1.4142135623730951},"460":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.7320508075688772},"499":{"tf":1.0},"501":{"tf":1.4142135623730951},"557":{"tf":1.0},"804":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"v":{"df":8,"docs":{"12":{"tf":1.0},"317":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"775":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":2.23606797749979},"853":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"376":{"tf":1.0},"414":{"tf":2.449489742783178},"418":{"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":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"289":{"tf":1.0},"328":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"895":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"844":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"df":5,"docs":{"730":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"883":{"tf":1.0}}}},"df":1,"docs":{"224":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":30,"docs":{"105":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"330":{"tf":1.0},"347":{"tf":1.4142135623730951},"649":{"tf":1.0},"66":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"922":{"tf":1.0},"969":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":91,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":3.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"297":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":2.0},"326":{"tf":1.0},"338":{"tf":1.4142135623730951},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"401":{"tf":1.0},"43":{"tf":1.0},"473":{"tf":1.0},"52":{"tf":1.0},"533":{"tf":1.0},"583":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"621":{"tf":1.0},"647":{"tf":1.0},"652":{"tf":1.0},"662":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"70":{"tf":1.0},"710":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"762":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"80":{"tf":1.7320508075688772},"807":{"tf":1.7320508075688772},"824":{"tf":1.0},"828":{"tf":1.0},"838":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":27,"docs":{"376":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"497":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.0},"517":{"tf":1.0},"520":{"tf":1.0},"575":{"tf":1.4142135623730951},"578":{"tf":2.0},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":2.0},"606":{"tf":1.0},"609":{"tf":1.4142135623730951},"621":{"tf":1.0},"816":{"tf":1.0},"915":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"28":{"tf":1.0},"326":{"tf":1.0},"644":{"tf":1.4142135623730951},"894":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{":":{"5":{".":{"6":{".":{"0":{"@":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"820":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"626":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":2.23606797749979}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"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":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{},"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":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"624":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"(":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"589":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"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":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"623":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"519":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"520":{"tf":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":{"517":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"273":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"590":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"710":{"tf":1.0},"779":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"915":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"127":{"tf":4.123105625617661},"135":{"tf":1.0},"168":{"tf":1.0},"288":{"tf":1.4142135623730951},"401":{"tf":1.0},"412":{"tf":1.0},"645":{"tf":1.0},"752":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":1.0},"830":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0}}}}}}}}}}}},"w":{"df":106,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"117":{"tf":2.0},"12":{"tf":1.0},"132":{"tf":1.4142135623730951},"140":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":2.23606797749979},"26":{"tf":1.0},"288":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"35":{"tf":1.0},"379":{"tf":1.0},"425":{"tf":2.449489742783178},"445":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"528":{"tf":2.6457513110645907},"55":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"563":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"661":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"680":{"tf":1.0},"69":{"tf":1.0},"691":{"tf":1.0},"693":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"701":{"tf":1.0},"71":{"tf":2.0},"711":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"721":{"tf":1.4142135623730951},"725":{"tf":1.0},"727":{"tf":1.7320508075688772},"729":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"779":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":2.23606797749979},"8":{"tf":1.7320508075688772},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"866":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"895":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":2.0},"929":{"tf":1.0},"932":{"tf":1.0},"942":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.7320508075688772},"961":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"274":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"929":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"117":{"tf":1.0},"678":{"tf":1.4142135623730951},"842":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":20,"docs":{"127":{"tf":1.7320508075688772},"155":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.0},"184":{"tf":2.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"318":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"680":{"tf":1.0},"711":{"tf":1.0},"823":{"tf":1.0},"839":{"tf":1.0},"958":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"677":{"tf":1.0},"871":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"254":{"tf":1.0},"60":{"tf":1.0},"83":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"765":{"tf":1.0},"772":{"tf":1.0}}},"m":{"b":{"df":0,"docs":{},"u":{"df":21,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.0},"198":{"tf":2.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"211":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"738":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"34":{"tf":1.7320508075688772},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"947":{"tf":1.0},"958":{"tf":1.0}}}},"df":3,"docs":{"912":{"tf":1.4142135623730951},"913":{"tf":1.0},"939":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}}}}}}}},"df":37,"docs":{"184":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"393":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.4142135623730951},"491":{"tf":1.0},"529":{"tf":1.4142135623730951},"541":{"tf":1.0},"551":{"tf":1.0},"575":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.4142135623730951},"606":{"tf":1.0},"609":{"tf":1.4142135623730951},"621":{"tf":1.0},"632":{"tf":1.0},"741":{"tf":1.4142135623730951},"762":{"tf":1.0},"802":{"tf":1.0},"815":{"tf":1.0},"831":{"tf":1.0},"866":{"tf":1.0},"905":{"tf":1.0}},"e":{"df":45,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"316":{"tf":2.0},"318":{"tf":1.4142135623730951},"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"685":{"tf":1.0},"70":{"tf":1.4142135623730951},"765":{"tf":1.0},"772":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"663":{"tf":1.0},"665":{"tf":1.0},"682":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":86,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"291":{"tf":1.0},"300":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"344":{"tf":1.0},"377":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"514":{"tf":1.0},"546":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.4142135623730951},"568":{"tf":1.0},"572":{"tf":1.0},"580":{"tf":1.0},"664":{"tf":1.0},"667":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.0},"684":{"tf":1.0},"701":{"tf":1.0},"719":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"807":{"tf":1.0},"824":{"tf":1.0},"83":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"927":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"h":{"df":7,"docs":{"204":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"471":{"tf":1.0},"649":{"tf":1.0},"667":{"tf":1.0},"796":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"44":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"198":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":36,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.7320508075688772},"292":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":84,"docs":{"115":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.7320508075688772},"551":{"tf":2.6457513110645907},"652":{"tf":1.0},"677":{"tf":1.0},"719":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.7320508075688772},"731":{"tf":1.0},"732":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"740":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"763":{"tf":1.0},"772":{"tf":2.6457513110645907},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"789":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.7320508075688772},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"839":{"tf":2.0},"842":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":2.23606797749979},"854":{"tf":1.0},"857":{"tf":1.4142135623730951},"858":{"tf":2.449489742783178},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.6457513110645907},"862":{"tf":2.0},"863":{"tf":1.0},"864":{"tf":2.449489742783178},"865":{"tf":2.23606797749979},"866":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"895":{"tf":1.0},"912":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"912":{"tf":1.0},"939":{"tf":1.0},"958":{"tf":1.0}}},"x":{"df":2,"docs":{"689":{"tf":1.0},"690":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":8,"docs":{"406":{"tf":1.0},"427":{"tf":1.0},"448":{"tf":1.4142135623730951},"464":{"tf":1.0},"531":{"tf":1.0},"553":{"tf":1.0},"600":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"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":1,"docs":{"529":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"834":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"459":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"765":{"tf":1.4142135623730951},"772":{"tf":2.0},"796":{"tf":1.4142135623730951},"858":{"tf":1.0},"865":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":100,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"127":{"tf":3.1622776601683795},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"21":{"tf":1.0},"267":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"425":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"517":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"591":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"612":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"773":{"tf":1.0},"806":{"tf":1.0},"834":{"tf":2.0},"849":{"tf":1.0},"897":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"618":{"tf":1.4142135623730951},"619":{"tf":1.0},"621":{"tf":2.0},"623":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":41,"docs":{"131":{"tf":1.0},"170":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"376":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"638":{"tf":1.0},"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"644":{"tf":2.449489742783178},"645":{"tf":1.7320508075688772},"652":{"tf":1.0},"663":{"tf":1.0},"679":{"tf":1.0},"693":{"tf":1.0},"718":{"tf":1.0},"727":{"tf":1.7320508075688772},"730":{"tf":1.0},"732":{"tf":1.0},"772":{"tf":1.4142135623730951},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":2.0},"805":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"834":{"tf":1.0},"908":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"875":{"tf":1.0},"915":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"719":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"814":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"120":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"170":{"tf":1.0},"22":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"454":{"tf":1.0},"840":{"tf":1.0},"864":{"tf":1.0},"908":{"tf":1.0}},"r":{"df":5,"docs":{"376":{"tf":1.0},"560":{"tf":1.0},"76":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"683":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"237":{"tf":1.0},"265":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"234":{"tf":1.0},"673":{"tf":1.0},"785":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"671":{"tf":2.0},"673":{"tf":1.4142135623730951},"835":{"tf":1.0},"915":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"549":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"802":{"tf":1.4142135623730951},"881":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"l":{"d":{"df":6,"docs":{"288":{"tf":1.4142135623730951},"741":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":2.23606797749979},"874":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"224":{"tf":1.0},"274":{"tf":1.0},"731":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"844":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}}}},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"478":{"tf":1.0}}}}}}},"df":1,"docs":{"478":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":21,"docs":{"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"379":{"tf":1.0},"570":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"902":{"tf":1.0},"919":{"tf":1.4142135623730951},"924":{"tf":1.0},"927":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"315":{"tf":1.4142135623730951},"324":{"tf":1.0},"338":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"679":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":82,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"477":{"tf":1.0},"493":{"tf":1.0},"519":{"tf":1.0},"538":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"613":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"678":{"tf":1.0},"691":{"tf":1.0},"693":{"tf":1.0},"697":{"tf":1.0},"741":{"tf":1.0},"751":{"tf":1.0},"79":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"80":{"tf":1.0},"801":{"tf":1.0},"809":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"961":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"_":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"266":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"671":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":2.449489742783178}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"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":1,"docs":{"478":{"tf":1.4142135623730951}}},"df":1,"docs":{"478":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"d":{"(":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"473":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":1,"docs":{"473":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":7,"docs":{"17":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"649":{"tf":1.0},"853":{"tf":1.0},"919":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"151":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":2.23606797749979},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"241":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"569":{"tf":1.0},"890":{"tf":1.0},"969":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":19,"docs":{"107":{"tf":1.0},"132":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.4142135623730951},"340":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"78":{"tf":1.0},"786":{"tf":1.0},"804":{"tf":1.0},"86":{"tf":1.0},"99":{"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":4,"docs":{"103":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"131":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"330":{"tf":1.0},"734":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"565":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":94,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":3.4641016151377544},"13":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.1622776601683795},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":2.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.4142135623730951},"315":{"tf":2.6457513110645907},"326":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":2.6457513110645907},"440":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"644":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":2.0},"67":{"tf":1.0},"682":{"tf":2.0},"728":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"801":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"861":{"tf":1.0},"871":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"951":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"958":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":60,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.0},"346":{"tf":1.7320508075688772},"352":{"tf":1.0},"363":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"48":{"tf":1.4142135623730951},"499":{"tf":1.0},"522":{"tf":1.0},"565":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"689":{"tf":1.0},"692":{"tf":1.0},"800":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"956":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{":":{"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":{"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"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":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.0},"227":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"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":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{"6":{"3":{".":{"0":{".":{"0":{"df":1,"docs":{"11":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"656":{"tf":1.0},"793":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"393":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"632":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"404":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"598":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"574":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951}}}}}}}},"n":{"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":3,"docs":{"621":{"tf":2.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0}}}}}},"df":4,"docs":{"315":{"tf":1.0},"338":{"tf":1.0},"649":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"425":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951},"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":{}}}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{":":{"4":{".":{"3":{".":{"1":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"117":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.0},"823":{"tf":1.0}}}}}}},"s":{"/":{"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":{"271":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"762":{"tf":1.4142135623730951},"923":{"tf":1.0}}}}}}},"df":13,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"923":{"tf":1.4142135623730951},"938":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"834":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"924":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"175":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"367":{"tf":1.0},"572":{"tf":1.0},"840":{"tf":1.0},"855":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"859":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":46,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"26":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"4":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.7320508075688772},"63":{"tf":1.0},"630":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"708":{"tf":1.0},"734":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"923":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}},"g":{"df":0,"docs":{},"o":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}},"n":{"df":2,"docs":{"265":{"tf":1.0},"379":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":2.23606797749979},"17":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"276":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"667":{"tf":1.0},"683":{"tf":1.0},"697":{"tf":1.0},"852":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"289":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"830":{"tf":1.4142135623730951},"861":{"tf":1.0},"88":{"tf":1.0},"922":{"tf":1.0},"927":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"127":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}},"df":19,"docs":{"121":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"289":{"tf":1.0},"456":{"tf":1.0},"476":{"tf":1.0},"517":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"677":{"tf":1.0},"711":{"tf":1.0},"74":{"tf":1.0},"823":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"471":{"tf":1.0},"761":{"tf":1.0},"773":{"tf":1.0},"912":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"190":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"204":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"520":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"315":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"668":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.7320508075688772},"773":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":14,"docs":{"0":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"653":{"tf":1.0},"70":{"tf":1.0},"704":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"775":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"667":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"289":{"tf":1.0},"647":{"tf":1.0},"78":{"tf":1.0},"853":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"288":{"tf":1.0},"297":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"660":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":2.0},"688":{"tf":1.0},"689":{"tf":1.0},"776":{"tf":1.0},"793":{"tf":1.4142135623730951},"798":{"tf":1.0},"805":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"858":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"944":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"789":{"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"590":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":160,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.4142135623730951},"249":{"tf":1.0},"254":{"tf":3.1622776601683795},"264":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.7320508075688772},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"571":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"625":{"tf":1.0},"628":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"652":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.4142135623730951},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"8":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"9":{"tf":1.0},"900":{"tf":1.0},"905":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.4142135623730951},"960":{"tf":1.7320508075688772},"961":{"tf":1.0},"963":{"tf":2.0},"964":{"tf":1.4142135623730951},"965":{"tf":1.7320508075688772},"968":{"tf":2.6457513110645907},"969":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0}}}},"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"477":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"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":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"481":{"tf":1.0},"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"480":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"623":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"623":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"199":{"tf":1.0},"459":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"786":{"tf":1.0},"812":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"969":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"814":{"tf":1.0},"862":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":88,"docs":{"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"190":{"tf":1.4142135623730951},"211":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"409":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.4142135623730951},"521":{"tf":1.0},"522":{"tf":1.7320508075688772},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"560":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.7320508075688772},"590":{"tf":1.0},"591":{"tf":1.7320508075688772},"602":{"tf":1.4142135623730951},"603":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"625":{"tf":1.4142135623730951},"636":{"tf":1.4142135623730951},"644":{"tf":2.23606797749979},"645":{"tf":1.0},"693":{"tf":1.0},"701":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"789":{"tf":1.0},"801":{"tf":1.0},"805":{"tf":1.0},"857":{"tf":1.0},"867":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"933":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"17":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"698":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"869":{"tf":1.0}}}}}}}}}}}},"r":{"df":10,"docs":{"17":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"692":{"tf":1.4142135623730951},"707":{"tf":1.0},"830":{"tf":1.0},"915":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}}}}},"t":{"df":24,"docs":{"0":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"679":{"tf":1.0},"698":{"tf":1.0},"711":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"793":{"tf":1.0},"834":{"tf":1.4142135623730951},"853":{"tf":1.0},"854":{"tf":1.0},"958":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.4142135623730951},"268":{"tf":1.0},"289":{"tf":1.0},"454":{"tf":1.0},"618":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"74":{"tf":1.0},"78":{"tf":1.0},"923":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"289":{"tf":1.0},"645":{"tf":1.0}}},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"643":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"643":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"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":{"640":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":44,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.7320508075688772},"233":{"tf":1.0},"238":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.7320508075688772},"598":{"tf":1.0},"609":{"tf":1.0},"640":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.4142135623730951},"682":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"796":{"tf":1.0},"799":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"830":{"tf":1.0},"837":{"tf":1.0},"914":{"tf":1.0},"98":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"435":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"289":{"tf":1.4142135623730951},"435":{"tf":2.6457513110645907},"437":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"254":{"tf":2.8284271247461903},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.0}}},"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":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":6,"docs":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"383":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0}}}},"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":{},"j":{"df":3,"docs":{"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"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":0,"docs":{},"j":{"df":3,"docs":{"621":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"652":{"tf":1.0}}}},"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":{},"j":{"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"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":{},"j":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"26":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.7320508075688772},"443":{"tf":1.0},"538":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"686":{"tf":1.7320508075688772},"692":{"tf":1.0},"769":{"tf":1.0},"782":{"tf":1.0},"802":{"tf":1.4142135623730951},"814":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"949":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":23,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"142":{"tf":1.4142135623730951},"217":{"tf":1.0},"254":{"tf":1.4142135623730951},"298":{"tf":1.0},"471":{"tf":1.0},"644":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":2.23606797749979},"709":{"tf":1.0},"710":{"tf":1.4142135623730951},"716":{"tf":1.0},"755":{"tf":1.0},"759":{"tf":1.0},"853":{"tf":1.0},"865":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"951":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":2,"docs":{"652":{"tf":1.4142135623730951},"701":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"953":{"tf":1.0}}}},"n":{"d":{"df":15,"docs":{"127":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"146":{"tf":1.0},"22":{"tf":1.4142135623730951},"313":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"734":{"tf":1.0},"754":{"tf":1.0},"809":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.4142135623730951},"834":{"tf":1.0},"871":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0}}}}},"p":{"8":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":2.0}}}}}}}},"df":28,"docs":{"146":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.0},"258":{"tf":3.0},"262":{"tf":1.0},"264":{"tf":1.0},"315":{"tf":1.4142135623730951},"318":{"tf":1.0},"377":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.4142135623730951},"577":{"tf":1.0},"588":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"836":{"tf":1.4142135623730951},"864":{"tf":1.0},"963":{"tf":1.0}},"f":{"df":1,"docs":{"136":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"915":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":25,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.0},"308":{"tf":1.0},"321":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"456":{"tf":1.7320508075688772},"46":{"tf":1.0},"484":{"tf":1.4142135623730951},"53":{"tf":1.0},"538":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.4142135623730951},"73":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"94":{"tf":1.0},"958":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"100":{"tf":1.0},"175":{"tf":1.0},"288":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"590":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.7320508075688772},"915":{"tf":1.0}}}},"t":{"df":8,"docs":{"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"715":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"130":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"567":{"tf":1.0},"674":{"tf":1.0},"78":{"tf":1.0},"788":{"tf":1.7320508075688772},"842":{"tf":1.0},"871":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":2.23606797749979},"958":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"42":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"671":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"#":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"'":{"df":4,"docs":{"139":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0}}},"(":{"df":1,"docs":{"117":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"275":{"tf":1.0},"298":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":15,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"326":{"tf":1.0},"864":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"765":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"297":{"tf":1.7320508075688772},"727":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"864":{"tf":1.0}}}}}},"df":292,"docs":{"100":{"tf":5.291502622129181},"101":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":2.449489742783178},"125":{"tf":5.0990195135927845},"126":{"tf":3.3166247903554},"127":{"tf":6.855654600401044},"128":{"tf":2.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":2.23606797749979},"131":{"tf":3.3166247903554},"132":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"134":{"tf":2.449489742783178},"135":{"tf":3.7416573867739413},"136":{"tf":3.3166247903554},"137":{"tf":2.6457513110645907},"138":{"tf":2.6457513110645907},"139":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":2.23606797749979},"145":{"tf":3.605551275463989},"146":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":2.449489742783178},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.23606797749979},"172":{"tf":1.0},"173":{"tf":2.6457513110645907},"174":{"tf":1.0},"175":{"tf":3.0},"176":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"184":{"tf":4.242640687119285},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":5.0},"231":{"tf":3.605551275463989},"233":{"tf":2.449489742783178},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":2.23606797749979},"243":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":3.4641016151377544},"258":{"tf":4.0},"259":{"tf":2.6457513110645907},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"264":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":2.6457513110645907},"276":{"tf":2.449489742783178},"278":{"tf":1.0},"289":{"tf":4.0},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":2.6457513110645907},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":4.58257569495584},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"315":{"tf":4.0},"316":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":2.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":2.0},"338":{"tf":2.0},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.7320508075688772},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.4142135623730951},"416":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"468":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"619":{"tf":1.0},"623":{"tf":1.0},"632":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"642":{"tf":1.0},"647":{"tf":2.0},"649":{"tf":2.6457513110645907},"651":{"tf":1.4142135623730951},"652":{"tf":4.898979485566356},"653":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":2.23606797749979},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"674":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":3.4641016151377544},"679":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":2.449489742783178},"698":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"704":{"tf":1.0},"709":{"tf":2.23606797749979},"710":{"tf":2.23606797749979},"711":{"tf":2.449489742783178},"715":{"tf":1.7320508075688772},"716":{"tf":1.0},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"723":{"tf":1.0},"727":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.4142135623730951},"730":{"tf":1.0},"734":{"tf":2.6457513110645907},"736":{"tf":1.0},"738":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":2.449489742783178},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"765":{"tf":1.0},"78":{"tf":2.23606797749979},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":5.291502622129181},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"806":{"tf":2.23606797749979},"807":{"tf":2.23606797749979},"809":{"tf":1.4142135623730951},"812":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":1.4142135623730951},"834":{"tf":2.449489742783178},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.7320508075688772},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"860":{"tf":1.4142135623730951},"861":{"tf":2.0},"862":{"tf":1.4142135623730951},"864":{"tf":2.23606797749979},"865":{"tf":2.23606797749979},"867":{"tf":1.7320508075688772},"869":{"tf":1.7320508075688772},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"875":{"tf":1.0},"876":{"tf":1.0},"878":{"tf":1.0},"880":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"907":{"tf":1.0},"913":{"tf":2.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.7320508075688772},"916":{"tf":2.0},"917":{"tf":1.4142135623730951},"919":{"tf":2.0},"920":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":2.8284271247461903},"930":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":2.23606797749979},"952":{"tf":1.0},"956":{"tf":2.449489742783178},"958":{"tf":1.0},"963":{"tf":1.0},"99":{"tf":2.23606797749979}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"696":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"649":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"652":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":20,"docs":{"131":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":2.449489742783178},"26":{"tf":1.0},"278":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":2.0},"665":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.7320508075688772},"864":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.4142135623730951}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":2,"docs":{"210":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"858":{"tf":1.0},"869":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"316":{"tf":1.0},"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":7,"docs":{"115":{"tf":1.0},"19":{"tf":2.0},"43":{"tf":1.0},"673":{"tf":1.0},"692":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"136":{"tf":1.0},"160":{"tf":1.0},"184":{"tf":1.4142135623730951},"218":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":2.0},"77":{"tf":1.0},"864":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"132":{"tf":1.0},"376":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"595":{"tf":1.0},"602":{"tf":1.4142135623730951},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"20":{"tf":1.0},"338":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"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":{},"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":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"138":{"tf":1.0},"147":{"tf":1.0},"26":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"683":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"969":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"652":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"636":{"tf":1.0}}}}}}}},"n":{"df":7,"docs":{"190":{"tf":1.0},"344":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":4,"docs":{"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"315":{"tf":1.0}}},"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}},"df":68,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":2.0},"136":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"34":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"356":{"tf":1.7320508075688772},"379":{"tf":1.0},"456":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"653":{"tf":1.0},"690":{"tf":1.0},"697":{"tf":1.0},"705":{"tf":1.0},"794":{"tf":1.0},"806":{"tf":1.0},"815":{"tf":1.0},"831":{"tf":1.0},"854":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.4142135623730951},"9":{"tf":1.0},"902":{"tf":1.4142135623730951},"913":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":2.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"936":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":3,"docs":{"923":{"tf":1.0},"928":{"tf":1.0},"938":{"tf":1.0}}}}}}}}}}},"y":{"df":3,"docs":{"100":{"tf":1.0},"79":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":30,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"124":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"422":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"514":{"tf":1.0},"537":{"tf":1.0},"582":{"tf":1.0},"65":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"85":{"tf":1.0},"860":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"136":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"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":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"13":{"tf":3.7416573867739413},"663":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.4142135623730951},"672":{"tf":1.0},"693":{"tf":2.449489742783178},"694":{"tf":1.4142135623730951},"695":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"721":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"786":{"tf":1.4142135623730951},"792":{"tf":1.7320508075688772},"793":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"924":{"tf":1.0},"951":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"203":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"63":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"700":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"924":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":12,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.6457513110645907},"191":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0}}},"p":{"df":3,"docs":{"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"254":{"tf":1.0},"289":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"401":{"tf":1.0},"412":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.7320508075688772},"223":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"270":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"70":{"tf":1.0},"741":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"867":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"924":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":9,"docs":{"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"150":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"750":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"190":{"tf":1.4142135623730951},"262":{"tf":1.0},"267":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"64":{"tf":1.0},"73":{"tf":1.0},"744":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"814":{"tf":1.0},"833":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"234":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":23,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"878":{"tf":1.0},"962":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{".":{"0":{"df":5,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"903":{"tf":1.0}}},"1":{"df":3,"docs":{"899":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"2":{"df":1,"docs":{"898":{"tf":1.0}}},"3":{"df":1,"docs":{"897":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"896":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"184":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"131":{"tf":2.449489742783178},"132":{"tf":1.0},"289":{"tf":1.0},"734":{"tf":1.4142135623730951},"804":{"tf":1.0}},"e":{"_":{"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":{"734":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"560":{"tf":1.0},"640":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"326":{"tf":1.0},"720":{"tf":1.0},"807":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"259":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":2.0},"317":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.4142135623730951},"596":{"tf":1.0},"607":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.7320508075688772},"960":{"tf":1.0},"968":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"285":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":2,"docs":{"720":{"tf":1.0},"757":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"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":{"782":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"782":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"757":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"912":{"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":1,"docs":{"252":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"130":{"tf":1.0},"136":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"67":{"tf":1.0},"845":{"tf":1.0},"951":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"967":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"667":{"tf":1.0},"864":{"tf":1.0}}}}},"s":{"df":9,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"198":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"17":{"tf":1.0},"203":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"692":{"tf":1.4142135623730951},"720":{"tf":1.0},"742":{"tf":1.0},"771":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"913":{"tf":1.0},"929":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"118":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"478":{"tf":1.0},"492":{"tf":1.0},"65":{"tf":1.0},"711":{"tf":1.4142135623730951},"752":{"tf":1.0},"791":{"tf":1.0},"796":{"tf":1.0},"806":{"tf":1.4142135623730951},"824":{"tf":1.0},"846":{"tf":1.0},"916":{"tf":1.0},"924":{"tf":1.0}},"s":{"df":8,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"254":{"tf":1.0},"654":{"tf":1.0},"782":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"52":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"962":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":17,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"217":{"tf":1.0},"834":{"tf":1.0},"864":{"tf":1.0},"880":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"324":{"tf":1.0},"425":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"563":{"tf":1.0},"671":{"tf":1.0},"814":{"tf":1.0},"837":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"862":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"104":{"tf":1.0},"680":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"276":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"704":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"402":{"tf":1.0},"619":{"tf":1.0}}}},"df":4,"docs":{"254":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.0},"912":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":2,"docs":{"254":{"tf":1.0},"675":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":45,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"155":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"263":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":2.8284271247461903},"316":{"tf":2.6457513110645907},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.7320508075688772},"439":{"tf":1.0},"441":{"tf":1.0},"459":{"tf":1.7320508075688772},"646":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"711":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"816":{"tf":1.0},"83":{"tf":1.0},"832":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"115":{"tf":1.7320508075688772},"330":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"804":{"tf":1.0},"830":{"tf":1.4142135623730951},"858":{"tf":1.0}},"t":{"'":{"df":7,"docs":{"224":{"tf":1.0},"227":{"tf":1.0},"355":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}},"df":54,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"132":{"tf":2.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.4142135623730951},"221":{"tf":1.0},"224":{"tf":1.7320508075688772},"226":{"tf":1.0},"268":{"tf":1.7320508075688772},"276":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"37":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"580":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"647":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"669":{"tf":2.0},"67":{"tf":1.0},"674":{"tf":1.0},"685":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"853":{"tf":1.0},"9":{"tf":2.6457513110645907},"908":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"132":{"tf":1.0},"289":{"tf":2.0},"533":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"252":{"tf":1.0},"653":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"83":{"tf":1.0},"958":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"834":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"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":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":60,"docs":{"0":{"tf":2.23606797749979},"10":{"tf":1.7320508075688772},"103":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":2.0},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"43":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.0},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"891":{"tf":1.0},"894":{"tf":1.0},"908":{"tf":1.0},"912":{"tf":1.4142135623730951},"915":{"tf":1.0},"92":{"tf":1.0},"958":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"956":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"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":{"317":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"840":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"223":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"802":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"749":{"tf":1.0},"777":{"tf":1.0},"929":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.4142135623730951},"208":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"568":{"tf":1.4142135623730951},"580":{"tf":1.0},"582":{"tf":1.0},"618":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"905":{"tf":1.0},"951":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"963":{"tf":1.0},"964":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"?":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"231":{"tf":1.0},"232":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"541":{"tf":1.0},"854":{"tf":1.0},"922":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":109,"docs":{"10":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.4142135623730951},"330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"37":{"tf":1.0},"379":{"tf":1.0},"39":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.4142135623730951},"48":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":2.0},"494":{"tf":1.7320508075688772},"505":{"tf":1.0},"514":{"tf":1.0},"517":{"tf":1.0},"57":{"tf":1.0},"574":{"tf":1.0},"585":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"653":{"tf":1.0},"66":{"tf":1.0},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"685":{"tf":1.7320508075688772},"686":{"tf":1.0},"692":{"tf":1.0},"701":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"793":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"9":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.4142135623730951},"953":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":3.3166247903554}}},"df":0,"docs":{},"s":{"df":1,"docs":{"698":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"590":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"697":{"tf":1.4142135623730951},"7":{"tf":1.0},"773":{"tf":1.4142135623730951},"784":{"tf":1.0},"842":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"782":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":12,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":2.0},"777":{"tf":1.0},"778":{"tf":1.0},"806":{"tf":1.0},"850":{"tf":1.0},"913":{"tf":1.0},"926":{"tf":1.4142135623730951},"951":{"tf":1.0},"958":{"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":{"60":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}},"s":{"df":30,"docs":{"124":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"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},"285":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"459":{"tf":1.0},"580":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"924":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"t":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"140":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"924":{"tf":1.0}}}},"w":{"d":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"22":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"658":{"tf":1.0}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"318":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"837":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"690":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"3":{"df":3,"docs":{"21":{"tf":1.7320508075688772},"673":{"tf":1.0},"690":{"tf":1.0}}},"df":119,"docs":{"0":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.7320508075688772},"146":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":2.8284271247461903},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":2.449489742783178},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":2.23606797749979},"30":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":2.23606797749979},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"390":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"470":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.0},"513":{"tf":1.0},"529":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"605":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.0},"658":{"tf":1.7320508075688772},"670":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":2.8284271247461903},"690":{"tf":1.0},"721":{"tf":1.0},"725":{"tf":1.4142135623730951},"727":{"tf":1.0},"729":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"743":{"tf":1.0},"751":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"790":{"tf":1.0},"799":{"tf":1.0},"803":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.7320508075688772},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"820":{"tf":1.4142135623730951},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"842":{"tf":2.0},"845":{"tf":1.0},"846":{"tf":2.0},"847":{"tf":1.0},"849":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.4142135623730951},"858":{"tf":2.0},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":2.0},"869":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.0},"921":{"tf":1.4142135623730951},"939":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}}}},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":11,"docs":{"0":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"48":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.4142135623730951},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.4142135623730951},"934":{"tf":1.0}}}},"r":{"df":1,"docs":{"233":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"0":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"661":{"tf":1.0},"9":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.7320508075688772},"933":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"40":{"tf":1.0},"50":{"tf":2.0},"903":{"tf":1.0},"912":{"tf":1.7320508075688772},"924":{"tf":1.7320508075688772},"926":{"tf":1.0},"927":{"tf":1.4142135623730951},"934":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"194":{"tf":1.0},"197":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":24,"docs":{"132":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.4142135623730951},"600":{"tf":2.449489742783178},"601":{"tf":2.0},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"606":{"tf":1.4142135623730951},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"734":{"tf":1.0},"791":{"tf":1.4142135623730951},"817":{"tf":1.0},"830":{"tf":1.4142135623730951},"937":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"617":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"938":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"865":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"136":{"tf":1.0},"157":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"231":{"tf":2.0},"256":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"765":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":35,"docs":{"188":{"tf":1.0},"205":{"tf":1.0},"376":{"tf":1.0},"389":{"tf":1.0},"399":{"tf":1.0},"410":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":1.0},"535":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"569":{"tf":1.0},"592":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.7320508075688772},"637":{"tf":1.0},"646":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"959":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"u":{"df":2,"docs":{"310":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":14,"docs":{"168":{"tf":1.0},"310":{"tf":1.0},"649":{"tf":1.0},"718":{"tf":1.0},"720":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.4142135623730951},"774":{"tf":1.0},"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"157":{"tf":1.0},"953":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"963":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"135":{"tf":2.0},"834":{"tf":1.0}}},"df":5,"docs":{"761":{"tf":1.0},"769":{"tf":1.0},"912":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":3.7416573867739413}}}}}},"r":{"2":{"0":{"df":1,"docs":{"883":{"tf":1.0}}},"5":{"c":{"df":1,"docs":{"745":{"tf":1.0}}},"df":1,"docs":{"762":{"tf":1.0}}},"6":{"c":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"204":{"tf":1.0},"823":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"878":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"288":{"tf":1.0},"734":{"tf":1.0},"774":{"tf":1.0},"842":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"528":{"tf":1.0}}}}}}},"df":1,"docs":{"376":{"tf":1.0}},"g":{"df":7,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"471":{"tf":1.4142135623730951},"52":{"tf":1.0},"582":{"tf":1.4142135623730951},"65":{"tf":1.0},"86":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"264":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"78":{"tf":1.0},"878":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"623":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}},"df":25,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"376":{"tf":1.4142135623730951},"523":{"tf":1.0},"618":{"tf":1.7320508075688772},"619":{"tf":1.0},"621":{"tf":2.23606797749979},"623":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"626":{"tf":2.23606797749979},"736":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"804":{"tf":1.0},"836":{"tf":1.0},"846":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"929":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"590":{"tf":1.0},"592":{"tf":1.0}},"n":{"df":1,"docs":{"752":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"264":{"tf":1.0},"460":{"tf":1.0},"803":{"tf":1.0}}},"y":{"df":1,"docs":{"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"205":{"tf":1.0},"289":{"tf":1.0},"344":{"tf":1.0},"570":{"tf":1.0},"630":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"85":{"tf":1.0},"867":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"254":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"2":{"tf":1.0},"225":{"tf":1.0},"340":{"tf":1.0},"807":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"tf":1.0}}}},"i":{"df":2,"docs":{"115":{"tf":1.0},"254":{"tf":1.0}}},"m":{"df":1,"docs":{"912":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":13,"docs":{"184":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"248":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.0},"693":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"289":{"tf":1.0},"673":{"tf":1.0},"680":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"752":{"tf":1.0},"840":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.6457513110645907},"184":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":2.6457513110645907},"297":{"tf":1.0},"298":{"tf":2.23606797749979},"649":{"tf":1.0},"652":{"tf":3.3166247903554},"669":{"tf":1.0},"685":{"tf":1.0},"752":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":2.0},"834":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.7320508075688772},"865":{"tf":2.0},"914":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"134":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"523":{"tf":1.0},"578":{"tf":1.7320508075688772},"77":{"tf":1.0},"951":{"tf":1.0},"98":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"858":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"103":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"21":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"265":{"tf":1.0},"454":{"tf":1.0},"64":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"678":{"tf":1.0},"776":{"tf":1.0},"801":{"tf":1.0},"82":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"563":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":250,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":2.449489742783178},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.7320508075688772},"213":{"tf":1.0},"258":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":2.23606797749979},"376":{"tf":4.242640687119285},"377":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":2.23606797749979},"395":{"tf":1.0},"396":{"tf":2.23606797749979},"401":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"412":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":2.23606797749979},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"425":{"tf":3.7416573867739413},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":2.23606797749979},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":2.0},"478":{"tf":1.0},"480":{"tf":2.6457513110645907},"481":{"tf":2.23606797749979},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.7320508075688772},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.7320508075688772},"492":{"tf":1.7320508075688772},"493":{"tf":2.23606797749979},"494":{"tf":2.449489742783178},"496":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":2.23606797749979},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.7320508075688772},"507":{"tf":2.6457513110645907},"508":{"tf":2.449489742783178},"510":{"tf":1.0},"511":{"tf":1.0},"514":{"tf":1.7320508075688772},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":2.0},"519":{"tf":1.0},"520":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.7320508075688772},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":2.6457513110645907},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"537":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.0},"549":{"tf":1.7320508075688772},"550":{"tf":1.0},"551":{"tf":3.605551275463989},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.4142135623730951},"560":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.7320508075688772},"566":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.0},"575":{"tf":1.7320508075688772},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"583":{"tf":1.0},"584":{"tf":1.0},"585":{"tf":2.0},"586":{"tf":2.0},"588":{"tf":1.0},"589":{"tf":1.0},"593":{"tf":1.7320508075688772},"595":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":2.23606797749979},"606":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.7320508075688772},"611":{"tf":1.4142135623730951},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"629":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":2.449489742783178},"677":{"tf":1.4142135623730951},"679":{"tf":2.0},"680":{"tf":1.0},"71":{"tf":1.0},"711":{"tf":1.0},"718":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"761":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.7320508075688772},"776":{"tf":1.0},"78":{"tf":1.4142135623730951},"782":{"tf":1.0},"79":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"802":{"tf":1.0},"804":{"tf":1.7320508075688772},"807":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"87":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.4142135623730951},"895":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"92":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"937":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"956":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"854":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"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":1,"docs":{"834":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"184":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"254":{"tf":1.0},"640":{"tf":1.7320508075688772},"642":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"237":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"752":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.0},"294":{"tf":1.0},"84":{"tf":1.0},"865":{"tf":1.0}}},"df":0,"docs":{}}}},"df":7,"docs":{"17":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"322":{"tf":1.4142135623730951},"762":{"tf":1.0},"834":{"tf":1.0},"958":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"772":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"875":{"tf":1.0},"902":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"437":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":86,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.4142135623730951},"147":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.7320508075688772},"229":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"300":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"376":{"tf":1.0},"387":{"tf":1.7320508075688772},"390":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.7320508075688772},"411":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.7320508075688772},"432":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.7320508075688772},"453":{"tf":1.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.0},"486":{"tf":1.0},"488":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.7320508075688772},"536":{"tf":1.0},"545":{"tf":1.7320508075688772},"556":{"tf":1.7320508075688772},"559":{"tf":1.0},"567":{"tf":1.7320508075688772},"571":{"tf":1.0},"581":{"tf":1.0},"594":{"tf":1.0},"602":{"tf":1.7320508075688772},"605":{"tf":1.0},"613":{"tf":1.7320508075688772},"617":{"tf":1.0},"625":{"tf":1.7320508075688772},"628":{"tf":1.0},"636":{"tf":1.7320508075688772},"645":{"tf":1.7320508075688772},"654":{"tf":1.0},"659":{"tf":1.0},"769":{"tf":1.0},"8":{"tf":1.0},"811":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"924":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":2.0},"968":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"875":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"408":{"tf":1.0},"429":{"tf":1.0},"602":{"tf":1.0}}}}}}}},"df":1,"docs":{"408":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"460":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}},"x":{"df":3,"docs":{"364":{"tf":1.0},"371":{"tf":1.0},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"232":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"651":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"715":{"tf":1.0},"752":{"tf":1.0},"884":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"307":{"tf":1.0}}}}}}}}}}}}},"p":{"df":2,"docs":{"307":{"tf":1.0},"338":{"tf":1.0}}}}},"r":{"df":4,"docs":{"289":{"tf":1.0},"678":{"tf":1.0},"812":{"tf":1.0},"833":{"tf":1.4142135623730951}},"i":{"df":44,"docs":{"108":{"tf":1.0},"138":{"tf":1.4142135623730951},"20":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"387":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"499":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"708":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"750":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"567":{"tf":1.0},"680":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"239":{"tf":1.0},"254":{"tf":1.0},"273":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"391":{"tf":1.0},"412":{"tf":1.0},"488":{"tf":1.0},"515":{"tf":1.0},"583":{"tf":1.0},"606":{"tf":1.0},"709":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":2.23606797749979},"99":{"tf":1.0}}},"x":{"df":3,"docs":{"33":{"tf":1.0},"762":{"tf":1.0},"851":{"tf":1.0}}}},"df":9,"docs":{"142":{"tf":1.0},"170":{"tf":1.0},"376":{"tf":1.4142135623730951},"560":{"tf":1.0},"618":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":65,"docs":{"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"315":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.0},"781":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"846":{"tf":1.0},"855":{"tf":1.0},"86":{"tf":1.0},"868":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"888":{"tf":1.0},"893":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"9":{"tf":1.0},"901":{"tf":1.0},"912":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":7,"docs":{"259":{"tf":1.0},"288":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"326":{"tf":1.0},"647":{"tf":1.0},"665":{"tf":1.0},"858":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"184":{"tf":1.0},"754":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"142":{"tf":1.4142135623730951},"309":{"tf":1.0},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"838":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"203":{"tf":1.0},"254":{"tf":1.4142135623730951},"330":{"tf":1.0},"796":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":7,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"206":{"tf":1.0},"254":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0}}},"v":{"df":44,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"329":{"tf":1.0},"398":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"499":{"tf":1.7320508075688772},"522":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"614":{"tf":1.7320508075688772},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"744":{"tf":1.0},"752":{"tf":2.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":2.23606797749979},"771":{"tf":1.0},"772":{"tf":1.0},"779":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"830":{"tf":1.0},"833":{"tf":1.4142135623730951},"838":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.4142135623730951},"882":{"tf":1.0},"891":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0},"947":{"tf":1.0},"952":{"tf":1.0},"98":{"tf":2.23606797749979}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"743":{"tf":1.0},"754":{"tf":1.0}},"l":{"@":{"0":{".":{"5":{".":{"3":{"df":1,"docs":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"288":{"tf":1.0},"807":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0},"838":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"254":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"673":{"tf":1.0},"725":{"tf":1.0},"732":{"tf":1.0},"799":{"tf":2.0},"854":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":1,"docs":{"127":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":52,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"315":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"346":{"tf":1.0},"381":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":2.449489742783178},"440":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"532":{"tf":1.0},"591":{"tf":1.0},"6":{"tf":1.0},"614":{"tf":1.0},"635":{"tf":2.23606797749979},"742":{"tf":1.0},"773":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"857":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.4142135623730951},"918":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"958":{"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":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"590":{"tf":1.0},"621":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"762":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"129":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"212":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"295":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.4142135623730951},"363":{"tf":1.0},"370":{"tf":1.0},"379":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"698":{"tf":1.4142135623730951},"701":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"802":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"861":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"9":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.4142135623730951},"919":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"956":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":130,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.7320508075688772},"264":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"302":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":2.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"340":{"tf":1.0},"385":{"tf":1.0},"39":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.7320508075688772},"600":{"tf":1.0},"603":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.4142135623730951},"62":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":2.449489742783178},"677":{"tf":1.7320508075688772},"678":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"76":{"tf":1.4142135623730951},"761":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"801":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.0},"811":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"837":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"965":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"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":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"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":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"636":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"871":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"224":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.4142135623730951},"371":{"tf":1.0}}}},"t":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"289":{"tf":1.0},"318":{"tf":3.1622776601683795},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"402":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"814":{"tf":1.0},"860":{"tf":1.0},"872":{"tf":1.0},"88":{"tf":1.0},"948":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"456":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"557":{"tf":1.7320508075688772},"76":{"tf":2.0},"811":{"tf":1.0},"950":{"tf":1.4142135623730951},"97":{"tf":2.0}}}},"v":{"df":2,"docs":{"34":{"tf":1.0},"912":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"_":{"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":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"315":{"tf":1.4142135623730951},"567":{"tf":1.0},"655":{"tf":1.0},"772":{"tf":1.4142135623730951},"838":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"127":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"326":{"tf":1.0},"655":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"853":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"100":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":3.0},"289":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"560":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":1.7320508075688772},"932":{"tf":1.0},"99":{"tf":1.0}}}}},"df":4,"docs":{"254":{"tf":1.0},"276":{"tf":1.0},"916":{"tf":1.0},"966":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"796":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"170":{"tf":1.0},"259":{"tf":1.0},"303":{"tf":1.0},"747":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"190":{"tf":1.0},"258":{"tf":1.7320508075688772},"263":{"tf":1.0},"297":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"801":{"tf":1.0},"839":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"919":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":4,"docs":{"203":{"tf":1.0},"233":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"218":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"590":{"tf":1.0},"592":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"162":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":2.0},"849":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":29,"docs":{"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"234":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"88":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":47,"docs":{"134":{"tf":1.0},"149":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"459":{"tf":1.0},"464":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"490":{"tf":1.0},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.7320508075688772},"565":{"tf":1.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"692":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":2.449489742783178},"801":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"858":{"tf":1.0},"919":{"tf":1.0},"951":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":13,"docs":{"103":{"tf":1.4142135623730951},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"670":{"tf":1.0},"70":{"tf":1.0},"780":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.4142135623730951},"743":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"138":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"677":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"862":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"745":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"62":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"79":{"tf":1.0},"804":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"958":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"v":{"'":{"df":2,"docs":{"803":{"tf":1.0},"818":{"tf":1.0}}},"df":9,"docs":{"270":{"tf":1.0},"741":{"tf":1.4142135623730951},"753":{"tf":1.0},"754":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"880":{"tf":1.0}}}},"l":{"b":{"df":16,"docs":{"736":{"tf":1.0},"788":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.7320508075688772},"818":{"tf":1.4142135623730951},"820":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}},"l":{"df":1,"docs":{"190":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":3.872983346207417},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":3.0}}}}}}},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"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":{"667":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"318":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.0},"915":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"13":{"tf":2.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"77":{"tf":1.0},"881":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"16":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.4142135623730951},"720":{"tf":1.0},"867":{"tf":1.0}}}},"n":{"df":83,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"119":{"tf":1.4142135623730951},"126":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"136":{"tf":1.0},"142":{"tf":2.6457513110645907},"149":{"tf":1.0},"17":{"tf":2.6457513110645907},"173":{"tf":1.0},"175":{"tf":2.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":2.449489742783178},"203":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":2.0},"32":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"457":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"60":{"tf":1.0},"652":{"tf":2.6457513110645907},"655":{"tf":1.0},"658":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.0},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"802":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":1.0},"83":{"tf":1.0},"834":{"tf":1.4142135623730951},"839":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.7320508075688772},"915":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":16,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"20":{"tf":1.4142135623730951},"206":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"765":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"858":{"tf":1.0},"921":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"4":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":1,"docs":{"958":{"tf":1.0}}},"df":130,"docs":{"0":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"559":{"tf":1.0},"565":{"tf":1.0},"571":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.0},"617":{"tf":1.0},"623":{"tf":1.0},"628":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"653":{"tf":1.7320508075688772},"654":{"tf":1.4142135623730951},"655":{"tf":1.7320508075688772},"715":{"tf":1.0},"716":{"tf":1.0},"718":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.0},"740":{"tf":1.4142135623730951},"743":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.4142135623730951},"757":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.0},"809":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"837":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"881":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"958":{"tf":2.0},"969":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":13,"docs":{"258":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"716":{"tf":1.4142135623730951},"76":{"tf":1.0},"765":{"tf":1.4142135623730951},"803":{"tf":1.0},"818":{"tf":1.4142135623730951},"920":{"tf":1.0},"97":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"849":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":36,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"454":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":2.0},"626":{"tf":1.0},"668":{"tf":1.0},"678":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"823":{"tf":1.4142135623730951},"840":{"tf":1.0},"916":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":31,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.23606797749979},"254":{"tf":2.23606797749979},"31":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":2.0},"476":{"tf":2.6457513110645907},"493":{"tf":2.449489742783178},"494":{"tf":2.6457513110645907},"496":{"tf":1.0},"505":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"678":{"tf":1.0},"803":{"tf":1.0},"894":{"tf":1.0},"912":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"17":{"tf":1.0},"958":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"621":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"254":{"tf":1.0},"289":{"tf":2.0},"710":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"184":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0}}}},"n":{"df":6,"docs":{"135":{"tf":1.4142135623730951},"233":{"tf":1.0},"734":{"tf":1.0},"831":{"tf":1.4142135623730951},"913":{"tf":1.0},"929":{"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":6,"docs":{"175":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":33,"docs":{"127":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":3.1622776601683795},"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"275":{"tf":2.0},"297":{"tf":2.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"321":{"tf":1.0},"619":{"tf":1.0},"647":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"710":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"723":{"tf":1.0},"727":{"tf":1.0},"755":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"867":{"tf":1.0},"876":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":20,"docs":{"108":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"290":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"63":{"tf":1.0},"644":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"697":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"87":{"tf":1.0},"935":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":7,"docs":{"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772},"541":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"680":{"tf":1.0},"697":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}},"r":{"'":{"df":1,"docs":{"60":{"tf":1.0}}},".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"/":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"@":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"276":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"184":{"tf":1.0},"254":{"tf":1.7320508075688772},"289":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"17":{"tf":2.449489742783178},"20":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":2.23606797749979},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"500":{"tf":1.0},"592":{"tf":1.0},"663":{"tf":1.0},"671":{"tf":1.4142135623730951},"682":{"tf":1.0},"685":{"tf":1.0},"769":{"tf":1.0},"774":{"tf":1.0},"852":{"tf":1.0},"879":{"tf":1.0},"912":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"232":{"tf":1.0},"289":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":8,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"318":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"=":{"2":{"5":{"df":1,"docs":{"835":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"682":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"774":{"tf":1.0},"852":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":175,"docs":{"0":{"tf":2.6457513110645907},"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":2.449489742783178},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"22":{"tf":3.1622776601683795},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":2.0},"315":{"tf":2.6457513110645907},"316":{"tf":2.6457513110645907},"317":{"tf":1.0},"318":{"tf":3.7416573867739413},"32":{"tf":3.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.7320508075688772},"338":{"tf":1.0},"340":{"tf":2.0},"349":{"tf":2.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"398":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"522":{"tf":1.4142135623730951},"538":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"626":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":2.6457513110645907},"654":{"tf":1.7320508075688772},"655":{"tf":1.0},"656":{"tf":1.4142135623730951},"657":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"660":{"tf":2.23606797749979},"661":{"tf":1.0},"662":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"67":{"tf":1.0},"671":{"tf":1.4142135623730951},"674":{"tf":1.4142135623730951},"675":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":2.449489742783178},"692":{"tf":1.0},"693":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.4142135623730951},"706":{"tf":1.0},"709":{"tf":1.0},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"731":{"tf":1.0},"735":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"804":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"83":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"85":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":2.0},"966":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":4,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"140":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}},"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}},"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":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"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":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"tf":1.0}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"540":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"448":{"tf":1.0}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"544":{"tf":1.4142135623730951}}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"543":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"428":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.0},"138":{"tf":2.23606797749979},"140":{"tf":2.449489742783178},"254":{"tf":2.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"376":{"tf":1.0},"429":{"tf":1.0},"443":{"tf":1.0},"450":{"tf":1.4142135623730951},"452":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"548":{"tf":1.4142135623730951},"652":{"tf":1.7320508075688772},"665":{"tf":1.0},"73":{"tf":1.0},"782":{"tf":1.0},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"858":{"tf":1.0}}}}},"df":25,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"286":{"tf":1.0},"315":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"861":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":45,"docs":{"1":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"138":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"208":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.7320508075688772},"280":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":2.0},"326":{"tf":1.0},"330":{"tf":1.0},"4":{"tf":1.4142135623730951},"427":{"tf":1.0},"5":{"tf":1.4142135623730951},"538":{"tf":1.0},"678":{"tf":1.0},"73":{"tf":1.0},"730":{"tf":1.0},"865":{"tf":1.4142135623730951},"94":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":2.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"965":{"tf":1.7320508075688772},"968":{"tf":1.4142135623730951},"969":{"tf":2.23606797749979}},"’":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":97,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":2.0},"259":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"330":{"tf":1.0},"356":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"501":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"549":{"tf":1.4142135623730951},"56":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"572":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"630":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"672":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"709":{"tf":1.0},"772":{"tf":1.7320508075688772},"79":{"tf":1.0},"799":{"tf":2.23606797749979},"83":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.4142135623730951},"958":{"tf":1.0}},"m":{"df":2,"docs":{"109":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":4,"docs":{"234":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"377":{"tf":1.0}}}},"g":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"157":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":3.3166247903554},"289":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"73":{"tf":1.0},"890":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"473":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"144":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"298":{"tf":1.0},"649":{"tf":1.0},"872":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"_":{"df":0,"docs":{},"p":{"df":31,"docs":{"139":{"tf":1.0},"140":{"tf":2.23606797749979},"160":{"tf":1.4142135623730951},"259":{"tf":1.0},"289":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"642":{"tf":1.0},"677":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":66,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":2.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"145":{"tf":1.0},"160":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"203":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"258":{"tf":2.0},"259":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"330":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.0},"560":{"tf":1.0},"6":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"716":{"tf":1.0},"747":{"tf":1.0},"755":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"807":{"tf":1.0},"82":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"867":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":1.0}},"p":{"df":2,"docs":{"224":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":6,"docs":{"103":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"289":{"tf":2.0},"546":{"tf":1.0},"958":{"tf":1.0}}}}},"t":{"df":88,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":2.0},"218":{"tf":1.0},"224":{"tf":2.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"549":{"tf":1.0},"561":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"590":{"tf":1.4142135623730951},"591":{"tf":1.0},"614":{"tf":1.0},"618":{"tf":1.0},"632":{"tf":1.0},"651":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"716":{"tf":1.0},"727":{"tf":1.4142135623730951},"73":{"tf":1.0},"752":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"806":{"tf":2.0},"83":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.7320508075688772},"865":{"tf":1.0},"873":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.0},"231":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.4142135623730951},"653":{"tf":1.0},"692":{"tf":1.0},"775":{"tf":1.0},"79":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"770":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"570":{"tf":1.0},"644":{"tf":1.0},"697":{"tf":1.0},"755":{"tf":1.0},"770":{"tf":1.0}}}},"df":5,"docs":{"34":{"tf":1.0},"376":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0}}},"v":{"df":11,"docs":{"199":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"62":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"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":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":39,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"212":{"tf":2.0},"213":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"66":{"tf":1.0},"674":{"tf":1.0},"727":{"tf":1.7320508075688772},"74":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.4142135623730951},"922":{"tf":1.0},"95":{"tf":1.0}},"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":{"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":8,"docs":{"267":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"54":{"tf":1.0},"687":{"tf":1.0},"704":{"tf":1.4142135623730951},"721":{"tf":1.0},"736":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":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":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"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":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"895":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"241":{"tf":1.0},"289":{"tf":1.0},"454":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"890":{"tf":1.0},"895":{"tf":1.0},"905":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"905":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"803":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"126":{"tf":1.0},"802":{"tf":1.0},"914":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"366":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":145,"docs":{"100":{"tf":2.8284271247461903},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"121":{"tf":1.0},"124":{"tf":1.7320508075688772},"128":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":2.6457513110645907},"136":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"173":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":2.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":2.6457513110645907},"316":{"tf":2.23606797749979},"318":{"tf":1.0},"32":{"tf":1.0},"326":{"tf":1.4142135623730951},"330":{"tf":2.0},"348":{"tf":1.0},"35":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"373":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.0},"377":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"402":{"tf":1.0},"41":{"tf":1.0},"425":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"457":{"tf":1.0},"460":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":3.3166247903554},"540":{"tf":1.4142135623730951},"541":{"tf":1.0},"551":{"tf":1.7320508075688772},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"598":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"619":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"649":{"tf":1.4142135623730951},"651":{"tf":1.0},"653":{"tf":1.4142135623730951},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"665":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"676":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"690":{"tf":1.7320508075688772},"691":{"tf":1.0},"710":{"tf":1.0},"715":{"tf":1.4142135623730951},"72":{"tf":1.0},"720":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.8284271247461903},"801":{"tf":1.4142135623730951},"804":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.4142135623730951},"84":{"tf":1.0},"842":{"tf":1.0},"85":{"tf":1.0},"858":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"921":{"tf":1.0},"923":{"tf":1.4142135623730951},"925":{"tf":1.0},"927":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.0},"328":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.0},"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"727":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"462":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"460":{"tf":1.0},"938":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"373":{"tf":1.0},"773":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"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":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"919":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":9,"docs":{"12":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":2.0},"318":{"tf":1.4142135623730951},"43":{"tf":1.0},"673":{"tf":1.0},"676":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"307":{"tf":1.0},"715":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"858":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"541":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"225":{"tf":1.0},"265":{"tf":1.0},"626":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"772":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"431":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"969":{"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":8,"docs":{"103":{"tf":1.0},"128":{"tf":1.0},"192":{"tf":1.0},"626":{"tf":1.4142135623730951},"738":{"tf":1.0},"82":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"11":{"tf":1.0},"665":{"tf":1.0},"751":{"tf":1.0},"775":{"tf":1.0},"804":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"958":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}}}},"df":2,"docs":{"655":{"tf":1.0},"658":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":13,"docs":{"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"151":{"tf":1.0},"184":{"tf":1.0},"218":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"678":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"939":{"tf":1.0},"969":{"tf":2.449489742783178}},"n":{"df":5,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":24,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"184":{"tf":1.0},"342":{"tf":1.4142135623730951},"715":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.0},"739":{"tf":1.4142135623730951},"743":{"tf":1.0},"747":{"tf":1.4142135623730951},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"806":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.4142135623730951},"931":{"tf":1.0}}}}}},"df":5,"docs":{"184":{"tf":1.0},"22":{"tf":1.0},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"814":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"268":{"tf":1.0},"318":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"854":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"762":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"df":7,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"494":{"tf":1.7320508075688772},"621":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"258":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"734":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"318":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"103":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"381":{"tf":1.0},"674":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"900":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"i":{"df":10,"docs":{"142":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"677":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"503":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"473":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":33,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.4142135623730951},"494":{"tf":1.0},"549":{"tf":1.0},"568":{"tf":1.0},"595":{"tf":1.0},"629":{"tf":1.0},"70":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"78":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"852":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"348":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"129":{"tf":1.0},"135":{"tf":2.8284271247461903},"190":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"326":{"tf":1.0},"376":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"510":{"tf":1.0},"511":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"693":{"tf":1.0},"720":{"tf":1.0},"818":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"916":{"tf":1.4142135623730951},"929":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"232":{"tf":1.0},"306":{"tf":1.0},"782":{"tf":1.0},"799":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"456":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"830":{"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":2,"docs":{"121":{"tf":1.0},"864":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"568":{"tf":1.0},"626":{"tf":1.0},"816":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"145":{"tf":1.0},"289":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"267":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"557":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":2.23606797749979},"823":{"tf":1.0},"834":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"480":{"tf":2.23606797749979},"496":{"tf":1.0},"507":{"tf":2.23606797749979},"577":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"642":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"s":{"df":2,"docs":{"565":{"tf":1.4142135623730951},"642":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"480":{"tf":2.23606797749979},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"577":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"1":{"9":{"df":1,"docs":{"577":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"[":{"0":{"df":1,"docs":{"565":{"tf":2.0}}},"df":0,"docs":{}},"df":7,"docs":{"112":{"tf":2.23606797749979},"480":{"tf":3.3166247903554},"496":{"tf":1.4142135623730951},"507":{"tf":3.4641016151377544},"565":{"tf":2.449489742783178},"577":{"tf":2.449489742783178},"642":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":3.872983346207417}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"289":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"815":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"112":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"1":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"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":{},"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":{},"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"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":{"563":{"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":0,"docs":{},"e":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}},"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":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"799":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"190":{"tf":1.0},"376":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"596":{"tf":1.0},"618":{"tf":1.4142135623730951},"67":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"692":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"915":{"tf":1.0},"969":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"195":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.4142135623730951},"308":{"tf":1.0},"316":{"tf":1.0},"867":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"878":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":28,"docs":{"118":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"373":{"tf":1.0},"493":{"tf":1.0},"567":{"tf":1.0},"7":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"77":{"tf":1.0},"801":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"98":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"563":{"tf":1.7320508075688772},"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"$":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"683":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"686":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"224":{"tf":1.0},"231":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"264":{"tf":1.4142135623730951},"580":{"tf":1.0},"591":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"861":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"538":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":36,"docs":{"120":{"tf":1.0},"140":{"tf":1.0},"224":{"tf":1.4142135623730951},"252":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.7320508075688772},"414":{"tf":2.0},"419":{"tf":1.7320508075688772},"435":{"tf":2.0},"440":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.7320508075688772},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"616":{"tf":1.4142135623730951},"630":{"tf":1.0},"65":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":115,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"367":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.4142135623730951},"406":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"488":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"529":{"tf":1.7320508075688772},"531":{"tf":1.0},"538":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.0},"565":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.4142135623730951},"632":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"690":{"tf":1.0},"693":{"tf":1.4142135623730951},"697":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"776":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"858":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"926":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.0},"951":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.7320508075688772},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":66,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.4142135623730951},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"448":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.7320508075688772},"524":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"670":{"tf":1.0},"76":{"tf":1.4142135623730951},"789":{"tf":1.0},"823":{"tf":1.0},"839":{"tf":1.0},"858":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.4142135623730951},"466":{"tf":1.0},"484":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"793":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"590":{"tf":1.0}},"s":{"_":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"590":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"l":{".":{"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"925":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"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":{},"r":{"df":1,"docs":{"27":{"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":0,"docs":{},"{":{"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":{"17":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"698":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"909":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"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":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"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":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{")":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"417":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"752":{"tf":1.0},"881":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"646":{"tf":1.0},"65":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"376":{"tf":1.0},"439":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}},"r":{"d":{"df":10,"docs":{"110":{"tf":2.0},"231":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"572":{"tf":1.0},"62":{"tf":1.0},"823":{"tf":1.0},"837":{"tf":1.0},"89":{"tf":2.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"179":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"7":{"/":{"1":{"5":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"/":{"0":{"4":{":":{"3":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":55,"docs":{"0":{"tf":2.8284271247461903},"100":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":2.0},"2":{"tf":1.0},"203":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"241":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"269":{"tf":1.0},"285":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.7320508075688772},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"478":{"tf":1.4142135623730951},"490":{"tf":2.0},"492":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.0},"618":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"711":{"tf":1.4142135623730951},"736":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"818":{"tf":1.0},"853":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"880":{"tf":1.0},"969":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":38,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"146":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"678":{"tf":1.0},"752":{"tf":1.4142135623730951},"760":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"807":{"tf":1.4142135623730951},"818":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.0},"876":{"tf":1.0},"9":{"tf":1.0},"929":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"203":{"tf":2.8284271247461903},"32":{"tf":1.0},"324":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"674":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"76":{"tf":1.0},"838":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0},"923":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.0},"678":{"tf":1.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":11,"docs":{"377":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"664":{"tf":1.0},"684":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"585":{"tf":2.449489742783178},"586":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":7,"docs":{"289":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.7320508075688772},"342":{"tf":1.0},"742":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"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":{"_":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"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":{"_":{"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"d":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"0":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"565":{"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":{},"m":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"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":2,"docs":{"844":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":36,"docs":{"10":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"14":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":2.0},"195":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"23":{"tf":2.0},"247":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":2.0},"290":{"tf":1.0},"299":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":2.0},"441":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":2.0},"64":{"tf":1.0},"677":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.0},"701":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"924":{"tf":1.0},"926":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":34,"docs":{"118":{"tf":1.4142135623730951},"127":{"tf":1.0},"136":{"tf":1.0},"19":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"37":{"tf":1.0},"393":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"46":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"694":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.4142135623730951},"805":{"tf":1.0},"905":{"tf":1.0},"912":{"tf":1.0},"923":{"tf":1.4142135623730951},"969":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":17,"docs":{"149":{"tf":1.0},"203":{"tf":1.0},"454":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"459":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.7320508075688772},"716":{"tf":1.0},"77":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"921":{"tf":1.0},"969":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"129":{"tf":1.0},"135":{"tf":2.449489742783178},"17":{"tf":1.0},"264":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"678":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"789":{"tf":1.0},"834":{"tf":1.0},"909":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":52,"docs":{"114":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"464":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"565":{"tf":1.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.0},"74":{"tf":1.0},"752":{"tf":1.0},"837":{"tf":1.0},"842":{"tf":1.0},"882":{"tf":1.0},"905":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"951":{"tf":1.0}}},"i":{"df":2,"docs":{"289":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"340":{"tf":1.0},"674":{"tf":1.0}}}}}}},"df":1,"docs":{"752":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"136":{"tf":1.0},"234":{"tf":1.4142135623730951},"297":{"tf":1.0},"698":{"tf":1.0},"923":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"964":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"862":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":79,"docs":{"120":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":3.605551275463989},"136":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"170":{"tf":1.4142135623730951},"198":{"tf":1.0},"224":{"tf":2.0},"231":{"tf":1.0},"285":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"347":{"tf":2.449489742783178},"376":{"tf":2.8284271247461903},"377":{"tf":1.4142135623730951},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"425":{"tf":2.449489742783178},"427":{"tf":2.6457513110645907},"428":{"tf":2.6457513110645907},"429":{"tf":1.4142135623730951},"433":{"tf":1.7320508075688772},"435":{"tf":2.449489742783178},"437":{"tf":1.4142135623730951},"438":{"tf":1.0},"443":{"tf":2.0},"445":{"tf":2.6457513110645907},"446":{"tf":2.6457513110645907},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":1.0},"529":{"tf":1.4142135623730951},"532":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"554":{"tf":1.7320508075688772},"560":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":2.23606797749979},"580":{"tf":1.4142135623730951},"603":{"tf":1.0},"614":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.4142135623730951},"634":{"tf":1.0},"635":{"tf":2.23606797749979},"644":{"tf":1.0},"645":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"697":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":2.449489742783178},"738":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"78":{"tf":1.0},"799":{"tf":1.0},"813":{"tf":1.0},"818":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.7320508075688772},"842":{"tf":1.0},"862":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"738":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"442":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"301":{"tf":1.0},"340":{"tf":1.0},"376":{"tf":1.0},"638":{"tf":1.0},"640":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"645":{"tf":1.0},"87":{"tf":1.0},"956":{"tf":1.0},"964":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"816":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"226":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"677":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"377":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"135":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"312":{"tf":1.0},"354":{"tf":1.0},"561":{"tf":1.0},"648":{"tf":1.0},"652":{"tf":1.0},"66":{"tf":1.7320508075688772},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"752":{"tf":1.0},"864":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"929":{"tf":1.0},"956":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"184":{"tf":1.0},"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"801":{"tf":1.0}}}},"df":53,"docs":{"100":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"561":{"tf":1.0},"60":{"tf":1.0},"647":{"tf":1.4142135623730951},"649":{"tf":2.449489742783178},"652":{"tf":3.4641016151377544},"710":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"801":{"tf":1.0},"804":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"917":{"tf":1.0},"919":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"22":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"847":{"tf":1.0},"859":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":15,"docs":{"100":{"tf":1.7320508075688772},"142":{"tf":1.0},"224":{"tf":1.0},"243":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"560":{"tf":1.0},"736":{"tf":1.0},"79":{"tf":1.7320508075688772}}}},"t":{"df":8,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0},"715":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"62":{"tf":1.0},"710":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"698":{"tf":1.0},"913":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":40,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":3.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"443":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"63":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"66":{"tf":1.0},"692":{"tf":1.0},"78":{"tf":1.4142135623730951},"811":{"tf":1.0},"840":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"379":{"tf":1.0},"838":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"145":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":1.0},"117":{"tf":1.0},"318":{"tf":1.0}}}},"m":{"df":7,"docs":{"412":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.6457513110645907},"519":{"tf":1.4142135623730951},"577":{"tf":2.23606797749979},"588":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"254":{"tf":1.4142135623730951},"345":{"tf":1.0},"968":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"315":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"830":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"492":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":85,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"34":{"tf":1.4142135623730951},"422":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"572":{"tf":1.0},"62":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"671":{"tf":1.0},"697":{"tf":1.0},"705":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"730":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0},"776":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0},"812":{"tf":1.0},"834":{"tf":2.0},"835":{"tf":1.0},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"846":{"tf":1.0},"85":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"925":{"tf":1.0},"938":{"tf":1.4142135623730951},"947":{"tf":1.0},"950":{"tf":2.0},"951":{"tf":1.0},"958":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"100":{"tf":1.0},"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"288":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.4142135623730951},"443":{"tf":1.0},"538":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"847":{"tf":1.0},"86":{"tf":1.4142135623730951},"882":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"540":{"tf":1.0}}},"df":61,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.7320508075688772},"161":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.0},"223":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"354":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"513":{"tf":1.0},"536":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"605":{"tf":1.0},"653":{"tf":1.0},"657":{"tf":1.4142135623730951},"681":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"738":{"tf":1.4142135623730951},"760":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.7320508075688772},"798":{"tf":1.0},"799":{"tf":1.0},"804":{"tf":1.0},"818":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"969":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"224":{"tf":1.0},"324":{"tf":1.0},"735":{"tf":1.0},"772":{"tf":1.0},"793":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"844":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"289":{"tf":1.0},"692":{"tf":1.0},"907":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"759":{"tf":1.0},"900":{"tf":1.0},"909":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"105":{"tf":1.0},"115":{"tf":1.7320508075688772},"132":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"184":{"tf":1.0},"234":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"735":{"tf":1.0},"78":{"tf":1.0},"791":{"tf":1.0},"804":{"tf":1.0},"817":{"tf":1.0},"84":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"17":{"tf":1.0},"198":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"289":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"960":{"tf":1.4142135623730951},"963":{"tf":1.0},"964":{"tf":1.7320508075688772},"969":{"tf":4.58257569495584}},"l":{"df":7,"docs":{"103":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{},"g":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}}}},"df":47,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"224":{"tf":3.1622776601683795},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":2.0},"297":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":2.0},"304":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.7320508075688772},"359":{"tf":1.0},"363":{"tf":2.23606797749979},"364":{"tf":1.0},"366":{"tf":2.449489742783178},"367":{"tf":1.7320508075688772},"369":{"tf":2.0},"370":{"tf":2.6457513110645907},"371":{"tf":2.0},"373":{"tf":4.123105625617661},"375":{"tf":2.0},"801":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"837":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"843":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"933":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"969":{"tf":1.0}},"p":{"df":1,"docs":{"224":{"tf":1.0}}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"17":{"tf":1.0},"279":{"tf":1.4142135623730951},"299":{"tf":1.0},"300":{"tf":1.0},"783":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":24,"docs":{"117":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"44":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"592":{"tf":1.0},"644":{"tf":1.4142135623730951},"674":{"tf":1.0},"675":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.0},"805":{"tf":1.0},"830":{"tf":1.0},"864":{"tf":1.0},"884":{"tf":1.0},"97":{"tf":1.0}},"n":{"df":14,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"83":{"tf":1.0},"847":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}},"r":{"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":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"756":{"tf":1.0},"762":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"110":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"34":{"tf":1.0},"342":{"tf":1.4142135623730951},"653":{"tf":1.0},"667":{"tf":1.0},"731":{"tf":1.0},"862":{"tf":1.0},"874":{"tf":1.0},"89":{"tf":1.0},"927":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":31,"docs":{"127":{"tf":1.4142135623730951},"151":{"tf":1.0},"2":{"tf":1.0},"271":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"321":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":2.0},"376":{"tf":1.0},"454":{"tf":1.0},"678":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"736":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"812":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"881":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"97":{"tf":1.0}}}}},"b":{"df":2,"docs":{"505":{"tf":1.0},"517":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"6":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"132":{"tf":1.4142135623730951},"223":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"344":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"537":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"712":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"860":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"160":{"tf":1.0},"223":{"tf":1.0},"289":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"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":38,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.4142135623730951},"145":{"tf":1.0},"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"224":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"288":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"674":{"tf":1.0},"680":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"77":{"tf":1.4142135623730951},"775":{"tf":1.0},"839":{"tf":1.4142135623730951},"847":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.7320508075688772},"936":{"tf":1.0},"958":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951}}},"y":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":3,"docs":{"13":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"744":{"tf":1.0}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"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":{},"t":{"df":1,"docs":{"545":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"318":{"tf":1.4142135623730951},"837":{"tf":1.0},"860":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"289":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"511":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":5,"docs":{"272":{"tf":1.0},"340":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"149":{"tf":1.0},"233":{"tf":1.0},"276":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"s":{"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":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"318":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"765":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"772":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"772":{"tf":1.0}}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":74,"docs":{"107":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":2.6457513110645907},"113":{"tf":1.7320508075688772},"114":{"tf":2.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"318":{"tf":6.4031242374328485},"328":{"tf":2.0},"331":{"tf":1.0},"384":{"tf":1.0},"394":{"tf":1.0},"405":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"463":{"tf":1.0},"479":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"542":{"tf":1.0},"552":{"tf":1.0},"564":{"tf":1.0},"565":{"tf":1.4142135623730951},"576":{"tf":1.0},"587":{"tf":1.0},"599":{"tf":1.0},"610":{"tf":1.0},"622":{"tf":1.0},"633":{"tf":1.0},"641":{"tf":1.0},"650":{"tf":1.0},"652":{"tf":1.0},"720":{"tf":1.4142135623730951},"728":{"tf":1.0},"742":{"tf":1.0},"763":{"tf":1.4142135623730951},"768":{"tf":1.0},"776":{"tf":1.0},"784":{"tf":1.0},"801":{"tf":1.0},"804":{"tf":1.0},"810":{"tf":1.0},"814":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.0},"853":{"tf":1.0},"86":{"tf":2.0},"863":{"tf":1.0},"867":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"888":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"924":{"tf":2.0},"927":{"tf":1.7320508075688772},"937":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"952":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"347":{"tf":2.449489742783178}}}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":27,"docs":{"107":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0},"86":{"tf":1.0},"879":{"tf":1.0},"933":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":28,"docs":{"107":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.4142135623730951},"416":{"tf":1.0},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.7320508075688772},"464":{"tf":1.4142135623730951},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.4142135623730951},"543":{"tf":1.0},"553":{"tf":1.4142135623730951},"565":{"tf":1.7320508075688772},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.4142135623730951},"611":{"tf":1.0},"623":{"tf":1.4142135623730951},"634":{"tf":1.0},"642":{"tf":1.4142135623730951},"765":{"tf":1.0},"772":{"tf":2.449489742783178},"805":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":2,"docs":{"496":{"tf":1.0},"519":{"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"765":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951}}}}}}}}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"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":{},"i":{"d":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"887":{"tf":1.0}}},"2":{"df":1,"docs":{"886":{"tf":1.0}}},"3":{"df":1,"docs":{"885":{"tf":1.0}}},"4":{"df":1,"docs":{"884":{"tf":1.0}}},"5":{"df":1,"docs":{"883":{"tf":1.0}}},"6":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"332":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.7320508075688772},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":15,"docs":{"254":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"632":{"tf":2.449489742783178},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.4142135623730951},"643":{"tf":1.0},"677":{"tf":1.0},"684":{"tf":1.4142135623730951},"740":{"tf":1.0},"770":{"tf":1.4142135623730951},"929":{"tf":1.0},"969":{"tf":3.7416573867739413}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"288":{"tf":1.0},"765":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"153":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"297":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"963":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"103":{"tf":1.0},"318":{"tf":1.0},"519":{"tf":1.0},"588":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.7320508075688772},"468":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"95":{"tf":1.0}}}}},"’":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}},"g":{"df":24,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"289":{"tf":1.4142135623730951},"306":{"tf":1.0},"376":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.0},"75":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}},"k":{"df":7,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"618":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"184":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":1.0},"297":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"686":{"tf":1.0},"908":{"tf":1.0},"919":{"tf":1.0},"969":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"342":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"679":{"tf":1.0}}}}}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"679":{"tf":1.7320508075688772}}}},"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":1,"docs":{"840":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":24,"docs":{"22":{"tf":3.0},"318":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"454":{"tf":1.0},"471":{"tf":1.0},"679":{"tf":1.0},"718":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"76":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"833":{"tf":1.4142135623730951},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":12,"docs":{"113":{"tf":1.0},"117":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"29":{"tf":1.0},"318":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"78":{"tf":1.0},"958":{"tf":1.4142135623730951},"969":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"258":{"tf":1.0},"570":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"807":{"tf":1.0},"823":{"tf":1.0},"919":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":67,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":2.0},"198":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.7320508075688772},"221":{"tf":2.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"240":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":1.0},"316":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.7320508075688772},"35":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"471":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0},"522":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"621":{"tf":2.23606797749979},"673":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"736":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"9":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"968":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"142":{"tf":1.4142135623730951},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"802":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"448":{"tf":1.4142135623730951},"464":{"tf":1.0},"531":{"tf":1.0},"553":{"tf":1.0},"600":{"tf":1.0},"623":{"tf":1.0},"642":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951},"925":{"tf":1.0}},"n":{"df":2,"docs":{"698":{"tf":1.0},"805":{"tf":1.0}}}}}},"u":{"df":7,"docs":{"142":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"449":{"tf":1.0},"578":{"tf":1.0},"772":{"tf":1.0},"963":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":3,"docs":{"173":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"289":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"n":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":3,"docs":{"456":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"158":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"857":{"tf":1.0}}}}}}},"df":158,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"131":{"tf":2.6457513110645907},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.6457513110645907},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":3.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"258":{"tf":2.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":2.0},"262":{"tf":1.0},"272":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"401":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"454":{"tf":1.7320508075688772},"456":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":3.605551275463989},"473":{"tf":1.0},"474":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"477":{"tf":1.0},"480":{"tf":2.6457513110645907},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":2.6457513110645907},"487":{"tf":2.0},"488":{"tf":2.23606797749979},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":1.7320508075688772},"494":{"tf":1.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.7320508075688772},"507":{"tf":1.0},"549":{"tf":2.0},"551":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"596":{"tf":1.0},"607":{"tf":1.0},"619":{"tf":1.0},"644":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"70":{"tf":1.0},"711":{"tf":2.23606797749979},"718":{"tf":1.4142135623730951},"720":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.7320508075688772},"734":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":3.1622776601683795},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"803":{"tf":1.4142135623730951},"805":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.4142135623730951},"811":{"tf":1.0},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"83":{"tf":1.0},"830":{"tf":1.0},"847":{"tf":1.4142135623730951},"85":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":2.449489742783178},"862":{"tf":1.4142135623730951},"866":{"tf":1.0},"880":{"tf":1.4142135623730951},"9":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"919":{"tf":1.4142135623730951},"929":{"tf":1.0},"951":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":3.1622776601683795},"98":{"tf":2.23606797749979},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"184":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"739":{"tf":1.0}}}}},"r":{"df":12,"docs":{"142":{"tf":1.0},"456":{"tf":1.7320508075688772},"471":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"728":{"tf":1.0},"872":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"473":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"772":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"454":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"803":{"tf":1.0}}},"df":22,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"158":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":2.0},"456":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"483":{"tf":1.0},"549":{"tf":1.4142135623730951},"76":{"tf":2.0},"816":{"tf":1.7320508075688772},"863":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"834":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"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":19,"docs":{"131":{"tf":1.4142135623730951},"142":{"tf":4.898979485566356},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"272":{"tf":1.0},"315":{"tf":1.0},"560":{"tf":1.7320508075688772},"729":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.0},"804":{"tf":2.449489742783178},"878":{"tf":1.4142135623730951},"894":{"tf":1.0},"915":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"929":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":2.6457513110645907},"184":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.4142135623730951},"881":{"tf":1.0},"97":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":2.0},"482":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"725":{"tf":1.0},"813":{"tf":1.0},"870":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"502":{"tf":1.0},"834":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"249":{"tf":1.0},"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"964":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":2.23606797749979}}}}},"l":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"318":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"127":{"tf":1.0},"175":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"246":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"561":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.7320508075688772},"224":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"872":{"tf":1.0},"934":{"tf":1.0}}}}},"l":{"d":{"df":2,"docs":{"126":{"tf":1.0},"802":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"127":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"496":{"tf":1.0}}},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.0},"567":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"498":{"tf":1.0},"500":{"tf":1.0}}}}},"df":30,"docs":{"115":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.0},"299":{"tf":1.0},"34":{"tf":1.0},"348":{"tf":1.0},"43":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"703":{"tf":1.0},"707":{"tf":1.4142135623730951},"73":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.0},"956":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"379":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"960":{"tf":1.0},"969":{"tf":2.23606797749979}}}}}}},"p":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"254":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"965":{"tf":1.0}},"i":{"c":{"df":8,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"86":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"127":{"tf":1.4142135623730951},"376":{"tf":1.0},"396":{"tf":1.0},"412":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"267":{"tf":1.0},"315":{"tf":1.0},"859":{"tf":1.0},"925":{"tf":1.0}}},"k":{"df":19,"docs":{"113":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"377":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"673":{"tf":1.0},"74":{"tf":1.0},"806":{"tf":1.0},"818":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.0},"206":{"tf":1.7320508075688772},"258":{"tf":1.0},"263":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"912":{"tf":1.0}}},"n":{"df":5,"docs":{"119":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":4,"docs":{"729":{"tf":1.0},"738":{"tf":1.4142135623730951},"811":{"tf":1.0},"823":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"110":{"tf":1.0},"21":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"829":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"21":{"tf":2.0},"276":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"862":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"131":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0}}}},"t":{"df":6,"docs":{"128":{"tf":1.0},"213":{"tf":1.0},"248":{"tf":1.0},"709":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"704":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"166":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"665":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"379":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":29,"docs":{"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"565":{"tf":1.4142135623730951},"600":{"tf":1.0},"63":{"tf":1.0},"642":{"tf":1.0},"652":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"71":{"tf":1.0},"712":{"tf":1.0},"737":{"tf":1.0},"756":{"tf":1.0},"786":{"tf":1.0},"807":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"957":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"144":{"tf":1.4142135623730951},"155":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":2.23606797749979},"231":{"tf":2.0},"233":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"342":{"tf":1.0},"66":{"tf":1.0},"716":{"tf":1.0},"734":{"tf":1.0},"752":{"tf":1.0},"869":{"tf":1.0},"938":{"tf":1.0},"951":{"tf":2.0}}}}}},"m":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"752":{"tf":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":{"752":{"tf":1.0}}},"p":{"df":1,"docs":{"881":{"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":2,"docs":{"218":{"tf":1.0},"49":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":29,"docs":{"100":{"tf":2.0},"13":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":2.6457513110645907},"665":{"tf":1.0},"666":{"tf":1.4142135623730951},"678":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":2.0},"94":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"131":{"tf":1.0},"328":{"tf":2.449489742783178},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"468":{"tf":1.7320508075688772},"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"524":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":2.23606797749979},"761":{"tf":1.0},"873":{"tf":1.0},"897":{"tf":1.4142135623730951},"912":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}}}},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"773":{"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":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.4142135623730951}}}},"df":2,"docs":{"912":{"tf":1.4142135623730951},"913":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"191":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"100":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"258":{"tf":1.7320508075688772},"297":{"tf":1.0},"663":{"tf":1.0},"701":{"tf":1.0},"79":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"968":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"183":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"876":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"712":{"tf":1.0},"957":{"tf":1.0}}}},"o":{"df":21,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.4142135623730951},"173":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.0},"377":{"tf":1.4142135623730951},"44":{"tf":1.0},"613":{"tf":1.0},"677":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"814":{"tf":1.0},"875":{"tf":1.4142135623730951},"958":{"tf":1.0},"959":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"/":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}},"df":144,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"132":{"tf":3.872983346207417},"134":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":2.6457513110645907},"289":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"377":{"tf":1.4142135623730951},"379":{"tf":2.0},"387":{"tf":1.4142135623730951},"397":{"tf":1.0},"408":{"tf":1.4142135623730951},"418":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"482":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"498":{"tf":1.0},"509":{"tf":1.0},"514":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"529":{"tf":1.0},"533":{"tf":1.4142135623730951},"537":{"tf":1.4142135623730951},"540":{"tf":1.0},"545":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"572":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"596":{"tf":1.0},"602":{"tf":1.4142135623730951},"607":{"tf":1.0},"613":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"626":{"tf":1.7320508075688772},"630":{"tf":1.0},"636":{"tf":1.4142135623730951},"644":{"tf":2.23606797749979},"645":{"tf":2.449489742783178},"67":{"tf":2.23606797749979},"677":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"72":{"tf":1.4142135623730951},"721":{"tf":1.0},"727":{"tf":1.7320508075688772},"73":{"tf":1.0},"730":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"740":{"tf":1.0},"772":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.7320508075688772},"804":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.7320508075688772},"818":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"834":{"tf":1.7320508075688772},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772},"913":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":2.0},"92":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.4142135623730951},"932":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"954":{"tf":1.0},"956":{"tf":2.449489742783178},"958":{"tf":1.4142135623730951},"961":{"tf":1.0},"99":{"tf":1.7320508075688772}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":5,"docs":{"134":{"tf":1.0},"184":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"264":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"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":{},"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":{"553":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":5,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"136":{"tf":1.0}}},"df":2,"docs":{"531":{"tf":1.0},"692":{"tf":1.0}},"i":{"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":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"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":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"151":{"tf":1.0},"316":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"324":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"6":{"4":{"df":2,"docs":{"461":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"933":{"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":{"d":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"184":{"tf":1.0},"239":{"tf":1.0},"791":{"tf":1.0},"917":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"844":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"127":{"tf":1.0},"807":{"tf":1.0},"929":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"310":{"tf":1.0},"697":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"796":{"tf":1.0},"815":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"376":{"tf":1.0},"414":{"tf":2.449489742783178},"418":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"679":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.0}},"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":1,"docs":{"679":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"865":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"904":{"tf":1.0},"923":{"tf":1.0},"946":{"tf":1.0}}}}},"r":{"df":21,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"963":{"tf":1.0},"965":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"252":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"456":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"117":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"173":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"543":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"677":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"376":{"tf":2.0},"422":{"tf":1.0},"433":{"tf":1.0},"443":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"719":{"tf":1.0},"728":{"tf":1.0},"733":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"748":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"768":{"tf":1.0},"772":{"tf":1.0},"958":{"tf":1.0}}}},"i":{"df":1,"docs":{"234":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"310":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"812":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"342":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"862":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":13,"docs":{"104":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"160":{"tf":1.0},"376":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"697":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"t":{"df":37,"docs":{"107":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"143":{"tf":1.0},"318":{"tf":2.449489742783178},"460":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":2.23606797749979},"483":{"tf":1.0},"487":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":2.0},"522":{"tf":1.0},"554":{"tf":1.0},"557":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":1.4142135623730951},"734":{"tf":1.0},"818":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.0},"86":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"958":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"751":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"376":{"tf":1.0},"572":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":13,"docs":{"132":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"674":{"tf":1.0},"791":{"tf":1.0},"839":{"tf":1.0},"923":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"377":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"224":{"tf":1.0},"289":{"tf":1.4142135623730951},"330":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"680":{"tf":1.0},"710":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"907":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"137":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"929":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"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":{"732":{"tf":1.0},"858":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}}}}},"l":{"df":2,"docs":{"960":{"tf":1.0},"968":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"714":{"tf":1.0},"889":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"173":{"tf":1.0},"752":{"tf":1.0}}}},"t":{"df":2,"docs":{"673":{"tf":1.4142135623730951},"686":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"339":{"tf":1.0},"50":{"tf":1.0},"721":{"tf":1.0},"731":{"tf":1.0},"79":{"tf":1.0},"795":{"tf":1.0},"953":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"265":{"tf":1.0},"266":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":76,"docs":{"108":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"289":{"tf":1.0},"32":{"tf":1.0},"626":{"tf":1.0},"719":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"727":{"tf":1.0},"728":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.7320508075688772},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.4142135623730951},"783":{"tf":1.0},"786":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.4142135623730951},"862":{"tf":1.0},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"897":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.4142135623730951},"912":{"tf":2.0},"914":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":42,"docs":{"11":{"tf":1.0},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"184":{"tf":2.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"747":{"tf":1.0},"757":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"848":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"904":{"tf":1.0},"929":{"tf":1.4142135623730951},"939":{"tf":1.0},"969":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":26,"docs":{"127":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"730":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.4142135623730951},"808":{"tf":1.0},"815":{"tf":1.0},"842":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"872":{"tf":1.0},"880":{"tf":1.0},"883":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"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":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":74,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"135":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"315":{"tf":2.6457513110645907},"316":{"tf":1.7320508075688772},"317":{"tf":3.3166247903554},"318":{"tf":2.0},"320":{"tf":1.7320508075688772},"321":{"tf":2.23606797749979},"322":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"339":{"tf":1.0},"342":{"tf":1.0},"471":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"649":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"710":{"tf":1.4142135623730951},"715":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.7320508075688772},"741":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"766":{"tf":1.0},"786":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"807":{"tf":1.0},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.7320508075688772},"834":{"tf":1.7320508075688772},"836":{"tf":1.0},"838":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"854":{"tf":2.6457513110645907},"859":{"tf":1.7320508075688772},"860":{"tf":1.0},"861":{"tf":1.7320508075688772},"875":{"tf":1.0},"880":{"tf":1.0},"895":{"tf":1.4142135623730951},"913":{"tf":1.0},"919":{"tf":2.23606797749979},"921":{"tf":1.7320508075688772},"922":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":2.449489742783178},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"947":{"tf":1.0},"956":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"917":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"338":{"tf":1.0},"923":{"tf":1.7320508075688772}}},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"715":{"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":{"317":{"tf":1.0},"922":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"317":{"tf":1.0},"922":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"693":{"tf":1.0},"701":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"324":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":1,"docs":{"324":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"217":{"tf":1.0},"254":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"710":{"tf":1.0},"929":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"541":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"540":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":{"912":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{".":{"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"254":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"190":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":30,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"223":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":3.1622776601683795},"232":{"tf":3.872983346207417},"233":{"tf":3.0},"288":{"tf":1.0},"289":{"tf":2.0},"297":{"tf":1.0},"376":{"tf":1.4142135623730951},"537":{"tf":2.0},"538":{"tf":1.4142135623730951},"540":{"tf":2.0},"541":{"tf":2.6457513110645907},"543":{"tf":1.4142135623730951},"545":{"tf":1.7320508075688772},"546":{"tf":1.4142135623730951},"548":{"tf":1.0},"761":{"tf":1.7320508075688772},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"837":{"tf":1.0},"864":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.7320508075688772},"932":{"tf":1.0},"946":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"786":{"tf":1.0}}}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":13,"docs":{"135":{"tf":1.0},"289":{"tf":1.0},"346":{"tf":1.0},"371":{"tf":1.0},"4":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"678":{"tf":1.0},"699":{"tf":1.0},"707":{"tf":1.0},"770":{"tf":1.0},"878":{"tf":1.0},"941":{"tf":1.0}}}},"df":397,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"136":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"203":{"tf":2.6457513110645907},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"224":{"tf":3.1622776601683795},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":3.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":2.0},"26":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":2.449489742783178},"289":{"tf":3.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"299":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"31":{"tf":1.7320508075688772},"315":{"tf":3.0},"316":{"tf":3.0},"318":{"tf":3.0},"32":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"338":{"tf":2.0},"34":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.4142135623730951},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":3.7416573867739413},"377":{"tf":2.23606797749979},"38":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":2.0},"4":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"419":{"tf":2.0},"423":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":2.0},"443":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"456":{"tf":3.0},"457":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":2.23606797749979},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.4142135623730951},"47":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"484":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.4142135623730951},"499":{"tf":2.0},"5":{"tf":2.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"515":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"52":{"tf":1.7320508075688772},"520":{"tf":1.4142135623730951},"522":{"tf":2.0},"526":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"538":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"566":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":2.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"598":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.4142135623730951},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":2.0},"618":{"tf":1.7320508075688772},"619":{"tf":1.4142135623730951},"621":{"tf":2.6457513110645907},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.4142135623730951},"644":{"tf":1.0},"649":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.4142135623730951},"657":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.7320508075688772},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":2.449489742783178},"673":{"tf":2.6457513110645907},"674":{"tf":2.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.4142135623730951},"68":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"684":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"690":{"tf":1.4142135623730951},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"697":{"tf":1.0},"70":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.0},"721":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"74":{"tf":1.4142135623730951},"742":{"tf":1.0},"75":{"tf":2.0},"752":{"tf":1.4142135623730951},"754":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"763":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":2.0},"773":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"786":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.4142135623730951},"796":{"tf":1.0},"80":{"tf":1.7320508075688772},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":2.0},"804":{"tf":1.0},"807":{"tf":2.0},"809":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"82":{"tf":1.7320508075688772},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"834":{"tf":2.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"86":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":1.0},"89":{"tf":1.7320508075688772},"898":{"tf":1.0},"9":{"tf":2.23606797749979},"908":{"tf":1.0},"909":{"tf":1.7320508075688772},"91":{"tf":1.0},"916":{"tf":2.0},"919":{"tf":1.0},"92":{"tf":1.0},"920":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"942":{"tf":1.0},"95":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":2.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":3.605551275463989},"97":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":6,"docs":{"289":{"tf":1.7320508075688772},"697":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}},".":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.7320508075688772}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"529":{"tf":1.4142135623730951}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{".":{"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":{"d":{"(":{")":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{".":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"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":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"532":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"531":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{")":{"[":{"0":{"]":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":84,"docs":{"100":{"tf":3.0},"117":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":2.23606797749979},"151":{"tf":2.0},"160":{"tf":1.7320508075688772},"169":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"233":{"tf":1.0},"242":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":2.449489742783178},"276":{"tf":1.0},"289":{"tf":2.6457513110645907},"3":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":2.449489742783178},"316":{"tf":2.0},"317":{"tf":1.4142135623730951},"320":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"423":{"tf":1.0},"443":{"tf":1.0},"46":{"tf":1.0},"469":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"538":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"63":{"tf":1.0},"637":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0},"694":{"tf":1.0},"70":{"tf":1.0},"710":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":1.7320508075688772},"775":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":3.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"858":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.4142135623730951},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"289":{"tf":1.0},"964":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"663":{"tf":1.0},"673":{"tf":1.0},"682":{"tf":1.0},"697":{"tf":1.0},"74":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}},"df":2,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":11,"docs":{"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.0},"288":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":10,"docs":{"170":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"791":{"tf":1.0},"802":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"234":{"tf":1.0},"51":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":17,"docs":{"132":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"376":{"tf":1.4142135623730951},"526":{"tf":1.4142135623730951},"528":{"tf":3.1622776601683795},"529":{"tf":3.605551275463989},"531":{"tf":2.449489742783178},"532":{"tf":1.0},"533":{"tf":1.0},"762":{"tf":1.0},"78":{"tf":1.0},"817":{"tf":1.7320508075688772},"852":{"tf":1.0},"869":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"0":{".":{"1":{"df":6,"docs":{"882":{"tf":1.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"956":{"tf":1.0}}},"1":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"942":{"tf":1.0}}},"1":{"df":1,"docs":{"941":{"tf":1.0}}},"2":{"df":1,"docs":{"940":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"938":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"136":{"tf":1.0},"937":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"936":{"tf":1.0}}},"1":{"df":1,"docs":{"935":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"931":{"tf":1.0}}},"1":{"df":1,"docs":{"930":{"tf":1.0}}},"2":{"df":1,"docs":{"754":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":2,"docs":{"929":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"954":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"927":{"tf":1.0}}},"1":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"920":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"919":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"918":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"953":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"917":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"950":{"tf":1.0}}},"1":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"947":{"tf":1.0}}},"1":{"df":1,"docs":{"946":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"945":{"tf":1.0}}},"1":{"df":1,"docs":{"944":{"tf":1.0}}},"2":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"2":{"df":1,"docs":{"858":{"tf":1.0}}},"4":{"df":1,"docs":{"857":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"df":1,"docs":{"838":{"tf":1.0}}},"3":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"910":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"3":{"df":1,"docs":{"903":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"950":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{".":{"3":{".":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{".":{"0":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"880":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.0}}},"1":{"df":1,"docs":{"908":{"tf":1.0}}},"2":{"df":2,"docs":{"565":{"tf":1.0},"907":{"tf":1.0}}},"3":{"df":1,"docs":{"906":{"tf":1.0}}},"4":{"df":1,"docs":{"905":{"tf":1.0}}},"5":{"df":1,"docs":{"904":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"878":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"877":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"875":{"tf":1.0}}},"1":{"df":1,"docs":{"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"871":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"870":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"869":{"tf":1.0}}},"1":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"866":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"863":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"861":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"857":{"tf":1.0}}},"1":{"df":1,"docs":{"856":{"tf":1.0}}},"2":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":3,"docs":{"901":{"tf":1.4142135623730951},"902":{"tf":1.0},"903":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"854":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"853":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"852":{"tf":1.0}}},"1":{"df":1,"docs":{"851":{"tf":1.0}}},"2":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"834":{"tf":1.0},"849":{"tf":1.0}}},"1":{"df":1,"docs":{"848":{"tf":1.0}}},"2":{"df":1,"docs":{"847":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"846":{"tf":1.0}}},"1":{"df":1,"docs":{"845":{"tf":1.0}}},"2":{"df":1,"docs":{"844":{"tf":1.0}}},"3":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"841":{"tf":1.0}}},"1":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"839":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"837":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"836":{"tf":1.0}}},"1":{"df":1,"docs":{"835":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"833":{"tf":1.0}}},"1":{"df":1,"docs":{"832":{"tf":1.0}}},"2":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"830":{"tf":1.0}}},"1":{"df":1,"docs":{"829":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"828":{"tf":1.0}}},"1":{"df":1,"docs":{"827":{"tf":1.0}}},"2":{"df":2,"docs":{"825":{"tf":1.0},"826":{"tf":1.0}}},"3":{"df":1,"docs":{"825":{"tf":1.0}}},"4":{"df":1,"docs":{"824":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"822":{"tf":1.0},"823":{"tf":1.0}}},"1":{"df":2,"docs":{"821":{"tf":1.0},"822":{"tf":1.0}}},"2":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":2,"docs":{"810":{"tf":1.0},"811":{"tf":1.0}}},"1":{"df":1,"docs":{"810":{"tf":1.0}}},"2":{"df":1,"docs":{"809":{"tf":1.0}}},"3":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"819":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"818":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"816":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"814":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"813":{"tf":1.0}}},"1":{"df":1,"docs":{"812":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"1":{"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":2,"docs":{"380":{"tf":1.0},"802":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"1":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"752":{"tf":1.0}}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"799":{"tf":1.0}}},"1":{"df":1,"docs":{"798":{"tf":1.0}}},"2":{"df":1,"docs":{"797":{"tf":1.0}}},"3":{"df":1,"docs":{"796":{"tf":1.0}}},"4":{"df":1,"docs":{"795":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"1":{"df":2,"docs":{"824":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"792":{"tf":1.0}}},"1":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"788":{"tf":1.0}}},"1":{"df":1,"docs":{"787":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.0}}},"1":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"783":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"782":{"tf":1.0}}},"1":{"df":1,"docs":{"781":{"tf":1.0}}},"2":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"779":{"tf":1.0}}},"1":{"df":1,"docs":{"778":{"tf":1.0}}},"2":{"df":1,"docs":{"777":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":2,"docs":{"136":{"tf":1.0},"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"775":{"tf":1.0}}},"1":{"df":1,"docs":{"774":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"528":{"tf":1.0}}},"5":{".":{"0":{".":{"0":{"df":2,"docs":{"893":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"1":{"df":1,"docs":{"892":{"tf":1.0}}},"2":{"df":1,"docs":{"891":{"tf":1.0}}},"3":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":3,"docs":{"764":{"tf":1.0},"767":{"tf":1.0},"772":{"tf":1.0}}},"1":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"770":{"tf":1.0}}},"1":{"df":1,"docs":{"769":{"tf":1.0}}},"2":{"df":1,"docs":{"768":{"tf":1.0}}},"3":{"df":1,"docs":{"767":{"tf":1.0}}},"4":{"df":1,"docs":{"766":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":3,"docs":{"764":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0}}},"1":{"df":1,"docs":{"764":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"756":{"tf":1.0}}},"1":{"df":2,"docs":{"753":{"tf":1.0},"755":{"tf":1.0}}},"2":{"df":1,"docs":{"754":{"tf":1.0}}},"3":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"716":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"1":{"df":1,"docs":{"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"750":{"tf":1.0}}},"1":{"df":1,"docs":{"749":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"748":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"746":{"tf":1.0},"747":{"tf":1.0}}},"1":{"df":1,"docs":{"746":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"745":{"tf":1.0}}},"1":{"df":1,"docs":{"744":{"tf":1.0}}},"2":{"df":1,"docs":{"743":{"tf":1.0}}},"3":{"df":1,"docs":{"742":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"735":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"729":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"772":{"tf":1.0}}},"1":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"756":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"727":{"tf":1.0}}},"1":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"725":{"tf":1.0}}},"1":{"df":1,"docs":{"724":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"722":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":2,"docs":{"425":{"tf":1.0},"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"718":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{".":{"0":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"735":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"731":{"tf":1.0}}},"8":{"df":1,"docs":{"721":{"tf":1.0}}},"9":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"347":{"tf":1.4142135623730951},"360":{"tf":1.0},"367":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.0},"507":{"tf":1.4142135623730951},"565":{"tf":2.0},"577":{"tf":1.4142135623730951},"642":{"tf":1.0},"651":{"tf":1.0},"803":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":2.8284271247461903}}}}}}}}},"df":32,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"144":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"618":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":3.872983346207417},"698":{"tf":1.0},"772":{"tf":1.0},"802":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"913":{"tf":1.4142135623730951},"915":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":176,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"202":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"298":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.7320508075688772},"352":{"tf":1.0},"357":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":2.23606797749979},"373":{"tf":1.0},"376":{"tf":3.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"393":{"tf":1.4142135623730951},"395":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"401":{"tf":2.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.7320508075688772},"406":{"tf":1.7320508075688772},"412":{"tf":1.7320508075688772},"414":{"tf":1.7320508075688772},"416":{"tf":3.0},"419":{"tf":1.4142135623730951},"422":{"tf":1.0},"425":{"tf":3.7416573867739413},"427":{"tf":3.3166247903554},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":3.0},"440":{"tf":1.4142135623730951},"443":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.0},"457":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.4142135623730951},"471":{"tf":2.0},"476":{"tf":2.23606797749979},"480":{"tf":3.872983346207417},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":2.23606797749979},"497":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":4.0},"508":{"tf":2.0},"510":{"tf":1.4142135623730951},"514":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"522":{"tf":2.0},"526":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":2.23606797749979},"531":{"tf":3.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"543":{"tf":1.7320508075688772},"549":{"tf":1.0},"551":{"tf":1.7320508075688772},"553":{"tf":2.449489742783178},"554":{"tf":1.4142135623730951},"557":{"tf":1.0},"560":{"tf":1.7320508075688772},"563":{"tf":1.7320508075688772},"565":{"tf":2.0},"568":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"572":{"tf":1.0},"575":{"tf":1.7320508075688772},"577":{"tf":3.1622776601683795},"578":{"tf":2.0},"580":{"tf":1.7320508075688772},"583":{"tf":1.0},"588":{"tf":1.7320508075688772},"589":{"tf":1.0},"591":{"tf":2.0},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.7320508075688772},"600":{"tf":2.8284271247461903},"601":{"tf":2.0},"606":{"tf":1.0},"609":{"tf":1.7320508075688772},"611":{"tf":2.0},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.7320508075688772},"623":{"tf":1.7320508075688772},"632":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"642":{"tf":1.7320508075688772},"644":{"tf":1.0},"652":{"tf":1.4142135623730951},"664":{"tf":1.0},"677":{"tf":1.0},"684":{"tf":1.0},"73":{"tf":2.449489742783178},"756":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":3.4641016151377544},"791":{"tf":1.0},"799":{"tf":1.0},"80":{"tf":1.0},"801":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"82":{"tf":1.0},"830":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"857":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.4142135623730951},"88":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"914":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.0},"94":{"tf":2.449489742783178},"952":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"553":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":6,"docs":{"324":{"tf":1.0},"347":{"tf":2.0},"473":{"tf":1.0},"565":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"203":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"229":{"tf":1.7320508075688772},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"348":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":2.0},"402":{"tf":1.0},"619":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":2.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.0},"841":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"665":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"665":{"tf":1.0}}}}},"df":2,"docs":{"315":{"tf":1.0},"318":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"655":{"tf":1.0},"658":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"184":{"tf":1.0},"234":{"tf":1.0},"246":{"tf":1.0},"704":{"tf":1.0},"924":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"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":{"448":{"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":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"690":{"tf":1.0},"921":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"739":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"117":{"tf":1.0},"173":{"tf":1.0},"674":{"tf":1.0},"693":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"652":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"5":{"df":1,"docs":{"44":{"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":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":103,"docs":{"11":{"tf":2.449489742783178},"117":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"173":{"tf":1.7320508075688772},"175":{"tf":2.0},"224":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":2.6457513110645907},"289":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":2.23606797749979},"44":{"tf":2.0},"456":{"tf":1.0},"48":{"tf":1.7320508075688772},"484":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"529":{"tf":1.0},"561":{"tf":1.0},"63":{"tf":1.0},"669":{"tf":2.449489742783178},"673":{"tf":2.0},"685":{"tf":2.8284271247461903},"692":{"tf":2.23606797749979},"721":{"tf":1.0},"727":{"tf":1.0},"731":{"tf":1.4142135623730951},"735":{"tf":1.0},"739":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":2.23606797749979},"763":{"tf":1.7320508075688772},"768":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"78":{"tf":1.0},"783":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"843":{"tf":1.0},"848":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":2.23606797749979},"862":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"897":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":1.0},"915":{"tf":1.7320508075688772},"916":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"936":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"a":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"354":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"742":{"tf":1.0},"837":{"tf":1.0},"906":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"1":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"136":{"tf":1.0},"218":{"tf":2.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.7320508075688772},"569":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"890":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"563":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"566":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"566":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"566":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"566":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"565":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"690":{"tf":1.0},"691":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"19":{"tf":1.7320508075688772},"689":{"tf":1.0},"690":{"tf":1.7320508075688772},"691":{"tf":1.4142135623730951},"692":{"tf":1.0},"915":{"tf":1.4142135623730951},"939":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":4,"docs":{"670":{"tf":1.7320508075688772},"672":{"tf":1.4142135623730951},"673":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"41":{"tf":1.0},"968":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}},"d":{"df":9,"docs":{"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"n":{"df":1,"docs":{"738":{"tf":1.0}}}},"s":{"df":1,"docs":{"272":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"744":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"127":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"652":{"tf":1.0},"715":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"801":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"861":{"tf":1.0},"958":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"867":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"203":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"880":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0}}}}}}}}}},"l":{"df":4,"docs":{"315":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"894":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"834":{"tf":1.0},"915":{"tf":1.0},"94":{"tf":1.4142135623730951},"958":{"tf":1.0},"96":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"315":{"tf":1.0},"328":{"tf":1.0},"356":{"tf":1.0},"830":{"tf":1.7320508075688772},"858":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"969":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"958":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"861":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"50":{"tf":1.0},"669":{"tf":1.4142135623730951},"674":{"tf":1.0},"677":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"776":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"924":{"tf":1.0},"948":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"545":{"tf":1.0},"632":{"tf":1.0},"636":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"df":23,"docs":{"0":{"tf":1.0},"218":{"tf":1.0},"233":{"tf":1.7320508075688772},"243":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"894":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"909":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.7320508075688772},"952":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"342":{"tf":1.0},"912":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"241":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":10,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"712":{"tf":1.4142135623730951},"9":{"tf":1.0},"957":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"131":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"31":{"tf":1.0},"379":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"679":{"tf":1.0},"786":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"5":{"tf":1.0},"957":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"19":{"tf":1.4142135623730951},"673":{"tf":2.0},"751":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.4142135623730951},"815":{"tf":1.0},"820":{"tf":1.4142135623730951},"831":{"tf":1.0},"832":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"867":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"195":{"tf":1.0},"82":{"tf":1.0},"960":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"110":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"89":{"tf":1.0},"968":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.0},"387":{"tf":1.0},"801":{"tf":1.0},"862":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"233":{"tf":1.0},"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"190":{"tf":1.0},"258":{"tf":1.0},"371":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"79":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"655":{"tf":1.0},"658":{"tf":1.0},"715":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"376":{"tf":1.0},"595":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"289":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"n":{"d":{"df":1,"docs":{"342":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"890":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"241":{"tf":1.4142135623730951},"905":{"tf":1.4142135623730951},"906":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":2.0},"19":{"tf":1.0},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"272":{"tf":1.0},"289":{"tf":1.0},"673":{"tf":1.0},"690":{"tf":1.4142135623730951},"711":{"tf":2.23606797749979},"749":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"804":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"867":{"tf":1.0},"886":{"tf":1.0},"904":{"tf":1.0},"910":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.0},"929":{"tf":1.4142135623730951},"958":{"tf":1.0}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"129":{"tf":1.0},"132":{"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":{}},"s":{"df":0,"docs":{},"h":{"df":30,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"315":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":26,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"117":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"330":{"tf":1.0},"379":{"tf":1.0},"454":{"tf":1.0},"677":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"853":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"118":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"289":{"tf":1.0},"342":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"618":{"tf":1.0},"693":{"tf":1.0},"698":{"tf":1.0},"730":{"tf":1.0},"751":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"915":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"803":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"105":{"tf":1.0},"294":{"tf":1.4142135623730951},"697":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"927":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":47,"docs":{"100":{"tf":1.0},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"19":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":3.0},"224":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":2.0},"673":{"tf":1.4142135623730951},"680":{"tf":1.0},"70":{"tf":1.0},"712":{"tf":1.0},"725":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"79":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"834":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"86":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.0},"91":{"tf":1.0},"929":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"22":{"tf":2.0},"834":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"113":{"tf":1.0},"118":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"958":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"736":{"tf":1.0},"867":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"d":{"!":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"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":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"710":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":1.0},"652":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.0},"653":{"tf":1.0},"665":{"tf":1.0},"761":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"127":{"tf":1.0},"315":{"tf":1.0},"340":{"tf":1.0},"694":{"tf":1.4142135623730951},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"753":{"tf":1.0},"79":{"tf":1.0},"809":{"tf":1.0},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"570":{"tf":1.0},"968":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"877":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"782":{"tf":1.0}}}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"19":{"tf":1.7320508075688772},"751":{"tf":1.0},"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"132":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"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":{"798":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":18,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"657":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"786":{"tf":1.0},"833":{"tf":1.0},"855":{"tf":1.4142135623730951},"858":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"652":{"tf":1.0}}}}}}}}}},"0":{"df":17,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"416":{"tf":1.0},"642":{"tf":1.0}}},"2":{"df":3,"docs":{"480":{"tf":1.0},"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"333":{"tf":1.0},"334":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":17,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"136":{"tf":2.0},"205":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":2.0},"484":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"701":{"tf":1.0},"775":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"916":{"tf":1.4142135623730951},"936":{"tf":1.0}},"l":{"df":1,"docs":{"132":{"tf":1.0}}},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"701":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":39,"docs":{"108":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"138":{"tf":1.4142135623730951},"20":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"387":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"678":{"tf":1.4142135623730951},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":2.0},"857":{"tf":1.0}}}}}}}}},"df":1,"docs":{"701":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"795":{"tf":1.0},"830":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":3,"docs":{"226":{"tf":1.0},"422":{"tf":1.0},"537":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"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":{},"p":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"402":{"tf":1.0},"493":{"tf":1.0},"619":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"z":{"0":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"a":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"2":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"6":{".":{"0":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"808":{"tf":1.0}}},"8":{".":{"3":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"768":{"tf":1.0}}},"6":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{".":{"0":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"748":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"2":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{".":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":54,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.4142135623730951},"482":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"664":{"tf":1.0},"677":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"746":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"896":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"958":{"tf":2.8284271247461903}}},"2":{"df":19,"docs":{"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"863":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"958":{"tf":3.0}}},"3":{"df":33,"docs":{"158":{"tf":1.7320508075688772},"164":{"tf":1.0},"171":{"tf":1.7320508075688772},"288":{"tf":1.0},"554":{"tf":2.449489742783178},"728":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"743":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"746":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"958":{"tf":2.6457513110645907}},"t":{"1":{"7":{":":{"3":{"0":{":":{"0":{"0":{"df":2,"docs":{"664":{"tf":1.0},"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":{}},"df":0,"docs":{}}},"4":{":":{"0":{"0":{"df":11,"docs":{"158":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"175":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"727":{"tf":1.4142135623730951},"740":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"798":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"947":{"tf":1.4142135623730951},"958":{"tf":2.23606797749979}}},"5":{":":{"0":{"0":{"df":2,"docs":{"183":{"tf":1.0},"554":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"716":{"tf":1.4142135623730951},"722":{"tf":1.4142135623730951},"723":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"858":{"tf":2.0},"871":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"958":{"tf":2.449489742783178}}},"6":{"df":30,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"720":{"tf":1.4142135623730951},"725":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"798":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"847":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"87":{"tf":1.0},"898":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"958":{"tf":2.8284271247461903}},"t":{"0":{"9":{":":{"5":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"717":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"958":{"tf":2.449489742783178}}},"8":{"df":22,"docs":{"719":{"tf":1.4142135623730951},"720":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":2.0},"766":{"tf":1.4142135623730951},"768":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"958":{"tf":2.23606797749979}}},"9":{"df":31,"docs":{"718":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"826":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"832":{"tf":2.0},"860":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"958":{"tf":2.6457513110645907}}},"df":64,"docs":{"108":{"tf":1.4142135623730951},"127":{"tf":1.0},"138":{"tf":1.4142135623730951},"142":{"tf":2.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"271":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"386":{"tf":2.0},"396":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":2.23606797749979},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":2.23606797749979},"428":{"tf":2.23606797749979},"438":{"tf":2.23606797749979},"449":{"tf":2.0},"464":{"tf":2.8284271247461903},"465":{"tf":1.7320508075688772},"468":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"508":{"tf":2.23606797749979},"520":{"tf":1.0},"532":{"tf":2.23606797749979},"544":{"tf":2.8284271247461903},"551":{"tf":2.449489742783178},"553":{"tf":2.449489742783178},"555":{"tf":2.0},"560":{"tf":1.0},"566":{"tf":2.23606797749979},"575":{"tf":1.0},"578":{"tf":2.0},"589":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":2.0},"609":{"tf":1.0},"612":{"tf":1.4142135623730951},"618":{"tf":1.0},"624":{"tf":2.23606797749979},"635":{"tf":2.23606797749979},"643":{"tf":1.4142135623730951},"664":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"716":{"tf":1.0},"728":{"tf":1.0},"734":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"1":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},",":{"0":{"2":{"4":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{",":{"5":{"7":{"6":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{",":{"7":{"4":{"1":{",":{"8":{"2":{"4":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"0":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"3":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"1":{"1":{".":{"0":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"3":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"2":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"5":{"df":1,"docs":{"830":{"tf":1.0}}},"6":{"df":3,"docs":{"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"0":{"df":2,"docs":{"824":{"tf":1.0},"827":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{".":{"0":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"792":{"tf":1.0}}},"8":{".":{"2":{"1":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"2":{"3":{"df":1,"docs":{"727":{"tf":1.0}}},"4":{"df":1,"docs":{"721":{"tf":1.0}}},"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"8":{".":{"0":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":3,"docs":{"585":{"tf":2.449489742783178},"586":{"tf":2.449489742783178},"590":{"tf":1.0}}},"df":8,"docs":{"142":{"tf":1.7320508075688772},"171":{"tf":1.0},"315":{"tf":1.0},"551":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"774":{"tf":1.0}}},"1":{"df":1,"docs":{"142":{"tf":1.0}}},"2":{"df":1,"docs":{"846":{"tf":1.0}}},"4":{"df":1,"docs":{"846":{"tf":1.0}}},"6":{"df":1,"docs":{"918":{"tf":1.0}}},"df":15,"docs":{"328":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"524":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.4142135623730951},"616":{"tf":1.0},"738":{"tf":1.4142135623730951},"774":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"845":{"tf":1.0}}},"5":{"df":1,"docs":{"919":{"tf":1.0}}},"6":{"df":2,"docs":{"842":{"tf":1.0},"919":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"844":{"tf":1.0}}},"4":{"df":2,"docs":{"505":{"tf":2.8284271247461903},"507":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"842":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"842":{"tf":1.0}}},"9":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"842":{"tf":1.0}}},"3":{"df":1,"docs":{"842":{"tf":1.0}}},"5":{"df":1,"docs":{"917":{"tf":1.0}}},"6":{"df":2,"docs":{"838":{"tf":1.0},"916":{"tf":1.0}}},"8":{"5":{"7":{"6":{".":{"0":{"df":1,"docs":{"517":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"df":1,"docs":{"841":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"838":{"tf":1.0}}},"3":{"df":1,"docs":{"840":{"tf":1.0}}},"5":{"df":2,"docs":{"835":{"tf":1.0},"916":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"918":{"tf":1.0}}},"9":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"916":{"tf":1.0}}},"3":{"df":1,"docs":{"838":{"tf":1.0}}},"4":{"df":1,"docs":{"839":{"tf":1.0}}},"7":{"df":1,"docs":{"917":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"834":{"tf":1.0}}},"8":{"df":1,"docs":{"837":{"tf":1.0}}},"df":0,"docs":{}},":":{"1":{"0":{":":{"1":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"3":{"df":1,"docs":{"757":{"tf":1.0}}},"6":{"df":2,"docs":{"720":{"tf":1.0},"757":{"tf":1.0}}},"df":0,"docs":{}},"df":64,"docs":{"127":{"tf":1.0},"183":{"tf":2.23606797749979},"218":{"tf":1.0},"258":{"tf":1.0},"275":{"tf":1.4142135623730951},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"717":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"737":{"tf":1.0},"739":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951},"836":{"tf":1.0},"842":{"tf":1.4142135623730951},"852":{"tf":1.0},"880":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":2.0},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"904":{"tf":1.4142135623730951},"905":{"tf":2.0},"910":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"958":{"tf":2.8284271247461903}},"m":{"b":{"df":4,"docs":{"135":{"tf":1.0},"521":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}}},"1":{".":{"3":{"df":1,"docs":{"868":{"tf":1.0}}},"4":{".":{"0":{"df":1,"docs":{"861":{"tf":1.0}}},"1":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"855":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"834":{"tf":1.0},"837":{"tf":1.0}}},"8":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"834":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"834":{"tf":1.0}}},"4":{"df":1,"docs":{"834":{"tf":1.0}}},"6":{"df":1,"docs":{"834":{"tf":1.0}}},"9":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"1":{"df":1,"docs":{"834":{"tf":1.0}}},"2":{"df":2,"docs":{"833":{"tf":1.4142135623730951},"915":{"tf":1.0}}},"3":{"df":1,"docs":{"834":{"tf":1.0}}},"5":{"df":1,"docs":{"835":{"tf":1.0}}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"831":{"tf":1.0}}},"5":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"833":{"tf":1.0},"915":{"tf":1.0}}},"8":{"df":1,"docs":{"915":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"832":{"tf":1.0}}},"5":{"df":1,"docs":{"831":{"tf":1.0}}},"8":{"df":1,"docs":{"830":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"258":{"tf":1.0},"288":{"tf":1.0},"480":{"tf":1.0},"507":{"tf":1.0},"715":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"818":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"877":{"tf":2.0},"878":{"tf":2.0},"879":{"tf":2.0},"900":{"tf":1.4142135623730951},"901":{"tf":1.4142135623730951},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":3.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"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":{".":{"0":{".":{"0":{"df":2,"docs":{"833":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":1,"docs":{"831":{"tf":1.0}}},"5":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"7":{"df":2,"docs":{"830":{"tf":1.4142135623730951},"914":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"3":{"df":1,"docs":{"915":{"tf":1.0}}},"8":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"914":{"tf":1.4142135623730951}}},"4":{"/":{"a":{"df":2,"docs":{"132":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"829":{"tf":1.0}}},"df":1,"docs":{"950":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"820":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"164":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"780":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"958":{"tf":2.449489742783178}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"0":{"3":{"df":1,"docs":{"820":{"tf":1.0}}},"4":{"df":1,"docs":{"818":{"tf":1.0}}},"df":1,"docs":{"949":{"tf":1.0}}},"1":{"4":{"df":1,"docs":{"819":{"tf":1.0}}},"7":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"818":{"tf":1.0}}},"5":{"df":1,"docs":{"818":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}},"3":{"5":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"df":1,"docs":{"816":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"816":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"816":{"tf":1.0}}},"3":{"df":1,"docs":{"815":{"tf":1.0}}},"5":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"815":{"tf":1.0}}},"3":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"814":{"tf":1.0}}},"6":{"df":1,"docs":{"814":{"tf":1.0}}},"8":{"df":1,"docs":{"814":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"813":{"tf":1.0}}},"4":{"df":1,"docs":{"813":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"812":{"tf":1.0}}},"4":{"df":1,"docs":{"813":{"tf":1.0}}},"8":{"df":1,"docs":{"812":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":8,"docs":{"151":{"tf":1.0},"288":{"tf":1.0},"752":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"947":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0}}},"4":{".":{"0":{".":{"1":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"759":{"tf":1.0}}},"1":{".":{"2":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"738":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"3":{"df":1,"docs":{"811":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"913":{"tf":1.0}}},"6":{"df":1,"docs":{"811":{"tf":1.0}}},"7":{"df":1,"docs":{"811":{"tf":1.0}}},"8":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"810":{"tf":1.0}}},"8":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"809":{"tf":1.0}}},"2":{"df":1,"docs":{"809":{"tf":1.0}}},"4":{"df":1,"docs":{"808":{"tf":1.0}}},"8":{"df":1,"docs":{"807":{"tf":1.0}}},"df":1,"docs":{"948":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"807":{"tf":1.0}}},"2":{"df":1,"docs":{"807":{"tf":1.0}}},"9":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"2":{"df":2,"docs":{"807":{"tf":1.0},"912":{"tf":1.0}}},"4":{"df":1,"docs":{"807":{"tf":1.0}}},"5":{"df":1,"docs":{"807":{"tf":1.7320508075688772}}},"7":{"df":2,"docs":{"855":{"tf":1.0},"912":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"806":{"tf":1.0}}},"2":{"df":1,"docs":{"806":{"tf":1.0}}},"5":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"806":{"tf":1.0}}},"2":{"df":1,"docs":{"804":{"tf":1.0}}},"3":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"805":{"tf":1.0}}},"5":{"df":1,"docs":{"805":{"tf":1.0}}},"9":{"7":{"6":{"1":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"288":{"tf":1.0},"77":{"tf":1.0},"774":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"5":{".":{"1":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"7":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"805":{"tf":1.0}}},"2":{"9":{"3":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"912":{"tf":1.0}}},"4":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":2,"docs":{"804":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"6":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"3":{"4":{"df":1,"docs":{"804":{"tf":1.0}}},"8":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"782":{"tf":1.0}}},"3":{"6":{"1":{"2":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"947":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"803":{"tf":1.0}}},"1":{"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"802":{"tf":1.0}}},"8":{"3":{"8":{"3":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"802":{"tf":1.0}}},"6":{"7":{"6":{"4":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"6":{"0":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"4":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"1":{"9":{"1":{"2":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"802":{"tf":1.0}}},"5":{"df":1,"docs":{"793":{"tf":1.0}}},"6":{"df":1,"docs":{"802":{"tf":1.0}}},"7":{"7":{"6":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"0":{"df":1,"docs":{"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"5":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"135":{"tf":1.0},"315":{"tf":1.0},"733":{"tf":1.0},"743":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.0},"770":{"tf":1.4142135623730951},"780":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"836":{"tf":1.0},"902":{"tf":1.4142135623730951},"920":{"tf":1.0},"922":{"tf":1.4142135623730951},"929":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"6":{"0":{"1":{"5":{"5":{"0":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"799":{"tf":2.449489742783178}}},"4":{"8":{"5":{"4":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"801":{"tf":1.0}}},"5":{"0":{"9":{"7":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"8":{"2":{"df":2,"docs":{"127":{"tf":1.0},"866":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"4":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"8":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"801":{"tf":1.0}}},"4":{"7":{"8":{"5":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"801":{"tf":1.0}}},"6":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},"2":{"8":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"9":{"9":{"7":{"df":1,"docs":{"857":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"801":{"tf":1.0}}},"5":{"8":{"6":{"5":{"df":1,"docs":{"856":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"5":{"7":{"5":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"7":{"3":{"df":1,"docs":{"847":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"3":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"799":{"tf":1.0}}},"6":{"5":{"8":{"9":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"4":{"7":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"947":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"798":{"tf":1.0}}},"5":{"0":{"4":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"797":{"tf":1.0}}},"9":{"df":1,"docs":{"797":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"910":{"tf":1.0}}},"2":{"2":{"7":{"3":{"df":1,"docs":{"747":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"910":{"tf":1.0}}},"9":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"8":{"3":{"7":{"0":{"7":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"7":{"0":{"1":{"df":1,"docs":{"953":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"3":{"6":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"909":{"tf":1.0}}},"7":{"df":1,"docs":{"795":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"732":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"901":{"tf":1.4142135623730951},"904":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"958":{"tf":2.0}}},"7":{"1":{"1":{"9":{"2":{"8":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{"2":{"5":{"df":2,"docs":{"124":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"8":{"0":{"7":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"909":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"909":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"4":{"3":{"1":{"4":{"0":{"df":1,"docs":{"919":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"5":{"3":{"df":1,"docs":{"626":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"792":{"tf":1.0}}},"8":{"df":1,"docs":{"909":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"5":{"0":{"2":{"3":{"5":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"908":{"tf":1.0}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"5":{"df":1,"docs":{"907":{"tf":1.0}}},"6":{"df":1,"docs":{"792":{"tf":1.0}}},"9":{"df":1,"docs":{"792":{"tf":1.0}}},"df":3,"docs":{"498":{"tf":1.0},"521":{"tf":1.0},"590":{"tf":1.0}}},"6":{"2":{"8":{"5":{"9":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"4":{"9":{"df":1,"docs":{"774":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"907":{"tf":1.0}}},"7":{"0":{"3":{"7":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"907":{"tf":1.0}}},"9":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"906":{"tf":1.0}}},"2":{"1":{"5":{"6":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"905":{"tf":1.0}}},"4":{"df":1,"docs":{"791":{"tf":1.0}}},"5":{"4":{"2":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"790":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"0":{"3":{"7":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"789":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"786":{"tf":1.0}}},"4":{"df":1,"docs":{"905":{"tf":1.0}}},"7":{"2":{"3":{"4":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"904":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"786":{"tf":1.0}}},"3":{"df":1,"docs":{"788":{"tf":1.4142135623730951}}},"6":{"2":{"5":{"8":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"1":{"9":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"0":{"0":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"737":{"tf":1.0},"754":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"818":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"956":{"tf":1.7320508075688772},"958":{"tf":1.7320508075688772}}},"8":{"0":{"0":{"6":{"4":{"6":{"df":1,"docs":{"755":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"1":{"1":{"2":{"8":{"df":1,"docs":{"754":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"2":{"5":{"5":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"3":{"5":{"1":{"3":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{"1":{"5":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":2,"docs":{"787":{"tf":1.0},"900":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"903":{"tf":1.0}}},"1":{"2":{"5":{"3":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"2":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"903":{"tf":1.0}}},"2":{"6":{"7":{"2":{"df":1,"docs":{"749":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"4":{"5":{"9":{"2":{"df":1,"docs":{"127":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"902":{"tf":1.0}}},"5":{"2":{"3":{"3":{"df":1,"docs":{"741":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"0":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"785":{"tf":1.0}}},"9":{"1":{"6":{"1":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"785":{"tf":1.0}}},"8":{"0":{"6":{"6":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"4":{"5":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"9":{"3":{"7":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"2":{"4":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"8":{"1":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"784":{"tf":1.0},"899":{"tf":1.0}}},"5":{"df":2,"docs":{"898":{"tf":1.0},"900":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"5":{"3":{"3":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"898":{"tf":1.0}}},"7":{"9":{"5":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"0":{"1":{"df":2,"docs":{"124":{"tf":1.0},"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}},"9":{"df":1,"docs":{"897":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"895":{"tf":1.0}}},"2":{"df":2,"docs":{"776":{"tf":1.0},"783":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"895":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"782":{"tf":1.0}}},"9":{"4":{"2":{"9":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"2":{"9":{"7":{"df":1,"docs":{"729":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"782":{"tf":1.0}}},"6":{"1":{"1":{"3":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"782":{"tf":1.0}}},"9":{"1":{"1":{"4":{"df":1,"docs":{"727":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"781":{"tf":1.0}}},"2":{"0":{"9":{"7":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"894":{"tf":1.0}}},"8":{"3":{"3":{"6":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"759":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}},"9":{"0":{"0":{"df":1,"docs":{"894":{"tf":1.0}}},"8":{"df":1,"docs":{"780":{"tf":1.0}}},"9":{"2":{"4":{"4":{"df":1,"docs":{"721":{"tf":1.0}}},"6":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"779":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"9":{"7":{"6":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}}},"3":{"df":2,"docs":{"779":{"tf":1.0},"892":{"tf":1.0}}},"5":{"3":{"4":{"6":{"df":1,"docs":{"716":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"8":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"8":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"947":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"777":{"tf":1.0},"778":{"tf":1.0}}},"5":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"891":{"tf":1.0}}},"3":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"890":{"tf":1.0}}},"1":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"947":{"tf":1.0}}},"df":12,"docs":{"258":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"751":{"tf":1.4142135623730951},"867":{"tf":1.0},"921":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}},">":{"&":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"100":{"tf":2.23606797749979},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"127":{"tf":4.0},"146":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"203":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":2.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"310":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"404":{"tf":2.6457513110645907},"414":{"tf":2.6457513110645907},"416":{"tf":1.4142135623730951},"465":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"517":{"tf":1.0},"524":{"tf":1.4142135623730951},"537":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":3.0},"624":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"728":{"tf":1.0},"773":{"tf":1.0},"79":{"tf":2.23606797749979},"907":{"tf":1.0},"958":{"tf":1.0}},"m":{"b":{"df":3,"docs":{"135":{"tf":1.0},"837":{"tf":1.0},"933":{"tf":1.0}}},"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"n":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"μ":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}}},"2":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"0":{".":{"2":{"df":1,"docs":{"561":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"3":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"877":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"590":{"tf":1.0}}},"4":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":1,"docs":{"632":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"3":{"df":1,"docs":{"774":{"tf":1.0}}},"4":{"df":1,"docs":{"815":{"tf":1.0}}},"5":{"df":1,"docs":{"927":{"tf":1.0}}},"6":{"df":1,"docs":{"927":{"tf":1.0}}},"9":{"df":30,"docs":{"108":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"87":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"958":{"tf":3.0}}},"df":1,"docs":{"945":{"tf":1.0}}},"2":{"0":{"df":79,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"812":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"818":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"826":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"847":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"863":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"958":{"tf":5.196152422706632}}},"1":{"df":73,"docs":{"677":{"tf":1.0},"780":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"798":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"947":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"958":{"tf":4.795831523312719}}},"2":{"df":39,"docs":{"664":{"tf":1.0},"684":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"958":{"tf":2.23606797749979}}},"3":{"df":34,"docs":{"733":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"743":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"746":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"901":{"tf":1.4142135623730951},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"904":{"tf":1.4142135623730951},"905":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"4":{"df":27,"docs":{"258":{"tf":1.0},"715":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"722":{"tf":1.4142135623730951},"723":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"6":{"df":1,"docs":{"773":{"tf":1.0}}},"9":{"df":1,"docs":{"773":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"3":{"5":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"9":{"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"771":{"tf":1.0}}},"df":1,"docs":{"946":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"770":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"762":{"tf":1.0}}},"7":{"df":1,"docs":{"765":{"tf":1.0}}},"8":{"df":1,"docs":{"765":{"tf":1.0}}},"9":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"770":{"tf":1.0}}},"7":{"df":1,"docs":{"769":{"tf":1.0}}},"8":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"258":{"tf":1.0},"328":{"tf":1.4142135623730951},"738":{"tf":1.0},"740":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"956":{"tf":1.0}}},"1":{"1":{"4":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":4,"docs":{"763":{"tf":1.0},"764":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}},"6":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"763":{"tf":1.0}}},"5":{"df":1,"docs":{"763":{"tf":1.0}}},"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"404":{"tf":1.0},"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"945":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"762":{"tf":1.0}}},"3":{"df":1,"docs":{"762":{"tf":1.0}}},"5":{"df":1,"docs":{"762":{"tf":1.0}}},"9":{"df":1,"docs":{"762":{"tf":1.0}}},"df":1,"docs":{"945":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"762":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"8":{"2":{"df":1,"docs":{"762":{"tf":1.0}}},"8":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"761":{"tf":1.0}}},"5":{"df":1,"docs":{"761":{"tf":1.0}}},"6":{"df":1,"docs":{"759":{"tf":1.0}}},"9":{"df":1,"docs":{"761":{"tf":1.0}}},"df":1,"docs":{"944":{"tf":1.0}}},"df":7,"docs":{"258":{"tf":1.0},"719":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"760":{"tf":1.0}}},"df":1,"docs":{"943":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"760":{"tf":1.0}}},"9":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"759":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"747":{"tf":1.0}}},"5":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"757":{"tf":1.0}}},"6":{"df":1,"docs":{"756":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"738":{"tf":1.0}}},"4":{"df":1,"docs":{"756":{"tf":1.0}}},"5":{"df":1,"docs":{"756":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"755":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"7":{"0":{"df":1,"docs":{"754":{"tf":1.0}}},"1":{"df":1,"docs":{"752":{"tf":1.0}}},"2":{"df":1,"docs":{"752":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"753":{"tf":1.0}}},"8":{"df":1,"docs":{"753":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"9":{"4":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"727":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"3":{"0":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":1,"docs":{"880":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"750":{"tf":1.0}}},"3":{"df":1,"docs":{"750":{"tf":1.0}}},"7":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"751":{"tf":1.0}}},"8":{"df":1,"docs":{"748":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"751":{"tf":1.0}}},"5":{"df":1,"docs":{"735":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"747":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"747":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"553":{"tf":1.0},"574":{"tf":1.0},"721":{"tf":1.4142135623730951},"723":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"847":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"511":{"tf":1.0},"524":{"tf":1.0}}},"1":{"5":{"df":1,"docs":{"743":{"tf":1.0}}},"7":{"df":1,"docs":{"743":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"742":{"tf":1.0}}},"6":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"740":{"tf":1.0}}},"6":{"df":1,"docs":{"734":{"tf":1.0}}},"9":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"739":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"173":{"tf":1.0},"718":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"5":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{".":{"8":{"9":{"3":{"7":{"3":{"9":{"3":{"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":{}},"0":{"3":{"df":1,"docs":{"737":{"tf":1.0}}},"df":3,"docs":{"135":{"tf":1.0},"830":{"tf":1.0},"929":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"737":{"tf":1.0}}},"3":{"df":1,"docs":{"735":{"tf":1.0}}},"6":{"df":1,"docs":{"735":{"tf":1.0}}},"8":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"2":{"8":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"736":{"tf":1.0}}},"8":{"df":1,"docs":{"736":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"4":{"5":{"df":1,"docs":{"736":{"tf":1.0}}},"df":1,"docs":{"941":{"tf":1.0}}},"5":{"df":2,"docs":{"425":{"tf":1.0},"721":{"tf":1.0}}},"6":{"df":2,"docs":{"701":{"tf":1.0},"940":{"tf":1.0}}},"df":16,"docs":{"551":{"tf":2.0},"553":{"tf":1.7320508075688772},"554":{"tf":2.449489742783178},"669":{"tf":1.0},"753":{"tf":1.4142135623730951},"757":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"826":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":2.23606797749979}}},"6":{"0":{"df":1,"docs":{"939":{"tf":1.0}}},"1":{"4":{"df":1,"docs":{"735":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"6":{"9":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"9":{"7":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":15,"docs":{"258":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"863":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"7":{"0":{"9":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"1":{"9":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"731":{"tf":1.0}}},"7":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"731":{"tf":1.0}}},"7":{"df":1,"docs":{"727":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"4":{"5":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"728":{"tf":1.0}}},"7":{"df":1,"docs":{"729":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"728":{"tf":1.0}}},"7":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"727":{"tf":1.0}}},"2":{"df":1,"docs":{"727":{"tf":1.0}}},"6":{"df":1,"docs":{"727":{"tf":1.7320508075688772}}},"df":1,"docs":{"938":{"tf":1.0}}},"df":7,"docs":{"158":{"tf":1.0},"171":{"tf":1.0},"833":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"8":{"1":{"df":1,"docs":{"938":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":3,"docs":{"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0}}},"7":{"df":1,"docs":{"721":{"tf":1.0}}},"8":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"1":{"df":1,"docs":{"721":{"tf":1.0}}},"3":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"721":{"tf":1.0}}},"df":1,"docs":{"938":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"164":{"tf":1.0},"715":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"718":{"tf":1.0}}},"5":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"718":{"tf":1.0}}},"8":{"df":1,"docs":{"718":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"717":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":13,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"730":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"958":{"tf":1.0}},"t":{"0":{"9":{":":{"5":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"3":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"2":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},">":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"1":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":30,"docs":{"100":{"tf":2.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"146":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"259":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"289":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"642":{"tf":1.0},"747":{"tf":1.0},"79":{"tf":2.0},"814":{"tf":1.4142135623730951},"830":{"tf":1.0},"958":{"tf":1.0}}},"3":{".":{"1":{".":{"0":{"df":1,"docs":{"945":{"tf":1.0}}},"1":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"785":{"tf":1.0}}},"2":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"799":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"846":{"tf":1.0},"867":{"tf":1.0}}},"6":{".":{"0":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"735":{"tf":1.0},"858":{"tf":1.0}}},"7":{"df":5,"docs":{"40":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0}}},"8":{"df":4,"docs":{"15":{"tf":1.0},"30":{"tf":1.0},"673":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"6":{"df":1,"docs":{"715":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"938":{"tf":1.0}}},"5":{"df":1,"docs":{"258":{"tf":1.0}}},"df":14,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"22":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"733":{"tf":1.4142135623730951},"747":{"tf":1.0},"748":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"81":{"tf":1.0},"892":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"1":{".":{"5":{".":{"0":{"df":4,"docs":{"425":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"563":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":2,"docs":{"936":{"tf":1.0},"937":{"tf":1.0}}},"9":{"df":1,"docs":{"937":{"tf":1.0}}},"df":6,"docs":{"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0}}},"2":{"df":6,"docs":{"258":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"621":{"tf":1.0},"762":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"824":{"tf":1.0}}},"3":{"df":1,"docs":{"824":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"824":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"756":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"2":{"df":1,"docs":{"935":{"tf":1.0}}},"3":{"df":1,"docs":{"935":{"tf":1.0}}},"6":{"df":1,"docs":{"933":{"tf":1.0}}},"df":2,"docs":{"731":{"tf":1.0},"735":{"tf":1.0}}},"5":{"8":{"df":1,"docs":{"884":{"tf":1.0}}},"9":{"df":1,"docs":{"884":{"tf":1.0}}},"d":{"a":{"b":{"8":{"5":{"2":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"884":{"tf":1.0}}},"5":{"df":1,"docs":{"883":{"tf":1.0}}},"df":2,"docs":{"258":{"tf":1.0},"956":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"882":{"tf":1.0}}},"5":{"df":1,"docs":{"934":{"tf":1.0}}},"8":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"882":{"tf":1.0}}},"2":{"df":1,"docs":{"882":{"tf":1.0}}},"9":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"881":{"tf":1.0}}},"4":{"df":1,"docs":{"881":{"tf":1.0}}},"9":{"df":2,"docs":{"880":{"tf":1.0},"933":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"169":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"416":{"tf":1.4142135623730951},"546":{"tf":1.0},"551":{"tf":2.23606797749979},"553":{"tf":2.0},"632":{"tf":1.0},"65":{"tf":1.0},"772":{"tf":1.0},"79":{"tf":1.7320508075688772},"915":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"318":{"tf":1.0}}},"2":{".":{"2":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"783":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"3":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"880":{"tf":1.0}}},"1":{"df":1,"docs":{"879":{"tf":1.0}}},"7":{"df":1,"docs":{"880":{"tf":1.0}}},"9":{"6":{"df":8,"docs":{"377":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.0},"170":{"tf":1.0},"285":{"tf":1.0},"570":{"tf":1.0},"920":{"tf":1.0},"956":{"tf":1.0}},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"1":{"1":{"df":1,"docs":{"933":{"tf":1.0}}},"5":{"df":1,"docs":{"933":{"tf":1.0}}},"6":{"df":1,"docs":{"880":{"tf":1.0}}},"df":1,"docs":{"956":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"879":{"tf":1.0}}},"2":{"df":1,"docs":{"880":{"tf":1.0}}},"df":2,"docs":{"588":{"tf":1.0},"956":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}}},"3":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"1":{"df":1,"docs":{"933":{"tf":1.0}}},"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":1,"docs":{"553":{"tf":1.0}},"f":{"4":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{"df":1,"docs":{"933":{"tf":1.0}}},"6":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"9":{"5":{"df":1,"docs":{"872":{"tf":1.0}}},"7":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":2.23606797749979},"867":{"tf":1.0}}}},"d":{"2":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"184":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.4142135623730951},"289":{"tf":1.0},"546":{"tf":1.0},"632":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.7320508075688772}},"k":{"b":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"869":{"tf":1.0}}}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"1":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":11,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"315":{"tf":1.0},"468":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"756":{"tf":1.0},"897":{"tf":1.0}}},"df":6,"docs":{"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"873":{"tf":1.0}}},"1":{".":{"8":{".":{"2":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"df":3,"docs":{"872":{"tf":1.0},"929":{"tf":1.7320508075688772},"932":{"tf":1.0}}},"8":{"df":1,"docs":{"872":{"tf":1.0}}},"9":{"df":1,"docs":{"932":{"tf":1.0}}},"df":1,"docs":{"158":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"871":{"tf":1.0}}},"4":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":2,"docs":{"404":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"871":{"tf":1.0},"931":{"tf":1.0}}},"5":{"df":1,"docs":{"871":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"930":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"929":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"870":{"tf":1.0}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.4142135623730951},"353":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":2.449489742783178},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"642":{"tf":1.0},"652":{"tf":1.4142135623730951},"79":{"tf":1.0},"833":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"6":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"834":{"tf":1.0}}}}},"6":{".":{"1":{".":{"2":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":2,"docs":{"824":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"1":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"801":{"tf":1.0}}},"9":{"4":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"929":{"tf":1.0}}},"df":5,"docs":{"135":{"tf":1.4142135623730951},"315":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"929":{"tf":1.0}}},"1":{"4":{"7":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"df":1,"docs":{"929":{"tf":1.0}}},"df":4,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"864":{"tf":1.0}}},"8":{"df":1,"docs":{"929":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"929":{"tf":1.0}}},"3":{"5":{"5":{"2":{"0":{"0":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"864":{"tf":1.0}}},"df":1,"docs":{"258":{"tf":1.0}}},"8":{"1":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"929":{"tf":1.0}}},"5":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.4142135623730951},"379":{"tf":1.0},"406":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"956":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{"df":2,"docs":{"30":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"910":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":1,"docs":{"736":{"tf":1.0}}},"1":{"df":16,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"830":{"tf":1.0}}},"1":{"df":1,"docs":{"863":{"tf":1.0}}},"2":{"df":1,"docs":{"863":{"tf":1.0}}},"3":{"df":1,"docs":{"863":{"tf":1.0}}},"7":{"df":1,"docs":{"863":{"tf":1.0}}},"df":1,"docs":{"956":{"tf":1.0}}},"4":{"d":{"b":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"927":{"tf":1.0}}},"5":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"862":{"tf":1.0}}},"3":{"df":1,"docs":{"862":{"tf":1.0}}},"5":{"df":1,"docs":{"862":{"tf":1.0}}},"6":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"927":{"tf":1.0}}},"9":{"df":1,"docs":{"927":{"tf":1.0}}},"df":1,"docs":{"955":{"tf":1.0}}},"8":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"861":{"tf":1.0}}},"6":{"df":1,"docs":{"925":{"tf":1.0}}},"9":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"640":{"tf":1.0},"642":{"tf":1.0},"786":{"tf":1.4142135623730951}}},"8":{".":{"0":{"df":1,"docs":{"517":{"tf":1.7320508075688772}}},"1":{".":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"df":1,"docs":{"861":{"tf":1.0}}},"8":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}},"df":2,"docs":{"288":{"tf":1.4142135623730951},"303":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"860":{"tf":1.0}}},"1":{"df":1,"docs":{"924":{"tf":1.0}}},"5":{"df":1,"docs":{"860":{"tf":1.0}}},"9":{"2":{"df":1,"docs":{"541":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"924":{"tf":1.0}}},"5":{"df":1,"docs":{"924":{"tf":1.0}}},"7":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"858":{"tf":1.0}}},"3":{"df":1,"docs":{"858":{"tf":1.0}}},"4":{"df":1,"docs":{"858":{"tf":1.0}}},"6":{"df":2,"docs":{"858":{"tf":1.0},"923":{"tf":1.7320508075688772}}},"df":1,"docs":{"954":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}}},"6":{",":{"4":{"0":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":1,"docs":{"554":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"854":{"tf":1.0}}},"6":{"df":1,"docs":{"854":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"8":{"4":{"2":{"1":{"1":{"df":0,"docs":{},"e":{"5":{"4":{"5":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"a":{"a":{"0":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"136":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"471":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"791":{"tf":1.0},"802":{"tf":1.0},"835":{"tf":1.0},"956":{"tf":1.0}},"k":{"df":2,"docs":{"761":{"tf":1.0},"912":{"tf":1.0}}}},"9":{"0":{"8":{"df":1,"docs":{"923":{"tf":1.0}}},"df":1,"docs":{"953":{"tf":2.0}}},"2":{"4":{"df":1,"docs":{"922":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"3":{"5":{"df":1,"docs":{"849":{"tf":1.0}}},"df":0,"docs":{}},"4":{"9":{"df":1,"docs":{"849":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"922":{"tf":1.0}}},"3":{"df":1,"docs":{"849":{"tf":1.0}}},"df":2,"docs":{"685":{"tf":1.0},"951":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}}},"6":{"2":{"df":1,"docs":{"849":{"tf":1.0}}},"5":{"df":1,"docs":{"921":{"tf":1.0}}},"7":{"df":2,"docs":{"849":{"tf":1.0},"920":{"tf":1.0}}},"8":{"df":2,"docs":{"849":{"tf":1.0},"921":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"7":{"0":{"df":1,"docs":{"921":{"tf":1.0}}},"4":{"df":1,"docs":{"846":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"8":{"1":{"df":1,"docs":{"920":{"tf":1.0}}},"3":{"df":1,"docs":{"847":{"tf":1.0}}},"4":{"df":1,"docs":{"919":{"tf":1.0}}},"6":{"df":1,"docs":{"847":{"tf":1.0}}},"7":{"df":1,"docs":{"846":{"tf":1.0}}},"8":{"df":1,"docs":{"919":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"9":{"3":{"df":1,"docs":{"847":{"tf":1.0}}},"4":{"df":1,"docs":{"919":{"tf":1.0}}},"5":{"df":1,"docs":{"842":{"tf":1.0}}},"6":{"df":1,"docs":{"846":{"tf":1.0}}},"8":{"df":1,"docs":{"843":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"df":9,"docs":{"164":{"tf":1.0},"183":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"956":{"tf":1.0}}},"_":{"_":{"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":1,"docs":{"473":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"_":{"df":24,"docs":{"377":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.4142135623730951},"414":{"tf":2.0},"419":{"tf":1.4142135623730951},"435":{"tf":2.0},"440":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"858":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":3.4641016151377544}}}},"k":{".":{"a":{"df":2,"docs":{"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"1":{"df":0,"docs":{},"i":{"df":3,"docs":{"376":{"tf":1.4142135623730951},"387":{"tf":1.0},"397":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"751":{"tf":1.0},"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"665":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.4142135623730951}},"l":{"df":6,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"741":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"478":{"tf":1.0},"492":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"223":{"tf":1.0},"354":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.4142135623730951},"377":{"tf":1.0},"427":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"711":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"376":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"549":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":18,"docs":{"135":{"tf":1.0},"313":{"tf":1.0},"357":{"tf":1.0},"446":{"tf":1.0},"529":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.4142135623730951},"693":{"tf":1.0},"717":{"tf":1.4142135623730951},"723":{"tf":1.0},"741":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":1.7320508075688772},"801":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"953":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":31,"docs":{"110":{"tf":1.4142135623730951},"177":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"32":{"tf":2.0},"356":{"tf":1.4142135623730951},"389":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"418":{"tf":1.0},"660":{"tf":2.0},"665":{"tf":1.0},"679":{"tf":1.0},"688":{"tf":2.0},"715":{"tf":1.0},"736":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"842":{"tf":1.0},"876":{"tf":1.0},"89":{"tf":1.4142135623730951},"917":{"tf":1.0},"924":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.7320508075688772}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.4142135623730951}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"396":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"297":{"tf":1.4142135623730951},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"753":{"tf":1.0},"796":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"653":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"680":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"703":{"tf":1.0},"76":{"tf":1.0},"935":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":2.0},"884":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":1,"docs":{"517":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"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":1,"docs":{"517":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"738":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"729":{"tf":1.0},"738":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"729":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"494":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"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":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"475":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"772":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"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":{"c":{"!":{"[":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"476":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}},"e":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"586":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"586":{"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":15,"docs":{"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.7320508075688772},"517":{"tf":1.7320508075688772},"574":{"tf":1.0},"575":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"725":{"tf":1.0},"829":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"456":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"759":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"257":{"tf":1.4142135623730951},"376":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"590":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"814":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"741":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"340":{"tf":1.0},"376":{"tf":1.0},"560":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"909":{"tf":1.0},"951":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":28,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"195":{"tf":1.0},"224":{"tf":2.6457513110645907},"233":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.4142135623730951},"318":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0},"691":{"tf":2.0},"711":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.449489742783178},"837":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"880":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{},"n":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"233":{"tf":1.4142135623730951},"315":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.0},"814":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"956":{"tf":1.0}}}}},"b":{"df":2,"docs":{"224":{"tf":2.0},"227":{"tf":1.7320508075688772}}},"d":{"df":100,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":2.449489742783178},"195":{"tf":1.0},"198":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":2.449489742783178},"24":{"tf":1.0},"254":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"315":{"tf":1.0},"318":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":3.7416573867739413},"414":{"tf":3.7416573867739413},"419":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.7320508075688772},"474":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"613":{"tf":1.0},"614":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"728":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.7320508075688772},"752":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"799":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"823":{"tf":1.4142135623730951},"830":{"tf":1.0},"834":{"tf":2.0},"837":{"tf":1.7320508075688772},"846":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"882":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"898":{"tf":1.0},"9":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"927":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"956":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":50,"docs":{"107":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"289":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"568":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"63":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"707":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":1.0},"802":{"tf":1.0},"834":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"120":{"tf":1.0},"136":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.0},"471":{"tf":1.0},"52":{"tf":1.0},"704":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"500":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"134":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"288":{"tf":2.0},"289":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"693":{"tf":1.0},"758":{"tf":1.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}}}}}}}}},"df":152,"docs":{"0":{"tf":2.8284271247461903},"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.7320508075688772},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"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.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"563":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"621":{"tf":2.23606797749979},"649":{"tf":1.0},"665":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"69":{"tf":1.4142135623730951},"698":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.4142135623730951},"750":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.6457513110645907},"804":{"tf":1.0},"809":{"tf":1.4142135623730951},"811":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"875":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"902":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"340":{"tf":1.0},"854":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"188":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"693":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"308":{"tf":1.0},"318":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"580":{"tf":1.0},"77":{"tf":1.0},"782":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"_":{"df":1,"docs":{"461":{"tf":1.0}}},"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"951":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"132":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"862":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"100":{"tf":2.449489742783178},"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"757":{"tf":1.0},"762":{"tf":1.7320508075688772},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":2.449489742783178},"806":{"tf":1.0},"848":{"tf":1.0},"902":{"tf":1.0},"919":{"tf":1.0},"969":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"119":{"tf":1.0},"288":{"tf":1.0},"644":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"775":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"951":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"175":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}}}}},"h":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"252":{"tf":1.0},"959":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}},"s":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"288":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":4,"docs":{"471":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"950":{"tf":1.0}}}}}}}}},"i":{"a":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"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":{},"y":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":5,"docs":{"494":{"tf":1.0},"509":{"tf":1.0},"512":{"tf":1.0},"725":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":2,"docs":{"22":{"tf":1.0},"861":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":82,"docs":{"12":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"306":{"tf":1.0},"320":{"tf":1.0},"37":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"510":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"537":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0},"632":{"tf":1.0},"644":{"tf":1.4142135623730951},"658":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"709":{"tf":1.0},"715":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"734":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"750":{"tf":1.0},"76":{"tf":1.4142135623730951},"762":{"tf":1.0},"765":{"tf":1.0},"773":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"823":{"tf":1.0},"830":{"tf":1.7320508075688772},"839":{"tf":1.0},"885":{"tf":1.0},"906":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0},"947":{"tf":1.0},"97":{"tf":1.4142135623730951}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0}},"g":{"df":15,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"330":{"tf":1.0},"541":{"tf":1.0},"677":{"tf":1.4142135623730951},"76":{"tf":1.0},"761":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"df":1,"docs":{"334":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"285":{"tf":1.0},"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"811":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":29,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"456":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"680":{"tf":1.0},"692":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"98":{"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":{"27":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"223":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"653":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":24,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"401":{"tf":1.0},"412":{"tf":1.0},"471":{"tf":1.4142135623730951},"487":{"tf":1.0},"514":{"tf":1.0},"560":{"tf":1.0},"567":{"tf":1.0},"632":{"tf":1.0},"649":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0},"880":{"tf":1.0},"916":{"tf":1.0},"923":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"132":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.0},"404":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"916":{"tf":1.0},"933":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"103":{"tf":1.0},"811":{"tf":1.0},"82":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"261":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":8,"docs":{"288":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}}},"t":{"df":1,"docs":{"703":{"tf":1.0}}},"z":{"df":5,"docs":{"267":{"tf":1.0},"471":{"tf":1.0},"704":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"252":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"'":{"df":1,"docs":{"315":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":111,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"132":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"349":{"tf":1.0},"431":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"656":{"tf":1.7320508075688772},"662":{"tf":2.23606797749979},"663":{"tf":2.0},"664":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"669":{"tf":1.7320508075688772},"670":{"tf":1.4142135623730951},"671":{"tf":2.23606797749979},"672":{"tf":1.4142135623730951},"673":{"tf":1.7320508075688772},"674":{"tf":2.6457513110645907},"675":{"tf":2.449489742783178},"676":{"tf":1.7320508075688772},"677":{"tf":1.7320508075688772},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"732":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"745":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"765":{"tf":1.0},"775":{"tf":1.0},"783":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.4142135623730951},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"826":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"830":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.4142135623730951},"837":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.4142135623730951}},"x":{"df":2,"docs":{"759":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":16,"docs":{"118":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"288":{"tf":1.0},"326":{"tf":2.6457513110645907},"327":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"734":{"tf":1.0}}},"y":{"df":1,"docs":{"923":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"118":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":17,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"61":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"687":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0},"959":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"752":{"tf":1.0},"762":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.0},"919":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"600":{"tf":1.0},"611":{"tf":1.0},"680":{"tf":1.0},"734":{"tf":1.0},"925":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":218,"docs":{"0":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.23606797749979},"13":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"26":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":2.0},"306":{"tf":2.449489742783178},"307":{"tf":2.6457513110645907},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.7320508075688772},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"316":{"tf":2.23606797749979},"317":{"tf":1.4142135623730951},"318":{"tf":2.6457513110645907},"319":{"tf":2.23606797749979},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":2.23606797749979},"326":{"tf":2.0},"327":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"334":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":1.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"348":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"392":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"400":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"405":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"432":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"442":{"tf":1.7320508075688772},"444":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"453":{"tf":1.7320508075688772},"455":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"513":{"tf":1.7320508075688772},"516":{"tf":1.4142135623730951},"518":{"tf":1.4142135623730951},"523":{"tf":1.0},"525":{"tf":1.0},"527":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"536":{"tf":1.7320508075688772},"539":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"559":{"tf":1.7320508075688772},"562":{"tf":1.4142135623730951},"564":{"tf":1.4142135623730951},"568":{"tf":1.0},"571":{"tf":1.7320508075688772},"572":{"tf":1.0},"573":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"581":{"tf":1.0},"584":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"605":{"tf":1.7320508075688772},"607":{"tf":1.0},"608":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"617":{"tf":1.0},"620":{"tf":1.4142135623730951},"621":{"tf":2.23606797749979},"622":{"tf":1.4142135623730951},"628":{"tf":1.0},"631":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"639":{"tf":1.4142135623730951},"641":{"tf":1.4142135623730951},"647":{"tf":1.0},"648":{"tf":1.4142135623730951},"650":{"tf":1.4142135623730951},"652":{"tf":2.6457513110645907},"653":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"678":{"tf":1.0},"686":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.4142135623730951},"729":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"752":{"tf":2.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"784":{"tf":1.4142135623730951},"796":{"tf":2.0},"799":{"tf":2.23606797749979},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.449489742783178},"817":{"tf":1.4142135623730951},"819":{"tf":1.0},"834":{"tf":1.4142135623730951},"854":{"tf":1.0},"86":{"tf":1.4142135623730951},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"878":{"tf":1.0},"890":{"tf":1.0},"898":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.7320508075688772},"919":{"tf":1.7320508075688772},"920":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.7320508075688772},"927":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"952":{"tf":1.4142135623730951},"956":{"tf":2.0},"960":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":3.3166247903554},"969":{"tf":1.7320508075688772}}},"k":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"p":{"'":{"df":3,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"83":{"tf":1.0}}},"/":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"?":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"&":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"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":{}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"315":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"315":{"tf":1.0},"947":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"947":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"169":{"tf":1.0},"175":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":2.8284271247461903},"234":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"338":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"674":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.4142135623730951},"811":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"476":{"tf":1.0},"494":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"960":{"tf":1.0},"966":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"958":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":11,"docs":{"137":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":2.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0}}},"(":{"_":{":":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"232":{"tf":1.0},"316":{"tf":1.4142135623730951},"338":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"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":{"136":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"316":{"tf":1.0},"318":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"839":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"0":{".":{"1":{".":{"0":{"df":3,"docs":{"316":{"tf":1.0},"318":{"tf":1.0},"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":{}}}}}}}}},"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":1,"docs":{"315":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"151":{"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"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":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":144,"docs":{"0":{"tf":2.0},"100":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"132":{"tf":4.358898943540674},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":3.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":2.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"173":{"tf":2.0},"175":{"tf":2.6457513110645907},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"181":{"tf":2.0},"182":{"tf":2.0},"183":{"tf":2.23606797749979},"184":{"tf":3.1622776601683795},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.7320508075688772},"22":{"tf":2.23606797749979},"222":{"tf":2.0},"224":{"tf":2.6457513110645907},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"254":{"tf":2.449489742783178},"259":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.6457513110645907},"290":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":3.3166247903554},"316":{"tf":2.6457513110645907},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.4142135623730951},"338":{"tf":1.0},"349":{"tf":2.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"418":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"549":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"59":{"tf":1.0},"632":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":2.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.7320508075688772},"658":{"tf":1.7320508075688772},"66":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.4142135623730951},"668":{"tf":1.0},"671":{"tf":2.449489742783178},"673":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"679":{"tf":1.7320508075688772},"680":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"687":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.4142135623730951},"711":{"tf":1.0},"727":{"tf":1.0},"78":{"tf":2.6457513110645907},"79":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":2.0},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"840":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":2.449489742783178},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.7320508075688772},"864":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":2.6457513110645907},"91":{"tf":1.4142135623730951},"938":{"tf":1.0},"946":{"tf":1.0},"958":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}},"df":26,"docs":{"13":{"tf":1.7320508075688772},"169":{"tf":1.0},"195":{"tf":2.0},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"267":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"529":{"tf":1.0},"663":{"tf":1.0},"672":{"tf":1.0},"741":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"674":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"202":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"v":{"df":1,"docs":{"342":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"145":{"tf":1.0},"258":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"326":{"tf":1.0},"377":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"572":{"tf":1.0},"583":{"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":8,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"762":{"tf":1.4142135623730951},"923":{"tf":1.0},"924":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"776":{"tf":1.0},"781":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"17":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"22":{"tf":1.0},"321":{"tf":1.0},"377":{"tf":1.0},"678":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}},"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":36,"docs":{"318":{"tf":1.7320508075688772},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"565":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"796":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"921":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"268":{"tf":1.0}}}},"m":{"6":{"4":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"184":{"tf":1.0},"227":{"tf":1.0},"259":{"tf":1.0},"50":{"tf":1.0},"653":{"tf":1.0},"854":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"170":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.0},"446":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0},"644":{"tf":1.7320508075688772},"645":{"tf":1.0},"693":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"254":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":6,"docs":{"226":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.4142135623730951},"637":{"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"tf":1.7320508075688772}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"635":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"635":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"635":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":{".":{"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"635":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"634":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"777":{"tf":1.0},"778":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":17,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"188":{"tf":1.0},"205":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"342":{"tf":1.0},"72":{"tf":1.0},"752":{"tf":1.0},"93":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"962":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"385":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"385":{"tf":1.0},"395":{"tf":1.0},"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"553":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"652":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"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":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"1":{"df":1,"docs":{"507":{"tf":1.4142135623730951}}},"df":5,"docs":{"416":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}},"df":2,"docs":{"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"2":{"df":2,"docs":{"519":{"tf":1.0},"588":{"tf":1.0}}},"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"385":{"tf":1.0},"395":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"553":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"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":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"333":{"tf":1.0},"508":{"tf":1.0},"578":{"tf":1.0},"642":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"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":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"496":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"480":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"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":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"2":{"0":{"1":{"9":{"df":1,"docs":{"554":{"tf":1.0}}},"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":{},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"416":{"tf":1.0}}},"2":{"df":1,"docs":{"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"407":{"tf":1.0},"428":{"tf":1.0},"465":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}},"df":6,"docs":{"416":{"tf":1.0},"465":{"tf":1.0},"519":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.0}}},"df":4,"docs":{"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"2":{"df":3,"docs":{"519":{"tf":1.0},"588":{"tf":1.0},"611":{"tf":1.0}}},"3":{"3":{"df":2,"docs":{"600":{"tf":1.0},"611":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":2,"docs":{"406":{"tf":1.0},"427":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"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":{"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"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":{"565":{"tf":1.0}}}}}},"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":1,"docs":{"531":{"tf":1.0}}}},"df":0,"docs":{}},"(":{"1":{"1":{"df":1,"docs":{"507":{"tf":1.0}}},"df":2,"docs":{"588":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}},"2":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}},"4":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"519":{"tf":1.0},"588":{"tf":1.0}}}}},"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"385":{"tf":1.0},"652":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":27,"docs":{"333":{"tf":1.0},"334":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.4142135623730951},"624":{"tf":1.0},"635":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"!":{"(":{"4":{"0":{"0":{"df":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"\"":{"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":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"427":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"480":{"tf":1.0},"496":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"600":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"553":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"531":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"107":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"497":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"565":{"tf":1.7320508075688772},"566":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"tf":2.0},"86":{"tf":1.4142135623730951},"880":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"\"":{"2":{"0":{"1":{"9":{"df":1,"docs":{"554":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"tf":1.4142135623730951}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"0":{"df":3,"docs":{"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"601":{"tf":1.0}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951}}},"df":2,"docs":{"416":{"tf":1.4142135623730951},"642":{"tf":1.0}},"l":{"df":1,"docs":{"577":{"tf":1.7320508075688772}}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}},"df":1,"docs":{"565":{"tf":1.0}},"l":{"df":2,"docs":{"480":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951}}}},"3":{"df":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.4142135623730951}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"652":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"623":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"333":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"601":{"tf":1.0},"624":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"643":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"272":{"tf":1.0}}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"203":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.0},"297":{"tf":1.4142135623730951},"474":{"tf":1.0},"677":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":16,"docs":{"100":{"tf":1.0},"252":{"tf":1.4142135623730951},"258":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"514":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"675":{"tf":1.0},"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"838":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"342":{"tf":1.0},"786":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"312":{"tf":1.0},"340":{"tf":1.0},"838":{"tf":1.0},"958":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"802":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"858":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"150":{"tf":1.0},"259":{"tf":1.0},"661":{"tf":1.0},"693":{"tf":1.0}}},"k":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"160":{"tf":1.0},"233":{"tf":1.0},"462":{"tf":1.0},"563":{"tf":1.0},"670":{"tf":1.0},"802":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0},"252":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"218":{"tf":1.0}}}}},"o":{"df":14,"docs":{"459":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"565":{"tf":2.23606797749979},"577":{"tf":1.0},"588":{"tf":1.0},"623":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.4142135623730951},"720":{"tf":1.0},"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"798":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":48,"docs":{"12":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"162":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":2.0},"218":{"tf":1.4142135623730951},"288":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"647":{"tf":1.0},"666":{"tf":1.4142135623730951},"67":{"tf":1.0},"671":{"tf":1.0},"686":{"tf":1.4142135623730951},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.4142135623730951},"783":{"tf":1.0},"793":{"tf":1.0},"807":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"91":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":14,"docs":{"117":{"tf":1.0},"136":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"289":{"tf":1.0},"36":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"669":{"tf":1.0},"685":{"tf":1.0},"9":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":73,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"306":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.0},"376":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"568":{"tf":1.0},"572":{"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.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"693":{"tf":1.0},"695":{"tf":1.4142135623730951},"705":{"tf":1.0},"710":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.4142135623730951},"78":{"tf":1.0},"802":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"969":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":36,"docs":{"104":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"310":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"785":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"844":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"318":{"tf":1.0},"342":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"577":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"652":{"tf":1.0},"865":{"tf":1.0}}}},"r":{"df":3,"docs":{"223":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":4,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":3.1622776601683795}}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"120":{"tf":1.0},"127":{"tf":1.4142135623730951},"135":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"267":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"859":{"tf":1.0},"873":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"125":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"168":{"tf":1.0},"245":{"tf":1.0},"271":{"tf":1.0},"315":{"tf":1.0},"346":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"786":{"tf":1.0},"807":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"823":{"tf":1.0},"830":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"724":{"tf":1.0},"726":{"tf":1.0},"858":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"289":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"640":{"tf":2.0},"645":{"tf":1.4142135623730951}},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"640":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"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":{}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"521":{"tf":1.0},"523":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"226":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0},"964":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":37,"docs":{"106":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"245":{"tf":1.4142135623730951},"258":{"tf":2.0},"275":{"tf":1.0},"276":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"52":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"583":{"tf":1.0},"653":{"tf":1.7320508075688772},"654":{"tf":1.7320508075688772},"659":{"tf":1.7320508075688772},"690":{"tf":1.0},"720":{"tf":1.0},"799":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.7320508075688772},"893":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"123":{"tf":1.0},"125":{"tf":2.6457513110645907},"127":{"tf":2.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"184":{"tf":2.6457513110645907},"210":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"275":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":2.0},"842":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"875":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"747":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"df":6,"docs":{"116":{"tf":1.0},"17":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951}}},"i":{"c":{"df":6,"docs":{"294":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"671":{"tf":1.0},"674":{"tf":1.0},"895":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"561":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"297":{"tf":1.0},"684":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.7320508075688772},"168":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"814":{"tf":1.0},"89":{"tf":1.0}}}}},"df":52,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"461":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"514":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"708":{"tf":1.0},"711":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":1.0},"816":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"858":{"tf":1.4142135623730951},"86":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":71,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"140":{"tf":1.7320508075688772},"150":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"338":{"tf":2.0},"342":{"tf":1.4142135623730951},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"541":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"630":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"663":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"696":{"tf":1.0},"697":{"tf":1.7320508075688772},"698":{"tf":1.0},"701":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"801":{"tf":1.0},"804":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"845":{"tf":1.0},"865":{"tf":1.4142135623730951},"867":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"941":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"184":{"tf":1.4142135623730951},"231":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.4142135623730951},"728":{"tf":1.0},"76":{"tf":1.0},"878":{"tf":1.0},"97":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":7,"docs":{"117":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"758":{"tf":1.0},"853":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":25,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"456":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"693":{"tf":1.0},"70":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"74":{"tf":2.0},"91":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"923":{"tf":1.0},"95":{"tf":2.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"752":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":29,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"435":{"tf":1.0},"446":{"tf":1.4142135623730951},"46":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"630":{"tf":1.0},"73":{"tf":1.0},"772":{"tf":1.0},"799":{"tf":1.0},"915":{"tf":1.0},"94":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"132":{"tf":1.0},"254":{"tf":1.0},"26":{"tf":1.7320508075688772},"334":{"tf":2.0},"768":{"tf":1.0},"833":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"288":{"tf":1.0},"401":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"126":{"tf":1.4142135623730951},"142":{"tf":2.0},"173":{"tf":1.0},"192":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"626":{"tf":1.0},"720":{"tf":1.0},"76":{"tf":1.0},"802":{"tf":1.0},"840":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"693":{"tf":1.0},"919":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"11":{"tf":1.0},"690":{"tf":1.4142135623730951},"849":{"tf":1.0},"868":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"df":20,"docs":{"26":{"tf":1.0},"654":{"tf":1.7320508075688772},"727":{"tf":1.0},"736":{"tf":1.0},"740":{"tf":1.0},"773":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"834":{"tf":1.7320508075688772},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"846":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"859":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"t":{"df":11,"docs":{"144":{"tf":1.0},"254":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"621":{"tf":1.0},"703":{"tf":1.4142135623730951},"862":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"693":{"tf":1.0}}}},"b":{"df":1,"docs":{"422":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"459":{"tf":1.0},"477":{"tf":1.0},"737":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.4142135623730951},"852":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":2.449489742783178}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"5":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"328":{"tf":3.0},"329":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.449489742783178},"640":{"tf":1.0},"642":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"129":{"tf":1.0},"135":{"tf":1.4142135623730951},"317":{"tf":1.0},"837":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":13,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.7320508075688772},"706":{"tf":1.4142135623730951},"959":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.4142135623730951},"968":{"tf":2.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":5,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.0},"652":{"tf":1.0},"830":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":45,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"376":{"tf":1.4142135623730951},"381":{"tf":2.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":2.23606797749979},"392":{"tf":1.0},"393":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":2.6457513110645907},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"439":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":1.7320508075688772},"73":{"tf":1.0},"773":{"tf":1.0},"78":{"tf":1.0},"801":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"823":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}},"t":{"df":2,"docs":{"266":{"tf":1.0},"267":{"tf":1.0}},"h":{"df":22,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"272":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"729":{"tf":1.0},"77":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"830":{"tf":1.0},"89":{"tf":1.0},"959":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"310":{"tf":1.0},"496":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"758":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":13,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":2.449489742783178},"63":{"tf":1.0},"66":{"tf":1.0},"708":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"=":{"\"":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"131":{"tf":2.0},"158":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":2.6457513110645907},"326":{"tf":1.4142135623730951},"328":{"tf":2.8284271247461903},"333":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":39,"docs":{"175":{"tf":1.0},"377":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.4142135623730951},"719":{"tf":1.7320508075688772},"727":{"tf":1.4142135623730951},"730":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"738":{"tf":1.0},"753":{"tf":1.0},"765":{"tf":1.4142135623730951},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"786":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.4142135623730951},"824":{"tf":1.0},"828":{"tf":1.0},"837":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.4142135623730951},"677":{"tf":1.0},"964":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"254":{"tf":1.0},"862":{"tf":1.0},"969":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"796":{"tf":1.0}},"n":{"df":8,"docs":{"191":{"tf":1.0},"224":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"810":{"tf":1.0},"824":{"tf":1.0},"861":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"289":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"342":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"136":{"tf":1.4142135623730951},"190":{"tf":1.0},"233":{"tf":2.449489742783178},"241":{"tf":2.0},"245":{"tf":1.4142135623730951},"31":{"tf":2.6457513110645907},"316":{"tf":1.0},"33":{"tf":1.4142135623730951},"342":{"tf":1.0},"66":{"tf":1.0},"898":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"909":{"tf":1.0},"915":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"112":{"tf":2.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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"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":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"d":{"df":2,"docs":{"19":{"tf":1.0},"815":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"575":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"376":{"tf":1.0},"471":{"tf":2.0},"474":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"503":{"tf":2.0},"507":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"519":{"tf":1.4142135623730951},"572":{"tf":1.0},"577":{"tf":2.0},"580":{"tf":2.449489742783178},"582":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.4142135623730951},"591":{"tf":2.23606797749979},"716":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"718":{"tf":1.0}}}}}},"g":{"=":{"\"":{"0":{"0":{"0":{"0":{"0":{"0":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":210,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":4.242640687119285},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.7320508075688772},"254":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"390":{"tf":1.0},"397":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":2.0},"502":{"tf":1.0},"509":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"567":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"594":{"tf":1.0},"6":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"613":{"tf":1.0},"617":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"628":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"715":{"tf":1.4142135623730951},"716":{"tf":2.23606797749979},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"725":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.7320508075688772},"732":{"tf":1.4142135623730951},"734":{"tf":1.7320508075688772},"736":{"tf":1.0},"738":{"tf":2.23606797749979},"739":{"tf":1.0},"741":{"tf":1.7320508075688772},"745":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":2.23606797749979},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"814":{"tf":1.4142135623730951},"83":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"880":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"905":{"tf":1.0},"913":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.0},"929":{"tf":1.4142135623730951},"942":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":88,"docs":{"742":{"tf":1.0},"743":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"758":{"tf":1.0},"762":{"tf":2.23606797749979},"763":{"tf":1.4142135623730951},"764":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.7320508075688772},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.7320508075688772},"814":{"tf":1.0},"816":{"tf":1.7320508075688772},"817":{"tf":1.0},"818":{"tf":1.7320508075688772},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":1.7320508075688772},"837":{"tf":1.0},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"868":{"tf":1.0},"880":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.7320508075688772},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":2.0},"921":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":2.0},"930":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0},"953":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"958":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":5,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"379":{"tf":1.0},"6":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"793":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"914":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"670":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":101,"docs":{"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":1.4142135623730951},"17":{"tf":2.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"224":{"tf":2.0},"227":{"tf":1.7320508075688772},"254":{"tf":1.0},"26":{"tf":2.8284271247461903},"268":{"tf":2.449489742783178},"27":{"tf":1.0},"280":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"377":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"63":{"tf":1.4142135623730951},"662":{"tf":1.0},"663":{"tf":2.0},"664":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.7320508075688772},"670":{"tf":1.0},"671":{"tf":2.6457513110645907},"672":{"tf":1.0},"673":{"tf":1.7320508075688772},"676":{"tf":1.4142135623730951},"678":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":2.0},"683":{"tf":1.0},"684":{"tf":2.23606797749979},"685":{"tf":1.7320508075688772},"686":{"tf":1.0},"687":{"tf":1.0},"735":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"753":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"811":{"tf":1.0},"820":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"83":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"853":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"879":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"9":{"tf":1.4142135623730951},"910":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"942":{"tf":1.4142135623730951},"949":{"tf":1.0},"950":{"tf":1.0},"958":{"tf":2.0},"96":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":37,"docs":{"100":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"647":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"78":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":1.0},"833":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"877":{"tf":1.0},"951":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"208":{"tf":1.0},"312":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"653":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"289":{"tf":1.0},"721":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":14,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"48":{"tf":1.0},"653":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"793":{"tf":1.0},"916":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"379":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"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":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"254":{"tf":2.6457513110645907},"328":{"tf":3.0},"329":{"tf":2.23606797749979},"332":{"tf":2.0},"333":{"tf":3.1622776601683795},"376":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":21,"docs":{"170":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"510":{"tf":2.0},"511":{"tf":1.0},"514":{"tf":1.7320508075688772},"522":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"737":{"tf":1.0},"756":{"tf":1.0},"829":{"tf":1.0},"873":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":3.1622776601683795}}}}}}}},"1":{"d":{"b":{"d":{"6":{"df":0,"docs":{},"e":{"0":{"6":{"1":{"7":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"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":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"234":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"785":{"tf":1.0}}}},"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"127":{"tf":1.0},"142":{"tf":1.7320508075688772},"560":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":7,"docs":{"127":{"tf":2.449489742783178},"175":{"tf":2.8284271247461903},"224":{"tf":1.0},"231":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"884":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"652":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"[":{"0":{"df":1,"docs":{"652":{"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":7,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"804":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"26":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":2.0},"346":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"565":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.4142135623730951},"665":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"710":{"tf":1.0},"772":{"tf":1.0},"788":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"84":{"tf":1.0},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"867":{"tf":1.4142135623730951},"873":{"tf":1.0},"880":{"tf":1.0},"91":{"tf":1.0},"919":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"340":{"tf":1.0},"649":{"tf":1.0},"796":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":2.0},"563":{"tf":1.0},"89":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"958":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"34":{"tf":1.0},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"461":{"tf":1.0},"538":{"tf":1.0},"762":{"tf":1.0},"791":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"652":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"492":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"492":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"321":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.7320508075688772},"459":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"738":{"tf":1.0},"786":{"tf":1.0},"792":{"tf":1.0},"846":{"tf":1.0},"891":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"110":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"259":{"tf":1.0},"289":{"tf":1.0},"618":{"tf":1.0},"677":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":21,"docs":{"104":{"tf":1.0},"17":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"83":{"tf":1.0},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"557":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"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":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}},"df":8,"docs":{"114":{"tf":1.0},"19":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"720":{"tf":1.0},"757":{"tf":1.0},"958":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"770":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":48,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"142":{"tf":2.0},"169":{"tf":1.4142135623730951},"175":{"tf":2.0},"184":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"203":{"tf":1.0},"22":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"476":{"tf":1.0},"618":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"710":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"78":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"919":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":26,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":2.23606797749979},"120":{"tf":1.4142135623730951},"127":{"tf":1.0},"142":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"176":{"tf":1.0},"234":{"tf":1.0},"265":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":3.0},"289":{"tf":3.3166247903554},"346":{"tf":1.0},"546":{"tf":1.0},"632":{"tf":1.4142135623730951},"677":{"tf":1.0},"679":{"tf":1.0},"782":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"124":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"s":{"df":21,"docs":{"100":{"tf":2.0},"120":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"50":{"tf":1.4142135623730951},"578":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"679":{"tf":1.0},"760":{"tf":1.0},"765":{"tf":1.0},"79":{"tf":2.0},"834":{"tf":1.0},"838":{"tf":1.0},"848":{"tf":1.0},"892":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"169":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"[":{"\"":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{";":{"1":{"\"":{"]":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"(":{"c":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":1,"docs":{"673":{"tf":1.0}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":76,"docs":{"100":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"203":{"tf":3.0},"297":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"834":{"tf":3.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"89":{"tf":1.4142135623730951},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"814":{"tf":1.0},"823":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"109":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"796":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"964":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"316":{"tf":1.0},"342":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"674":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"125":{"tf":1.0},"845":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":122,"docs":{"100":{"tf":3.3166247903554},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"324":{"tf":1.0},"344":{"tf":1.0},"379":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"425":{"tf":2.449489742783178},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"568":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.0},"614":{"tf":1.4142135623730951},"645":{"tf":1.0},"678":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.7320508075688772},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":2.0},"730":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"738":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":2.0},"758":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"784":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":3.3166247903554},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"807":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.4142135623730951},"828":{"tf":1.0},"834":{"tf":1.7320508075688772},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"873":{"tf":1.0},"889":{"tf":1.4142135623730951},"89":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.4142135623730951},"900":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"909":{"tf":1.0},"916":{"tf":1.4142135623730951},"919":{"tf":1.7320508075688772},"920":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"945":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":245,"docs":{"5":{"tf":1.0},"713":{"tf":1.7320508075688772},"714":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"722":{"tf":1.4142135623730951},"723":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"743":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"746":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"780":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"798":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"818":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"826":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"847":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"863":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"889":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"901":{"tf":1.4142135623730951},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"904":{"tf":1.4142135623730951},"905":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"947":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"956":{"tf":1.7320508075688772}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"107":{"tf":1.0},"119":{"tf":1.7320508075688772},"132":{"tf":1.0},"205":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"246":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":42,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"231":{"tf":1.0},"285":{"tf":1.7320508075688772},"286":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"303":{"tf":1.0},"378":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.4142135623730951},"414":{"tf":2.0},"419":{"tf":1.4142135623730951},"435":{"tf":2.0},"440":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"570":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"721":{"tf":1.0},"736":{"tf":1.0},"747":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"81":{"tf":1.0},"897":{"tf":1.0},"912":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":38,"docs":{"10":{"tf":1.0},"112":{"tf":2.449489742783178},"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"18":{"tf":1.0},"218":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"57":{"tf":1.0},"580":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"73":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"772":{"tf":1.7320508075688772},"802":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"579":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"579":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"698":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"22":{"tf":1.0},"861":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"289":{"tf":1.4142135623730951},"401":{"tf":1.0},"677":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"376":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"84":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"958":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"128":{"tf":1.0},"28":{"tf":1.0},"460":{"tf":1.0},"677":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"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":{"245":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"915":{"tf":1.0}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"i":{"df":6,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0},"746":{"tf":1.0},"912":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"912":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"947":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"j":{"df":2,"docs":{"32":{"tf":1.7320508075688772},"700":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"969":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"315":{"tf":1.7320508075688772},"316":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"338":{"tf":1.0},"347":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"563":{"tf":1.0},"679":{"tf":2.0},"882":{"tf":1.0},"929":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"318":{"tf":1.0},"678":{"tf":1.0},"862":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"806":{"tf":1.0}}}}},"r":{"df":26,"docs":{"100":{"tf":2.6457513110645907},"109":{"tf":1.0},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":2.23606797749979},"321":{"tf":1.0},"427":{"tf":1.0},"531":{"tf":1.0},"567":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"78":{"tf":2.23606797749979},"789":{"tf":1.0},"79":{"tf":2.6457513110645907},"840":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"917":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"99":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"17":{"tf":1.0},"226":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"289":{"tf":1.0},"87":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"897":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":8,"docs":{"43":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.4142135623730951},"912":{"tf":1.0},"915":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"184":{"tf":1.0},"533":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"330":{"tf":1.0},"533":{"tf":1.0},"78":{"tf":1.0},"909":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"268":{"tf":1.0},"839":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"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":{},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":23,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"158":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"338":{"tf":1.0},"342":{"tf":1.4142135623730951},"750":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"801":{"tf":1.0},"865":{"tf":1.4142135623730951}}}}}}},"df":43,"docs":{"0":{"tf":1.0},"111":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.7320508075688772},"17":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.7320508075688772},"258":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"376":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"526":{"tf":1.0},"535":{"tf":1.0},"570":{"tf":1.0},"653":{"tf":1.0},"710":{"tf":1.0},"73":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.0},"811":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"916":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}},"|":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{"730":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"254":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"142":{"tf":1.4142135623730951},"184":{"tf":1.0},"315":{"tf":1.0},"456":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"76":{"tf":1.0},"804":{"tf":1.0},"894":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"224":{"tf":1.0},"241":{"tf":1.0},"379":{"tf":1.0},"80":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"803":{"tf":1.0}}}}},"u":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"m":{"d":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"557":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":2.0},"116":{"tf":1.0}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}},"df":87,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"110":{"tf":2.449489742783178},"111":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":2.0},"175":{"tf":2.6457513110645907},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"317":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"43":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.0},"683":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"71":{"tf":1.0},"737":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.0},"782":{"tf":1.0},"793":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"802":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"823":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.7320508075688772},"839":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.7320508075688772},"867":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.449489742783178},"9":{"tf":1.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"969":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"498":{"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":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"268":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":93,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"117":{"tf":2.23606797749979},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"175":{"tf":2.8284271247461903},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":2.23606797749979},"297":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"346":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"580":{"tf":1.0},"632":{"tf":1.0},"645":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"652":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.0},"67":{"tf":1.7320508075688772},"674":{"tf":1.0},"677":{"tf":1.0},"680":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"70":{"tf":1.0},"704":{"tf":1.0},"71":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"715":{"tf":1.0},"72":{"tf":1.0},"729":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":2.0},"82":{"tf":1.4142135623730951},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"853":{"tf":1.0},"860":{"tf":1.0},"865":{"tf":1.4142135623730951},"897":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"938":{"tf":1.0},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":2.0},"97":{"tf":2.0},"98":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"645":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"288":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"289":{"tf":1.7320508075688772},"687":{"tf":1.0},"703":{"tf":1.0},"83":{"tf":1.0},"852":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"117":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"471":{"tf":1.0},"753":{"tf":1.0},"9":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"958":{"tf":1.0}}},"m":{"a":{"df":6,"docs":{"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"353":{"tf":1.0},"370":{"tf":1.4142135623730951}},"n":{"d":{">":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":33,"docs":{"115":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":2.23606797749979},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":3.872983346207417},"232":{"tf":1.0},"233":{"tf":3.605551275463989},"234":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"653":{"tf":1.0},"682":{"tf":1.0},"689":{"tf":2.23606797749979},"690":{"tf":1.0},"691":{"tf":1.7320508075688772},"692":{"tf":1.7320508075688772},"804":{"tf":1.0},"861":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":2.6457513110645907},"935":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":2,"docs":{"379":{"tf":1.0},"823":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":35,"docs":{"106":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.0},"21":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.0},"387":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"854":{"tf":1.0},"99":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"949":{"tf":1.0},"950":{"tf":1.7320508075688772},"953":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"659":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":8,"docs":{"160":{"tf":1.0},"289":{"tf":1.7320508075688772},"5":{"tf":1.0},"546":{"tf":1.0},"712":{"tf":1.0},"838":{"tf":1.0},"859":{"tf":1.0},"957":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":6,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"52":{"tf":1.0},"958":{"tf":1.0}}},"t":{"df":10,"docs":{"289":{"tf":1.0},"51":{"tf":1.0},"762":{"tf":1.0},"776":{"tf":1.0},"784":{"tf":1.0},"801":{"tf":1.0},"851":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"735":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"835":{"tf":1.0},"844":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":16,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"250":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"340":{"tf":1.0},"379":{"tf":1.0},"678":{"tf":1.4142135623730951},"737":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"845":{"tf":1.0},"854":{"tf":1.0},"861":{"tf":1.0},"902":{"tf":1.0}}},"x":{"df":3,"docs":{"144":{"tf":1.0},"22":{"tf":1.0},"772":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"538":{"tf":1.0},"697":{"tf":1.0}}}}},"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":15,"docs":{"13":{"tf":1.0},"193":{"tf":1.0},"316":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"665":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0},"77":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"933":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{".":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"915":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"135":{"tf":1.0},"661":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"913":{"tf":1.0},"933":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"378":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"572":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"169":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"677":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"823":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"878":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":8,"docs":{"203":{"tf":4.123105625617661},"205":{"tf":1.0},"254":{"tf":1.0},"316":{"tf":1.4142135623730951},"830":{"tf":1.0},"861":{"tf":1.0},"908":{"tf":1.0},"912":{"tf":1.0}},"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":{},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"805":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":83,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"168":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":4.358898943540674},"197":{"tf":2.449489742783178},"198":{"tf":3.4641016151377544},"199":{"tf":2.449489742783178},"200":{"tf":1.7320508075688772},"202":{"tf":2.8284271247461903},"203":{"tf":4.358898943540674},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"210":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":4.898979485566356},"258":{"tf":2.23606797749979},"261":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"307":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":3.0},"316":{"tf":2.8284271247461903},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"342":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"503":{"tf":1.0},"514":{"tf":1.4142135623730951},"60":{"tf":1.0},"663":{"tf":2.0},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.4142135623730951},"682":{"tf":2.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"693":{"tf":1.0},"720":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.4142135623730951},"79":{"tf":1.0},"801":{"tf":1.0},"861":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"732":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"563":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"289":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"592":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":2.23606797749979},"627":{"tf":1.0},"655":{"tf":1.0},"710":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"d":{"df":28,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"190":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"371":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.0},"674":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"258":{"tf":1.0},"260":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.4142135623730951},"674":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"330":{"tf":1.0},"346":{"tf":1.0},"493":{"tf":1.0},"704":{"tf":1.0},"804":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"898":{"tf":1.0},"906":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":19,"docs":{"32":{"tf":1.7320508075688772},"324":{"tf":1.0},"448":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"490":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"577":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"700":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"175":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"765":{"tf":1.0},"878":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"65":{"tf":1.0},"752":{"tf":1.0}}}},"m":{"df":34,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.4142135623730951},"230":{"tf":1.0},"276":{"tf":1.4142135623730951},"307":{"tf":1.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"379":{"tf":1.0},"43":{"tf":1.4142135623730951},"492":{"tf":1.0},"720":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"788":{"tf":1.0},"793":{"tf":1.7320508075688772},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"838":{"tf":1.4142135623730951},"842":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"858":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"422":{"tf":1.0},"537":{"tf":1.0},"6":{"tf":1.7320508075688772},"860":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":88,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"234":{"tf":1.0},"246":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.7320508075688772},"328":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"423":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"443":{"tf":1.0},"48":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"501":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"538":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"609":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"653":{"tf":1.0},"697":{"tf":1.0},"716":{"tf":1.0},"73":{"tf":1.4142135623730951},"772":{"tf":1.0},"779":{"tf":1.0},"79":{"tf":1.0},"823":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.4142135623730951},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"129":{"tf":1.7320508075688772},"136":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"289":{"tf":2.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"422":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"546":{"tf":1.0},"592":{"tf":1.0},"60":{"tf":1.0},"634":{"tf":2.449489742783178},"636":{"tf":1.4142135623730951},"637":{"tf":1.0},"70":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":2.23606797749979},"961":{"tf":2.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":2.0},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{".":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"111":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.7320508075688772},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"834":{"tf":1.0},"858":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"5":{"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":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":63,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.4142135623730951},"185":{"tf":2.6457513110645907},"186":{"tf":1.7320508075688772},"187":{"tf":3.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"206":{"tf":3.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"471":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"602":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"682":{"tf":1.0},"715":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"837":{"tf":1.0},"854":{"tf":1.0},"857":{"tf":1.0},"871":{"tf":1.0},"9":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"407":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"406":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"459":{"tf":1.0},"477":{"tf":1.0},"788":{"tf":1.0},"834":{"tf":1.0},"861":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"t":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}},"t":{"df":7,"docs":{"115":{"tf":1.0},"377":{"tf":1.4142135623730951},"471":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"834":{"tf":1.0},"884":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"854":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"254":{"tf":2.8284271247461903},"7":{"tf":1.0},"823":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"800":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"130":{"tf":1.0},"322":{"tf":1.4142135623730951},"653":{"tf":2.23606797749979},"654":{"tf":1.7320508075688772},"659":{"tf":1.7320508075688772},"673":{"tf":1.0},"755":{"tf":1.0},"758":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.4142135623730951},"818":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"881":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"11":{"tf":1.0},"117":{"tf":1.0},"17":{"tf":1.0},"315":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"673":{"tf":1.0},"769":{"tf":1.0},"782":{"tf":1.0},"825":{"tf":1.0},"838":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"873":{"tf":1.0},"919":{"tf":1.0},"935":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":21,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"315":{"tf":1.0},"67":{"tf":1.0},"731":{"tf":1.0},"762":{"tf":2.23606797749979},"764":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"804":{"tf":1.0},"816":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"847":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"926":{"tf":1.0},"947":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"138":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"741":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"958":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"190":{"tf":1.0},"62":{"tf":1.0},"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":40,"docs":{"124":{"tf":2.0},"125":{"tf":1.7320508075688772},"127":{"tf":2.23606797749979},"347":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":2.0},"406":{"tf":1.0},"408":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":2.0},"582":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":2.0},"607":{"tf":2.0},"618":{"tf":1.4142135623730951},"619":{"tf":2.23606797749979},"621":{"tf":1.0},"70":{"tf":1.0},"716":{"tf":1.0},"75":{"tf":2.23606797749979},"755":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"907":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":44,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"127":{"tf":2.6457513110645907},"131":{"tf":1.4142135623730951},"288":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"402":{"tf":2.0},"403":{"tf":1.0},"404":{"tf":3.872983346207417},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"408":{"tf":1.7320508075688772},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":2.6457513110645907},"413":{"tf":1.0},"414":{"tf":3.872983346207417},"415":{"tf":1.0},"416":{"tf":2.8284271247461903},"417":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"456":{"tf":1.0},"544":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"621":{"tf":2.23606797749979},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"734":{"tf":1.0},"75":{"tf":1.4142135623730951},"818":{"tf":1.0},"837":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"421":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"267":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"673":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"111":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.449489742783178},"116":{"tf":1.7320508075688772},"804":{"tf":1.0},"831":{"tf":1.0},"853":{"tf":1.0}}}},"df":1,"docs":{"261":{"tf":1.0}}}}},"w":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"752":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"679":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"679":{"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":{"679":{"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":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":34,"docs":{"166":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.7320508075688772},"289":{"tf":1.0},"376":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"646":{"tf":1.4142135623730951},"674":{"tf":3.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":3.4641016151377544},"678":{"tf":2.0},"679":{"tf":1.7320508075688772},"680":{"tf":1.0},"736":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"771":{"tf":1.0},"785":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"835":{"tf":1.0},"844":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"880":{"tf":1.7320508075688772},"958":{"tf":1.4142135623730951}},"e":{"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":{"df":1,"docs":{"677":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"26":{"tf":1.4142135623730951},"315":{"tf":1.0},"655":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"754":{"tf":1.0},"787":{"tf":1.0},"818":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"854":{"tf":1.0},"871":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"655":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.7320508075688772},"259":{"tf":1.0},"27":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"710":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"785":{"tf":1.0},"79":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.0},"925":{"tf":1.0},"951":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"538":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"0":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"31":{"tf":1.0},"65":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"701":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"579":{"tf":1.0},"618":{"tf":1.0},"627":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":1,"docs":{"254":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":50,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":2.0},"14":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.0},"283":{"tf":1.0},"293":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"334":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.0},"54":{"tf":1.0},"572":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.0},"691":{"tf":1.0},"694":{"tf":1.0},"711":{"tf":1.0},"715":{"tf":1.4142135623730951},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"950":{"tf":1.0},"968":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":1,"docs":{"551":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"579":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"813":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"594":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":2.449489742783178},"138":{"tf":2.23606797749979},"139":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"223":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"259":{"tf":2.449489742783178},"261":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":2.0},"317":{"tf":3.1622776601683795},"336":{"tf":2.0},"337":{"tf":1.0},"338":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"520":{"tf":1.0},"551":{"tf":2.449489742783178},"560":{"tf":1.0},"572":{"tf":2.23606797749979},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":2.0},"581":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.0},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"590":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"592":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"647":{"tf":1.0},"649":{"tf":1.7320508075688772},"667":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":3.1622776601683795},"679":{"tf":1.7320508075688772},"690":{"tf":2.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"729":{"tf":1.4142135623730951},"734":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.7320508075688772},"79":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"804":{"tf":1.0},"823":{"tf":1.0},"830":{"tf":1.0},"837":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"922":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.4142135623730951},"969":{"tf":2.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"718":{"tf":1.0},"738":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"145":{"tf":1.0},"173":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"4":{"1":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"837":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"316":{"tf":1.0},"318":{"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":32,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"466":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.4142135623730951},"636":{"tf":1.0},"839":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":18,"docs":{"109":{"tf":1.0},"127":{"tf":1.0},"264":{"tf":1.4142135623730951},"721":{"tf":1.0},"741":{"tf":1.0},"753":{"tf":1.4142135623730951},"812":{"tf":1.0},"818":{"tf":1.0},"831":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"88":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.4142135623730951},"917":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":228,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":4.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"160":{"tf":2.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"185":{"tf":3.0},"186":{"tf":1.0},"187":{"tf":3.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.449489742783178},"191":{"tf":2.23606797749979},"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},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":3.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":2.23606797749979},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":4.69041575982343},"292":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"33":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"385":{"tf":1.7320508075688772},"389":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"395":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"410":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"437":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"443":{"tf":1.0},"448":{"tf":1.7320508075688772},"452":{"tf":1.4142135623730951},"464":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"480":{"tf":2.0},"485":{"tf":1.4142135623730951},"487":{"tf":3.1622776601683795},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"496":{"tf":2.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"507":{"tf":2.23606797749979},"512":{"tf":1.4142135623730951},"514":{"tf":3.1622776601683795},"517":{"tf":1.4142135623730951},"519":{"tf":2.23606797749979},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"53":{"tf":1.0},"531":{"tf":1.7320508075688772},"535":{"tf":1.4142135623730951},"537":{"tf":1.0},"538":{"tf":1.0},"54":{"tf":1.4142135623730951},"541":{"tf":1.0},"543":{"tf":1.7320508075688772},"546":{"tf":1.0},"548":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"569":{"tf":1.4142135623730951},"57":{"tf":2.6457513110645907},"577":{"tf":2.23606797749979},"58":{"tf":1.0},"580":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"588":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"611":{"tf":1.7320508075688772},"614":{"tf":1.4142135623730951},"615":{"tf":1.4142135623730951},"623":{"tf":1.7320508075688772},"627":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"637":{"tf":1.4142135623730951},"638":{"tf":1.0},"642":{"tf":2.23606797749979},"644":{"tf":1.0},"646":{"tf":1.4142135623730951},"652":{"tf":3.4641016151377544},"666":{"tf":1.0},"67":{"tf":1.4142135623730951},"674":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"697":{"tf":2.0},"698":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"704":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":2.6457513110645907},"772":{"tf":2.23606797749979},"78":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"791":{"tf":1.0},"818":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"86":{"tf":1.4142135623730951},"860":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"873":{"tf":1.0},"9":{"tf":2.6457513110645907},"91":{"tf":1.0},"916":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":3.3166247903554},"962":{"tf":1.0},"969":{"tf":4.358898943540674},"98":{"tf":2.6457513110645907},"99":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"315":{"tf":2.23606797749979},"316":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"\"":{"2":{"0":{"2":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"915":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"551":{"tf":1.4142135623730951},"553":{"tf":1.0}}}}}}}},"df":25,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.4142135623730951},"288":{"tf":2.0},"376":{"tf":1.0},"549":{"tf":1.4142135623730951},"551":{"tf":2.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"556":{"tf":1.0},"664":{"tf":1.4142135623730951},"669":{"tf":1.0},"684":{"tf":2.23606797749979},"685":{"tf":1.0},"741":{"tf":1.0},"77":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951},"830":{"tf":1.0},"847":{"tf":1.4142135623730951},"87":{"tf":1.0},"881":{"tf":1.0},"914":{"tf":1.0},"98":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"376":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"549":{"tf":2.23606797749979},"550":{"tf":1.0},"551":{"tf":3.0},"552":{"tf":1.0},"553":{"tf":2.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":1.7320508075688772},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"559":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.7320508075688772},"776":{"tf":1.0},"78":{"tf":1.0},"813":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"956":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{".":{"d":{"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":{"(":{"1":{"9":{"9":{"3":{"df":1,"docs":{"553":{"tf":1.0}}},"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":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":27,"docs":{"117":{"tf":1.7320508075688772},"127":{"tf":2.449489742783178},"132":{"tf":1.0},"175":{"tf":2.8284271247461903},"224":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":1.0},"379":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"830":{"tf":1.0},"861":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"814":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"831":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":89,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":2.449489742783178},"2":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.6457513110645907},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":3.0},"222":{"tf":2.23606797749979},"223":{"tf":2.23606797749979},"224":{"tf":3.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":2.8284271247461903},"234":{"tf":1.7320508075688772},"235":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":2.23606797749979},"241":{"tf":2.449489742783178},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"315":{"tf":1.0},"348":{"tf":2.23606797749979},"349":{"tf":2.449489742783178},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":2.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":2.6457513110645907},"364":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"651":{"tf":1.0},"701":{"tf":1.0},"715":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"817":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"863":{"tf":1.0},"880":{"tf":1.0},"890":{"tf":1.0},"898":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"906":{"tf":1.0},"915":{"tf":1.0},"920":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"379":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"276":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"858":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"965":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":107,"docs":{"100":{"tf":2.0},"116":{"tf":1.0},"131":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":3.3166247903554},"205":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.4142135623730951},"289":{"tf":3.3166247903554},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.4142135623730951},"565":{"tf":1.7320508075688772},"568":{"tf":1.0},"570":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.4142135623730951},"668":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"690":{"tf":1.4142135623730951},"700":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"799":{"tf":1.0},"814":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"842":{"tf":1.0},"861":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"952":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"874":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":12,"docs":{"318":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0},"652":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"871":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":77,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":2.6457513110645907},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":2.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"259":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"326":{"tf":1.7320508075688772},"336":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"38":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"568":{"tf":1.4142135623730951},"593":{"tf":1.0},"60":{"tf":1.0},"616":{"tf":1.0},"626":{"tf":1.0},"644":{"tf":1.7320508075688772},"647":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.7320508075688772},"686":{"tf":1.0},"690":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.6457513110645907},"947":{"tf":1.0},"951":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":49,"docs":{"190":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"35":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.4142135623730951},"649":{"tf":1.0},"677":{"tf":1.4142135623730951},"679":{"tf":1.0},"773":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"22":{"tf":1.0},"272":{"tf":1.4142135623730951},"315":{"tf":1.0},"721":{"tf":1.0},"789":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"315":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":33,"docs":{"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":2.449489742783178},"135":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"295":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"342":{"tf":1.4142135623730951},"741":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.4142135623730951},"838":{"tf":1.7320508075688772},"860":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.7320508075688772},"917":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"956":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"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":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"838":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0}}}}}}}}}},"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":{"334":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"334":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"621":{"tf":2.23606797749979}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"626":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":4.358898943540674},"623":{"tf":1.7320508075688772},"626":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":45,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":2.0},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":2.0},"184":{"tf":1.0},"19":{"tf":2.0},"21":{"tf":1.0},"24":{"tf":2.0},"26":{"tf":1.7320508075688772},"270":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"376":{"tf":1.0},"41":{"tf":1.4142135623730951},"484":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"665":{"tf":1.7320508075688772},"671":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"744":{"tf":1.0},"750":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"844":{"tf":1.0},"858":{"tf":2.23606797749979},"859":{"tf":1.0},"880":{"tf":1.0},"882":{"tf":1.0},"9":{"tf":1.4142135623730951},"947":{"tf":1.0},"953":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"234":{"tf":1.0},"252":{"tf":1.0},"958":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":16,"docs":{"129":{"tf":1.0},"136":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"380":{"tf":1.7320508075688772},"715":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"805":{"tf":1.0},"838":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"315":{"tf":1.0},"330":{"tf":1.0},"697":{"tf":1.4142135623730951},"770":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":9,"docs":{"136":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":61,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"153":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"224":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":2.449489742783178},"292":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"315":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"579":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"823":{"tf":1.0},"87":{"tf":1.0},"964":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"568":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"175":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"462":{"tf":1.0}}},"df":20,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"354":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":2.0}},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"949":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":32,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":2.0},"318":{"tf":1.0},"488":{"tf":1.0},"5":{"tf":1.4142135623730951},"515":{"tf":1.0},"56":{"tf":1.7320508075688772},"662":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"772":{"tf":1.7320508075688772},"799":{"tf":2.23606797749979},"857":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"104":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"22":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"741":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"132":{"tf":1.7320508075688772},"205":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"456":{"tf":1.0},"673":{"tf":1.7320508075688772},"72":{"tf":1.0},"77":{"tf":1.0},"846":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"956":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":13,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"223":{"tf":1.0},"626":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.7320508075688772},"675":{"tf":1.0},"773":{"tf":1.0},"79":{"tf":1.0},"964":{"tf":1.0}}}}}},"i":{"c":{"df":21,"docs":{"132":{"tf":2.449489742783178},"184":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"289":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"431":{"tf":1.0},"50":{"tf":1.7320508075688772},"73":{"tf":1.0},"835":{"tf":1.0},"94":{"tf":1.0}},"e":{"'":{"df":5,"docs":{"231":{"tf":1.0},"351":{"tf":1.0},"549":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"498":{"tf":1.4142135623730951},"500":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"497":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"254":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"640":{"tf":2.0},"642":{"tf":1.4142135623730951},"645":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"5":{"df":1,"docs":{"640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"21":{"tf":1.0},"254":{"tf":2.6457513110645907},"276":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"37":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"60":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"703":{"tf":1.0},"801":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":70,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"121":{"tf":1.4142135623730951},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.0},"248":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.4142135623730951},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":1.4142135623730951},"340":{"tf":1.0},"348":{"tf":1.4142135623730951},"37":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.4142135623730951},"471":{"tf":1.0},"488":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"515":{"tf":1.0},"52":{"tf":1.7320508075688772},"522":{"tf":1.0},"524":{"tf":1.0},"583":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"606":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"653":{"tf":1.7320508075688772},"660":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"685":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"705":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"82":{"tf":1.0},"830":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"912":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"402":{"tf":1.0},"619":{"tf":1.0},"673":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"376":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"613":{"tf":1.4142135623730951}}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":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":{"318":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"289":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"665":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"191":{"tf":1.0},"289":{"tf":1.4142135623730951},"33":{"tf":1.0},"652":{"tf":1.0},"792":{"tf":1.0},"807":{"tf":1.0},"916":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"114":{"tf":1.0},"127":{"tf":2.23606797749979},"135":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"338":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"665":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"690":{"tf":1.4142135623730951},"734":{"tf":1.0},"818":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"860":{"tf":1.4142135623730951},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"846":{"tf":1.0},"859":{"tf":1.0}}},"y":{"_":{"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":8,"docs":{"125":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"126":{"tf":1.4142135623730951},"145":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.23606797749979},"195":{"tf":1.0},"203":{"tf":3.1622776601683795},"206":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":2.23606797749979},"321":{"tf":2.0},"324":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":1.4142135623730951},"649":{"tf":1.4142135623730951},"667":{"tf":1.0},"716":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951},"872":{"tf":1.0},"930":{"tf":1.0},"950":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"872":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"734":{"tf":1.4142135623730951},"927":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"224":{"tf":1.0},"371":{"tf":1.0},"476":{"tf":1.0},"831":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"168":{"tf":1.0},"22":{"tf":1.0},"809":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":19,"docs":{"127":{"tf":1.0},"340":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0},"718":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":1.0},"774":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"865":{"tf":1.4142135623730951},"933":{"tf":1.0},"940":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"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":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"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":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"601":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"600":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":18,"docs":{"226":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"288":{"tf":1.0},"376":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":2.23606797749979},"615":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"119":{"tf":1.0},"184":{"tf":1.4142135623730951},"29":{"tf":1.0},"688":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"660":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":112,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"137":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":2.6457513110645907},"41":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":2.8284271247461903},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.0},"488":{"tf":2.6457513110645907},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"514":{"tf":2.0},"515":{"tf":2.6457513110645907},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.0},"549":{"tf":1.4142135623730951},"572":{"tf":3.0},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":2.23606797749979},"581":{"tf":1.0},"582":{"tf":2.0},"583":{"tf":2.6457513110645907},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"590":{"tf":1.4142135623730951},"591":{"tf":1.7320508075688772},"592":{"tf":1.7320508075688772},"593":{"tf":1.0},"594":{"tf":1.0},"718":{"tf":1.4142135623730951},"729":{"tf":2.0},"738":{"tf":1.0},"755":{"tf":1.0},"76":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"880":{"tf":1.0},"911":{"tf":1.7320508075688772},"958":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"673":{"tf":1.0},"728":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"480":{"tf":1.0},"759":{"tf":1.0},"854":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"969":{"tf":4.123105625617661}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"961":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":1,"docs":{"859":{"tf":1.0}}},"o":{"c":{"df":36,"docs":{"134":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.4142135623730951},"315":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":2.0},"335":{"tf":1.7320508075688772},"343":{"tf":1.0},"376":{"tf":1.0},"390":{"tf":1.7320508075688772},"400":{"tf":1.7320508075688772},"411":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"432":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"502":{"tf":1.0},"513":{"tf":1.7320508075688772},"525":{"tf":1.0},"536":{"tf":1.7320508075688772},"559":{"tf":1.7320508075688772},"571":{"tf":1.7320508075688772},"581":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.7320508075688772},"617":{"tf":1.0},"628":{"tf":1.0},"838":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.0},"912":{"tf":1.0},"924":{"tf":1.0}},"s":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"]":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":71,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.6457513110645907},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.7320508075688772},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"37":{"tf":2.23606797749979},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":2.23606797749979},"499":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.7320508075688772},"697":{"tf":1.0},"706":{"tf":1.0},"71":{"tf":1.0},"772":{"tf":1.4142135623730951},"799":{"tf":2.0},"801":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}}}}}}}},"df":14,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"342":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"493":{"tf":1.0},"57":{"tf":1.0},"692":{"tf":1.0},"76":{"tf":1.0},"831":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":1,"docs":{"969":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"640":{"tf":1.0},"649":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.4142135623730951},"793":{"tf":1.0},"82":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":2,"docs":{"289":{"tf":1.0},"523":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":31,"docs":{"135":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"480":{"tf":2.449489742783178},"493":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"583":{"tf":1.0},"630":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"753":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"782":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"814":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"338":{"tf":1.0},"621":{"tf":2.23606797749979},"77":{"tf":1.0},"792":{"tf":1.0},"834":{"tf":1.0},"862":{"tf":1.0},"98":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"710":{"tf":1.0}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"346":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"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":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"747":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":19,"docs":{"144":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"339":{"tf":2.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"377":{"tf":1.0},"468":{"tf":1.0},"814":{"tf":1.0},"848":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"17":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"661":{"tf":1.0},"673":{"tf":2.0},"675":{"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":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":18,"docs":{"127":{"tf":1.0},"232":{"tf":1.0},"310":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"750":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"947":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"884":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"448":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"425":{"tf":2.449489742783178},"445":{"tf":2.8284271247461903},"446":{"tf":4.0},"448":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"135":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"224":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"328":{"tf":1.0},"601":{"tf":1.0},"732":{"tf":1.0},"753":{"tf":1.0},"758":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"818":{"tf":1.4142135623730951},"835":{"tf":1.0},"838":{"tf":1.0},"844":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"921":{"tf":1.0},"99":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"289":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"771":{"tf":1.0},"83":{"tf":1.4142135623730951},"834":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"125":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"271":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"725":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"208":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":2.0},"330":{"tf":1.0},"465":{"tf":1.0},"579":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"737":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"858":{"tf":1.0},"865":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"289":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"529":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"753":{"tf":1.4142135623730951},"78":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":44,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":3.4641016151377544},"136":{"tf":1.7320508075688772},"155":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"54":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"567":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":74,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"221":{"tf":1.0},"258":{"tf":1.4142135623730951},"281":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.23606797749979},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"346":{"tf":1.0},"348":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"456":{"tf":1.0},"476":{"tf":1.4142135623730951},"482":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"560":{"tf":1.0},"568":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"653":{"tf":1.7320508075688772},"661":{"tf":1.0},"665":{"tf":1.0},"710":{"tf":1.0},"78":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"456":{"tf":1.0},"484":{"tf":1.0},"78":{"tf":1.0},"877":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"82":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"62":{"tf":1.0},"728":{"tf":1.0},"862":{"tf":1.0},"968":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"218":{"tf":1.0},"677":{"tf":1.0},"814":{"tf":1.0},"924":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}}},"df":1,"docs":{"701":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"231":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"958":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"927":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"288":{"tf":1.0},"79":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":103,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"571":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772}}}}}}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"191":{"tf":1.0},"242":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":2.0},"332":{"tf":1.7320508075688772},"735":{"tf":1.0},"752":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"?":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{")":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"65":{"tf":1.0},"916":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"549":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"328":{"tf":2.0},"644":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}}}},"f":{"df":1,"docs":{"815":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"344":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"132":{"tf":1.0},"17":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"769":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"779":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"446":{"tf":1.0},"743":{"tf":1.0},"812":{"tf":1.0},"842":{"tf":1.0},"938":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":23,"docs":{"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"50":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":88,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"221":{"tf":2.0},"224":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.7320508075688772},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"322":{"tf":2.0},"324":{"tf":1.0},"348":{"tf":1.4142135623730951},"355":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.7320508075688772},"387":{"tf":1.0},"389":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"443":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"715":{"tf":1.4142135623730951},"721":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.7320508075688772},"762":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"818":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"861":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.4142135623730951},"956":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"_":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":11,"docs":{"128":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"541":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"731":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"696":{"tf":1.0},"697":{"tf":3.1622776601683795},"698":{"tf":2.449489742783178},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":2.0},"951":{"tf":1.4142135623730951}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"1":{"6":{"/":{"1":{"7":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"/":{"0":{"4":{":":{"3":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"1":{"9":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":1.0},"184":{"tf":2.0},"203":{"tf":1.4142135623730951},"329":{"tf":1.0},"711":{"tf":1.0},"76":{"tf":1.0},"795":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.4142135623730951},"865":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.7320508075688772},"969":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"263":{"tf":1.7320508075688772},"31":{"tf":1.0},"763":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"867":{"tf":1.0},"922":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"135":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"289":{"tf":1.4142135623730951},"958":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"140":{"tf":1.4142135623730951},"316":{"tf":1.0},"376":{"tf":1.0},"429":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"452":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"652":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"927":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"183":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"127":{"tf":1.0},"710":{"tf":1.0},"834":{"tf":1.0},"913":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.7320508075688772},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"493":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"63":{"tf":1.0},"673":{"tf":1.0},"736":{"tf":1.0},"753":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"776":{"tf":1.0},"788":{"tf":1.0},"802":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"853":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"929":{"tf":1.0},"938":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"439":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"105":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"526":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":29,"docs":{"138":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"32":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"34":{"tf":1.7320508075688772},"377":{"tf":1.0},"533":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"700":{"tf":1.4142135623730951},"71":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"958":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"563":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"750":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":49,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"19":{"tf":1.7320508075688772},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"229":{"tf":2.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"348":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"653":{"tf":1.0},"660":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":2.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":2.449489742783178},"691":{"tf":2.23606797749979},"692":{"tf":1.0},"721":{"tf":1.0},"74":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"841":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"907":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"921":{"tf":1.7320508075688772},"924":{"tf":1.0},"939":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"315":{"tf":1.0},"804":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"750":{"tf":1.0},"804":{"tf":1.0}}},"r":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":145,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":3.4641016151377544},"127":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"231":{"tf":1.0},"273":{"tf":2.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"356":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":2.6457513110645907},"435":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"481":{"tf":2.23606797749979},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"517":{"tf":1.0},"520":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"538":{"tf":1.0},"541":{"tf":1.4142135623730951},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"570":{"tf":1.0},"575":{"tf":1.0},"578":{"tf":1.4142135623730951},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.4142135623730951},"609":{"tf":1.0},"612":{"tf":1.0},"618":{"tf":1.4142135623730951},"621":{"tf":1.0},"623":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":2.449489742783178},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"698":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"76":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":2.449489742783178},"839":{"tf":1.0},"842":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"86":{"tf":1.0},"866":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"904":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"917":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":2.0},"929":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"94":{"tf":1.0},"945":{"tf":1.0},"97":{"tf":1.0}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":21,"docs":{"396":{"tf":1.0},"407":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.4142135623730951},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.4142135623730951},"578":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951},"635":{"tf":1.0},"643":{"tf":1.0},"840":{"tf":1.0},"913":{"tf":1.0},"924":{"tf":1.0},"933":{"tf":1.0}},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"396":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"428":{"tf":1.0},"544":{"tf":1.0},"566":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":13,"docs":{"386":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"578":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.4142135623730951},"643":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"396":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"428":{"tf":1.0},"476":{"tf":1.0},"544":{"tf":1.0},"566":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":13,"docs":{"386":{"tf":1.0},"407":{"tf":1.0},"476":{"tf":1.0},"497":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.4142135623730951},"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"5":{"df":1,"docs":{"942":{"tf":1.0}}},"6":{"df":1,"docs":{"950":{"tf":1.7320508075688772}}},"a":{"df":1,"docs":{"224":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"132":{"tf":1.4142135623730951},"224":{"tf":2.23606797749979}},"m":{"df":3,"docs":{"32":{"tf":1.7320508075688772},"700":{"tf":1.0},"912":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"922":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"2":{"tf":1.0},"4":{"tf":1.0},"962":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"261":{"tf":1.0},"289":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"145":{"tf":1.0},"22":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"752":{"tf":1.0},"79":{"tf":1.4142135623730951},"802":{"tf":1.0},"845":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"580":{"tf":1.0},"591":{"tf":1.0}}}},"t":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{">":{".":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":2.449489742783178},"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":132,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":3.4641016151377544},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"137":{"tf":1.0},"141":{"tf":2.23606797749979},"142":{"tf":4.358898943540674},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"168":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"170":{"tf":3.0},"171":{"tf":2.0},"173":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.23606797749979},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":3.0},"214":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"258":{"tf":5.0},"259":{"tf":3.605551275463989},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":2.23606797749979},"263":{"tf":1.4142135623730951},"264":{"tf":2.449489742783178},"266":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":2.23606797749979},"324":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"346":{"tf":2.8284271247461903},"347":{"tf":1.0},"376":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"560":{"tf":3.1622776601683795},"561":{"tf":2.0},"562":{"tf":1.0},"563":{"tf":2.449489742783178},"564":{"tf":1.0},"565":{"tf":2.6457513110645907},"566":{"tf":1.4142135623730951},"567":{"tf":2.23606797749979},"568":{"tf":2.449489742783178},"569":{"tf":1.0},"570":{"tf":1.4142135623730951},"571":{"tf":1.0},"579":{"tf":1.0},"649":{"tf":1.0},"677":{"tf":2.8284271247461903},"679":{"tf":1.4142135623730951},"693":{"tf":1.0},"718":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.4142135623730951},"734":{"tf":1.0},"735":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":3.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"799":{"tf":3.0},"804":{"tf":2.23606797749979},"807":{"tf":1.0},"815":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.7320508075688772},"843":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.7320508075688772},"897":{"tf":1.4142135623730951},"900":{"tf":1.0},"907":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"929":{"tf":2.6457513110645907},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"939":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":2.6457513110645907},"956":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"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":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"[":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"565":{"tf":1.4142135623730951}}}}}}}},"s":{"df":1,"docs":{"112":{"tf":1.0}}}},"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"[":{"0":{"]":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"?":{"[":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"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":{"565":{"tf":1.0}}}}}}}}},"[":{"0":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"565":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"u":{"df":2,"docs":{"289":{"tf":1.0},"649":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"122":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"289":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"690":{"tf":1.0},"765":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"402":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"5":{"tf":1.0},"935":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":94,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":2.0},"115":{"tf":2.23606797749979},"119":{"tf":1.0},"120":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":3.1622776601683795},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"171":{"tf":2.0},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":2.6457513110645907},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"316":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.4142135623730951},"376":{"tf":3.1622776601683795},"377":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"595":{"tf":1.0},"602":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.4142135623730951},"649":{"tf":1.0},"665":{"tf":1.0},"674":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"690":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"964":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":17,"docs":{"135":{"tf":1.4142135623730951},"168":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"378":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"127":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":3,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"677":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":34,"docs":{"130":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"288":{"tf":1.0},"321":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"677":{"tf":2.23606797749979},"679":{"tf":2.0},"765":{"tf":1.0},"772":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"u":{"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":{"679":{"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"679":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"267":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"203":{"tf":1.0},"318":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":1,"docs":{"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"289":{"tf":1.0},"340":{"tf":1.7320508075688772},"346":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"78":{"tf":1.0},"837":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"379":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"780":{"tf":1.0},"8":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"861":{"tf":1.0},"935":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"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":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":33,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"118":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":2.23606797749979},"416":{"tf":2.449489742783178},"427":{"tf":2.6457513110645907},"437":{"tf":2.449489742783178},"460":{"tf":1.0},"480":{"tf":2.449489742783178},"507":{"tf":2.6457513110645907},"531":{"tf":2.449489742783178},"563":{"tf":1.0},"577":{"tf":2.6457513110645907},"600":{"tf":2.0},"652":{"tf":1.0},"692":{"tf":1.4142135623730951},"701":{"tf":1.0},"817":{"tf":1.0},"86":{"tf":1.4142135623730951},"935":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772}},"e":{"d":{"_":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"553":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":43,"docs":{"129":{"tf":1.0},"131":{"tf":2.6457513110645907},"158":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"203":{"tf":3.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":3.0},"306":{"tf":1.0},"307":{"tf":2.0},"315":{"tf":1.0},"326":{"tf":3.3166247903554},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"329":{"tf":2.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.0},"784":{"tf":1.0},"819":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"865":{"tf":1.0},"873":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"376":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}},"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":27,"docs":{"124":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"210":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":3.0},"315":{"tf":1.0},"330":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"718":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.4142135623730951},"958":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"328":{"tf":2.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":3.4641016151377544},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"685":{"tf":2.449489742783178},"77":{"tf":2.449489742783178},"830":{"tf":1.7320508075688772},"858":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":2.449489742783178}},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"774":{"tf":1.0},"830":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"251":{"tf":1.0},"266":{"tf":1.0}}}},"n":{"df":4,"docs":{"677":{"tf":1.0},"702":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"137":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"318":{"tf":1.0},"342":{"tf":1.0},"460":{"tf":1.0},"529":{"tf":2.449489742783178},"60":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"471":{"tf":1.0},"503":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"224":{"tf":1.4142135623730951},"317":{"tf":1.0},"34":{"tf":1.0},"690":{"tf":1.4142135623730951},"837":{"tf":1.0},"953":{"tf":1.0}}}},"s":{"df":34,"docs":{"111":{"tf":1.0},"211":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"236":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"317":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"742":{"tf":1.0},"772":{"tf":1.4142135623730951},"788":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"823":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"913":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"862":{"tf":1.0},"864":{"tf":1.0}}}}}}},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"13":{"tf":1.0},"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"670":{"tf":1.4142135623730951},"672":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"663":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"184":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"679":{"tf":1.0},"734":{"tf":1.0},"77":{"tf":1.4142135623730951},"795":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":24,"docs":{"0":{"tf":1.0},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"33":{"tf":2.0},"342":{"tf":1.4142135623730951},"500":{"tf":1.0},"592":{"tf":1.0},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"848":{"tf":1.0},"853":{"tf":1.7320508075688772},"902":{"tf":1.0},"915":{"tf":1.0},"940":{"tf":1.0},"950":{"tf":1.7320508075688772},"956":{"tf":1.0},"958":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"494":{"tf":1.0},"621":{"tf":3.1622776601683795},"626":{"tf":1.7320508075688772},"672":{"tf":1.4142135623730951},"721":{"tf":1.0},"743":{"tf":1.0},"804":{"tf":1.0},"862":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.0}}}}},"r":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"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":{"328":{"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{":":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"799":{"tf":1.0}}},"2":{"df":1,"docs":{"799":{"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":7,"docs":{"560":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"852":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"41":{"tf":1.0}}}},"df":52,"docs":{"110":{"tf":1.0},"112":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"224":{"tf":2.0},"259":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":2.8284271247461903},"333":{"tf":1.0},"388":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"534":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"563":{"tf":3.605551275463989},"565":{"tf":1.7320508075688772},"568":{"tf":2.8284271247461903},"570":{"tf":1.0},"580":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"603":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"677":{"tf":1.0},"679":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"799":{"tf":2.0},"865":{"tf":1.4142135623730951},"89":{"tf":1.0},"897":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"697":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"802":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"230":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"303":{"tf":1.0},"958":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"162":{"tf":1.0},"19":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"859":{"tf":1.4142135623730951},"895":{"tf":1.0},"935":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"127":{"tf":2.0},"273":{"tf":1.0},"294":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"792":{"tf":1.0},"834":{"tf":1.4142135623730951},"849":{"tf":1.0},"929":{"tf":1.0},"935":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"895":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"203":{"tf":1.0},"289":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0}}},"s":{"df":32,"docs":{"100":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"652":{"tf":2.6457513110645907},"73":{"tf":1.0},"734":{"tf":1.0},"79":{"tf":1.4142135623730951},"875":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":1,"docs":{"923":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"958":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"288":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"183":{"tf":1.4142135623730951},"248":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"869":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"802":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"715":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0}}}}}},"df":8,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":71,"docs":{"0":{"tf":1.0},"138":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":2.449489742783178},"195":{"tf":3.0},"196":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"198":{"tf":2.8284271247461903},"199":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":5.830951894845301},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":2.23606797749979},"209":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"418":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"694":{"tf":1.0},"701":{"tf":1.0},"720":{"tf":1.0},"738":{"tf":1.0},"74":{"tf":1.0},"757":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"841":{"tf":1.0},"863":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0},"963":{"tf":1.0},"965":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"b":{"8":{"/":{"1":{"7":{":":{"0":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.6457513110645907}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"958":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"132":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":2.0},"198":{"tf":1.0},"316":{"tf":1.7320508075688772},"895":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"117":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"793":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"877":{"tf":1.0}}}},"i":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":29,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"644":{"tf":1.0},"677":{"tf":2.0},"697":{"tf":1.0},"734":{"tf":1.0},"750":{"tf":1.0},"755":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"782":{"tf":1.0},"801":{"tf":1.0},"839":{"tf":1.4142135623730951},"865":{"tf":1.0}}},"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":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":119,"docs":{"108":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":2.23606797749979},"116":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":3.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":2.23606797749979},"202":{"tf":1.0},"203":{"tf":2.0},"21":{"tf":2.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":2.23606797749979},"282":{"tf":1.4142135623730951},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.23606797749979},"292":{"tf":1.4142135623730951},"293":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":2.23606797749979},"301":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"303":{"tf":1.4142135623730951},"31":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"340":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"38":{"tf":2.0},"398":{"tf":1.4142135623730951},"41":{"tf":1.0},"419":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"440":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"499":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"533":{"tf":1.0},"55":{"tf":1.0},"563":{"tf":1.0},"59":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"614":{"tf":1.4142135623730951},"661":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":2.8284271247461903},"68":{"tf":1.0},"686":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.4142135623730951},"753":{"tf":1.0},"77":{"tf":1.0},"783":{"tf":1.0},"812":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"850":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.23606797749979},"9":{"tf":1.0},"91":{"tf":1.0},"924":{"tf":1.0},"950":{"tf":1.7320508075688772},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"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":2,"docs":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"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":{},"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":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":2,"docs":{"232":{"tf":1.0},"379":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"234":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"315":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"11":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"182":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.0},"653":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.4142135623730951},"693":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"d":{"df":10,"docs":{"232":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.7320508075688772},"34":{"tf":1.0},"401":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"376":{"tf":1.0},"467":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"149":{"tf":1.0},"22":{"tf":1.4142135623730951},"318":{"tf":1.0},"339":{"tf":1.0},"652":{"tf":1.0},"747":{"tf":1.0},"801":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":25,"docs":{"110":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"289":{"tf":2.0},"31":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"354":{"tf":1.0},"462":{"tf":1.0},"646":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"?":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":1,"docs":{"565":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"d":{"df":10,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"313":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"811":{"tf":1.0},"909":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"556":{"tf":1.0}}}}}},"df":66,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":3.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"328":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":2.449489742783178},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"65":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"747":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"804":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"881":{"tf":1.0},"888":{"tf":1.0},"897":{"tf":1.0},"968":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"t":{"df":8,"docs":{"106":{"tf":1.4142135623730951},"22":{"tf":1.0},"630":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0},"961":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"371":{"tf":1.0},"961":{"tf":1.0}}}},"x":{"df":58,"docs":{"117":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"50":{"tf":1.0},"541":{"tf":1.0},"632":{"tf":1.0},"720":{"tf":1.0},"731":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"797":{"tf":1.0},"804":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.0},"818":{"tf":1.4142135623730951},"820":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.4142135623730951},"843":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"876":{"tf":1.0},"880":{"tf":1.4142135623730951},"881":{"tf":1.0},"892":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"924":{"tf":2.23606797749979},"926":{"tf":1.0},"929":{"tf":1.0},"935":{"tf":1.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"946":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"d":{"(":{"2":{"0":{"1":{"9":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"100":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"355":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"682":{"tf":1.0},"715":{"tf":1.0},"79":{"tf":1.0},"861":{"tf":1.0},"872":{"tf":1.0},"908":{"tf":1.4142135623730951}},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"383":{"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":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"2":{"df":1,"docs":{"851":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"p":{"df":3,"docs":{"342":{"tf":1.0},"666":{"tf":1.0},"741":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"918":{"tf":1.4142135623730951},"937":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"459":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"720":{"tf":1.0},"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"786":{"tf":1.0},"807":{"tf":1.0},"867":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.0}}}},"n":{"df":12,"docs":{"26":{"tf":1.0},"342":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":5,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"830":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"44":{"tf":1.0},"677":{"tf":1.0},"683":{"tf":1.0},"831":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":80,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":2.23606797749979},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"55":{"tf":1.0},"560":{"tf":1.0},"580":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"60":{"tf":1.0},"614":{"tf":1.0},"626":{"tf":1.0},"662":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"697":{"tf":1.0},"72":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0},"919":{"tf":1.0},"93":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"715":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"c":{"df":8,"docs":{"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"354":{"tf":1.0},"679":{"tf":1.0},"792":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"155":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.4142135623730951},"224":{"tf":1.0},"231":{"tf":1.0},"807":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"476":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"968":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"268":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":84,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"128":{"tf":1.0},"138":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":2.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"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},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.4142135623730951},"387":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"864":{"tf":1.0},"87":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.4142135623730951},"969":{"tf":3.0}}}},"df":14,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"288":{"tf":1.0},"320":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"823":{"tf":1.0},"89":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"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":6,"docs":{"12":{"tf":1.0},"775":{"tf":1.0},"793":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0}},"s":{":":{"$":{"df":0,"docs":{},"{":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"793":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"288":{"tf":1.0},"796":{"tf":1.0},"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":135,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"548":{"tf":1.0},"553":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"565":{"tf":1.0},"571":{"tf":1.0},"577":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"617":{"tf":1.0},"623":{"tf":1.0},"628":{"tf":1.0},"634":{"tf":1.0},"637":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"814":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"117":{"tf":1.0},"289":{"tf":1.0},"350":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"618":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"63":{"tf":1.0},"711":{"tf":1.0},"80":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"318":{"tf":1.0},"356":{"tf":1.0},"657":{"tf":1.4142135623730951},"776":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"22":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"297":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"752":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"958":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"282":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":281,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"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},"746":{"tf":1.0},"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},"755":{"tf":1.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},"765":{"tf":1.0},"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},"78":{"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"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.0},"895":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"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.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":6,"docs":{"184":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"22":{"tf":1.0},"538":{"tf":1.0},"900":{"tf":1.0}}}}},"n":{"c":{"df":14,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"111":{"tf":1.4142135623730951},"144":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"318":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"338":{"tf":1.7320508075688772},"342":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":2.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"471":{"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},"48":{"tf":1.0},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"514":{"tf":1.0},"652":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"725":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.0},"743":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.0},"772":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.4142135623730951},"810":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.0},"867":{"tf":1.4142135623730951},"905":{"tf":1.0},"907":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"924":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"958":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"315":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"190":{"tf":1.0},"310":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"830":{"tf":1.0},"87":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"613":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"958":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"334":{"tf":2.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"703":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0}}}}}}},"df":1,"docs":{"687":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"580":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"270":{"tf":1.0},"316":{"tf":1.0},"376":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.4142135623730951},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"830":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"792":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"d":{"/":{"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":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":224,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"144":{"tf":1.4142135623730951},"166":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"175":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.7320508075688772},"224":{"tf":1.0},"25":{"tf":1.4142135623730951},"252":{"tf":1.0},"26":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.7320508075688772},"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.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"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},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.4142135623730951},"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},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"371":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"51":{"tf":1.0},"514":{"tf":1.7320508075688772},"52":{"tf":1.0},"528":{"tf":2.8284271247461903},"54":{"tf":1.0},"563":{"tf":2.0},"582":{"tf":1.7320508075688772},"65":{"tf":1.0},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.7320508075688772},"671":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":1.7320508075688772},"687":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"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.4142135623730951},"738":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"78":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"888":{"tf":1.4142135623730951},"9":{"tf":1.0},"914":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"b":{"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":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"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":0,"docs":{},"m":{"df":1,"docs":{"804":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"838":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":53,"docs":{"127":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"360":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"651":{"tf":1.0},"711":{"tf":1.0},"721":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"876":{"tf":1.0},"905":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"838":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"612":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"609":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"612":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"613":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"510":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":1,"docs":{"22":{"tf":1.0}}},"t":{"df":4,"docs":{"132":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"60":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":107,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"571":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"60":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.4142135623730951},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"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":{"17":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"32":{"tf":1.7320508075688772},"44":{"tf":1.0},"660":{"tf":1.7320508075688772},"677":{"tf":1.0},"688":{"tf":1.7320508075688772}},"n":{"df":90,"docs":{"104":{"tf":1.0},"110":{"tf":1.7320508075688772},"130":{"tf":1.0},"140":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"673":{"tf":1.0},"782":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"929":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":2.6457513110645907}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"276":{"tf":1.0},"68":{"tf":2.23606797749979},"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"'":{"df":10,"docs":{"2":{"tf":1.0},"22":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.0},"349":{"tf":1.0},"693":{"tf":1.0},"838":{"tf":1.4142135623730951},"875":{"tf":1.0},"969":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"393":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"157":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"865":{"tf":1.0}}}},"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":{},"n":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":2,"docs":{"124":{"tf":1.0},"892":{"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"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":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"22":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"716":{"tf":1.0},"721":{"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":{},"v":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"i":{"d":{"]":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"492":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"493":{"tf":1.0},"494":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"120":{"tf":1.0},"124":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"\"":{"df":0,"docs":{},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"127":{"tf":1.0},"809":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"127":{"tf":1.0},"310":{"tf":1.0},"773":{"tf":1.0},"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"120":{"tf":1.0},"176":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"383":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"2":{"3":{"df":1,"docs":{"574":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"858":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"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":{"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":{"338":{"tf":1.0},"678":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"679":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"238":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.7320508075688772},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"701":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"551":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":28,"docs":{"121":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"222":{"tf":1.0},"240":{"tf":1.4142135623730951},"31":{"tf":1.0},"315":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"561":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":2.0},"916":{"tf":1.0},"923":{"tf":1.4142135623730951},"934":{"tf":1.0},"936":{"tf":1.0},"948":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"834":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"243":{"tf":1.0}}}}}},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"585":{"tf":1.0},"586":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"585":{"tf":1.0},"586":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"[":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"519":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"df":3,"docs":{"315":{"tf":1.0},"338":{"tf":1.0},"678":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"168":{"tf":1.0},"752":{"tf":1.0},"912":{"tf":1.0},"929":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}},"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"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":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":1,"docs":{"920":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"920":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"920":{"tf":1.0}},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":3,"docs":{"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"342":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"9":{"tf":1.0},"921":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":2,"docs":{"316":{"tf":1.0},"338":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"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":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":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":{"407":{"tf":1.0},"532":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"643":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"333":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"924":{"tf":1.0},"927":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"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":{},"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":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"802":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"135":{"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":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"127":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"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":{},"s":{"df":3,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"829":{"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.0},"842":{"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":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":2,"docs":{"127":{"tf":1.0},"747":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"747":{"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":{},"r":{".":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"l":{"df":1,"docs":{"862":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"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":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"752":{"tf":1.0},"811":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"127":{"tf":1.0},"762":{"tf":1.0},"806":{"tf":1.0},"809":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"806":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"739":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"747":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"/":{"4":{"0":{".":{"0":{".":{"0":{"df":1,"docs":{"136":{"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":{},"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":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"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":{},"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":{"318":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":23,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":3,"docs":{"316":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"338":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"26":{"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":{},"r":{"df":1,"docs":{"823":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":1,"docs":{"369":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":4,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"362":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"362":{"tf":1.7320508075688772}}}}}},"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":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":3,"docs":{"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"505":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"n":{"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":11,"docs":{"497":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"652":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":84,"docs":{"115":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"288":{"tf":1.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"567":{"tf":1.0},"653":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":2.8284271247461903},"678":{"tf":1.0},"689":{"tf":1.4142135623730951},"690":{"tf":1.0},"692":{"tf":2.449489742783178},"715":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"783":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"864":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":2.23606797749979},"943":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"=":{"=":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"8":{".":{"1":{"df":1,"docs":{"673":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}},"df":0,"docs":{}},"df":2,"docs":{"690":{"tf":1.0},"907":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"673":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"673":{"tf":1.4142135623730951},"690":{"tf":1.0},"907":{"tf":1.0}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"375":{"tf":1.7320508075688772}},"s":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}},"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}},"e":{"=":{"$":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"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":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"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":{"728":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"751":{"tf":1.0},"805":{"tf":1.0},"839":{"tf":1.0},"840":{"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":{"837":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":517,"docs":{"0":{"tf":3.872983346207417},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"111":{"tf":2.23606797749979},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":2.23606797749979},"126":{"tf":2.8284271247461903},"127":{"tf":2.23606797749979},"128":{"tf":1.0},"13":{"tf":3.0},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":3.1622776601683795},"14":{"tf":2.449489742783178},"141":{"tf":1.0},"142":{"tf":2.6457513110645907},"145":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":2.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":3.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":2.23606797749979},"18":{"tf":2.449489742783178},"180":{"tf":2.23606797749979},"181":{"tf":2.23606797749979},"182":{"tf":2.23606797749979},"183":{"tf":3.1622776601683795},"184":{"tf":2.0},"185":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":3.3166247903554},"196":{"tf":1.0},"197":{"tf":2.449489742783178},"198":{"tf":2.449489742783178},"199":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":2.6457513110645907},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":1.4142135623730951},"21":{"tf":2.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.6457513110645907},"219":{"tf":1.0},"22":{"tf":2.6457513110645907},"220":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":2.23606797749979},"224":{"tf":3.0},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":2.449489742783178},"230":{"tf":2.0},"231":{"tf":2.6457513110645907},"232":{"tf":2.8284271247461903},"233":{"tf":3.1622776601683795},"234":{"tf":2.6457513110645907},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.0},"239":{"tf":2.0},"24":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":3.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":2.6457513110645907},"259":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":2.6457513110645907},"290":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":2.23606797749979},"308":{"tf":1.7320508075688772},"309":{"tf":2.0},"31":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":3.3166247903554},"316":{"tf":4.358898943540674},"317":{"tf":1.7320508075688772},"318":{"tf":5.385164807134504},"32":{"tf":3.7416573867739413},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.23606797749979},"326":{"tf":1.7320508075688772},"328":{"tf":2.23606797749979},"329":{"tf":1.4142135623730951},"33":{"tf":2.449489742783178},"330":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.7320508075688772},"340":{"tf":2.23606797749979},"342":{"tf":1.4142135623730951},"344":{"tf":2.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":2.0},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.4142135623730951},"36":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":2.23606797749979},"371":{"tf":1.4142135623730951},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"383":{"tf":1.0},"385":{"tf":1.0},"39":{"tf":2.23606797749979},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"402":{"tf":2.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"419":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":2.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":2.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.6457513110645907},"50":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":2.6457513110645907},"522":{"tf":1.4142135623730951},"528":{"tf":1.0},"529":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"54":{"tf":1.7320508075688772},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"56":{"tf":1.0},"561":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"580":{"tf":1.0},"59":{"tf":1.0},"591":{"tf":1.4142135623730951},"598":{"tf":1.0},"6":{"tf":2.449489742783178},"60":{"tf":2.0},"600":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.0},"614":{"tf":1.4142135623730951},"619":{"tf":1.7320508075688772},"62":{"tf":3.1622776601683795},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.7320508075688772},"630":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":2.23606797749979},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"647":{"tf":1.4142135623730951},"649":{"tf":2.0},"65":{"tf":2.6457513110645907},"652":{"tf":1.0},"653":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"656":{"tf":1.4142135623730951},"657":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.0},"67":{"tf":1.7320508075688772},"670":{"tf":1.0},"671":{"tf":2.8284271247461903},"673":{"tf":2.449489742783178},"674":{"tf":2.0},"675":{"tf":1.0},"676":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"678":{"tf":2.6457513110645907},"679":{"tf":1.0},"68":{"tf":1.7320508075688772},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":2.6457513110645907},"688":{"tf":1.7320508075688772},"689":{"tf":1.4142135623730951},"690":{"tf":1.7320508075688772},"691":{"tf":1.7320508075688772},"692":{"tf":2.449489742783178},"693":{"tf":1.7320508075688772},"697":{"tf":1.7320508075688772},"698":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":2.8284271247461903},"704":{"tf":1.7320508075688772},"705":{"tf":1.7320508075688772},"706":{"tf":1.4142135623730951},"707":{"tf":2.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"710":{"tf":1.0},"712":{"tf":2.0},"715":{"tf":1.7320508075688772},"716":{"tf":1.0},"721":{"tf":1.7320508075688772},"732":{"tf":1.4142135623730951},"736":{"tf":1.7320508075688772},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":2.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.4142135623730951},"755":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"78":{"tf":2.23606797749979},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"79":{"tf":1.7320508075688772},"792":{"tf":2.0},"793":{"tf":2.8284271247461903},"798":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":2.0},"817":{"tf":1.4142135623730951},"818":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"828":{"tf":1.0},"83":{"tf":1.4142135623730951},"831":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":2.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":2.0},"854":{"tf":1.4142135623730951},"858":{"tf":1.7320508075688772},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":2.0},"862":{"tf":1.0},"865":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.7320508075688772},"872":{"tf":1.0},"873":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"881":{"tf":1.7320508075688772},"882":{"tf":1.4142135623730951},"885":{"tf":1.0},"892":{"tf":1.0},"9":{"tf":3.4641016151377544},"91":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":2.449489742783178},"916":{"tf":2.23606797749979},"917":{"tf":1.0},"919":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"920":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"945":{"tf":1.7320508075688772},"951":{"tf":2.23606797749979},"956":{"tf":1.4142135623730951},"957":{"tf":2.449489742783178},"958":{"tf":5.291502622129181},"962":{"tf":1.7320508075688772},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"347":{"tf":1.4142135623730951}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.4142135623730951}}}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"666":{"tf":1.4142135623730951},"667":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"[":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"112":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"779":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"649":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"670":{"tf":1.4142135623730951},"672":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"720":{"tf":1.0},"867":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"885":{"tf":1.0}},"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":{},"p":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{"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":1,"docs":{"318":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"473":{"tf":1.7320508075688772},"876":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"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":1,"docs":{"318":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"’":{"df":3,"docs":{"3":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"830":{"tf":1.0},"834":{"tf":1.4142135623730951},"858":{"tf":1.0},"864":{"tf":1.0}}}}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"22":{"tf":1.0},"239":{"tf":1.0},"318":{"tf":1.0},"774":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"5":{"tf":1.4142135623730951},"702":{"tf":2.0},"703":{"tf":1.0},"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},"958":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"t":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"136":{"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":{},"t":{"c":{"+":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"445":{"tf":1.0},"446":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"df":3,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"df":22,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"425":{"tf":2.449489742783178},"445":{"tf":2.449489742783178},"446":{"tf":2.449489742783178},"448":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"619":{"tf":1.0},"675":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":5,"docs":{"109":{"tf":1.0},"145":{"tf":1.4142135623730951},"198":{"tf":1.0},"859":{"tf":1.0},"88":{"tf":1.0}}},"o":{"d":{"df":7,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"233":{"tf":1.0},"63":{"tf":1.0},"678":{"tf":1.0},"830":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"448":{"tf":1.0}}}}}},"r":{"a":{"b":{"df":1,"docs":{"665":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"339":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"802":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"l":{"df":32,"docs":{"11":{"tf":1.0},"13":{"tf":3.0},"318":{"tf":1.0},"663":{"tf":1.7320508075688772},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.4142135623730951},"675":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"731":{"tf":1.0},"735":{"tf":1.0},"750":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"786":{"tf":1.4142135623730951},"792":{"tf":2.0},"793":{"tf":1.0},"801":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"670":{"tf":1.0},"673":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"673":{"tf":1.4142135623730951},"862":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"467":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"2":{"3":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"578":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"578":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"2":{"3":{"df":1,"docs":{"574":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"578":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"2":{"3":{"df":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"578":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"577":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"577":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"288":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"tf":1.4142135623730951}}}},"p":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"673":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"297":{"tf":1.0},"654":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"142":{"tf":1.0},"342":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"849":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"878":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":25,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"117":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":2.0},"23":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"29":{"tf":1.0},"349":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":2.449489742783178},"964":{"tf":1.4142135623730951},"965":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"110":{"tf":1.0},"5":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"959":{"tf":1.7320508075688772},"960":{"tf":1.4142135623730951},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"968":{"tf":1.7320508075688772},"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"852":{"tf":1.0},"853":{"tf":1.0},"913":{"tf":1.0},"933":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}}},"h":{"1":{"2":{"0":{"2":{"0":{"df":1,"docs":{"958":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"521":{"tf":1.0}}},"3":{"df":1,"docs":{"521":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"65":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"514":{"tf":1.0}},"l":{"df":27,"docs":{"109":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"371":{"tf":1.0},"402":{"tf":1.0},"563":{"tf":2.0},"679":{"tf":1.0},"710":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"833":{"tf":1.4142135623730951},"865":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"679":{"tf":1.0},"858":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"120":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.0},"155":{"tf":1.0},"312":{"tf":1.0},"376":{"tf":1.7320508075688772},"401":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.4142135623730951},"60":{"tf":1.0},"618":{"tf":1.7320508075688772},"697":{"tf":1.0},"701":{"tf":1.0},"710":{"tf":1.0},"75":{"tf":2.0},"802":{"tf":1.0},"809":{"tf":1.0},"823":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"878":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"96":{"tf":2.0}}}},"i":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"r":{"d":{"df":3,"docs":{"22":{"tf":1.0},"461":{"tf":1.0},"830":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"274":{"tf":2.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"114":{"tf":1.0}},"m":{"df":2,"docs":{"830":{"tf":1.0},"923":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"328":{"tf":1.0},"799":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"677":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"267":{"tf":1.0},"476":{"tf":1.4142135623730951},"494":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"776":{"tf":1.0},"963":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":21,"docs":{"129":{"tf":1.0},"136":{"tf":2.8284271247461903},"317":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"697":{"tf":1.0},"741":{"tf":1.0},"775":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"847":{"tf":1.0},"858":{"tf":1.0},"913":{"tf":1.0},"936":{"tf":1.4142135623730951},"951":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"747":{"tf":1.0}}}}},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"509":{"tf":1.0},"512":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"606":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":22,"docs":{"117":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"226":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"461":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.7320508075688772}}}}}},"n":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"127":{"tf":1.0},"254":{"tf":2.449489742783178},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"677":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"728":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"117":{"tf":1.0},"145":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"456":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"135":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"289":{"tf":1.4142135623730951},"546":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"289":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":1.0},"632":{"tf":1.0}}}}}}}}},"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}}}},"df":12,"docs":{"376":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"503":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":8,"docs":{"132":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}},"i":{"df":1,"docs":{"289":{"tf":1.7320508075688772}}}}}}},"t":{"df":5,"docs":{"127":{"tf":1.0},"142":{"tf":1.0},"50":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"315":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"df":3,"docs":{"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"198":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"655":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"802":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"142":{"tf":1.0},"173":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"811":{"tf":1.0}}},"s":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"0":{"df":1,"docs":{"521":{"tf":1.0}}},"1":{"df":1,"docs":{"521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"519":{"tf":1.0}}},"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"590":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"590":{"tf":1.0}}},":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"df":2,"docs":{"138":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"87":{"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":1,"docs":{"645":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"626":{"tf":1.0}},"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":2,"docs":{"625":{"tf":1.0},"626":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"626":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"521":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"317":{"tf":1.0}}}}}}}},"df":18,"docs":{"237":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"745":{"tf":1.0},"922":{"tf":1.4142135623730951},"933":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"0":{"0":{"0":{"0":{"0":{"0":{"df":21,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"df":3,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"9":{"3":{"8":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"9":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"8":{"7":{"7":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"6":{"2":{"2":{"df":1,"docs":{"126":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"0":{"0":{"0":{"0":{"0":{"#":{"c":{"3":{"df":22,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"1":{"2":{"9":{"3":{"8":{"#":{"c":{"3":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"0":{"4":{"8":{"#":{"c":{"1":{"3":{"df":1,"docs":{"127":{"tf":1.0}}},"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":{"2":{"4":{"7":{"9":{"df":2,"docs":{"677":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"5":{"#":{"c":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"8":{"7":{"7":{"#":{"c":{"2":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"6":{"2":{"2":{"#":{"c":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"645":{"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"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":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"3":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"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":{},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"705":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"707":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"705":{"tf":1.0},"776":{"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":{}}}}}},"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":{},"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"31":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"11":{"tf":1.0},"13":{"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":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"/":{"2":{".":{"0":{"df":1,"docs":{"7":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"540":{"tf":1.0},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"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":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"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":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"254":{"tf":1.0},"288":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"294":{"tf":1.0},"762":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"693":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"693":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"693":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"i":{".":{"df":10,"docs":{"157":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"338":{"tf":1.0},"371":{"tf":1.0},"563":{"tf":1.0},"654":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"969":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"834":{"tf":1.0},"862":{"tf":1.0}}}},"6":{"8":{"6":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"7":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"232":{"tf":1.7320508075688772}}}}},"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":48,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":2.0},"136":{"tf":1.0},"160":{"tf":2.23606797749979},"163":{"tf":1.0},"17":{"tf":1.0},"205":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"268":{"tf":1.7320508075688772},"289":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"347":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"526":{"tf":1.0},"59":{"tf":1.0},"592":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"728":{"tf":1.0},"734":{"tf":1.0},"842":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"9":{"tf":1.0},"946":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":3,"docs":{"119":{"tf":1.0},"173":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}},"i":{"df":36,"docs":{"104":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"118":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"160":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"289":{"tf":2.449489742783178},"315":{"tf":2.0},"330":{"tf":2.23606797749979},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"423":{"tf":1.0},"443":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"538":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"697":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"99":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"142":{"tf":1.0},"17":{"tf":1.0},"231":{"tf":1.4142135623730951},"357":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"664":{"tf":1.0},"684":{"tf":1.0},"734":{"tf":1.0},"873":{"tf":1.0},"882":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"693":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":16,"docs":{"127":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"184":{"tf":1.0},"224":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"354":{"tf":1.0},"561":{"tf":1.7320508075688772},"570":{"tf":1.0},"710":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.7320508075688772},"271":{"tf":1.0},"318":{"tf":1.0},"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":51,"docs":{"11":{"tf":1.4142135623730951},"144":{"tf":1.0},"192":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":2.23606797749979},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":2.449489742783178},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"379":{"tf":1.0},"52":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"67":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.4142135623730951},"729":{"tf":1.0},"738":{"tf":1.0},"743":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.4142135623730951},"773":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"819":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"849":{"tf":1.0},"854":{"tf":1.0},"872":{"tf":1.0},"881":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.7320508075688772},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"956":{"tf":4.123105625617661}}}}}}},"i":{"df":1,"docs":{"256":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":151,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":2.8284271247461903},"317":{"tf":1.4142135623730951},"318":{"tf":2.449489742783178},"32":{"tf":2.6457513110645907},"324":{"tf":2.449489742783178},"328":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":2.23606797749979},"34":{"tf":2.0},"342":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.7320508075688772},"383":{"tf":2.0},"385":{"tf":2.0},"386":{"tf":1.4142135623730951},"393":{"tf":2.0},"395":{"tf":2.0},"396":{"tf":2.23606797749979},"398":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":2.0},"406":{"tf":2.0},"407":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"414":{"tf":2.0},"416":{"tf":2.0},"417":{"tf":2.23606797749979},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"425":{"tf":2.0},"427":{"tf":2.0},"428":{"tf":2.23606797749979},"435":{"tf":2.0},"437":{"tf":2.0},"438":{"tf":2.23606797749979},"44":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"448":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.7320508075688772},"461":{"tf":2.0},"464":{"tf":2.0},"465":{"tf":2.23606797749979},"468":{"tf":1.0},"473":{"tf":2.6457513110645907},"474":{"tf":2.23606797749979},"475":{"tf":2.0},"476":{"tf":2.0},"477":{"tf":1.7320508075688772},"478":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951},"480":{"tf":2.0},"481":{"tf":2.23606797749979},"499":{"tf":1.0},"505":{"tf":2.23606797749979},"507":{"tf":2.0},"508":{"tf":2.23606797749979},"522":{"tf":1.0},"528":{"tf":2.0},"529":{"tf":2.23606797749979},"531":{"tf":2.0},"532":{"tf":2.449489742783178},"538":{"tf":1.4142135623730951},"540":{"tf":2.0},"541":{"tf":1.0},"543":{"tf":2.0},"544":{"tf":2.23606797749979},"551":{"tf":2.23606797749979},"553":{"tf":2.23606797749979},"554":{"tf":2.0},"555":{"tf":2.6457513110645907},"563":{"tf":1.7320508075688772},"565":{"tf":2.0},"566":{"tf":2.8284271247461903},"574":{"tf":1.7320508075688772},"575":{"tf":1.7320508075688772},"577":{"tf":1.7320508075688772},"578":{"tf":2.0},"591":{"tf":1.0},"598":{"tf":2.0},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"614":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":2.6457513110645907},"623":{"tf":2.0},"624":{"tf":2.449489742783178},"630":{"tf":1.4142135623730951},"632":{"tf":2.0},"634":{"tf":2.0},"635":{"tf":2.23606797749979},"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"643":{"tf":1.7320508075688772},"649":{"tf":2.23606797749979},"65":{"tf":1.0},"652":{"tf":2.6457513110645907},"66":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.7320508075688772},"692":{"tf":1.0},"693":{"tf":1.4142135623730951},"700":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"772":{"tf":1.0},"78":{"tf":1.4142135623730951},"831":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"909":{"tf":1.0},"916":{"tf":2.449489742783178},"92":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"958":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"288":{"tf":1.0}},"s":{"df":3,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"894":{"tf":1.0},"945":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":148,"docs":{"100":{"tf":3.4641016151377544},"104":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":2.8284271247461903},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":2.0},"132":{"tf":1.7320508075688772},"145":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":2.0},"264":{"tf":1.0},"27":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":3.3166247903554},"297":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.4142135623730951},"342":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"419":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"614":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":1.0},"697":{"tf":1.4142135623730951},"729":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"762":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":3.4641016151377544},"8":{"tf":1.0},"802":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"826":{"tf":1.0},"83":{"tf":1.4142135623730951},"838":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":2.0},"865":{"tf":2.0},"878":{"tf":1.0},"880":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"912":{"tf":1.0},"929":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":3.4641016151377544},"99":{"tf":1.0}},"e":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"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":{}},"_":{"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":{"d":{"df":5,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}},"m":{"df":6,"docs":{"107":{"tf":1.0},"232":{"tf":1.0},"471":{"tf":1.0},"510":{"tf":1.0},"522":{"tf":1.0},"86":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"191":{"tf":1.0},"838":{"tf":1.0},"878":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"731":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"877":{"tf":1.0},"914":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":11,"docs":{"142":{"tf":2.449489742783178},"258":{"tf":2.449489742783178},"263":{"tf":1.4142135623730951},"289":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.7320508075688772},"756":{"tf":1.7320508075688772},"762":{"tf":1.0},"830":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"621":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"202":{"tf":1.0},"239":{"tf":1.0},"346":{"tf":1.0},"715":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":16,"docs":{"37":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"9":{"tf":1.4142135623730951},"950":{"tf":1.0}},"e":{"d":{"d":{"b":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":21,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"267":{"tf":1.0},"283":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"340":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"801":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":12,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"306":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"494":{"tf":1.0},"560":{"tf":1.0},"621":{"tf":1.0},"708":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"694":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"289":{"tf":1.0},"921":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}}},"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"704":{"tf":1.0},"779":{"tf":1.4142135623730951},"799":{"tf":1.0},"969":{"tf":2.0}},"r":{"df":0,"docs":{},"m":{"df":77,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"177":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"264":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":3.3166247903554},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"349":{"tf":1.4142135623730951},"356":{"tf":1.0},"376":{"tf":1.0},"4":{"tf":2.0},"467":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.0},"662":{"tf":1.4142135623730951},"677":{"tf":2.449489742783178},"678":{"tf":1.0},"679":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.4142135623730951},"703":{"tf":1.0},"775":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"84":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"895":{"tf":1.0},"913":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.4142135623730951},"936":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"965":{"tf":1.4142135623730951},"966":{"tf":1.0},"969":{"tf":3.605551275463989}}}}},"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":3,"docs":{"666":{"tf":1.0},"686":{"tf":1.0},"704":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":23,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":2.0},"273":{"tf":1.0},"288":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"79":{"tf":1.7320508075688772},"801":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.4142135623730951},"864":{"tf":1.0},"905":{"tf":1.0}},"i":{"df":84,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"208":{"tf":1.0},"254":{"tf":1.7320508075688772},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":2.23606797749979},"309":{"tf":2.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.4142135623730951},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"315":{"tf":3.0},"316":{"tf":2.449489742783178},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.7320508075688772},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"500":{"tf":1.0},"678":{"tf":1.7320508075688772},"693":{"tf":1.0},"717":{"tf":1.4142135623730951},"721":{"tf":1.0},"723":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"806":{"tf":1.0},"812":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"854":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":2.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"880":{"tf":1.0},"882":{"tf":1.0},"9":{"tf":1.0},"908":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"941":{"tf":1.0},"945":{"tf":1.0},"948":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"803":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"252":{"tf":1.0},"969":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"115":{"tf":1.0},"17":{"tf":1.0},"233":{"tf":1.4142135623730951},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"111":{"tf":1.0},"254":{"tf":1.0},"48":{"tf":1.0},"665":{"tf":1.0},"677":{"tf":1.0},"691":{"tf":1.4142135623730951},"803":{"tf":1.0},"912":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"244":{"tf":1.0},"772":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":31,"docs":{"115":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":2.23606797749979},"22":{"tf":1.0},"233":{"tf":1.0},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.4142135623730951},"671":{"tf":1.0},"673":{"tf":2.23606797749979},"675":{"tf":1.4142135623730951},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":2.449489742783178},"725":{"tf":1.0},"73":{"tf":1.0},"752":{"tf":1.0},"823":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.4142135623730951},"862":{"tf":1.0},"915":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"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":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"1":{"9":{"df":1,"docs":{"551":{"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":{},"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":{".":{"d":{"df":1,"docs":{"551":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"551":{"tf":1.0}}}}}},"df":1,"docs":{"551":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"551":{"tf":1.0}}}}}},"df":1,"docs":{"551":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"551":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":1,"docs":{"551":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"555":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"c":{"df":22,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"565":{"tf":1.0},"656":{"tf":1.0},"674":{"tf":1.0},"738":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"336":{"tf":1.0},"701":{"tf":1.4142135623730951},"782":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":33,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"253":{"tf":1.0},"288":{"tf":1.0},"34":{"tf":1.0},"402":{"tf":1.0},"52":{"tf":1.0},"583":{"tf":1.0},"619":{"tf":1.0},"697":{"tf":1.4142135623730951},"73":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"743":{"tf":1.0},"772":{"tf":2.23606797749979},"775":{"tf":1.0},"786":{"tf":1.0},"793":{"tf":1.0},"801":{"tf":1.0},"809":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"94":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"232":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.0},"356":{"tf":1.0},"54":{"tf":1.0},"652":{"tf":2.449489742783178},"676":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"117":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"320":{"tf":1.0},"461":{"tf":1.0},"497":{"tf":1.0},"520":{"tf":1.0},"589":{"tf":1.0},"653":{"tf":1.0},"674":{"tf":2.449489742783178},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.7320508075688772},"680":{"tf":1.0},"716":{"tf":1.0},"867":{"tf":1.0},"880":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"958":{"tf":1.0}}}}}}}}}},"t":{"3":{"2":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"505":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":20,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"580":{"tf":1.7320508075688772},"590":{"tf":1.0},"591":{"tf":1.7320508075688772},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"685":{"tf":1.4142135623730951}},"r":{"df":47,"docs":{"10":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"2":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":2.0},"23":{"tf":1.7320508075688772},"234":{"tf":1.0},"29":{"tf":2.0},"39":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.4142135623730951},"658":{"tf":1.0},"66":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"681":{"tf":1.0},"688":{"tf":1.0},"8":{"tf":1.0},"834":{"tf":1.0},"860":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":2.6457513110645907},"958":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"153":{"tf":1.0},"160":{"tf":1.0},"173":{"tf":1.0},"192":{"tf":1.0},"53":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"184":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"282":{"tf":1.0},"289":{"tf":2.23606797749979},"377":{"tf":1.0},"466":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"254":{"tf":2.0},"289":{"tf":1.0}}}}},"f":{"a":{"c":{"df":11,"docs":{"218":{"tf":1.0},"223":{"tf":1.0},"320":{"tf":1.0},"476":{"tf":1.0},"679":{"tf":1.0},"689":{"tf":1.7320508075688772},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"837":{"tf":1.0},"874":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"804":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":31,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":1.0},"315":{"tf":1.4142135623730951},"318":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"456":{"tf":1.0},"471":{"tf":1.0},"62":{"tf":1.0},"647":{"tf":1.0},"693":{"tf":1.0},"728":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"803":{"tf":1.0},"838":{"tf":1.0},"854":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":1.4142135623730951},"933":{"tf":1.0},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"267":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"50":{"tf":1.0},"673":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"715":{"tf":1.0},"753":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"151":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"67":{"tf":1.0},"747":{"tf":1.4142135623730951},"796":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":2.0},"818":{"tf":1.4142135623730951},"820":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.4142135623730951},"951":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"120":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.4142135623730951},"563":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"839":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"120":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"866":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"779":{"tf":1.0},"795":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"p":{"df":18,"docs":{"120":{"tf":1.0},"383":{"tf":1.0},"393":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"529":{"tf":1.0},"541":{"tf":1.0},"551":{"tf":1.0},"563":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"632":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":26,"docs":{"120":{"tf":1.0},"328":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"462":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.4142135623730951},"517":{"tf":1.0},"529":{"tf":1.0},"541":{"tf":1.0},"551":{"tf":1.0},"563":{"tf":1.4142135623730951},"575":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"640":{"tf":1.0},"734":{"tf":1.0},"839":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":32,"docs":{"120":{"tf":2.0},"124":{"tf":1.4142135623730951},"231":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"393":{"tf":1.0},"396":{"tf":2.23606797749979},"414":{"tf":1.0},"417":{"tf":2.449489742783178},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"551":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0},"642":{"tf":1.0},"747":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"76":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"880":{"tf":1.0},"916":{"tf":1.7320508075688772},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"840":{"tf":1.0},"870":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"750":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"914":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"142":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.0}}},"t":{"df":1,"docs":{"800":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":16,"docs":{"103":{"tf":1.0},"249":{"tf":1.7320508075688772},"265":{"tf":2.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"82":{"tf":1.0},"875":{"tf":1.0},"958":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":2.0},"749":{"tf":1.0},"912":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":1.0},"340":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}}}}}},"o":{"df":81,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"222":{"tf":1.0},"228":{"tf":1.7320508075688772},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":2.0},"288":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"50":{"tf":2.23606797749979},"657":{"tf":1.0},"681":{"tf":2.23606797749979},"682":{"tf":2.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"685":{"tf":1.7320508075688772},"686":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"727":{"tf":1.0},"732":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"741":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.4142135623730951},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"762":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"789":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.4142135623730951},"798":{"tf":1.0},"802":{"tf":1.7320508075688772},"804":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.4142135623730951},"834":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.4142135623730951},"842":{"tf":1.0},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"p":{"df":1,"docs":{"289":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"_":{"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":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"198":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"377":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.7320508075688772},"839":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}},"o":{"8":{"6":{"0":{"1":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"288":{"tf":1.0},"294":{"tf":1.0},"554":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"19":{"tf":1.0}}}},"p":{"df":1,"docs":{"267":{"tf":2.23606797749979}}},"s":{"df":0,"docs":{},"u":{"df":20,"docs":{"22":{"tf":1.0},"234":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.4142135623730951},"6":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"814":{"tf":1.0},"859":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.7320508075688772},"915":{"tf":1.0},"925":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}}}}}}}}}}}}}},"t":{"'":{"df":36,"docs":{"103":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"17":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"232":{"tf":2.449489742783178},"328":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"873":{"tf":1.4142135623730951},"884":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":19,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.4142135623730951},"22":{"tf":1.0},"230":{"tf":1.0},"264":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"692":{"tf":1.0},"708":{"tf":1.0},"83":{"tf":1.0},"916":{"tf":1.0}}}}}},"’":{"df":3,"docs":{"182":{"tf":1.4142135623730951},"254":{"tf":1.0},"964":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"882":{"tf":1.0}}},"v":{"a":{"df":8,"docs":{"656":{"tf":1.0},"737":{"tf":1.0},"786":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"864":{"tf":1.4142135623730951},"876":{"tf":1.0},"969":{"tf":1.7320508075688772}},"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":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":122,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"135":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"174":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"32":{"tf":2.449489742783178},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"561":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.7320508075688772},"659":{"tf":1.7320508075688772},"660":{"tf":2.0},"688":{"tf":2.23606797749979},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.4142135623730951},"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.0},"701":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"927":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":3,"docs":{"731":{"tf":1.4142135623730951},"759":{"tf":1.0},"823":{"tf":1.0}},"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":{"12":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"882":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"b":{"df":5,"docs":{"224":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"128":{"tf":1.0},"171":{"tf":1.4142135623730951},"195":{"tf":1.0},"254":{"tf":2.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0},"642":{"tf":1.0},"644":{"tf":1.0},"697":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"865":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"e":{"df":3,"docs":{"380":{"tf":1.0},"697":{"tf":1.0},"838":{"tf":1.0}}},"k":{"df":2,"docs":{"701":{"tf":1.4142135623730951},"951":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"b":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"915":{"tf":1.0}}}},"df":9,"docs":{"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"190":{"tf":1.0},"261":{"tf":1.0},"41":{"tf":1.0},"692":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"950":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"565":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"799":{"tf":1.0}}},"2":{"df":1,"docs":{"799":{"tf":1.0}}},"df":27,"docs":{"120":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"232":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"560":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.0},"568":{"tf":2.23606797749979},"570":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"697":{"tf":2.23606797749979},"698":{"tf":2.23606797749979},"701":{"tf":1.4142135623730951},"732":{"tf":1.0},"765":{"tf":1.0},"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"379":{"tf":1.0}}}},"d":{"df":2,"docs":{"697":{"tf":1.0},"701":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"155":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":6,"docs":{"509":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0},"632":{"tf":1.0},"829":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":8,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"376":{"tf":1.4142135623730951},"441":{"tf":1.0},"66":{"tf":1.0},"80":{"tf":1.0},"834":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"b":{"df":41,"docs":{"168":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":2.23606797749979},"212":{"tf":2.449489742783178},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"258":{"tf":1.0},"727":{"tf":1.7320508075688772},"741":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":24,"docs":{"100":{"tf":1.7320508075688772},"169":{"tf":1.0},"17":{"tf":1.0},"254":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":2.6457513110645907},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"252":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":23,"docs":{"106":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"66":{"tf":1.0},"673":{"tf":1.0},"680":{"tf":1.0},"708":{"tf":1.0},"73":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"923":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"p":{"df":1,"docs":{"651":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":69,"docs":{"0":{"tf":1.0},"10":{"tf":2.0},"11":{"tf":2.0},"110":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.0},"338":{"tf":1.0},"354":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":2.0},"662":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.4142135623730951},"678":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"741":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.4142135623730951},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"829":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"879":{"tf":1.0},"89":{"tf":2.0},"9":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"529":{"tf":1.0}}},"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":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},"df":100,"docs":{"110":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":2.23606797749979},"376":{"tf":2.23606797749979},"377":{"tf":4.358898943540674},"378":{"tf":1.7320508075688772},"391":{"tf":2.0},"392":{"tf":1.0},"393":{"tf":4.58257569495584},"394":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":2.6457513110645907},"397":{"tf":1.7320508075688772},"398":{"tf":4.242640687119285},"399":{"tf":1.0},"400":{"tf":1.0},"412":{"tf":2.23606797749979},"413":{"tf":1.0},"414":{"tf":4.58257569495584},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":2.8284271247461903},"418":{"tf":1.7320508075688772},"419":{"tf":4.242640687119285},"420":{"tf":1.0},"421":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":4.58257569495584},"436":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":2.8284271247461903},"439":{"tf":1.7320508075688772},"440":{"tf":4.242640687119285},"441":{"tf":1.0},"442":{"tf":1.0},"488":{"tf":2.0},"489":{"tf":1.0},"490":{"tf":2.6457513110645907},"491":{"tf":2.449489742783178},"492":{"tf":2.23606797749979},"493":{"tf":2.449489742783178},"494":{"tf":2.449489742783178},"495":{"tf":1.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.4142135623730951},"498":{"tf":1.7320508075688772},"499":{"tf":4.358898943540674},"500":{"tf":1.0},"501":{"tf":3.872983346207417},"502":{"tf":1.0},"515":{"tf":2.0},"516":{"tf":1.0},"517":{"tf":2.23606797749979},"518":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"522":{"tf":4.242640687119285},"523":{"tf":1.0},"524":{"tf":3.872983346207417},"525":{"tf":1.0},"583":{"tf":2.449489742783178},"584":{"tf":1.0},"585":{"tf":2.23606797749979},"586":{"tf":2.23606797749979},"587":{"tf":1.0},"588":{"tf":1.7320508075688772},"589":{"tf":1.4142135623730951},"590":{"tf":1.7320508075688772},"591":{"tf":4.358898943540674},"592":{"tf":1.0},"593":{"tf":3.872983346207417},"594":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":2.0},"608":{"tf":1.0},"609":{"tf":2.449489742783178},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"612":{"tf":1.7320508075688772},"613":{"tf":1.4142135623730951},"614":{"tf":4.358898943540674},"615":{"tf":1.0},"616":{"tf":3.872983346207417},"617":{"tf":1.0},"747":{"tf":1.0},"75":{"tf":1.0},"752":{"tf":1.4142135623730951},"785":{"tf":1.0},"817":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.7320508075688772},"862":{"tf":1.7320508075688772},"864":{"tf":1.7320508075688772},"881":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"951":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"942":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"124":{"tf":2.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"418":{"tf":1.0},"734":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"590":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"521":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"613":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"439":{"tf":1.0},"78":{"tf":1.0},"942":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"498":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"400":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"502":{"tf":1.0},"525":{"tf":1.0},"594":{"tf":1.0},"617":{"tf":1.0},"842":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"400":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"442":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"206":{"tf":1.0},"254":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"969":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"969":{"tf":1.7320508075688772}},"u":{"a":{"df":0,"docs":{},"g":{"df":51,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"136":{"tf":1.0},"21":{"tf":1.0},"280":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"299":{"tf":1.0},"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.7320508075688772},"728":{"tf":1.0},"736":{"tf":1.0},"740":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.0},"834":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"862":{"tf":1.0},"89":{"tf":1.4142135623730951},"958":{"tf":1.0}},"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":{"9":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.0},"267":{"tf":1.0},"807":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"224":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.0},"736":{"tf":1.0},"907":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"467":{"tf":1.0},"621":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":2.6457513110645907},"142":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"204":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"861":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"741":{"tf":1.0}},"n":{"c":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":11,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"425":{"tf":2.449489742783178},"456":{"tf":1.0},"473":{"tf":1.0},"484":{"tf":1.0},"673":{"tf":1.0},"858":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"254":{"tf":1.0},"41":{"tf":1.0},"760":{"tf":1.0},"909":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"874":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"191":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":2.23606797749979},"247":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"780":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"d":{"df":8,"docs":{"141":{"tf":1.0},"74":{"tf":1.0},"814":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"467":{"tf":1.0},"720":{"tf":1.0}}},"n":{"df":4,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0}}}},"v":{"df":5,"docs":{"150":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"816":{"tf":1.0},"916":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"328":{"tf":1.0},"653":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"568":{"tf":1.0},"916":{"tf":1.0},"958":{"tf":1.0}}},"y":{"_":{"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":{"d":{"df":2,"docs":{"160":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"805":{"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":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"565":{"tf":1.0},"642":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":23,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"241":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"328":{"tf":2.0},"378":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"471":{"tf":1.0},"541":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.4142135623730951},"757":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"259":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"'":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":1,"docs":{"254":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"294":{"tf":1.0}}}}},"’":{"df":3,"docs":{"203":{"tf":2.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":24,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"170":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"258":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"673":{"tf":1.0},"834":{"tf":1.4142135623730951},"878":{"tf":1.0},"962":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"956":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}}}}},"i":{"b":{"df":3,"docs":{"316":{"tf":1.0},"674":{"tf":1.0},"924":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":52,"docs":{"0":{"tf":2.23606797749979},"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"270":{"tf":1.7320508075688772},"280":{"tf":1.0},"290":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.7320508075688772},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"61":{"tf":2.0},"65":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.0},"665":{"tf":1.7320508075688772},"668":{"tf":1.0},"678":{"tf":1.0},"705":{"tf":1.0},"753":{"tf":1.4142135623730951},"775":{"tf":1.0},"799":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"9":{"tf":3.1622776601683795},"916":{"tf":1.7320508075688772},"929":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"y":{"'":{"df":2,"docs":{"21":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"'":{"df":1,"docs":{"743":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"151":{"tf":1.0},"184":{"tf":1.0},"271":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"848":{"tf":1.0},"875":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"874":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":36,"docs":{"100":{"tf":3.3166247903554},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"289":{"tf":2.449489742783178},"308":{"tf":1.0},"315":{"tf":1.0},"454":{"tf":1.0},"567":{"tf":1.4142135623730951},"632":{"tf":1.0},"636":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"734":{"tf":1.0},"770":{"tf":1.0},"78":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.0},"79":{"tf":3.3166247903554},"80":{"tf":1.4142135623730951},"840":{"tf":1.0},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"917":{"tf":1.0},"94":{"tf":1.4142135623730951},"953":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":72,"docs":{"109":{"tf":1.0},"129":{"tf":1.7320508075688772},"13":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":2.6457513110645907},"170":{"tf":1.0},"224":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"456":{"tf":2.0},"476":{"tf":1.4142135623730951},"484":{"tf":2.0},"499":{"tf":1.0},"501":{"tf":1.7320508075688772},"511":{"tf":1.4142135623730951},"522":{"tf":1.0},"524":{"tf":1.7320508075688772},"541":{"tf":1.0},"570":{"tf":1.4142135623730951},"575":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.7320508075688772},"598":{"tf":1.0},"609":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.7320508075688772},"621":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"677":{"tf":1.0},"721":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"761":{"tf":1.0},"774":{"tf":1.0},"787":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"580":{"tf":1.0},"582":{"tf":1.0},"591":{"tf":1.0}}}},"df":21,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":2.0},"234":{"tf":1.0},"27":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"653":{"tf":1.0},"677":{"tf":1.0},"682":{"tf":1.0},"689":{"tf":1.7320508075688772},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"862":{"tf":1.0},"935":{"tf":1.0}}},"k":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"376":{"tf":1.0},"753":{"tf":1.0},"844":{"tf":1.0},"862":{"tf":1.4142135623730951},"890":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":1.4142135623730951}}},"t":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"21":{"tf":1.0},"294":{"tf":1.0},"38":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"768":{"tf":1.0},"804":{"tf":1.0},"838":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"288":{"tf":1.0},"38":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"858":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"132":{"tf":1.0},"19":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"769":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.4142135623730951},"815":{"tf":1.7320508075688772},"820":{"tf":1.7320508075688772},"867":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"772":{"tf":1.0}}}}}}},"df":73,"docs":{"10":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"297":{"tf":2.449489742783178},"315":{"tf":1.0},"318":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":2.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"39":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":2.0},"435":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"443":{"tf":2.23606797749979},"444":{"tf":1.0},"445":{"tf":2.0},"446":{"tf":2.449489742783178},"447":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"499":{"tf":2.0},"501":{"tf":1.0},"522":{"tf":2.0},"524":{"tf":1.0},"538":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"57":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":2.0},"593":{"tf":1.0},"614":{"tf":2.0},"616":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"668":{"tf":1.0},"689":{"tf":1.0},"715":{"tf":1.0},"73":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.4142135623730951},"77":{"tf":1.0},"813":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"862":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"912":{"tf":1.0},"94":{"tf":1.4142135623730951},"952":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"307":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"347":{"tf":2.8284271247461903},"731":{"tf":1.0},"951":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"675":{"tf":1.0},"915":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":9,"docs":{"127":{"tf":1.0},"224":{"tf":1.0},"289":{"tf":1.4142135623730951},"371":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"78":{"tf":1.4142135623730951},"965":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"m":{"d":{"b":{"df":5,"docs":{"716":{"tf":1.0},"765":{"tf":1.0},"803":{"tf":1.0},"818":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":68,"docs":{"112":{"tf":1.0},"20":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"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},"480":{"tf":1.0},"481":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":68,"docs":{"112":{"tf":1.0},"20":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"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},"480":{"tf":1.0},"481":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":4,"docs":{"338":{"tf":1.4142135623730951},"649":{"tf":1.0},"652":{"tf":1.0},"834":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"338":{"tf":1.0},"649":{"tf":1.0},"652":{"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":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"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":15,"docs":{"140":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"263":{"tf":1.0},"268":{"tf":1.0},"31":{"tf":1.0},"338":{"tf":1.7320508075688772},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.4142135623730951},"592":{"tf":1.0},"864":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":27,"docs":{"117":{"tf":1.0},"12":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"316":{"tf":1.0},"710":{"tf":1.4142135623730951},"736":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"842":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"938":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"846":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"846":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"170":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"22":{"tf":1.0},"318":{"tf":1.0},"800":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"_":{"2":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"779":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"580":{"tf":1.0},"591":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":57,"docs":{"120":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":3.4641016151377544},"237":{"tf":3.0},"238":{"tf":2.23606797749979},"239":{"tf":3.1622776601683795},"243":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"355":{"tf":2.0},"356":{"tf":2.449489742783178},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"466":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"514":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"582":{"tf":1.0},"701":{"tf":1.0},"704":{"tf":1.0},"721":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"771":{"tf":1.0},"779":{"tf":1.0},"787":{"tf":1.0},"814":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":2.0},"849":{"tf":1.0},"854":{"tf":1.0},"880":{"tf":1.4142135623730951},"898":{"tf":1.0},"923":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.4142135623730951},"938":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"814":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":5,"docs":{"653":{"tf":1.0},"741":{"tf":1.0},"834":{"tf":1.4142135623730951},"919":{"tf":1.0},"932":{"tf":1.0}}},"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"438":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":10,"docs":{"376":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"441":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.0},"567":{"tf":1.4142135623730951},"569":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"tf":1.7320508075688772}}},"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":{"315":{"tf":1.0}}}}}}},"o":{"df":2,"docs":{"0":{"tf":1.0},"958":{"tf":1.0}}},"p":{"df":4,"docs":{"224":{"tf":2.0},"231":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"772":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":37,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"449":{"tf":1.0},"461":{"tf":1.0},"469":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"592":{"tf":1.0},"62":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"818":{"tf":1.4142135623730951},"839":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"963":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":49,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":1.0},"307":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"541":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"736":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.7320508075688772},"761":{"tf":1.0},"775":{"tf":1.0},"793":{"tf":1.0},"806":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"873":{"tf":1.4142135623730951},"876":{"tf":1.0},"891":{"tf":1.0},"912":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":30,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"203":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"572":{"tf":1.0},"665":{"tf":1.0},"668":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"690":{"tf":1.4142135623730951},"697":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"859":{"tf":1.0}}}}},"p":{"df":1,"docs":{"834":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"747":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"73":{"tf":1.0},"78":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":4,"docs":{"103":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"82":{"tf":1.0}}},"u":{"d":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"376":{"tf":1.0},"629":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"285":{"tf":1.0},"286":{"tf":1.0},"496":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"816":{"tf":1.0},"858":{"tf":1.0},"878":{"tf":1.0},"916":{"tf":1.0},"933":{"tf":1.0}}}}}}},"m":{"1":{"/":{"df":0,"docs":{},"m":{"2":{"/":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"958":{"tf":1.0}}},"a":{"c":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"233":{"tf":1.4142135623730951},"690":{"tf":1.0}},"h":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"289":{"tf":1.0},"697":{"tf":1.0},"910":{"tf":1.0}}}}},"o":{"df":7,"docs":{"19":{"tf":1.0},"673":{"tf":1.0},"775":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"867":{"tf":1.0},"884":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"256":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"862":{"tf":1.0},"869":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"487":{"tf":1.0},"514":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"104":{"tf":1.0},"289":{"tf":1.0},"83":{"tf":1.0}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":21,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.0},"26":{"tf":1.0},"306":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"316":{"tf":2.449489742783178},"34":{"tf":1.0},"342":{"tf":1.0},"646":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"840":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"675":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"308":{"tf":1.0},"62":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.0},"288":{"tf":2.449489742783178},"669":{"tf":1.7320508075688772},"685":{"tf":1.7320508075688772},"772":{"tf":1.0},"881":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":75,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.0},"281":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"318":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.7320508075688772},"443":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"538":{"tf":1.0},"619":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.0},"70":{"tf":1.4142135623730951},"720":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"804":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"842":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"882":{"tf":1.0},"900":{"tf":1.0},"91":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"925":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}},"r":{"df":1,"docs":{"956":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"917":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"153":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"647":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"867":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"958":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"44":{"tf":1.0},"677":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":21,"docs":{"127":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":2.449489742783178},"618":{"tf":1.4142135623730951},"625":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"858":{"tf":1.0},"915":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":5,"docs":{"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0},"673":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"968":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"820":{"tf":1.0}}},"2":{"0":{"1":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"4":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":9,"docs":{"131":{"tf":1.0},"170":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":2.23606797749979},"717":{"tf":1.4142135623730951},"723":{"tf":1.0},"840":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"328":{"tf":1.0},"679":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":11,"docs":{"21":{"tf":1.7320508075688772},"276":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"37":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"666":{"tf":1.0},"686":{"tf":2.0},"862":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"318":{"tf":1.0},"773":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"334":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"640":{"tf":1.4142135623730951},"697":{"tf":1.0},"738":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"864":{"tf":1.0},"89":{"tf":1.0},"935":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"703":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"735":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"656":{"tf":1.0}}}}},"x":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"861":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"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":{"761":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"897":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"315":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"565":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":59,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"170":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"328":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"456":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.0},"501":{"tf":1.7320508075688772},"511":{"tf":1.0},"514":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"541":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"575":{"tf":1.0},"582":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.4142135623730951},"609":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"632":{"tf":1.0},"732":{"tf":1.0},"81":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"929":{"tf":1.0}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"968":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"673":{"tf":1.0},"686":{"tf":1.4142135623730951}},"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":6,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"645":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"n":{"df":41,"docs":{"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"168":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"487":{"tf":1.4142135623730951},"499":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"677":{"tf":1.0},"703":{"tf":1.0},"710":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":5,"docs":{"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"371":{"tf":1.0},"864":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":63,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"141":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":2.0},"477":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"488":{"tf":1.0},"503":{"tf":1.0},"549":{"tf":1.0},"632":{"tf":1.0},"70":{"tf":2.0},"708":{"tf":1.0},"711":{"tf":2.449489742783178},"721":{"tf":1.0},"73":{"tf":1.7320508075688772},"739":{"tf":1.0},"74":{"tf":1.7320508075688772},"747":{"tf":1.4142135623730951},"76":{"tf":2.6457513110645907},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"834":{"tf":1.4142135623730951},"86":{"tf":1.0},"861":{"tf":2.0},"866":{"tf":1.0},"880":{"tf":1.0},"91":{"tf":2.0},"929":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"97":{"tf":2.6457513110645907},"99":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"289":{"tf":1.0},"346":{"tf":1.0},"471":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":2.0},"929":{"tf":1.0},"937":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"173":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"510":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":34,"docs":{"289":{"tf":1.4142135623730951},"310":{"tf":1.0},"376":{"tf":1.4142135623730951},"503":{"tf":2.6457513110645907},"504":{"tf":1.0},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":2.8284271247461903},"508":{"tf":1.7320508075688772},"509":{"tf":2.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.4142135623730951},"512":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":2.23606797749979},"515":{"tf":2.449489742783178},"516":{"tf":1.0},"517":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"523":{"tf":1.0},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"718":{"tf":1.0},"814":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"911":{"tf":1.0},"958":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.7320508075688772}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"507":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.7320508075688772},"509":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"514":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"839":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"772":{"tf":1.0},"853":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"525":{"tf":1.0},"837":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"738":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"677":{"tf":1.7320508075688772},"679":{"tf":1.0},"779":{"tf":1.0},"805":{"tf":1.0},"814":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"858":{"tf":1.0},"898":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.4142135623730951},"938":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"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":1,"docs":{"266":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"171":{"tf":1.0}}},"2":{"df":1,"docs":{"171":{"tf":1.0}}},"df":16,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"254":{"tf":1.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"338":{"tf":1.0},"568":{"tf":1.0},"680":{"tf":1.0},"727":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":32,"docs":{"221":{"tf":2.23606797749979},"223":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.0},"257":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":2.23606797749979},"317":{"tf":1.0},"338":{"tf":2.0},"462":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"715":{"tf":1.0},"731":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"772":{"tf":1.7320508075688772},"838":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"'":{"df":7,"docs":{"104":{"tf":1.0},"288":{"tf":1.0},"464":{"tf":1.0},"554":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"799":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"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":2,"docs":{"110":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":553,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":2.449489742783178},"102":{"tf":2.23606797749979},"103":{"tf":2.449489742783178},"104":{"tf":3.0},"105":{"tf":2.0},"106":{"tf":2.449489742783178},"107":{"tf":2.8284271247461903},"108":{"tf":2.449489742783178},"109":{"tf":3.0},"110":{"tf":3.1622776601683795},"111":{"tf":2.449489742783178},"112":{"tf":3.1622776601683795},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":2.23606797749979},"118":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951},"120":{"tf":4.0},"121":{"tf":2.23606797749979},"122":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":3.7416573867739413},"125":{"tf":3.4641016151377544},"126":{"tf":2.0},"127":{"tf":3.7416573867739413},"128":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"135":{"tf":1.7320508075688772},"137":{"tf":2.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":2.0},"146":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":3.1622776601683795},"174":{"tf":1.4142135623730951},"175":{"tf":2.449489742783178},"176":{"tf":2.6457513110645907},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.23606797749979},"184":{"tf":2.8284271247461903},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":3.1622776601683795},"196":{"tf":1.0},"197":{"tf":2.6457513110645907},"198":{"tf":2.6457513110645907},"199":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":2.23606797749979},"203":{"tf":2.449489742783178},"204":{"tf":2.23606797749979},"205":{"tf":1.7320508075688772},"206":{"tf":2.23606797749979},"208":{"tf":1.0},"21":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":2.449489742783178},"231":{"tf":1.0},"25":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":4.69041575982343},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"277":{"tf":1.0},"28":{"tf":2.23606797749979},"280":{"tf":2.23606797749979},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":2.23606797749979},"286":{"tf":2.23606797749979},"287":{"tf":2.449489742783178},"288":{"tf":5.0},"289":{"tf":5.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"318":{"tf":2.6457513110645907},"321":{"tf":1.7320508075688772},"322":{"tf":2.0},"330":{"tf":1.4142135623730951},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.7320508075688772},"376":{"tf":2.8284271247461903},"377":{"tf":3.3166247903554},"378":{"tf":1.0},"379":{"tf":2.449489742783178},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"387":{"tf":2.6457513110645907},"388":{"tf":1.7320508075688772},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.7320508075688772},"397":{"tf":2.0},"398":{"tf":2.23606797749979},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":2.23606797749979},"403":{"tf":1.0},"404":{"tf":1.4142135623730951},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":1.7320508075688772},"408":{"tf":2.6457513110645907},"409":{"tf":1.7320508075688772},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":1.7320508075688772},"418":{"tf":2.0},"419":{"tf":2.23606797749979},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":3.0},"426":{"tf":1.0},"427":{"tf":2.8284271247461903},"428":{"tf":1.7320508075688772},"429":{"tf":2.6457513110645907},"43":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.7320508075688772},"436":{"tf":1.0},"437":{"tf":3.0},"438":{"tf":1.7320508075688772},"439":{"tf":2.0},"440":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"450":{"tf":2.6457513110645907},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"466":{"tf":2.6457513110645907},"467":{"tf":2.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.7320508075688772},"475":{"tf":2.0},"476":{"tf":2.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"482":{"tf":2.0},"483":{"tf":1.7320508075688772},"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.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.7320508075688772},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":2.0},"499":{"tf":2.23606797749979},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.7320508075688772},"508":{"tf":1.7320508075688772},"509":{"tf":2.0},"51":{"tf":1.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":2.0},"522":{"tf":2.23606797749979},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"527":{"tf":1.0},"528":{"tf":1.7320508075688772},"529":{"tf":1.7320508075688772},"53":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.7320508075688772},"532":{"tf":1.7320508075688772},"533":{"tf":2.449489742783178},"534":{"tf":1.7320508075688772},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"538":{"tf":1.0},"539":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.7320508075688772},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"543":{"tf":1.7320508075688772},"544":{"tf":1.7320508075688772},"545":{"tf":2.6457513110645907},"546":{"tf":2.0},"547":{"tf":1.7320508075688772},"548":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.7320508075688772},"552":{"tf":1.0},"553":{"tf":1.7320508075688772},"554":{"tf":1.7320508075688772},"555":{"tf":1.7320508075688772},"556":{"tf":2.6457513110645907},"557":{"tf":2.23606797749979},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.6457513110645907},"564":{"tf":1.0},"565":{"tf":1.4142135623730951},"566":{"tf":1.7320508075688772},"567":{"tf":2.6457513110645907},"568":{"tf":2.449489742783178},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.4142135623730951},"573":{"tf":1.0},"574":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":2.23606797749979},"579":{"tf":2.0},"580":{"tf":2.23606797749979},"581":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"584":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"590":{"tf":2.0},"591":{"tf":2.23606797749979},"592":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"598":{"tf":1.7320508075688772},"599":{"tf":1.0},"60":{"tf":2.23606797749979},"600":{"tf":1.7320508075688772},"601":{"tf":1.7320508075688772},"602":{"tf":2.6457513110645907},"603":{"tf":1.7320508075688772},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.4142135623730951},"607":{"tf":2.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":2.6457513110645907},"614":{"tf":2.23606797749979},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":2.6457513110645907},"620":{"tf":1.0},"621":{"tf":1.7320508075688772},"622":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":1.4142135623730951},"625":{"tf":2.6457513110645907},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"632":{"tf":2.23606797749979},"633":{"tf":1.0},"634":{"tf":1.7320508075688772},"635":{"tf":1.7320508075688772},"636":{"tf":2.6457513110645907},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.7320508075688772},"641":{"tf":1.0},"642":{"tf":1.7320508075688772},"643":{"tf":1.7320508075688772},"644":{"tf":2.23606797749979},"645":{"tf":2.449489742783178},"646":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"671":{"tf":1.0},"677":{"tf":3.605551275463989},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":2.6457513110645907},"708":{"tf":2.0},"709":{"tf":1.0},"71":{"tf":2.23606797749979},"710":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"716":{"tf":2.23606797749979},"718":{"tf":1.4142135623730951},"72":{"tf":2.0},"721":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"73":{"tf":3.7416573867739413},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.4142135623730951},"736":{"tf":1.0},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"74":{"tf":1.4142135623730951},"740":{"tf":1.0},"741":{"tf":2.0},"747":{"tf":1.4142135623730951},"75":{"tf":2.0},"752":{"tf":2.449489742783178},"755":{"tf":1.0},"76":{"tf":2.6457513110645907},"761":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":3.3166247903554},"770":{"tf":1.4142135623730951},"772":{"tf":2.8284271247461903},"773":{"tf":1.0},"776":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":3.605551275463989},"782":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":3.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.4142135623730951},"794":{"tf":1.0},"795":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":2.0},"807":{"tf":1.0},"809":{"tf":2.0},"81":{"tf":2.0},"811":{"tf":1.4142135623730951},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":2.0},"818":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"823":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"830":{"tf":2.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"839":{"tf":2.449489742783178},"84":{"tf":1.7320508075688772},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":2.23606797749979},"852":{"tf":1.7320508075688772},"853":{"tf":1.4142135623730951},"858":{"tf":1.0},"86":{"tf":2.6457513110645907},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":2.449489742783178},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"871":{"tf":1.0},"875":{"tf":1.4142135623730951},"876":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":2.8284271247461903},"880":{"tf":1.0},"89":{"tf":3.0},"892":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":2.0},"907":{"tf":1.0},"91":{"tf":2.8284271247461903},"911":{"tf":1.7320508075688772},"912":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":2.0},"917":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":2.449489742783178},"925":{"tf":1.0},"929":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"932":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":3.872983346207417},"941":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":3.0},"958":{"tf":1.7320508075688772},"96":{"tf":2.23606797749979},"963":{"tf":1.0},"97":{"tf":2.8284271247461903},"98":{"tf":3.4641016151377544},"99":{"tf":3.7416573867739413}},"s":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"396":{"tf":1.0}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"635":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"465":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"407":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"d":{"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":{".":{"d":{"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":{"(":{"2":{"0":{"1":{"9":{"df":1,"docs":{"551":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"551":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"553":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"555":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"438":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"d":{"df":3,"docs":{"666":{"tf":1.0},"667":{"tf":1.0},"801":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"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":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"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":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"477":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"481":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"643":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"449":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"544":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"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":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"428":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"417":{"tf":1.0}}}}}}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"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":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"[":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"112":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{"d":{".":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"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":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"4":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"532":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"566":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":63,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"110":{"tf":3.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":2.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"21":{"tf":2.449489742783178},"26":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"377":{"tf":1.4142135623730951},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"665":{"tf":2.0},"668":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"679":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"830":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.4142135623730951},"853":{"tf":1.0},"864":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":2.23606797749979},"89":{"tf":3.0},"91":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"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":{},"t":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"20":{"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":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"565":{"tf":1.0},"566":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":3,"docs":{"200":{"tf":1.0},"203":{"tf":2.23606797749979},"254":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"160":{"tf":1.0},"716":{"tf":1.0},"765":{"tf":1.0},"818":{"tf":1.0},"860":{"tf":1.4142135623730951},"867":{"tf":1.0},"869":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"891":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"881":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"258":{"tf":1.0},"310":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"131":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"170":{"tf":1.0},"462":{"tf":1.4142135623730951},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"734":{"tf":1.0},"804":{"tf":1.4142135623730951},"939":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":2,"docs":{"261":{"tf":1.0},"267":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":2,"docs":{"823":{"tf":1.0},"862":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":4,"docs":{"256":{"tf":1.0},"306":{"tf":1.0},"804":{"tf":1.0},"916":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"103":{"tf":1.0},"471":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"582":{"tf":1.0},"591":{"tf":1.4142135623730951},"737":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":11,"docs":{"131":{"tf":1.4142135623730951},"467":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"836":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"19":{"tf":1.0},"818":{"tf":1.4142135623730951},"840":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":15,"docs":{"100":{"tf":1.7320508075688772},"422":{"tf":1.0},"537":{"tf":1.0},"644":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"805":{"tf":1.0},"837":{"tf":1.0},"844":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0},"99":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"21":{"tf":1.0},"289":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0},"825":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"814":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"173":{"tf":1.0},"231":{"tf":1.0},"288":{"tf":1.0},"834":{"tf":1.0}}}},"m":{"df":1,"docs":{"288":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"127":{"tf":1.0},"155":{"tf":1.4142135623730951},"168":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"274":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"742":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}},"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":21,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.0},"237":{"tf":1.0},"318":{"tf":2.6457513110645907},"671":{"tf":1.4142135623730951},"673":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"789":{"tf":1.0},"79":{"tf":1.7320508075688772},"801":{"tf":1.0},"803":{"tf":1.0},"818":{"tf":1.4142135623730951},"835":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951}},"l":{"df":7,"docs":{"132":{"tf":1.4142135623730951},"274":{"tf":1.0},"431":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"762":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"837":{"tf":1.4142135623730951},"862":{"tf":1.0},"923":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"934":{"tf":1.0},"950":{"tf":1.7320508075688772},"956":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"160":{"tf":1.0},"402":{"tf":1.0},"711":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"53":{"tf":1.0},"958":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"142":{"tf":2.0},"289":{"tf":1.0},"456":{"tf":1.0},"493":{"tf":1.0},"804":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"65":{"tf":1.0},"861":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":62,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"267":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":2.0},"328":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"772":{"tf":1.4142135623730951},"802":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"84":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.7320508075688772},"859":{"tf":1.0},"862":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"875":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"969":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"864":{"tf":1.0},"925":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"119":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"65":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"834":{"tf":1.4142135623730951},"843":{"tf":1.0},"865":{"tf":1.0},"916":{"tf":1.0}}}},"z":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"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":{"/":{"2":{"df":4,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"677":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"2":{"df":3,"docs":{"138":{"tf":1.0},"292":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"1":{"df":1,"docs":{"301":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"l":{"a":{"'":{"df":6,"docs":{"13":{"tf":1.0},"289":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"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":{".":{"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":{"316":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"473":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.4142135623730951},"373":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"555":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":72,"docs":{"121":{"tf":1.0},"31":{"tf":1.0},"659":{"tf":1.0},"713":{"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.0},"895":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"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.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0}}}},"/":{"<":{"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"316":{"tf":1.0},"317":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"578":{"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":13,"docs":{"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"h":{"df":56,"docs":{"110":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"660":{"tf":1.0},"688":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"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":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"693":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"923":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"342":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"693":{"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":{"34":{"tf":1.0}}}}}}}},"df":185,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"654":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"689":{"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},"746":{"tf":1.0},"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},"755":{"tf":1.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},"765":{"tf":1.0},"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"888":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"393":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"383":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"574":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":1,"docs":{"551":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"553":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"437":{"tf":1.0}},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"507":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"585":{"tf":1.4142135623730951},"586":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"623":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"519":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"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":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"480":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"448":{"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"540":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"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":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"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":{},"s":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"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":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":0,"docs":{},"e":{"d":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"]":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"687":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":18,"docs":{"133":{"tf":1.0},"21":{"tf":1.4142135623730951},"268":{"tf":1.0},"289":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"656":{"tf":1.0},"677":{"tf":1.0},"7":{"tf":1.0},"712":{"tf":1.0},"73":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0}},"’":{"df":1,"docs":{"704":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"958":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"s":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"117":{"tf":1.0},"137":{"tf":1.4142135623730951},"22":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.0},"710":{"tf":1.0},"80":{"tf":1.4142135623730951},"846":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"728":{"tf":1.0},"814":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":38,"docs":{"103":{"tf":1.0},"119":{"tf":1.7320508075688772},"132":{"tf":1.0},"192":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"34":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.4142135623730951},"462":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951},"549":{"tf":1.0},"674":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"76":{"tf":1.7320508075688772},"792":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"22":{"tf":2.0},"847":{"tf":1.0},"859":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"811":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"652":{"tf":1.0},"811":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"799":{"tf":1.0}}}},"w":{"1":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772}}},"2":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0}}},"3":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"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":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"701":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"693":{"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":{},"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":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"d":{"df":2,"docs":{"20":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"/":{"a":{"df":6,"docs":{"388":{"tf":1.0},"409":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"534":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":112,"docs":{"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"286":{"tf":2.449489742783178},"289":{"tf":1.4142135623730951},"291":{"tf":1.7320508075688772},"292":{"tf":1.0},"294":{"tf":2.449489742783178},"295":{"tf":2.0},"297":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"303":{"tf":2.0},"315":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"651":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.0},"687":{"tf":2.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"731":{"tf":1.4142135623730951},"736":{"tf":1.0},"782":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"823":{"tf":1.0},"83":{"tf":2.23606797749979},"834":{"tf":1.0},"84":{"tf":1.4142135623730951},"857":{"tf":1.0},"864":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"915":{"tf":1.0},"921":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.0},"956":{"tf":1.0},"964":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":5,"docs":{"104":{"tf":1.0},"157":{"tf":1.0},"687":{"tf":2.449489742783178},"697":{"tf":1.0},"83":{"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":{"d":{"/":{"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":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"17":{"tf":1.0}}}}}}},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"456":{"tf":1.4142135623730951},"460":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.7320508075688772},"499":{"tf":1.0},"501":{"tf":1.4142135623730951},"557":{"tf":1.0},"804":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"v":{"df":8,"docs":{"12":{"tf":1.0},"317":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"775":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":2.23606797749979},"853":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"376":{"tf":1.0},"414":{"tf":2.449489742783178},"418":{"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":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"289":{"tf":1.0},"328":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"895":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"844":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"df":5,"docs":{"730":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"883":{"tf":1.0}}}},"df":1,"docs":{"224":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":30,"docs":{"105":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"330":{"tf":1.0},"347":{"tf":1.4142135623730951},"649":{"tf":1.0},"66":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"922":{"tf":1.0},"969":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":91,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":3.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"297":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":2.0},"326":{"tf":1.0},"338":{"tf":1.4142135623730951},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"401":{"tf":1.0},"43":{"tf":1.0},"473":{"tf":1.0},"52":{"tf":1.0},"533":{"tf":1.0},"583":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"621":{"tf":1.0},"647":{"tf":1.0},"652":{"tf":1.0},"662":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"70":{"tf":1.0},"710":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"762":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"80":{"tf":1.7320508075688772},"807":{"tf":1.7320508075688772},"824":{"tf":1.0},"828":{"tf":1.0},"838":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":2.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":27,"docs":{"376":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"497":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.0},"517":{"tf":1.0},"520":{"tf":1.0},"575":{"tf":1.4142135623730951},"578":{"tf":2.0},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":2.0},"606":{"tf":1.0},"609":{"tf":1.4142135623730951},"621":{"tf":1.0},"816":{"tf":1.0},"915":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"28":{"tf":1.0},"326":{"tf":1.0},"644":{"tf":1.4142135623730951},"894":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{":":{"5":{".":{"6":{".":{"0":{"@":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"820":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"626":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":2.23606797749979}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"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":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{},"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":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"624":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"(":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"589":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"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":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"623":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"519":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"520":{"tf":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":{"517":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"273":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"590":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"710":{"tf":1.0},"779":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"915":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"127":{"tf":4.123105625617661},"135":{"tf":1.0},"168":{"tf":1.0},"288":{"tf":1.4142135623730951},"401":{"tf":1.0},"412":{"tf":1.0},"645":{"tf":1.0},"752":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":1.0},"830":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0}}}}}}}}}}}},"w":{"df":126,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":2.0},"12":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":2.23606797749979},"26":{"tf":1.0},"288":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"35":{"tf":1.0},"379":{"tf":1.0},"425":{"tf":2.449489742783178},"445":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"528":{"tf":2.6457513110645907},"55":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"563":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"661":{"tf":1.0},"67":{"tf":1.4142135623730951},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"680":{"tf":1.0},"69":{"tf":1.4142135623730951},"691":{"tf":1.0},"693":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"701":{"tf":1.0},"71":{"tf":2.0},"711":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"721":{"tf":1.4142135623730951},"725":{"tf":1.0},"727":{"tf":1.7320508075688772},"729":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"779":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":2.23606797749979},"8":{"tf":1.7320508075688772},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"811":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"866":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"895":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"916":{"tf":1.0},"92":{"tf":2.23606797749979},"929":{"tf":1.0},"93":{"tf":1.0},"932":{"tf":1.0},"94":{"tf":1.0},"942":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.7320508075688772},"961":{"tf":1.7320508075688772},"968":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"274":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"929":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"117":{"tf":1.0},"678":{"tf":1.4142135623730951},"842":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":20,"docs":{"127":{"tf":1.7320508075688772},"155":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.0},"184":{"tf":2.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"318":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"680":{"tf":1.4142135623730951},"711":{"tf":1.0},"823":{"tf":1.0},"839":{"tf":1.0},"958":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"677":{"tf":1.0},"871":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"254":{"tf":1.0},"60":{"tf":1.0},"83":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"765":{"tf":1.0},"772":{"tf":1.0}}},"m":{"b":{"df":0,"docs":{},"u":{"df":21,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.0},"198":{"tf":2.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"211":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"738":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"34":{"tf":1.7320508075688772},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"947":{"tf":1.0},"958":{"tf":1.0}}}},"df":3,"docs":{"912":{"tf":1.4142135623730951},"913":{"tf":1.0},"939":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}}}}}}}},"df":37,"docs":{"184":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"393":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.4142135623730951},"491":{"tf":1.0},"529":{"tf":1.4142135623730951},"541":{"tf":1.0},"551":{"tf":1.0},"575":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.4142135623730951},"606":{"tf":1.0},"609":{"tf":1.4142135623730951},"621":{"tf":1.0},"632":{"tf":1.0},"741":{"tf":1.4142135623730951},"762":{"tf":1.0},"802":{"tf":1.0},"815":{"tf":1.0},"831":{"tf":1.0},"866":{"tf":1.0},"905":{"tf":1.0}},"e":{"df":45,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"316":{"tf":2.0},"318":{"tf":1.4142135623730951},"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"685":{"tf":1.0},"70":{"tf":1.4142135623730951},"765":{"tf":1.0},"772":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"663":{"tf":1.0},"665":{"tf":1.0},"682":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":86,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"307":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"344":{"tf":1.0},"377":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"514":{"tf":1.0},"546":{"tf":1.4142135623730951},"560":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.4142135623730951},"568":{"tf":1.0},"572":{"tf":1.0},"580":{"tf":1.0},"664":{"tf":1.0},"667":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.0},"684":{"tf":1.0},"701":{"tf":1.0},"719":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"807":{"tf":1.0},"824":{"tf":1.0},"83":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"927":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"h":{"df":7,"docs":{"204":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"471":{"tf":1.0},"649":{"tf":1.0},"667":{"tf":1.0},"796":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"44":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"198":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":36,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.7320508075688772},"292":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":84,"docs":{"115":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.7320508075688772},"551":{"tf":2.6457513110645907},"652":{"tf":1.0},"677":{"tf":1.0},"719":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.7320508075688772},"731":{"tf":1.0},"732":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"740":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"763":{"tf":1.0},"772":{"tf":2.6457513110645907},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"789":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.7320508075688772},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"839":{"tf":2.0},"842":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":2.23606797749979},"854":{"tf":1.0},"857":{"tf":1.4142135623730951},"858":{"tf":2.449489742783178},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.6457513110645907},"862":{"tf":2.0},"863":{"tf":1.0},"864":{"tf":2.449489742783178},"865":{"tf":2.23606797749979},"866":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"895":{"tf":1.0},"912":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"912":{"tf":1.0},"939":{"tf":1.0},"958":{"tf":1.0}}},"x":{"df":2,"docs":{"689":{"tf":1.0},"690":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":8,"docs":{"406":{"tf":1.0},"427":{"tf":1.0},"448":{"tf":1.4142135623730951},"464":{"tf":1.0},"531":{"tf":1.0},"553":{"tf":1.0},"600":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"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":1,"docs":{"529":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"834":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"459":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"765":{"tf":1.4142135623730951},"772":{"tf":2.0},"796":{"tf":1.4142135623730951},"858":{"tf":1.0},"865":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":100,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"127":{"tf":3.1622776601683795},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"21":{"tf":1.0},"267":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"425":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"517":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"591":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"612":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"773":{"tf":1.0},"806":{"tf":1.0},"834":{"tf":2.0},"849":{"tf":1.0},"897":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"618":{"tf":1.4142135623730951},"619":{"tf":1.0},"621":{"tf":2.0},"623":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":45,"docs":{"131":{"tf":1.0},"170":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"376":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"638":{"tf":1.7320508075688772},"639":{"tf":1.0},"640":{"tf":1.7320508075688772},"641":{"tf":1.0},"642":{"tf":1.7320508075688772},"643":{"tf":1.0},"644":{"tf":2.6457513110645907},"645":{"tf":2.23606797749979},"646":{"tf":1.0},"652":{"tf":1.0},"663":{"tf":1.0},"679":{"tf":1.0},"693":{"tf":1.0},"718":{"tf":1.0},"727":{"tf":1.7320508075688772},"730":{"tf":1.0},"732":{"tf":1.0},"772":{"tf":1.4142135623730951},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":2.0},"805":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"834":{"tf":1.0},"908":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"875":{"tf":1.0},"915":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"719":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"814":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"120":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"170":{"tf":1.0},"22":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"454":{"tf":1.0},"840":{"tf":1.0},"864":{"tf":1.0},"908":{"tf":1.0}},"r":{"df":5,"docs":{"376":{"tf":1.0},"560":{"tf":1.0},"76":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"683":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"237":{"tf":1.0},"265":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"234":{"tf":1.0},"673":{"tf":1.0},"785":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"671":{"tf":2.449489742783178},"672":{"tf":1.0},"673":{"tf":1.7320508075688772},"835":{"tf":1.0},"915":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"549":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"802":{"tf":1.4142135623730951},"881":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"l":{"d":{"df":6,"docs":{"288":{"tf":1.4142135623730951},"741":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":2.23606797749979},"874":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"224":{"tf":1.0},"274":{"tf":1.0},"731":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"844":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}}}},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"478":{"tf":1.0}}}}}}},"df":1,"docs":{"478":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":21,"docs":{"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"379":{"tf":1.0},"570":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"902":{"tf":1.0},"919":{"tf":1.4142135623730951},"924":{"tf":1.0},"927":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"315":{"tf":1.4142135623730951},"324":{"tf":1.0},"338":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"679":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":82,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"477":{"tf":1.0},"493":{"tf":1.0},"519":{"tf":1.0},"538":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"613":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"678":{"tf":1.0},"691":{"tf":1.0},"693":{"tf":1.0},"697":{"tf":1.0},"741":{"tf":1.0},"751":{"tf":1.0},"79":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"80":{"tf":1.0},"801":{"tf":1.0},"809":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"961":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"_":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"266":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"671":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":2.449489742783178}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"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":1,"docs":{"478":{"tf":1.4142135623730951}}},"df":1,"docs":{"478":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"d":{"(":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"473":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":1,"docs":{"473":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":7,"docs":{"17":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"649":{"tf":1.0},"853":{"tf":1.0},"919":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"151":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":2.0},"183":{"tf":2.23606797749979},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"241":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"569":{"tf":1.0},"890":{"tf":1.0},"969":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":19,"docs":{"107":{"tf":1.0},"132":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.4142135623730951},"340":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"78":{"tf":1.0},"786":{"tf":1.0},"804":{"tf":1.0},"86":{"tf":1.0},"99":{"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":4,"docs":{"103":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"131":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"330":{"tf":1.0},"734":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"565":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":106,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":3.4641016151377544},"13":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.1622776601683795},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.0},"197":{"tf":1.4142135623730951},"198":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":2.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"276":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.4142135623730951},"298":{"tf":1.7320508075688772},"315":{"tf":2.6457513110645907},"326":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":2.6457513110645907},"440":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"644":{"tf":1.0},"65":{"tf":1.4142135623730951},"655":{"tf":1.0},"66":{"tf":1.4142135623730951},"663":{"tf":2.449489742783178},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"67":{"tf":1.4142135623730951},"670":{"tf":1.0},"682":{"tf":2.449489742783178},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"728":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"801":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"861":{"tf":1.0},"871":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"951":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"958":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":60,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.0},"346":{"tf":1.7320508075688772},"352":{"tf":1.0},"363":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"48":{"tf":1.4142135623730951},"499":{"tf":1.0},"522":{"tf":1.0},"565":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"689":{"tf":1.0},"692":{"tf":1.0},"800":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"956":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{":":{"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":{"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"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":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.0},"227":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"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":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{"6":{"3":{".":{"0":{".":{"0":{"df":1,"docs":{"11":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"656":{"tf":1.0},"793":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"393":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"632":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"404":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"598":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"574":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951}}}}}}}},"n":{"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":3,"docs":{"621":{"tf":2.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0}}}}}},"df":4,"docs":{"315":{"tf":1.0},"338":{"tf":1.0},"649":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"425":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951},"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":{}}}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{":":{"4":{".":{"3":{".":{"1":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"117":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.0},"823":{"tf":1.0}}}}}}},"s":{"/":{"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":{"271":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"762":{"tf":1.4142135623730951},"923":{"tf":1.0}}}}}}},"df":13,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"923":{"tf":1.4142135623730951},"938":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"834":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"924":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"175":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"367":{"tf":1.0},"572":{"tf":1.0},"840":{"tf":1.0},"855":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"859":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":46,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"26":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"4":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.7320508075688772},"63":{"tf":1.0},"630":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"708":{"tf":1.0},"734":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"923":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}},"g":{"df":0,"docs":{},"o":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}},"n":{"df":2,"docs":{"265":{"tf":1.0},"379":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":2.23606797749979},"17":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"276":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"667":{"tf":1.0},"683":{"tf":1.4142135623730951},"697":{"tf":1.0},"852":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"289":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"830":{"tf":1.4142135623730951},"861":{"tf":1.0},"88":{"tf":1.0},"922":{"tf":1.0},"927":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"127":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}},"df":19,"docs":{"121":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"289":{"tf":1.0},"456":{"tf":1.0},"476":{"tf":1.0},"517":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"677":{"tf":1.0},"711":{"tf":1.0},"74":{"tf":1.0},"823":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"471":{"tf":1.0},"761":{"tf":1.0},"773":{"tf":1.0},"912":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"190":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"204":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"520":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"315":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"668":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.7320508075688772},"773":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":22,"docs":{"0":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.7320508075688772},"653":{"tf":1.7320508075688772},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"70":{"tf":1.0},"704":{"tf":1.0},"71":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"960":{"tf":1.0},"962":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"775":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"667":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"289":{"tf":1.0},"647":{"tf":1.0},"78":{"tf":1.0},"853":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"288":{"tf":1.0},"297":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"660":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":2.0},"688":{"tf":1.0},"689":{"tf":1.0},"776":{"tf":1.0},"793":{"tf":1.4142135623730951},"798":{"tf":1.0},"805":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"858":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"944":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"789":{"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"590":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":160,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.4142135623730951},"249":{"tf":1.0},"254":{"tf":3.1622776601683795},"264":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.7320508075688772},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"571":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"625":{"tf":1.0},"628":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"652":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.4142135623730951},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"8":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"9":{"tf":1.0},"900":{"tf":1.0},"905":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.4142135623730951},"960":{"tf":1.7320508075688772},"961":{"tf":1.0},"963":{"tf":2.0},"964":{"tf":1.4142135623730951},"965":{"tf":1.7320508075688772},"968":{"tf":2.6457513110645907},"969":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0}}}},"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"477":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"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":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"481":{"tf":1.0},"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"480":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"623":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"623":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"199":{"tf":1.0},"459":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"786":{"tf":1.0},"812":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"969":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":2.0},"814":{"tf":1.0},"862":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":88,"docs":{"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"190":{"tf":1.4142135623730951},"211":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"387":{"tf":1.7320508075688772},"388":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"408":{"tf":1.7320508075688772},"409":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"450":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"462":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"483":{"tf":1.7320508075688772},"484":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":2.0},"501":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772},"521":{"tf":1.4142135623730951},"522":{"tf":2.0},"533":{"tf":1.7320508075688772},"534":{"tf":1.4142135623730951},"545":{"tf":1.7320508075688772},"547":{"tf":1.4142135623730951},"556":{"tf":1.7320508075688772},"557":{"tf":1.7320508075688772},"560":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":2.0},"590":{"tf":1.4142135623730951},"591":{"tf":2.0},"602":{"tf":1.7320508075688772},"603":{"tf":1.7320508075688772},"613":{"tf":1.7320508075688772},"614":{"tf":2.0},"625":{"tf":1.7320508075688772},"636":{"tf":1.7320508075688772},"644":{"tf":2.449489742783178},"645":{"tf":1.0},"693":{"tf":1.0},"701":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"789":{"tf":1.0},"801":{"tf":1.0},"805":{"tf":1.0},"857":{"tf":1.0},"867":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"933":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"17":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"698":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"869":{"tf":1.0}}}}}}}}}}}},"r":{"df":10,"docs":{"17":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"692":{"tf":1.4142135623730951},"707":{"tf":1.0},"830":{"tf":1.0},"915":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}}}}},"t":{"df":24,"docs":{"0":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"679":{"tf":1.0},"698":{"tf":1.0},"711":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"793":{"tf":1.0},"834":{"tf":1.4142135623730951},"853":{"tf":1.0},"854":{"tf":1.0},"958":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.4142135623730951},"268":{"tf":1.0},"289":{"tf":1.0},"454":{"tf":1.0},"618":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"74":{"tf":1.0},"78":{"tf":1.0},"923":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"289":{"tf":1.0},"645":{"tf":1.0}}},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"643":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"643":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"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":{"640":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":44,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.7320508075688772},"233":{"tf":1.0},"238":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.7320508075688772},"598":{"tf":1.0},"609":{"tf":1.0},"640":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.4142135623730951},"682":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"796":{"tf":1.0},"799":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"830":{"tf":1.0},"837":{"tf":1.0},"914":{"tf":1.0},"98":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"435":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"289":{"tf":1.4142135623730951},"435":{"tf":2.6457513110645907},"437":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"254":{"tf":2.8284271247461903},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.0}}},"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":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":6,"docs":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"383":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0}}}},"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":{},"j":{"df":3,"docs":{"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"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":0,"docs":{},"j":{"df":3,"docs":{"621":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"652":{"tf":1.0}}}},"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":{},"j":{"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"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":{},"j":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"26":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.7320508075688772},"443":{"tf":1.0},"538":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.4142135623730951},"683":{"tf":2.0},"686":{"tf":2.23606797749979},"692":{"tf":1.0},"769":{"tf":1.0},"782":{"tf":1.0},"802":{"tf":1.4142135623730951},"814":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"949":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":23,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.0},"133":{"tf":1.0},"142":{"tf":1.4142135623730951},"217":{"tf":1.0},"254":{"tf":1.4142135623730951},"298":{"tf":1.0},"471":{"tf":1.0},"644":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":2.23606797749979},"709":{"tf":1.0},"710":{"tf":1.4142135623730951},"716":{"tf":1.0},"755":{"tf":1.0},"759":{"tf":1.0},"853":{"tf":1.0},"865":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"951":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":2,"docs":{"652":{"tf":1.4142135623730951},"701":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"953":{"tf":1.0}}}},"n":{"d":{"df":15,"docs":{"127":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"146":{"tf":1.0},"22":{"tf":1.4142135623730951},"313":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"734":{"tf":1.0},"754":{"tf":1.0},"809":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.4142135623730951},"834":{"tf":1.0},"871":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0}}}}},"p":{"8":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":2.0}}}}}}}},"df":30,"docs":{"146":{"tf":1.4142135623730951},"203":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.4142135623730951},"258":{"tf":3.0},"262":{"tf":1.0},"264":{"tf":1.0},"315":{"tf":1.4142135623730951},"318":{"tf":1.0},"377":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.4142135623730951},"577":{"tf":1.0},"588":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"836":{"tf":1.4142135623730951},"864":{"tf":1.0},"963":{"tf":1.0}},"f":{"df":1,"docs":{"136":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"915":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":25,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.0},"308":{"tf":1.0},"321":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"456":{"tf":1.7320508075688772},"46":{"tf":1.0},"484":{"tf":1.4142135623730951},"53":{"tf":1.0},"538":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.4142135623730951},"73":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"94":{"tf":1.0},"958":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"100":{"tf":1.0},"175":{"tf":1.0},"288":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"590":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.7320508075688772},"915":{"tf":1.0}}}},"t":{"df":8,"docs":{"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"715":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"130":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"567":{"tf":1.0},"674":{"tf":1.0},"78":{"tf":1.0},"788":{"tf":1.7320508075688772},"842":{"tf":1.0},"871":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":2.23606797749979},"958":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"671":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"#":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"'":{"df":4,"docs":{"139":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0}}},"(":{"df":1,"docs":{"117":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"275":{"tf":1.0},"298":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":15,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"158":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"326":{"tf":1.0},"864":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"765":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"297":{"tf":1.7320508075688772},"727":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"864":{"tf":1.0}}}}}},"df":317,"docs":{"100":{"tf":5.291502622129181},"101":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"124":{"tf":2.6457513110645907},"125":{"tf":5.0990195135927845},"126":{"tf":3.3166247903554},"127":{"tf":6.855654600401044},"128":{"tf":2.449489742783178},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"131":{"tf":3.4641016151377544},"132":{"tf":1.7320508075688772},"133":{"tf":2.23606797749979},"134":{"tf":2.6457513110645907},"135":{"tf":3.872983346207417},"136":{"tf":3.4641016151377544},"137":{"tf":3.1622776601683795},"138":{"tf":3.1622776601683795},"139":{"tf":2.23606797749979},"140":{"tf":2.8284271247461903},"141":{"tf":2.23606797749979},"142":{"tf":2.0},"143":{"tf":2.6457513110645907},"144":{"tf":2.6457513110645907},"145":{"tf":4.0},"146":{"tf":2.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":3.0},"156":{"tf":2.449489742783178},"157":{"tf":2.6457513110645907},"158":{"tf":2.23606797749979},"159":{"tf":2.23606797749979},"160":{"tf":2.8284271247461903},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":2.23606797749979},"165":{"tf":2.23606797749979},"166":{"tf":2.0},"167":{"tf":2.0},"168":{"tf":2.23606797749979},"169":{"tf":2.0},"17":{"tf":1.4142135623730951},"170":{"tf":2.8284271247461903},"171":{"tf":1.7320508075688772},"172":{"tf":2.23606797749979},"173":{"tf":3.1622776601683795},"174":{"tf":2.0},"175":{"tf":3.4641016151377544},"176":{"tf":2.8284271247461903},"177":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":4.58257569495584},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.0},"214":{"tf":1.0},"217":{"tf":2.0},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.7320508075688772},"223":{"tf":1.0},"224":{"tf":5.0},"231":{"tf":3.605551275463989},"233":{"tf":2.449489742783178},"236":{"tf":2.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":2.449489742783178},"243":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":3.4641016151377544},"258":{"tf":4.0},"259":{"tf":3.0},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"264":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":2.8284271247461903},"276":{"tf":2.449489742783178},"278":{"tf":1.0},"289":{"tf":4.0},"290":{"tf":2.23606797749979},"291":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.7320508075688772},"294":{"tf":2.8284271247461903},"295":{"tf":2.23606797749979},"296":{"tf":1.7320508075688772},"297":{"tf":4.69041575982343},"298":{"tf":2.0},"299":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"315":{"tf":4.0},"316":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":2.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":2.449489742783178},"337":{"tf":1.0},"338":{"tf":2.23606797749979},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"351":{"tf":1.7320508075688772},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":2.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.4142135623730951},"416":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"468":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"619":{"tf":1.0},"623":{"tf":1.0},"632":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"642":{"tf":1.0},"647":{"tf":2.449489742783178},"648":{"tf":1.0},"649":{"tf":2.8284271247461903},"650":{"tf":1.0},"651":{"tf":1.7320508075688772},"652":{"tf":5.0},"653":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":2.449489742783178},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"674":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":3.605551275463989},"679":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":2.6457513110645907},"698":{"tf":1.7320508075688772},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.7320508075688772},"704":{"tf":1.0},"709":{"tf":2.449489742783178},"710":{"tf":2.23606797749979},"711":{"tf":2.449489742783178},"715":{"tf":1.7320508075688772},"716":{"tf":1.0},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"723":{"tf":1.0},"727":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.4142135623730951},"730":{"tf":1.0},"734":{"tf":2.6457513110645907},"736":{"tf":1.0},"738":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":2.449489742783178},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"765":{"tf":1.0},"78":{"tf":2.23606797749979},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":5.291502622129181},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"806":{"tf":2.23606797749979},"807":{"tf":2.23606797749979},"809":{"tf":1.4142135623730951},"812":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":1.4142135623730951},"834":{"tf":2.449489742783178},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.7320508075688772},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"860":{"tf":1.4142135623730951},"861":{"tf":2.0},"862":{"tf":1.4142135623730951},"864":{"tf":2.23606797749979},"865":{"tf":2.23606797749979},"867":{"tf":1.7320508075688772},"869":{"tf":1.7320508075688772},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"875":{"tf":1.0},"876":{"tf":1.0},"878":{"tf":1.0},"880":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"907":{"tf":1.0},"913":{"tf":2.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.7320508075688772},"916":{"tf":2.0},"917":{"tf":1.4142135623730951},"919":{"tf":2.0},"920":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":2.8284271247461903},"930":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":2.23606797749979},"952":{"tf":1.0},"956":{"tf":2.449489742783178},"958":{"tf":1.0},"963":{"tf":1.0},"99":{"tf":2.23606797749979}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"696":{"tf":1.7320508075688772},"697":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"649":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"652":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":20,"docs":{"131":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":2.449489742783178},"26":{"tf":1.0},"278":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":2.0},"665":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.7320508075688772},"864":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.4142135623730951}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":2,"docs":{"210":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"858":{"tf":1.0},"869":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"316":{"tf":1.0},"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":7,"docs":{"115":{"tf":1.0},"19":{"tf":2.0},"43":{"tf":1.0},"673":{"tf":1.0},"692":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"136":{"tf":1.0},"160":{"tf":1.0},"184":{"tf":1.4142135623730951},"218":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":2.23606797749979},"77":{"tf":1.0},"864":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"132":{"tf":1.0},"376":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"595":{"tf":1.0},"602":{"tf":1.4142135623730951},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"20":{"tf":1.0},"338":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"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":{},"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":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"138":{"tf":1.0},"147":{"tf":1.0},"26":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"683":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"969":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"652":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"636":{"tf":1.0}}}}}}}},"n":{"df":7,"docs":{"190":{"tf":1.0},"344":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":30,"docs":{"185":{"tf":2.23606797749979},"186":{"tf":1.0},"187":{"tf":2.23606797749979},"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.4142135623730951},"206":{"tf":2.23606797749979},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"315":{"tf":1.0}}},"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}},"df":68,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":2.0},"136":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"379":{"tf":1.0},"456":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"653":{"tf":1.0},"690":{"tf":1.0},"697":{"tf":1.0},"705":{"tf":1.0},"794":{"tf":1.0},"806":{"tf":1.0},"815":{"tf":1.0},"831":{"tf":1.0},"854":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.4142135623730951},"9":{"tf":1.0},"902":{"tf":1.4142135623730951},"913":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":2.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"936":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":3,"docs":{"923":{"tf":1.0},"928":{"tf":1.0},"938":{"tf":1.0}}}}}}}}}}},"y":{"df":3,"docs":{"100":{"tf":1.0},"79":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":30,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"124":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"422":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"514":{"tf":1.0},"537":{"tf":1.0},"582":{"tf":1.0},"65":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"85":{"tf":1.0},"860":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"136":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"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":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":36,"docs":{"13":{"tf":3.7416573867739413},"663":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.4142135623730951},"672":{"tf":1.0},"693":{"tf":2.8284271247461903},"694":{"tf":2.0},"695":{"tf":1.7320508075688772},"696":{"tf":1.0},"697":{"tf":1.7320508075688772},"698":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.7320508075688772},"721":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"786":{"tf":1.4142135623730951},"792":{"tf":1.7320508075688772},"793":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"924":{"tf":1.0},"951":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"203":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"63":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"700":{"tf":1.4142135623730951},"913":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"924":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":12,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.6457513110645907},"191":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0}}},"p":{"df":3,"docs":{"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"254":{"tf":1.0},"289":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"401":{"tf":1.0},"412":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.7320508075688772},"223":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"270":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"70":{"tf":1.0},"741":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"867":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"924":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":9,"docs":{"113":{"tf":1.0},"115":{"tf":2.0},"150":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"750":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"190":{"tf":1.4142135623730951},"262":{"tf":1.0},"267":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"64":{"tf":1.0},"73":{"tf":1.0},"744":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"814":{"tf":1.0},"833":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"234":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":23,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"878":{"tf":1.0},"962":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{".":{"0":{"df":5,"docs":{"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951}}},"1":{"df":3,"docs":{"899":{"tf":1.4142135623730951},"901":{"tf":1.0},"902":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"898":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"897":{"tf":1.4142135623730951}}},"df":0,"docs":{},"x":{"df":1,"docs":{"896":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"184":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"131":{"tf":2.449489742783178},"132":{"tf":1.0},"289":{"tf":1.0},"734":{"tf":1.4142135623730951},"804":{"tf":1.0}},"e":{"_":{"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":{"734":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"560":{"tf":1.0},"640":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"326":{"tf":1.0},"720":{"tf":1.0},"807":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"259":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":2.0},"317":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.4142135623730951},"596":{"tf":1.0},"607":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.7320508075688772},"960":{"tf":1.0},"968":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"285":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":2,"docs":{"720":{"tf":1.0},"757":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"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":{"782":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"782":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"757":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"912":{"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":1,"docs":{"252":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"130":{"tf":1.0},"136":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"67":{"tf":1.0},"845":{"tf":1.0},"951":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"967":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"667":{"tf":1.0},"864":{"tf":1.0}}}}},"s":{"df":9,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"198":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"17":{"tf":1.0},"203":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"692":{"tf":1.7320508075688772},"720":{"tf":1.0},"742":{"tf":1.0},"771":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"913":{"tf":1.0},"929":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"118":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"478":{"tf":1.0},"492":{"tf":1.0},"65":{"tf":1.0},"711":{"tf":1.4142135623730951},"752":{"tf":1.0},"791":{"tf":1.0},"796":{"tf":1.0},"806":{"tf":1.4142135623730951},"824":{"tf":1.0},"846":{"tf":1.0},"916":{"tf":1.0},"924":{"tf":1.0}},"s":{"df":8,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"254":{"tf":1.0},"654":{"tf":1.0},"782":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"52":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"962":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":17,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"217":{"tf":1.0},"834":{"tf":1.0},"864":{"tf":1.0},"880":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"324":{"tf":1.0},"425":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"563":{"tf":1.0},"671":{"tf":1.0},"814":{"tf":1.0},"837":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"862":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"104":{"tf":1.0},"680":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"276":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"61":{"tf":2.0},"704":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"402":{"tf":1.0},"619":{"tf":1.0}}}},"df":4,"docs":{"254":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.0},"912":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":2,"docs":{"254":{"tf":1.0},"675":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":45,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"125":{"tf":1.0},"155":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"263":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":2.8284271247461903},"316":{"tf":2.6457513110645907},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.7320508075688772},"439":{"tf":1.0},"441":{"tf":1.0},"459":{"tf":1.7320508075688772},"646":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"711":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"816":{"tf":1.0},"83":{"tf":1.0},"832":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"115":{"tf":1.7320508075688772},"330":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"804":{"tf":1.0},"830":{"tf":1.4142135623730951},"858":{"tf":1.0}},"t":{"'":{"df":7,"docs":{"224":{"tf":1.0},"227":{"tf":1.0},"355":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}},"df":87,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"132":{"tf":2.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":1.0},"215":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":2.0},"276":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"37":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"580":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"647":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"669":{"tf":2.0},"67":{"tf":1.0},"674":{"tf":1.0},"685":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"853":{"tf":1.0},"9":{"tf":2.6457513110645907},"908":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"132":{"tf":1.0},"289":{"tf":2.0},"533":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"252":{"tf":1.0},"653":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"83":{"tf":1.0},"958":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"834":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"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":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":101,"docs":{"0":{"tf":2.23606797749979},"10":{"tf":2.23606797749979},"103":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":2.0},"13":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"18":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.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},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"66":{"tf":1.0},"661":{"tf":1.0},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"68":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"8":{"tf":2.0},"82":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"891":{"tf":1.0},"894":{"tf":1.0},"9":{"tf":1.0},"908":{"tf":1.0},"912":{"tf":1.4142135623730951},"915":{"tf":1.0},"92":{"tf":1.0},"958":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"956":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"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":{"317":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"840":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"223":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"802":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"749":{"tf":1.0},"777":{"tf":1.0},"929":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.4142135623730951},"208":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"568":{"tf":1.4142135623730951},"580":{"tf":1.0},"582":{"tf":1.0},"618":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"905":{"tf":1.0},"951":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"963":{"tf":1.0},"964":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"?":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"231":{"tf":1.0},"232":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"541":{"tf":1.0},"854":{"tf":1.0},"922":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":109,"docs":{"10":{"tf":1.0},"121":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.4142135623730951},"330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"37":{"tf":1.0},"379":{"tf":1.0},"39":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.4142135623730951},"48":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":2.0},"494":{"tf":1.7320508075688772},"505":{"tf":1.0},"514":{"tf":1.0},"517":{"tf":1.0},"57":{"tf":1.0},"574":{"tf":1.0},"585":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"653":{"tf":1.0},"66":{"tf":1.0},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"685":{"tf":1.7320508075688772},"686":{"tf":1.0},"692":{"tf":1.0},"701":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"793":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"9":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.4142135623730951},"953":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":3.3166247903554}}},"df":0,"docs":{},"s":{"df":1,"docs":{"698":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"590":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"697":{"tf":1.4142135623730951},"7":{"tf":1.0},"773":{"tf":1.4142135623730951},"784":{"tf":1.0},"842":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"782":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":12,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":2.23606797749979},"777":{"tf":1.0},"778":{"tf":1.0},"806":{"tf":1.0},"850":{"tf":1.0},"913":{"tf":1.0},"926":{"tf":1.4142135623730951},"951":{"tf":1.0},"958":{"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":{"60":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}},"s":{"df":30,"docs":{"124":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"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},"285":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"459":{"tf":1.0},"580":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"924":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"t":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"140":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"924":{"tf":1.0}}}},"w":{"d":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"22":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"658":{"tf":1.0}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"318":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"837":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"690":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"3":{"df":3,"docs":{"21":{"tf":1.7320508075688772},"673":{"tf":1.0},"690":{"tf":1.0}}},"df":120,"docs":{"0":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.7320508075688772},"146":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"174":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":3.0},"20":{"tf":2.23606797749979},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":2.449489742783178},"30":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":2.23606797749979},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"390":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"470":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.0},"513":{"tf":1.0},"529":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"605":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.0},"658":{"tf":2.0},"670":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":3.0},"690":{"tf":1.0},"721":{"tf":1.0},"725":{"tf":1.4142135623730951},"727":{"tf":1.0},"729":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"743":{"tf":1.0},"751":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"790":{"tf":1.0},"799":{"tf":1.0},"803":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.7320508075688772},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"820":{"tf":1.4142135623730951},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"842":{"tf":2.0},"845":{"tf":1.0},"846":{"tf":2.0},"847":{"tf":1.0},"849":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.4142135623730951},"858":{"tf":2.0},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":2.0},"869":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.0},"921":{"tf":1.4142135623730951},"939":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}}}},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":11,"docs":{"0":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"48":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.4142135623730951},"934":{"tf":1.0}}}},"r":{"df":1,"docs":{"233":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":18,"docs":{"0":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"661":{"tf":1.0},"9":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.7320508075688772},"933":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"40":{"tf":1.0},"50":{"tf":2.0},"903":{"tf":1.0},"912":{"tf":1.7320508075688772},"924":{"tf":1.7320508075688772},"926":{"tf":1.0},"927":{"tf":1.4142135623730951},"934":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"194":{"tf":1.0},"197":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":33,"docs":{"132":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"595":{"tf":1.7320508075688772},"596":{"tf":1.7320508075688772},"597":{"tf":1.0},"598":{"tf":1.7320508075688772},"599":{"tf":1.0},"600":{"tf":2.6457513110645907},"601":{"tf":2.23606797749979},"602":{"tf":1.7320508075688772},"603":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":1.7320508075688772},"608":{"tf":1.0},"609":{"tf":1.7320508075688772},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"612":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"734":{"tf":1.0},"791":{"tf":1.4142135623730951},"817":{"tf":1.0},"830":{"tf":1.4142135623730951},"937":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"617":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"938":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"865":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"136":{"tf":1.0},"157":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"231":{"tf":2.23606797749979},"256":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"765":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":35,"docs":{"188":{"tf":1.0},"205":{"tf":1.7320508075688772},"376":{"tf":1.0},"389":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"535":{"tf":1.4142135623730951},"548":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"569":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"615":{"tf":1.4142135623730951},"627":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"637":{"tf":1.4142135623730951},"646":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"959":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"u":{"df":2,"docs":{"310":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":14,"docs":{"168":{"tf":1.0},"310":{"tf":1.0},"649":{"tf":1.0},"718":{"tf":1.0},"720":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.4142135623730951},"774":{"tf":1.0},"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"157":{"tf":1.0},"953":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"963":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"135":{"tf":2.0},"834":{"tf":1.0}}},"df":5,"docs":{"761":{"tf":1.0},"769":{"tf":1.0},"912":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":3.7416573867739413}}}}}},"r":{"2":{"0":{"df":1,"docs":{"883":{"tf":1.0}}},"5":{"c":{"df":1,"docs":{"745":{"tf":1.0}}},"df":1,"docs":{"762":{"tf":1.0}}},"6":{"c":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"204":{"tf":1.0},"823":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"878":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"288":{"tf":1.0},"734":{"tf":1.0},"774":{"tf":1.0},"842":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"528":{"tf":1.0}}}}}}},"df":1,"docs":{"376":{"tf":1.0}},"g":{"df":7,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"471":{"tf":1.4142135623730951},"52":{"tf":1.0},"582":{"tf":1.4142135623730951},"65":{"tf":1.0},"86":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"264":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"78":{"tf":1.0},"878":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"623":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}},"df":30,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"376":{"tf":1.4142135623730951},"523":{"tf":1.0},"618":{"tf":2.23606797749979},"619":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":2.449489742783178},"622":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":1.0},"625":{"tf":1.7320508075688772},"626":{"tf":2.449489742783178},"627":{"tf":1.0},"628":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"804":{"tf":1.0},"836":{"tf":1.0},"846":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"929":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"590":{"tf":1.0},"592":{"tf":1.0}},"n":{"df":1,"docs":{"752":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"264":{"tf":1.0},"460":{"tf":1.0},"803":{"tf":1.0}}},"y":{"df":1,"docs":{"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"205":{"tf":1.0},"289":{"tf":1.0},"344":{"tf":1.0},"570":{"tf":1.0},"630":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"85":{"tf":1.0},"867":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"254":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"2":{"tf":1.0},"225":{"tf":1.0},"340":{"tf":1.0},"807":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"tf":1.0}}}},"i":{"df":2,"docs":{"115":{"tf":1.0},"254":{"tf":1.0}}},"m":{"df":1,"docs":{"912":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":19,"docs":{"184":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"248":{"tf":1.7320508075688772},"255":{"tf":1.7320508075688772},"256":{"tf":2.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"693":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"289":{"tf":1.0},"673":{"tf":1.0},"680":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"752":{"tf":1.0},"840":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.6457513110645907},"184":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":2.8284271247461903},"297":{"tf":1.0},"298":{"tf":2.23606797749979},"649":{"tf":1.0},"652":{"tf":3.3166247903554},"669":{"tf":1.0},"685":{"tf":1.0},"752":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":2.0},"834":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.7320508075688772},"865":{"tf":2.0},"914":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"134":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"523":{"tf":1.0},"578":{"tf":1.7320508075688772},"77":{"tf":1.0},"951":{"tf":1.0},"98":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"858":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"103":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"21":{"tf":1.4142135623730951},"249":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"454":{"tf":1.0},"64":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"678":{"tf":1.0},"776":{"tf":1.0},"801":{"tf":1.0},"82":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"563":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":250,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.7320508075688772},"213":{"tf":1.0},"258":{"tf":1.7320508075688772},"261":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":2.23606797749979},"376":{"tf":4.242640687119285},"377":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"393":{"tf":2.23606797749979},"395":{"tf":1.0},"396":{"tf":2.23606797749979},"401":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"412":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"414":{"tf":2.23606797749979},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"425":{"tf":3.7416573867739413},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"435":{"tf":2.23606797749979},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.4142135623730951},"474":{"tf":1.0},"476":{"tf":2.0},"478":{"tf":1.0},"480":{"tf":2.6457513110645907},"481":{"tf":2.23606797749979},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.7320508075688772},"488":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"490":{"tf":1.7320508075688772},"491":{"tf":1.7320508075688772},"492":{"tf":1.7320508075688772},"493":{"tf":2.23606797749979},"494":{"tf":2.449489742783178},"496":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":2.23606797749979},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"507":{"tf":2.6457513110645907},"508":{"tf":2.449489742783178},"510":{"tf":1.0},"511":{"tf":1.0},"514":{"tf":1.7320508075688772},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"517":{"tf":2.0},"519":{"tf":1.0},"520":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.7320508075688772},"526":{"tf":1.0},"527":{"tf":1.4142135623730951},"528":{"tf":2.6457513110645907},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"537":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.0},"549":{"tf":1.7320508075688772},"550":{"tf":1.4142135623730951},"551":{"tf":3.605551275463989},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.4142135623730951},"560":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.7320508075688772},"566":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.4142135623730951},"575":{"tf":1.7320508075688772},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"583":{"tf":1.0},"584":{"tf":1.4142135623730951},"585":{"tf":2.0},"586":{"tf":2.0},"588":{"tf":1.0},"589":{"tf":1.0},"593":{"tf":1.7320508075688772},"595":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":2.23606797749979},"606":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.7320508075688772},"611":{"tf":1.4142135623730951},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"620":{"tf":1.4142135623730951},"621":{"tf":1.0},"623":{"tf":1.0},"629":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":2.449489742783178},"677":{"tf":1.4142135623730951},"679":{"tf":2.23606797749979},"680":{"tf":1.0},"71":{"tf":1.0},"711":{"tf":1.0},"718":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"761":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.7320508075688772},"776":{"tf":1.0},"78":{"tf":1.4142135623730951},"782":{"tf":1.0},"79":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"802":{"tf":1.0},"804":{"tf":1.7320508075688772},"807":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"87":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.4142135623730951},"895":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"92":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"937":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"956":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"854":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"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":1,"docs":{"834":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"184":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"254":{"tf":1.0},"640":{"tf":1.7320508075688772},"642":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"237":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"752":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.0},"294":{"tf":1.0},"84":{"tf":1.0},"865":{"tf":1.0}}},"df":0,"docs":{}}}},"df":7,"docs":{"17":{"tf":1.0},"182":{"tf":1.4142135623730951},"218":{"tf":1.0},"322":{"tf":1.4142135623730951},"762":{"tf":1.0},"834":{"tf":1.0},"958":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"772":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"875":{"tf":1.0},"902":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"437":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":86,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.4142135623730951},"147":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.7320508075688772},"229":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.7320508075688772},"300":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"376":{"tf":1.0},"387":{"tf":1.7320508075688772},"390":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"408":{"tf":1.7320508075688772},"411":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"466":{"tf":1.7320508075688772},"470":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"488":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.4142135623730951},"513":{"tf":1.4142135623730951},"515":{"tf":1.0},"525":{"tf":1.4142135623730951},"533":{"tf":1.7320508075688772},"536":{"tf":1.4142135623730951},"545":{"tf":1.7320508075688772},"556":{"tf":1.7320508075688772},"559":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"571":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"594":{"tf":1.4142135623730951},"602":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"613":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"625":{"tf":1.7320508075688772},"628":{"tf":1.4142135623730951},"636":{"tf":1.7320508075688772},"645":{"tf":1.7320508075688772},"654":{"tf":1.0},"659":{"tf":1.0},"769":{"tf":1.0},"8":{"tf":1.0},"811":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"924":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":2.23606797749979},"968":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"875":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"408":{"tf":1.0},"429":{"tf":1.0},"602":{"tf":1.0}}}}}}}},"df":1,"docs":{"408":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"460":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}},"x":{"df":3,"docs":{"364":{"tf":1.0},"371":{"tf":1.0},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"232":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"651":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"715":{"tf":1.0},"752":{"tf":1.0},"884":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"307":{"tf":1.0}}}}}}}}}}}}},"p":{"df":2,"docs":{"307":{"tf":1.0},"338":{"tf":1.4142135623730951}}}}},"r":{"df":4,"docs":{"289":{"tf":1.0},"678":{"tf":1.0},"812":{"tf":1.0},"833":{"tf":1.4142135623730951}},"i":{"df":67,"docs":{"108":{"tf":1.0},"138":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"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.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"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},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"387":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"499":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"708":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"750":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"567":{"tf":1.0},"680":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"239":{"tf":1.0},"254":{"tf":1.0},"273":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"391":{"tf":1.0},"412":{"tf":1.0},"488":{"tf":1.0},"515":{"tf":1.0},"583":{"tf":1.0},"606":{"tf":1.0},"709":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":2.23606797749979},"99":{"tf":1.0}}},"x":{"df":3,"docs":{"33":{"tf":1.0},"762":{"tf":1.0},"851":{"tf":1.0}}}},"df":9,"docs":{"142":{"tf":1.0},"170":{"tf":1.0},"376":{"tf":1.4142135623730951},"560":{"tf":1.0},"618":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":65,"docs":{"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"132":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"315":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.0},"781":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"846":{"tf":1.0},"855":{"tf":1.0},"86":{"tf":1.0},"868":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"888":{"tf":1.0},"893":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"9":{"tf":1.0},"901":{"tf":1.0},"912":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":7,"docs":{"259":{"tf":1.0},"288":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"326":{"tf":1.0},"647":{"tf":1.0},"665":{"tf":1.0},"858":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"184":{"tf":1.0},"754":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"142":{"tf":1.4142135623730951},"309":{"tf":1.0},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"838":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"203":{"tf":1.0},"254":{"tf":1.4142135623730951},"330":{"tf":1.0},"796":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":7,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"206":{"tf":1.0},"254":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0}}},"v":{"df":44,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"329":{"tf":1.0},"398":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"499":{"tf":1.7320508075688772},"522":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"614":{"tf":1.7320508075688772},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"744":{"tf":1.0},"752":{"tf":2.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":2.23606797749979},"771":{"tf":1.0},"772":{"tf":1.0},"779":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"830":{"tf":1.0},"833":{"tf":1.4142135623730951},"838":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.4142135623730951},"882":{"tf":1.0},"891":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0},"947":{"tf":1.0},"952":{"tf":1.0},"98":{"tf":2.23606797749979}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"743":{"tf":1.0},"754":{"tf":1.0}},"l":{"@":{"0":{".":{"5":{".":{"3":{"df":1,"docs":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"288":{"tf":1.0},"807":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0},"838":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"254":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"673":{"tf":1.0},"725":{"tf":1.0},"732":{"tf":1.0},"799":{"tf":2.0},"854":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":1,"docs":{"127":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":52,"docs":{"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"120":{"tf":2.0},"127":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"315":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"346":{"tf":1.0},"381":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":2.449489742783178},"440":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"532":{"tf":1.0},"591":{"tf":1.0},"6":{"tf":1.0},"614":{"tf":1.0},"635":{"tf":2.23606797749979},"742":{"tf":1.0},"773":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"857":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.4142135623730951},"918":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"958":{"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":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"590":{"tf":1.0},"621":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"762":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":2.0},"129":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"212":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"295":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.4142135623730951},"363":{"tf":1.0},"370":{"tf":1.0},"379":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"698":{"tf":1.7320508075688772},"701":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"802":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"861":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"9":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.4142135623730951},"919":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"956":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":130,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.7320508075688772},"264":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"302":{"tf":1.0},"305":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":2.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"340":{"tf":1.0},"385":{"tf":1.0},"39":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"406":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"58":{"tf":1.4142135623730951},"580":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.7320508075688772},"600":{"tf":1.0},"603":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.4142135623730951},"62":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":2.6457513110645907},"677":{"tf":1.7320508075688772},"678":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"76":{"tf":1.4142135623730951},"761":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"801":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.0},"811":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"837":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"965":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"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":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"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":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"636":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"871":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"224":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.7320508075688772},"371":{"tf":1.0}}}},"t":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"289":{"tf":1.0},"318":{"tf":3.1622776601683795},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"402":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"814":{"tf":1.0},"860":{"tf":1.0},"872":{"tf":1.0},"88":{"tf":1.0},"948":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"456":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"557":{"tf":1.7320508075688772},"76":{"tf":2.0},"811":{"tf":1.0},"950":{"tf":1.4142135623730951},"97":{"tf":2.0}}}},"v":{"df":2,"docs":{"34":{"tf":1.0},"912":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"_":{"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":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"315":{"tf":1.4142135623730951},"567":{"tf":1.0},"655":{"tf":1.0},"772":{"tf":1.4142135623730951},"838":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"127":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"326":{"tf":1.0},"655":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"853":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"100":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":3.1622776601683795},"289":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"560":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":1.7320508075688772},"932":{"tf":1.0},"99":{"tf":1.0}}}}},"df":4,"docs":{"254":{"tf":1.0},"276":{"tf":1.0},"916":{"tf":1.0},"966":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"796":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"170":{"tf":1.0},"259":{"tf":1.0},"303":{"tf":1.0},"747":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"190":{"tf":1.0},"258":{"tf":1.7320508075688772},"263":{"tf":1.0},"297":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"801":{"tf":1.0},"839":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"919":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":4,"docs":{"203":{"tf":1.0},"233":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"218":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"590":{"tf":1.0},"592":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"162":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":2.0},"849":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":29,"docs":{"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"234":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"88":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":47,"docs":{"134":{"tf":1.0},"149":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"459":{"tf":1.0},"464":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"490":{"tf":1.0},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.7320508075688772},"565":{"tf":1.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"692":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":2.449489742783178},"801":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"858":{"tf":1.0},"919":{"tf":1.0},"951":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":13,"docs":{"103":{"tf":1.7320508075688772},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"670":{"tf":1.0},"70":{"tf":1.0},"780":{"tf":1.0},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.4142135623730951},"743":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"138":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"677":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"862":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"745":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"62":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"13":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"79":{"tf":1.0},"804":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0},"958":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"v":{"'":{"df":2,"docs":{"803":{"tf":1.0},"818":{"tf":1.0}}},"df":9,"docs":{"270":{"tf":1.0},"741":{"tf":1.4142135623730951},"753":{"tf":1.0},"754":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"880":{"tf":1.0}}}},"l":{"b":{"df":16,"docs":{"736":{"tf":1.0},"788":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.7320508075688772},"818":{"tf":1.4142135623730951},"820":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}},"l":{"df":1,"docs":{"190":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":3.872983346207417},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":3.0}}}}}}},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"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":{"667":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"318":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.0},"915":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"13":{"tf":2.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"77":{"tf":1.0},"881":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"16":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.4142135623730951},"720":{"tf":1.0},"867":{"tf":1.0}}}},"n":{"df":83,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"119":{"tf":1.4142135623730951},"126":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"136":{"tf":1.0},"142":{"tf":2.6457513110645907},"149":{"tf":1.0},"17":{"tf":2.6457513110645907},"173":{"tf":1.0},"175":{"tf":2.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":2.449489742783178},"203":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":2.0},"32":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"457":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"60":{"tf":1.0},"652":{"tf":2.6457513110645907},"655":{"tf":1.0},"658":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.0},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"802":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":1.0},"83":{"tf":1.0},"834":{"tf":1.4142135623730951},"839":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.7320508075688772},"915":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":16,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"20":{"tf":1.4142135623730951},"206":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"765":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"858":{"tf":1.0},"921":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"4":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":1,"docs":{"958":{"tf":1.0}}},"df":133,"docs":{"0":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"559":{"tf":1.0},"565":{"tf":1.0},"571":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.0},"617":{"tf":1.0},"623":{"tf":1.0},"628":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"653":{"tf":1.7320508075688772},"654":{"tf":1.7320508075688772},"655":{"tf":2.0},"715":{"tf":1.0},"716":{"tf":1.0},"718":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.0},"740":{"tf":1.4142135623730951},"743":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.4142135623730951},"757":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.0},"809":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"837":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"881":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"958":{"tf":2.0},"969":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":13,"docs":{"258":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"716":{"tf":1.4142135623730951},"76":{"tf":1.0},"765":{"tf":1.4142135623730951},"803":{"tf":1.0},"818":{"tf":1.4142135623730951},"920":{"tf":1.0},"97":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"849":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":36,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"454":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":2.0},"626":{"tf":1.0},"668":{"tf":1.0},"678":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"823":{"tf":1.4142135623730951},"840":{"tf":1.0},"916":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":31,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.23606797749979},"254":{"tf":2.23606797749979},"31":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":2.0},"476":{"tf":2.6457513110645907},"493":{"tf":2.449489742783178},"494":{"tf":2.6457513110645907},"496":{"tf":1.0},"505":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"678":{"tf":1.0},"803":{"tf":1.0},"894":{"tf":1.0},"912":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"17":{"tf":1.0},"958":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"621":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"254":{"tf":1.0},"289":{"tf":2.0},"710":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"184":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0}}}},"n":{"df":6,"docs":{"135":{"tf":1.4142135623730951},"233":{"tf":1.0},"734":{"tf":1.0},"831":{"tf":1.4142135623730951},"913":{"tf":1.0},"929":{"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":6,"docs":{"175":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":33,"docs":{"127":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":3.3166247903554},"178":{"tf":1.4142135623730951},"184":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"275":{"tf":2.0},"297":{"tf":2.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"321":{"tf":1.0},"619":{"tf":1.0},"647":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"710":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"723":{"tf":1.0},"727":{"tf":1.0},"755":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"867":{"tf":1.0},"876":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":20,"docs":{"108":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.7320508075688772},"290":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":1.7320508075688772},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"63":{"tf":1.0},"644":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"697":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"87":{"tf":1.0},"935":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":7,"docs":{"230":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772},"541":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"680":{"tf":1.0},"697":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}},"r":{"'":{"df":1,"docs":{"60":{"tf":1.0}}},".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"/":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"@":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"276":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"184":{"tf":1.0},"254":{"tf":1.7320508075688772},"289":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"17":{"tf":2.449489742783178},"20":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":2.23606797749979},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"500":{"tf":1.0},"592":{"tf":1.0},"663":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"685":{"tf":1.0},"769":{"tf":1.0},"774":{"tf":1.0},"852":{"tf":1.0},"879":{"tf":1.0},"912":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"232":{"tf":1.0},"289":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":8,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"318":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"=":{"2":{"5":{"df":1,"docs":{"835":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"682":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"774":{"tf":1.0},"852":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":176,"docs":{"0":{"tf":2.6457513110645907},"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":2.449489742783178},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"22":{"tf":3.1622776601683795},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":2.23606797749979},"225":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"256":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":2.0},"315":{"tf":2.6457513110645907},"316":{"tf":2.6457513110645907},"317":{"tf":1.0},"318":{"tf":3.7416573867739413},"32":{"tf":3.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.7320508075688772},"338":{"tf":1.0},"340":{"tf":2.23606797749979},"349":{"tf":2.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"398":{"tf":1.4142135623730951},"4":{"tf":2.0},"419":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":2.0},"522":{"tf":1.4142135623730951},"538":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"626":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":2.6457513110645907},"654":{"tf":2.0},"655":{"tf":1.0},"656":{"tf":1.4142135623730951},"657":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":2.0},"66":{"tf":1.4142135623730951},"660":{"tf":2.23606797749979},"661":{"tf":1.0},"662":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"67":{"tf":1.0},"671":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":2.6457513110645907},"692":{"tf":1.0},"693":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.7320508075688772},"706":{"tf":1.4142135623730951},"709":{"tf":1.0},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"731":{"tf":1.0},"735":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"793":{"tf":1.4142135623730951},"804":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"83":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"85":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":2.23606797749979},"966":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.7320508075688772}}}},"df":4,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"140":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}},"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}},"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":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"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":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"tf":1.0}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"540":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"448":{"tf":1.0}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"544":{"tf":1.4142135623730951}}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"543":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"428":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.0},"138":{"tf":2.23606797749979},"140":{"tf":2.449489742783178},"254":{"tf":2.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"376":{"tf":1.0},"429":{"tf":1.0},"443":{"tf":1.0},"450":{"tf":1.4142135623730951},"452":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"548":{"tf":1.4142135623730951},"652":{"tf":1.7320508075688772},"665":{"tf":1.0},"73":{"tf":1.0},"782":{"tf":1.0},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"858":{"tf":1.0}}}}},"df":25,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"286":{"tf":1.0},"315":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"861":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":45,"docs":{"1":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":2.0},"132":{"tf":2.0},"138":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"208":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.7320508075688772},"280":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":2.0},"326":{"tf":1.0},"330":{"tf":1.0},"4":{"tf":1.4142135623730951},"427":{"tf":1.0},"5":{"tf":1.4142135623730951},"538":{"tf":1.0},"678":{"tf":1.0},"73":{"tf":1.0},"730":{"tf":1.0},"865":{"tf":1.4142135623730951},"94":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":2.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"965":{"tf":1.7320508075688772},"968":{"tf":1.4142135623730951},"969":{"tf":2.23606797749979}},"’":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":97,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":2.0},"259":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"330":{"tf":1.0},"356":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"501":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"549":{"tf":1.4142135623730951},"56":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"572":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"630":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"672":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"709":{"tf":1.0},"772":{"tf":1.7320508075688772},"79":{"tf":1.0},"799":{"tf":2.23606797749979},"83":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.4142135623730951},"958":{"tf":1.0}},"m":{"df":2,"docs":{"109":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":4,"docs":{"234":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"377":{"tf":1.0}}}},"g":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"157":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":3.3166247903554},"289":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"73":{"tf":1.0},"890":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"473":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"144":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"298":{"tf":1.0},"649":{"tf":1.0},"872":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"_":{"df":0,"docs":{},"p":{"df":31,"docs":{"139":{"tf":1.0},"140":{"tf":2.23606797749979},"160":{"tf":1.4142135623730951},"259":{"tf":1.0},"289":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"642":{"tf":1.0},"677":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":66,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":2.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"145":{"tf":1.0},"160":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"203":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.7320508075688772},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"236":{"tf":2.0},"242":{"tf":2.0},"258":{"tf":2.23606797749979},"259":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"330":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.4142135623730951},"560":{"tf":1.0},"6":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"716":{"tf":1.0},"747":{"tf":1.0},"755":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"807":{"tf":1.0},"82":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"867":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":1.0}},"p":{"df":2,"docs":{"224":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":6,"docs":{"103":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"289":{"tf":2.0},"546":{"tf":1.0},"958":{"tf":1.0}}}}},"t":{"df":121,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"145":{"tf":2.8284271247461903},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.23606797749979},"218":{"tf":1.0},"224":{"tf":2.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"549":{"tf":1.0},"561":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"590":{"tf":1.4142135623730951},"591":{"tf":1.0},"614":{"tf":1.0},"618":{"tf":1.0},"632":{"tf":1.0},"651":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"716":{"tf":1.0},"727":{"tf":1.4142135623730951},"73":{"tf":1.0},"752":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"806":{"tf":2.0},"83":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.7320508075688772},"865":{"tf":1.0},"873":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.0},"231":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.4142135623730951},"653":{"tf":1.0},"692":{"tf":1.0},"775":{"tf":1.0},"79":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"770":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"570":{"tf":1.0},"644":{"tf":1.0},"697":{"tf":1.0},"755":{"tf":1.0},"770":{"tf":1.0}}}},"df":5,"docs":{"34":{"tf":1.0},"376":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0}}},"v":{"df":11,"docs":{"199":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"62":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"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":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":64,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":2.23606797749979},"212":{"tf":2.449489742783178},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"258":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.0},"53":{"tf":2.0},"54":{"tf":2.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"66":{"tf":1.0},"674":{"tf":1.0},"727":{"tf":1.7320508075688772},"74":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.4142135623730951},"922":{"tf":1.0},"95":{"tf":1.0}},"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":{"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":8,"docs":{"267":{"tf":1.4142135623730951},"270":{"tf":1.0},"289":{"tf":1.0},"54":{"tf":1.4142135623730951},"687":{"tf":1.0},"704":{"tf":1.4142135623730951},"721":{"tf":1.0},"736":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":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":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"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":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"895":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"241":{"tf":1.0},"289":{"tf":1.0},"454":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"890":{"tf":1.0},"895":{"tf":1.0},"905":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"905":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"803":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"126":{"tf":1.0},"802":{"tf":1.0},"914":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":145,"docs":{"100":{"tf":2.8284271247461903},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"128":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":2.6457513110645907},"136":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"173":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":2.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"24":{"tf":1.4142135623730951},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":2.6457513110645907},"316":{"tf":2.23606797749979},"318":{"tf":1.0},"32":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"330":{"tf":2.23606797749979},"348":{"tf":1.0},"35":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"373":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.0},"377":{"tf":1.7320508075688772},"383":{"tf":1.7320508075688772},"393":{"tf":1.7320508075688772},"402":{"tf":1.0},"41":{"tf":1.4142135623730951},"425":{"tf":1.7320508075688772},"435":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"457":{"tf":1.0},"460":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":3.4641016151377544},"540":{"tf":1.7320508075688772},"541":{"tf":1.0},"551":{"tf":2.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"598":{"tf":1.7320508075688772},"609":{"tf":1.7320508075688772},"619":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.7320508075688772},"640":{"tf":1.7320508075688772},"649":{"tf":1.4142135623730951},"651":{"tf":1.0},"653":{"tf":1.4142135623730951},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"665":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"676":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"690":{"tf":1.7320508075688772},"691":{"tf":1.0},"710":{"tf":1.0},"715":{"tf":1.4142135623730951},"72":{"tf":1.0},"720":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.8284271247461903},"801":{"tf":1.4142135623730951},"804":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.4142135623730951},"84":{"tf":1.0},"842":{"tf":1.0},"85":{"tf":1.0},"858":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"921":{"tf":1.0},"923":{"tf":1.4142135623730951},"925":{"tf":1.0},"927":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.0},"328":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.0},"329":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"359":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"727":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"462":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"460":{"tf":1.4142135623730951},"938":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"373":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"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":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"919":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":9,"docs":{"12":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"43":{"tf":1.0},"673":{"tf":1.0},"676":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"307":{"tf":1.0},"715":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"858":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"541":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"225":{"tf":1.0},"265":{"tf":1.0},"626":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"772":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"431":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"969":{"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":8,"docs":{"103":{"tf":1.0},"128":{"tf":1.0},"192":{"tf":1.0},"626":{"tf":1.4142135623730951},"738":{"tf":1.0},"82":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"11":{"tf":1.0},"665":{"tf":1.0},"751":{"tf":1.0},"775":{"tf":1.0},"804":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"958":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}}}},"df":2,"docs":{"655":{"tf":1.0},"658":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":13,"docs":{"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"151":{"tf":1.0},"184":{"tf":1.0},"218":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"678":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"939":{"tf":1.0},"969":{"tf":2.449489742783178}},"n":{"df":5,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":24,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"184":{"tf":1.0},"342":{"tf":1.7320508075688772},"715":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.0},"739":{"tf":1.4142135623730951},"743":{"tf":1.0},"747":{"tf":1.4142135623730951},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"806":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.4142135623730951},"931":{"tf":1.0}}}}}},"df":8,"docs":{"184":{"tf":1.0},"22":{"tf":1.0},"339":{"tf":2.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.0},"814":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"268":{"tf":1.0},"318":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"73":{"tf":1.0},"854":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"762":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"df":7,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"494":{"tf":1.7320508075688772},"621":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"258":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"734":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"318":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"103":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"381":{"tf":1.0},"674":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"900":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"i":{"df":10,"docs":{"142":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"677":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"503":{"tf":1.0},"514":{"tf":1.4142135623730951},"515":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"473":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":33,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.4142135623730951},"494":{"tf":1.0},"549":{"tf":1.0},"568":{"tf":1.0},"595":{"tf":1.0},"629":{"tf":1.0},"70":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.7320508075688772},"76":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"78":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"852":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"348":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"129":{"tf":1.0},"135":{"tf":2.8284271247461903},"190":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"326":{"tf":1.0},"376":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"510":{"tf":1.0},"511":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"693":{"tf":1.0},"720":{"tf":1.0},"818":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"916":{"tf":1.4142135623730951},"929":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"232":{"tf":1.0},"306":{"tf":1.0},"782":{"tf":1.0},"799":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"456":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"830":{"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":2,"docs":{"121":{"tf":1.4142135623730951},"864":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"568":{"tf":1.0},"626":{"tf":1.0},"816":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"145":{"tf":1.0},"289":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"267":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"557":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":2.23606797749979},"823":{"tf":1.0},"834":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"480":{"tf":2.23606797749979},"496":{"tf":1.0},"507":{"tf":2.23606797749979},"577":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"642":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"s":{"df":2,"docs":{"565":{"tf":1.4142135623730951},"642":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"480":{"tf":2.23606797749979},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"577":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"1":{"9":{"df":1,"docs":{"577":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"[":{"0":{"df":1,"docs":{"565":{"tf":2.0}}},"df":0,"docs":{}},"df":7,"docs":{"112":{"tf":2.23606797749979},"480":{"tf":3.3166247903554},"496":{"tf":1.4142135623730951},"507":{"tf":3.4641016151377544},"565":{"tf":2.449489742783178},"577":{"tf":2.449489742783178},"642":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":3.872983346207417}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"289":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"815":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"112":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"1":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"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":{},"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":{},"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"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":{"563":{"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":0,"docs":{},"e":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}},"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":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"799":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"190":{"tf":1.0},"376":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"596":{"tf":1.0},"618":{"tf":1.4142135623730951},"67":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"692":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"915":{"tf":1.0},"969":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"195":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"261":{"tf":1.4142135623730951},"308":{"tf":1.0},"316":{"tf":1.0},"867":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"878":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":31,"docs":{"118":{"tf":1.4142135623730951},"129":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"219":{"tf":1.4142135623730951},"27":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"353":{"tf":1.4142135623730951},"370":{"tf":2.23606797749979},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"493":{"tf":1.0},"567":{"tf":1.0},"7":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"77":{"tf":1.0},"801":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"98":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"563":{"tf":1.7320508075688772},"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"$":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"683":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"686":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"224":{"tf":1.0},"231":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"264":{"tf":1.7320508075688772},"580":{"tf":1.0},"591":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"861":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"538":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":36,"docs":{"120":{"tf":1.0},"140":{"tf":1.0},"224":{"tf":1.4142135623730951},"252":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.7320508075688772},"414":{"tf":2.0},"419":{"tf":1.7320508075688772},"435":{"tf":2.0},"440":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.7320508075688772},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"616":{"tf":1.4142135623730951},"630":{"tf":1.0},"65":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":115,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"118":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"367":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.7320508075688772},"406":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"488":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"529":{"tf":1.7320508075688772},"531":{"tf":1.0},"538":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.0},"565":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.4142135623730951},"632":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"690":{"tf":1.0},"693":{"tf":1.4142135623730951},"697":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"776":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"858":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"926":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.0},"951":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":2.0},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":66,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.4142135623730951},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"448":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.7320508075688772},"524":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"670":{"tf":1.0},"76":{"tf":1.4142135623730951},"789":{"tf":1.0},"823":{"tf":1.0},"839":{"tf":1.0},"858":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.4142135623730951},"466":{"tf":1.0},"484":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"793":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"590":{"tf":1.0}},"s":{"_":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"590":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"l":{".":{"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"925":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"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":{},"r":{"df":1,"docs":{"27":{"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":0,"docs":{},"{":{"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":{"17":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"698":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"909":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"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":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"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":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{")":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"417":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"752":{"tf":1.0},"881":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"646":{"tf":1.0},"65":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"376":{"tf":1.0},"439":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}},"r":{"d":{"df":10,"docs":{"110":{"tf":2.0},"231":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"572":{"tf":1.0},"62":{"tf":1.0},"823":{"tf":1.0},"837":{"tf":1.0},"89":{"tf":2.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"179":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"7":{"/":{"1":{"5":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"/":{"0":{"4":{":":{"3":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":55,"docs":{"0":{"tf":2.8284271247461903},"100":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":2.0},"2":{"tf":1.0},"203":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"241":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"269":{"tf":1.0},"285":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":2.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"478":{"tf":1.4142135623730951},"490":{"tf":2.23606797749979},"492":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.0},"618":{"tf":1.0},"675":{"tf":1.4142135623730951},"678":{"tf":1.0},"711":{"tf":1.4142135623730951},"736":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"818":{"tf":1.0},"853":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"880":{"tf":1.0},"969":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":38,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"146":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"678":{"tf":1.0},"752":{"tf":1.4142135623730951},"760":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"807":{"tf":1.4142135623730951},"818":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.0},"876":{"tf":1.0},"9":{"tf":1.0},"929":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"120":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"203":{"tf":2.8284271247461903},"32":{"tf":1.0},"324":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"674":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"76":{"tf":1.0},"838":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0},"923":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.0},"678":{"tf":1.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":11,"docs":{"377":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"664":{"tf":1.0},"684":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"585":{"tf":2.449489742783178},"586":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":12,"docs":{"289":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":2.23606797749979},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"342":{"tf":1.0},"742":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"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":{"_":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"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":{"_":{"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"d":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"0":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"565":{"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":{},"m":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"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":2,"docs":{"844":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":36,"docs":{"10":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"14":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":2.0},"195":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":2.0},"23":{"tf":2.0},"247":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":2.0},"290":{"tf":1.0},"299":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":2.0},"441":{"tf":1.0},"45":{"tf":1.4142135623730951},"57":{"tf":2.0},"64":{"tf":1.0},"677":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"701":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"924":{"tf":1.0},"926":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":34,"docs":{"118":{"tf":1.4142135623730951},"127":{"tf":1.0},"136":{"tf":1.0},"19":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"37":{"tf":1.0},"393":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"46":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"694":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.4142135623730951},"805":{"tf":1.0},"905":{"tf":1.0},"912":{"tf":1.0},"923":{"tf":1.4142135623730951},"969":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"471":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"494":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":17,"docs":{"149":{"tf":1.0},"203":{"tf":1.0},"454":{"tf":1.4142135623730951},"457":{"tf":2.0},"459":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.7320508075688772},"716":{"tf":1.0},"77":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"921":{"tf":1.0},"969":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"129":{"tf":1.0},"135":{"tf":2.449489742783178},"17":{"tf":1.0},"264":{"tf":1.4142135623730951},"31":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"678":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"789":{"tf":1.0},"834":{"tf":1.0},"909":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":52,"docs":{"114":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"464":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"565":{"tf":1.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.0},"74":{"tf":1.0},"752":{"tf":1.0},"837":{"tf":1.0},"842":{"tf":1.0},"882":{"tf":1.0},"905":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"951":{"tf":1.0}}},"i":{"df":2,"docs":{"289":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"144":{"tf":1.7320508075688772},"340":{"tf":1.0},"674":{"tf":1.0}}}}}}},"df":1,"docs":{"752":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"136":{"tf":1.0},"234":{"tf":1.4142135623730951},"297":{"tf":1.0},"698":{"tf":1.0},"923":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"964":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"862":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":95,"docs":{"120":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":3.605551275463989},"136":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"170":{"tf":1.4142135623730951},"198":{"tf":1.0},"224":{"tf":2.0},"231":{"tf":1.0},"285":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"347":{"tf":2.449489742783178},"376":{"tf":2.8284271247461903},"377":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"425":{"tf":2.6457513110645907},"426":{"tf":1.0},"427":{"tf":2.8284271247461903},"428":{"tf":2.8284271247461903},"429":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":2.6457513110645907},"436":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.449489742783178},"444":{"tf":1.0},"445":{"tf":2.8284271247461903},"446":{"tf":2.8284271247461903},"447":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"529":{"tf":1.4142135623730951},"532":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"554":{"tf":1.7320508075688772},"560":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":2.23606797749979},"580":{"tf":1.4142135623730951},"603":{"tf":1.0},"614":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.4142135623730951},"634":{"tf":1.0},"635":{"tf":2.23606797749979},"644":{"tf":1.0},"645":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"697":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":2.449489742783178},"738":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"78":{"tf":1.0},"799":{"tf":1.0},"813":{"tf":1.0},"818":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.7320508075688772},"842":{"tf":1.0},"862":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"738":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"442":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.0},"282":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"340":{"tf":1.0},"376":{"tf":1.0},"638":{"tf":1.0},"640":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"645":{"tf":1.0},"87":{"tf":1.0},"956":{"tf":1.0},"964":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"816":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"226":{"tf":1.7320508075688772},"675":{"tf":1.4142135623730951},"677":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"377":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"135":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"129":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"312":{"tf":1.0},"354":{"tf":1.0},"561":{"tf":1.4142135623730951},"648":{"tf":1.4142135623730951},"652":{"tf":1.0},"66":{"tf":2.0},"710":{"tf":1.7320508075688772},"711":{"tf":1.0},"752":{"tf":1.0},"864":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"929":{"tf":1.0},"956":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"184":{"tf":1.0},"272":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"801":{"tf":1.0}}}},"df":53,"docs":{"100":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"561":{"tf":1.0},"60":{"tf":1.0},"647":{"tf":1.4142135623730951},"649":{"tf":2.6457513110645907},"652":{"tf":3.4641016151377544},"710":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"801":{"tf":1.0},"804":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"917":{"tf":1.0},"919":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"22":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"847":{"tf":1.0},"859":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":15,"docs":{"100":{"tf":1.7320508075688772},"142":{"tf":1.0},"224":{"tf":1.0},"243":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"560":{"tf":1.0},"736":{"tf":1.0},"79":{"tf":1.7320508075688772}}}},"t":{"df":8,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0},"715":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"62":{"tf":1.0},"710":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"698":{"tf":1.0},"913":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":40,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":3.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"443":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"63":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"66":{"tf":1.0},"692":{"tf":1.0},"78":{"tf":1.4142135623730951},"811":{"tf":1.0},"840":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"379":{"tf":1.0},"838":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"145":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":1.0},"117":{"tf":1.0},"318":{"tf":1.0}}}},"m":{"df":7,"docs":{"412":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.6457513110645907},"519":{"tf":1.4142135623730951},"577":{"tf":2.23606797749979},"588":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"254":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"968":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"315":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"830":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"492":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":85,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"34":{"tf":1.4142135623730951},"422":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"572":{"tf":1.0},"62":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"671":{"tf":1.0},"697":{"tf":1.0},"705":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"730":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0},"776":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0},"812":{"tf":1.0},"834":{"tf":2.0},"835":{"tf":1.0},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"846":{"tf":1.0},"85":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"925":{"tf":1.0},"938":{"tf":1.4142135623730951},"947":{"tf":1.0},"950":{"tf":2.0},"951":{"tf":1.0},"958":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"100":{"tf":1.0},"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"107":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"288":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.7320508075688772},"443":{"tf":1.0},"538":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"847":{"tf":1.0},"86":{"tf":1.7320508075688772},"882":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"540":{"tf":1.0}}},"df":62,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"14":{"tf":2.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":2.0},"161":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.7320508075688772},"174":{"tf":1.0},"223":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"354":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"513":{"tf":1.0},"536":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"605":{"tf":1.0},"653":{"tf":1.0},"657":{"tf":1.7320508075688772},"681":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"738":{"tf":1.4142135623730951},"760":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.7320508075688772},"798":{"tf":1.0},"799":{"tf":1.0},"804":{"tf":1.0},"818":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"969":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"224":{"tf":1.0},"324":{"tf":1.0},"735":{"tf":1.0},"772":{"tf":1.0},"793":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"844":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"289":{"tf":1.0},"692":{"tf":1.0},"907":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"759":{"tf":1.0},"900":{"tf":1.0},"909":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"105":{"tf":1.0},"115":{"tf":1.7320508075688772},"132":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"184":{"tf":1.0},"234":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"735":{"tf":1.0},"78":{"tf":1.0},"791":{"tf":1.0},"804":{"tf":1.0},"817":{"tf":1.0},"84":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"17":{"tf":1.0},"198":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"289":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"960":{"tf":1.4142135623730951},"963":{"tf":1.0},"964":{"tf":1.7320508075688772},"969":{"tf":4.58257569495584}},"l":{"df":7,"docs":{"103":{"tf":1.0},"129":{"tf":1.4142135623730951},"136":{"tf":1.0},"70":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}}}},"df":52,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":2.0},"218":{"tf":1.7320508075688772},"219":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":3.1622776601683795},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.7320508075688772},"289":{"tf":2.0},"297":{"tf":1.7320508075688772},"299":{"tf":2.23606797749979},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":2.23606797749979},"304":{"tf":1.7320508075688772},"305":{"tf":1.4142135623730951},"326":{"tf":1.0},"352":{"tf":1.7320508075688772},"353":{"tf":2.0},"359":{"tf":1.0},"363":{"tf":2.6457513110645907},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":2.6457513110645907},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":3.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":4.242640687119285},"374":{"tf":1.0},"375":{"tf":2.23606797749979},"801":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"837":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"843":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"933":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"969":{"tf":1.0}},"p":{"df":1,"docs":{"224":{"tf":1.0}}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"17":{"tf":1.0},"279":{"tf":1.7320508075688772},"299":{"tf":1.0},"300":{"tf":1.0},"783":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":24,"docs":{"117":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"44":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"592":{"tf":1.0},"644":{"tf":1.4142135623730951},"674":{"tf":1.0},"675":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.0},"805":{"tf":1.0},"830":{"tf":1.0},"864":{"tf":1.0},"884":{"tf":1.0},"97":{"tf":1.0}},"n":{"df":14,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"83":{"tf":1.0},"847":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}},"r":{"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":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"756":{"tf":1.0},"762":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"110":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"34":{"tf":1.0},"342":{"tf":1.4142135623730951},"653":{"tf":1.0},"667":{"tf":1.0},"731":{"tf":1.0},"862":{"tf":1.0},"874":{"tf":1.0},"89":{"tf":1.0},"927":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":31,"docs":{"127":{"tf":1.4142135623730951},"151":{"tf":1.0},"2":{"tf":1.0},"271":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"321":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":2.23606797749979},"376":{"tf":1.0},"454":{"tf":1.0},"678":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"736":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"812":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"881":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"97":{"tf":1.0}}}}},"b":{"df":2,"docs":{"505":{"tf":1.0},"517":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"6":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"132":{"tf":1.4142135623730951},"223":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"344":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"537":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"712":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"860":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"160":{"tf":1.0},"223":{"tf":1.0},"289":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"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":38,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.4142135623730951},"145":{"tf":1.0},"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"224":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"288":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"674":{"tf":1.0},"680":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"77":{"tf":1.4142135623730951},"775":{"tf":1.0},"839":{"tf":1.4142135623730951},"847":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.7320508075688772},"936":{"tf":1.0},"958":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951}}},"y":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":12,"docs":{"249":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":3,"docs":{"13":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"744":{"tf":1.0}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"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":{},"t":{"df":1,"docs":{"545":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"318":{"tf":1.4142135623730951},"837":{"tf":1.0},"860":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"289":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"511":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":5,"docs":{"272":{"tf":1.0},"340":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"149":{"tf":1.0},"233":{"tf":1.0},"276":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"s":{"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":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"318":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"765":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"772":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"772":{"tf":1.0}}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":76,"docs":{"107":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":3.3166247903554},"112":{"tf":3.0},"113":{"tf":2.23606797749979},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"136":{"tf":1.0},"143":{"tf":2.449489742783178},"144":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"318":{"tf":6.48074069840786},"328":{"tf":2.0},"331":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"405":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"518":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"564":{"tf":1.4142135623730951},"565":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"622":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"641":{"tf":1.4142135623730951},"650":{"tf":1.4142135623730951},"652":{"tf":1.0},"720":{"tf":1.4142135623730951},"728":{"tf":1.0},"742":{"tf":1.0},"763":{"tf":1.4142135623730951},"768":{"tf":1.0},"776":{"tf":1.0},"784":{"tf":1.0},"801":{"tf":1.0},"804":{"tf":1.0},"810":{"tf":1.0},"814":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.0},"853":{"tf":1.0},"86":{"tf":2.0},"863":{"tf":1.0},"867":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"888":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"924":{"tf":2.0},"927":{"tf":1.7320508075688772},"937":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"952":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"347":{"tf":2.449489742783178}}}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":27,"docs":{"107":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"643":{"tf":1.4142135623730951},"86":{"tf":1.0},"879":{"tf":1.0},"933":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":28,"docs":{"107":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"427":{"tf":1.7320508075688772},"437":{"tf":1.7320508075688772},"448":{"tf":2.0},"464":{"tf":1.7320508075688772},"480":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.7320508075688772},"543":{"tf":1.4142135623730951},"553":{"tf":1.7320508075688772},"565":{"tf":2.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"611":{"tf":1.4142135623730951},"623":{"tf":1.7320508075688772},"634":{"tf":1.4142135623730951},"642":{"tf":1.7320508075688772},"765":{"tf":1.0},"772":{"tf":2.449489742783178},"805":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":2,"docs":{"496":{"tf":1.0},"519":{"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"765":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951}}}}}}}}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"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":{},"i":{"d":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"887":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"886":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"885":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"883":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"882":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"332":{"tf":1.4142135623730951}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.7320508075688772},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":19,"docs":{"254":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"629":{"tf":2.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":2.6457513110645907},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"636":{"tf":1.7320508075688772},"637":{"tf":1.0},"643":{"tf":1.0},"677":{"tf":1.0},"684":{"tf":2.0},"740":{"tf":1.0},"770":{"tf":1.4142135623730951},"929":{"tf":1.0},"969":{"tf":3.7416573867739413}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"288":{"tf":1.0},"765":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"153":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"297":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"963":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"103":{"tf":1.0},"318":{"tf":1.0},"519":{"tf":1.0},"588":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.7320508075688772},"468":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"95":{"tf":1.0}}}}},"’":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}},"g":{"df":24,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"289":{"tf":1.4142135623730951},"306":{"tf":1.0},"376":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.0},"75":{"tf":2.449489742783178},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":2.449489742783178},"99":{"tf":1.4142135623730951}}},"k":{"df":7,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"618":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"184":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":1.0},"297":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"686":{"tf":1.0},"908":{"tf":1.0},"919":{"tf":1.0},"969":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"342":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"679":{"tf":1.0}}}}}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"679":{"tf":1.7320508075688772}}}},"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":1,"docs":{"840":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":24,"docs":{"22":{"tf":3.0},"318":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"454":{"tf":1.0},"471":{"tf":1.0},"679":{"tf":1.0},"718":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"76":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"833":{"tf":1.4142135623730951},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":12,"docs":{"113":{"tf":1.0},"117":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"29":{"tf":1.0},"318":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"78":{"tf":1.0},"958":{"tf":1.4142135623730951},"969":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"258":{"tf":1.0},"570":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"807":{"tf":1.0},"823":{"tf":1.0},"919":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":67,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":2.0},"198":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.7320508075688772},"221":{"tf":2.0},"223":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"240":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":1.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"330":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.7320508075688772},"35":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"471":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0},"522":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"621":{"tf":2.23606797749979},"673":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"736":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"9":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"968":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"142":{"tf":1.7320508075688772},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"802":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"448":{"tf":1.4142135623730951},"464":{"tf":1.0},"531":{"tf":1.0},"553":{"tf":1.0},"600":{"tf":1.0},"623":{"tf":1.0},"642":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951},"925":{"tf":1.0}},"n":{"df":2,"docs":{"698":{"tf":1.0},"805":{"tf":1.0}}}}}},"u":{"df":7,"docs":{"142":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"449":{"tf":1.0},"578":{"tf":1.0},"772":{"tf":1.0},"963":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":3,"docs":{"173":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"289":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"n":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":3,"docs":{"456":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"158":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"857":{"tf":1.0}}}}}}},"df":172,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"131":{"tf":2.6457513110645907},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.6457513110645907},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":3.3166247903554},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"248":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":2.23606797749979},"257":{"tf":1.0},"258":{"tf":2.23606797749979},"259":{"tf":1.7320508075688772},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.7320508075688772},"280":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"401":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"454":{"tf":1.7320508075688772},"456":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":3.872983346207417},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":2.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":2.8284271247461903},"481":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"484":{"tf":2.8284271247461903},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.23606797749979},"488":{"tf":2.6457513110645907},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"492":{"tf":1.0},"493":{"tf":2.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.4142135623730951},"498":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":2.0},"502":{"tf":1.0},"507":{"tf":1.0},"549":{"tf":2.0},"551":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"596":{"tf":1.0},"607":{"tf":1.0},"619":{"tf":1.0},"644":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"70":{"tf":1.0},"711":{"tf":2.23606797749979},"718":{"tf":1.4142135623730951},"720":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.7320508075688772},"734":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":3.3166247903554},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"803":{"tf":1.4142135623730951},"805":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.4142135623730951},"811":{"tf":1.0},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"83":{"tf":1.0},"830":{"tf":1.0},"847":{"tf":1.4142135623730951},"85":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":2.449489742783178},"862":{"tf":1.4142135623730951},"866":{"tf":1.0},"880":{"tf":1.4142135623730951},"9":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"919":{"tf":1.4142135623730951},"929":{"tf":1.0},"951":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":3.3166247903554},"98":{"tf":2.23606797749979},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"184":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"739":{"tf":1.0}}}}},"r":{"df":12,"docs":{"142":{"tf":1.0},"456":{"tf":1.7320508075688772},"471":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"728":{"tf":1.0},"872":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"473":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"772":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"454":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"803":{"tf":1.0}}},"df":34,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"158":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":2.449489742783178},"455":{"tf":1.0},"456":{"tf":1.4142135623730951},"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.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"483":{"tf":1.0},"549":{"tf":1.4142135623730951},"76":{"tf":2.0},"816":{"tf":1.7320508075688772},"863":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"834":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"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":19,"docs":{"131":{"tf":1.4142135623730951},"142":{"tf":5.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"272":{"tf":1.0},"315":{"tf":1.0},"560":{"tf":1.7320508075688772},"729":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.0},"804":{"tf":2.449489742783178},"878":{"tf":1.4142135623730951},"894":{"tf":1.0},"915":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"929":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"180":{"tf":2.0},"181":{"tf":1.4142135623730951},"182":{"tf":2.0},"183":{"tf":2.8284271247461903},"184":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.4142135623730951},"881":{"tf":1.0},"97":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":2.0},"482":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"725":{"tf":1.0},"813":{"tf":1.0},"870":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"502":{"tf":1.0},"834":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"249":{"tf":1.0},"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"964":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":2.23606797749979}}}}},"l":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"318":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"127":{"tf":1.0},"175":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":30,"docs":{"246":{"tf":2.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"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.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"561":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"224":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":2.23606797749979},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"79":{"tf":1.7320508075688772},"872":{"tf":1.0},"934":{"tf":1.0}}}}},"l":{"d":{"df":2,"docs":{"126":{"tf":1.0},"802":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"127":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"496":{"tf":1.0}}},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.0},"567":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"498":{"tf":1.0},"500":{"tf":1.0}}}}},"df":30,"docs":{"115":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.0},"299":{"tf":1.0},"34":{"tf":1.0},"348":{"tf":1.0},"43":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"703":{"tf":1.0},"707":{"tf":1.7320508075688772},"73":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.0},"956":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"379":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"960":{"tf":1.0},"969":{"tf":2.23606797749979}}}}}}},"p":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"254":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"965":{"tf":1.0}},"i":{"c":{"df":11,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"86":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"127":{"tf":1.4142135623730951},"376":{"tf":1.0},"396":{"tf":1.0},"412":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"267":{"tf":1.0},"315":{"tf":1.0},"859":{"tf":1.0},"925":{"tf":1.0}}},"k":{"df":19,"docs":{"113":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"377":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"673":{"tf":1.0},"74":{"tf":1.0},"806":{"tf":1.0},"818":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.0},"206":{"tf":1.7320508075688772},"258":{"tf":1.0},"263":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"912":{"tf":1.0}}},"n":{"df":5,"docs":{"119":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":4,"docs":{"729":{"tf":1.0},"738":{"tf":1.4142135623730951},"811":{"tf":1.0},"823":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"110":{"tf":1.0},"21":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"829":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"21":{"tf":2.0},"276":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"862":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"131":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0}}}},"t":{"df":6,"docs":{"128":{"tf":1.0},"213":{"tf":1.0},"248":{"tf":1.0},"709":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"704":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"166":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"665":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"379":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":29,"docs":{"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"565":{"tf":1.4142135623730951},"600":{"tf":1.0},"63":{"tf":1.0},"642":{"tf":1.0},"652":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"71":{"tf":1.0},"712":{"tf":1.0},"737":{"tf":1.0},"756":{"tf":1.0},"786":{"tf":1.0},"807":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"957":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"144":{"tf":1.4142135623730951},"155":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":2.23606797749979},"231":{"tf":2.0},"233":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"342":{"tf":1.0},"66":{"tf":1.0},"716":{"tf":1.0},"734":{"tf":1.0},"752":{"tf":1.0},"869":{"tf":1.0},"938":{"tf":1.0},"951":{"tf":2.0}}}}}},"m":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"752":{"tf":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":{"752":{"tf":1.0}}},"p":{"df":1,"docs":{"881":{"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":2,"docs":{"218":{"tf":1.0},"49":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":29,"docs":{"100":{"tf":2.0},"13":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":2.6457513110645907},"665":{"tf":1.0},"666":{"tf":1.4142135623730951},"678":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":2.0},"94":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"131":{"tf":1.0},"328":{"tf":2.449489742783178},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"468":{"tf":2.0},"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"524":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":2.23606797749979},"761":{"tf":1.0},"873":{"tf":1.0},"897":{"tf":1.4142135623730951},"912":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}}}},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"773":{"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":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.4142135623730951}}}},"df":2,"docs":{"912":{"tf":1.4142135623730951},"913":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"191":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"100":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"258":{"tf":1.7320508075688772},"297":{"tf":1.0},"663":{"tf":1.0},"701":{"tf":1.0},"79":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"968":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"183":{"tf":1.4142135623730951},"79":{"tf":1.0},"814":{"tf":1.0},"876":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"712":{"tf":1.4142135623730951},"957":{"tf":1.4142135623730951}}}},"o":{"df":21,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.4142135623730951},"173":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.0},"377":{"tf":1.4142135623730951},"44":{"tf":1.0},"613":{"tf":1.0},"677":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"814":{"tf":1.0},"875":{"tf":1.4142135623730951},"958":{"tf":1.0},"959":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"/":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}},"df":369,"docs":{"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"132":{"tf":3.872983346207417},"134":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":2.6457513110645907},"289":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"376":{"tf":2.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":2.449489742783178},"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},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"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},"407":{"tf":1.0},"408":{"tf":1.7320508075688772},"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.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"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.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"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.7320508075688772},"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.0},"464":{"tf":1.0},"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.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.7320508075688772},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.7320508075688772},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.4142135623730951},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"52":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"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.4142135623730951},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.7320508075688772},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.7320508075688772},"564":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":1.7320508075688772},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.4142135623730951},"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.4142135623730951},"580":{"tf":1.0},"581":{"tf":1.0},"582":{"tf":1.4142135623730951},"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},"590":{"tf":1.4142135623730951},"591":{"tf":1.0},"592":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.7320508075688772},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.7320508075688772},"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.7320508075688772},"626":{"tf":2.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"632":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.7320508075688772},"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":2.449489742783178},"645":{"tf":2.6457513110645907},"646":{"tf":1.0},"67":{"tf":2.449489742783178},"677":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"72":{"tf":1.7320508075688772},"721":{"tf":1.0},"727":{"tf":1.7320508075688772},"73":{"tf":1.0},"730":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"740":{"tf":1.0},"772":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.7320508075688772},"804":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.7320508075688772},"818":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"834":{"tf":1.7320508075688772},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772},"913":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":2.0},"92":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.7320508075688772},"932":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"954":{"tf":1.0},"956":{"tf":2.449489742783178},"958":{"tf":1.4142135623730951},"961":{"tf":1.0},"99":{"tf":1.7320508075688772}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":5,"docs":{"134":{"tf":1.0},"184":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"264":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"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":{},"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":{"553":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":5,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"136":{"tf":1.0}}},"df":2,"docs":{"531":{"tf":1.0},"692":{"tf":1.0}},"i":{"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":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"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":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"151":{"tf":1.0},"316":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"324":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"6":{"4":{"df":2,"docs":{"461":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"933":{"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":{"d":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"184":{"tf":1.0},"239":{"tf":1.0},"791":{"tf":1.0},"917":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"844":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"127":{"tf":1.0},"807":{"tf":1.0},"929":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"310":{"tf":1.0},"697":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"796":{"tf":1.0},"815":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"376":{"tf":1.0},"414":{"tf":2.449489742783178},"418":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"679":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.0}},"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":1,"docs":{"679":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"865":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"904":{"tf":1.0},"923":{"tf":1.0},"946":{"tf":1.0}}}}},"r":{"df":21,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"963":{"tf":1.0},"965":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"252":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"456":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"117":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"173":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"543":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"677":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"376":{"tf":2.0},"422":{"tf":1.0},"433":{"tf":1.0},"443":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"719":{"tf":1.0},"728":{"tf":1.0},"733":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"748":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"768":{"tf":1.0},"772":{"tf":1.0},"958":{"tf":1.0}}}},"i":{"df":1,"docs":{"234":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"310":{"tf":1.4142135623730951},"763":{"tf":1.0},"766":{"tf":1.0},"812":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"342":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"862":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"160":{"tf":1.0},"376":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"697":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"t":{"df":37,"docs":{"107":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"143":{"tf":1.0},"318":{"tf":2.449489742783178},"460":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":2.23606797749979},"483":{"tf":1.0},"487":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":2.0},"522":{"tf":1.0},"554":{"tf":1.0},"557":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":1.4142135623730951},"734":{"tf":1.0},"818":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.0},"86":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"958":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"751":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"376":{"tf":1.0},"572":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":13,"docs":{"132":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"674":{"tf":1.0},"791":{"tf":1.0},"839":{"tf":1.0},"923":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"377":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"224":{"tf":1.0},"289":{"tf":1.4142135623730951},"330":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"680":{"tf":1.0},"710":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"907":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"137":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"929":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"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":{"732":{"tf":1.0},"858":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}}}}},"l":{"df":2,"docs":{"960":{"tf":1.0},"968":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"714":{"tf":1.4142135623730951},"889":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"173":{"tf":1.0},"752":{"tf":1.0}}}},"t":{"df":2,"docs":{"673":{"tf":1.4142135623730951},"686":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"339":{"tf":1.0},"50":{"tf":1.0},"721":{"tf":1.0},"731":{"tf":1.0},"79":{"tf":1.0},"795":{"tf":1.0},"953":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"265":{"tf":1.0},"266":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":76,"docs":{"108":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"289":{"tf":1.0},"32":{"tf":1.0},"626":{"tf":1.0},"719":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"727":{"tf":1.0},"728":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.7320508075688772},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.4142135623730951},"783":{"tf":1.0},"786":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.4142135623730951},"862":{"tf":1.0},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"897":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.4142135623730951},"912":{"tf":2.0},"914":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":42,"docs":{"11":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"184":{"tf":2.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"404":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"747":{"tf":1.0},"757":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"848":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"904":{"tf":1.0},"929":{"tf":1.4142135623730951},"939":{"tf":1.0},"969":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":26,"docs":{"127":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"730":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.4142135623730951},"808":{"tf":1.0},"815":{"tf":1.0},"842":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"872":{"tf":1.0},"880":{"tf":1.0},"883":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"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":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":76,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"135":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"312":{"tf":1.7320508075688772},"313":{"tf":2.0},"315":{"tf":2.6457513110645907},"316":{"tf":1.7320508075688772},"317":{"tf":3.4641016151377544},"318":{"tf":2.0},"320":{"tf":2.23606797749979},"321":{"tf":2.6457513110645907},"322":{"tf":2.23606797749979},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"471":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"649":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"710":{"tf":1.4142135623730951},"715":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.7320508075688772},"741":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"766":{"tf":1.0},"786":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"807":{"tf":1.0},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.7320508075688772},"834":{"tf":1.7320508075688772},"836":{"tf":1.0},"838":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"854":{"tf":2.6457513110645907},"859":{"tf":1.7320508075688772},"860":{"tf":1.0},"861":{"tf":1.7320508075688772},"875":{"tf":1.0},"880":{"tf":1.0},"895":{"tf":1.4142135623730951},"913":{"tf":1.0},"919":{"tf":2.23606797749979},"921":{"tf":1.7320508075688772},"922":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":2.449489742783178},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"947":{"tf":1.0},"956":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"917":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"338":{"tf":1.0},"923":{"tf":1.7320508075688772}}},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"715":{"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":{"317":{"tf":1.0},"922":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"317":{"tf":1.0},"922":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"693":{"tf":1.0},"701":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"324":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":1,"docs":{"324":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"217":{"tf":1.0},"254":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"710":{"tf":1.0},"929":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"541":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"540":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":{"912":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{".":{"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"254":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"190":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":34,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.7320508075688772},"223":{"tf":1.0},"230":{"tf":2.23606797749979},"231":{"tf":3.1622776601683795},"232":{"tf":3.872983346207417},"233":{"tf":3.0},"288":{"tf":1.0},"289":{"tf":2.0},"297":{"tf":1.0},"376":{"tf":1.4142135623730951},"537":{"tf":2.449489742783178},"538":{"tf":1.7320508075688772},"539":{"tf":1.0},"540":{"tf":2.23606797749979},"541":{"tf":2.8284271247461903},"542":{"tf":1.0},"543":{"tf":1.7320508075688772},"544":{"tf":1.0},"545":{"tf":2.0},"546":{"tf":2.0},"547":{"tf":1.0},"548":{"tf":1.4142135623730951},"761":{"tf":1.7320508075688772},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"837":{"tf":1.0},"864":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.7320508075688772},"932":{"tf":1.0},"946":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"786":{"tf":1.0}}}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":13,"docs":{"135":{"tf":1.0},"289":{"tf":1.0},"346":{"tf":1.4142135623730951},"371":{"tf":1.0},"4":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"678":{"tf":1.0},"699":{"tf":1.4142135623730951},"707":{"tf":1.0},"770":{"tf":1.0},"878":{"tf":1.0},"941":{"tf":1.0}}}},"df":411,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"136":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"203":{"tf":2.6457513110645907},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":2.23606797749979},"223":{"tf":1.7320508075688772},"224":{"tf":3.4641016151377544},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":3.1622776601683795},"234":{"tf":2.0},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":2.449489742783178},"289":{"tf":3.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"299":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"31":{"tf":1.7320508075688772},"315":{"tf":3.0},"316":{"tf":3.0},"318":{"tf":3.0},"32":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"338":{"tf":2.0},"34":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.4142135623730951},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":3.7416573867739413},"377":{"tf":2.23606797749979},"38":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":2.0},"4":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"419":{"tf":2.0},"423":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":2.0},"443":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"456":{"tf":3.0},"457":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":2.449489742783178},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.4142135623730951},"47":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"484":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.4142135623730951},"499":{"tf":2.0},"5":{"tf":2.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"515":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"52":{"tf":2.0},"520":{"tf":1.4142135623730951},"522":{"tf":2.0},"526":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"538":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"566":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":2.0},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"598":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.4142135623730951},"606":{"tf":1.0},"607":{"tf":1.7320508075688772},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":2.0},"618":{"tf":1.7320508075688772},"619":{"tf":1.4142135623730951},"621":{"tf":2.6457513110645907},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.4142135623730951},"644":{"tf":1.0},"649":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.4142135623730951},"657":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.7320508075688772},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":2.6457513110645907},"673":{"tf":2.6457513110645907},"674":{"tf":2.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.4142135623730951},"68":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"684":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"690":{"tf":1.4142135623730951},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"697":{"tf":1.0},"70":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.0},"721":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"74":{"tf":1.4142135623730951},"742":{"tf":1.0},"75":{"tf":2.0},"752":{"tf":1.4142135623730951},"754":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"763":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":2.0},"773":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"786":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.4142135623730951},"796":{"tf":1.0},"80":{"tf":1.7320508075688772},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":2.0},"804":{"tf":1.0},"807":{"tf":2.0},"809":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"82":{"tf":1.7320508075688772},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"834":{"tf":2.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"86":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":1.7320508075688772},"880":{"tf":1.4142135623730951},"881":{"tf":1.0},"89":{"tf":1.7320508075688772},"898":{"tf":1.0},"9":{"tf":2.23606797749979},"908":{"tf":1.0},"909":{"tf":1.7320508075688772},"91":{"tf":1.0},"916":{"tf":2.0},"919":{"tf":1.0},"92":{"tf":1.0},"920":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"942":{"tf":1.0},"95":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":2.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":3.605551275463989},"97":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":6,"docs":{"289":{"tf":1.7320508075688772},"697":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}},".":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.7320508075688772}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"529":{"tf":1.4142135623730951}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{".":{"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":{"d":{"(":{")":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{".":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"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":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"532":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"531":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{")":{"[":{"0":{"]":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":84,"docs":{"100":{"tf":3.0},"117":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":2.23606797749979},"151":{"tf":2.0},"160":{"tf":1.7320508075688772},"169":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"233":{"tf":1.0},"242":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":2.449489742783178},"276":{"tf":1.0},"289":{"tf":2.6457513110645907},"3":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":2.449489742783178},"316":{"tf":2.0},"317":{"tf":1.4142135623730951},"320":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"423":{"tf":1.0},"443":{"tf":1.0},"46":{"tf":1.0},"469":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"538":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"63":{"tf":1.0},"637":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0},"694":{"tf":1.0},"70":{"tf":1.0},"710":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":2.0},"775":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":3.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"858":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.4142135623730951},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":2.0},"951":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"289":{"tf":1.0},"964":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"663":{"tf":1.0},"673":{"tf":1.0},"682":{"tf":1.0},"697":{"tf":1.0},"74":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}},"df":2,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":11,"docs":{"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.0},"288":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":10,"docs":{"170":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"791":{"tf":1.0},"802":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"234":{"tf":1.0},"51":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":22,"docs":{"132":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"376":{"tf":1.4142135623730951},"526":{"tf":2.0},"527":{"tf":1.0},"528":{"tf":3.3166247903554},"529":{"tf":3.7416573867739413},"530":{"tf":1.0},"531":{"tf":2.6457513110645907},"532":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"762":{"tf":1.0},"78":{"tf":1.0},"817":{"tf":1.7320508075688772},"852":{"tf":1.0},"869":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"0":{".":{"1":{"df":6,"docs":{"882":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"955":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"942":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"941":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"940":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"939":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"938":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"136":{"tf":1.0},"937":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"936":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"935":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"934":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"933":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"932":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"931":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"930":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"754":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":2,"docs":{"929":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"954":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"927":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"926":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"924":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"923":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"922":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"921":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"920":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"919":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"918":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"953":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"917":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"916":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"915":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"952":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"951":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"950":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"949":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"948":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"947":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"946":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"945":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"944":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"943":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"914":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"913":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"2":{"df":1,"docs":{"858":{"tf":1.0}}},"4":{"df":1,"docs":{"857":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"df":1,"docs":{"838":{"tf":1.0}}},"3":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"911":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"910":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"3":{"df":1,"docs":{"903":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"950":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{".":{"3":{".":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{".":{"0":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"881":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"880":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"908":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"565":{"tf":1.0},"907":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"906":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"905":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"904":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"879":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"878":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"877":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"876":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"875":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"874":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"872":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"871":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"870":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"869":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"868":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"867":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"866":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"865":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"864":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"863":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"862":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"860":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"859":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"858":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"857":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"856":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"855":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":3,"docs":{"901":{"tf":1.7320508075688772},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"854":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"853":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"852":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"851":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"834":{"tf":1.0},"849":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"848":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"847":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"846":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"844":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"842":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"841":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"840":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"839":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"838":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"837":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"836":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"835":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"834":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"833":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"832":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"831":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"830":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"829":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"828":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"827":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"825":{"tf":1.0},"826":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"825":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"824":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"822":{"tf":1.0},"823":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"821":{"tf":1.0},"822":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"821":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"0":{"df":2,"docs":{"810":{"tf":1.0},"811":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"810":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"809":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"808":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"820":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"818":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"817":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"816":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"815":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"814":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"813":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"812":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"807":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"806":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"805":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"803":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":2,"docs":{"380":{"tf":1.0},"802":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"801":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"800":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"752":{"tf":1.0}}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"799":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"798":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"797":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"796":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"795":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":5,"docs":{"896":{"tf":1.7320508075688772},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"824":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"895":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"792":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"791":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"790":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"789":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"788":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"787":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"785":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"784":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"782":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"781":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"780":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"779":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"778":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"777":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":2,"docs":{"136":{"tf":1.0},"776":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"774":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"528":{"tf":1.0}}},"5":{".":{"0":{".":{"0":{"df":2,"docs":{"893":{"tf":1.7320508075688772},"894":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"892":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"891":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"890":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":3,"docs":{"764":{"tf":1.0},"767":{"tf":1.0},"772":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"770":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"769":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"768":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"766":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":3,"docs":{"764":{"tf":1.0},"765":{"tf":1.4142135623730951},"767":{"tf":1.0}}},"1":{"df":1,"docs":{"764":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"763":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"762":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"761":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"759":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"758":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"757":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"756":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"753":{"tf":1.0},"755":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"754":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"753":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"716":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"752":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"751":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"750":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"749":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"748":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"746":{"tf":1.0},"747":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"746":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"745":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"744":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"743":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"741":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"740":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"739":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"738":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"737":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"736":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"735":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"733":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"732":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"731":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"729":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"728":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"772":{"tf":1.0}}},"1":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"756":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"727":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"726":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"725":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"724":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"723":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"722":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":2,"docs":{"425":{"tf":1.0},"721":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"718":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"717":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"716":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"715":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{".":{"0":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"735":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"731":{"tf":1.0}}},"8":{"df":1,"docs":{"721":{"tf":1.0}}},"9":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"347":{"tf":1.4142135623730951},"360":{"tf":1.0},"367":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.0},"507":{"tf":1.4142135623730951},"565":{"tf":2.0},"577":{"tf":1.4142135623730951},"642":{"tf":1.0},"651":{"tf":1.0},"803":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":2.8284271247461903}}}}}}}}},"df":34,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"618":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":3.872983346207417},"698":{"tf":1.0},"772":{"tf":1.0},"802":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"913":{"tf":1.4142135623730951},"915":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":176,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"202":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"298":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.7320508075688772},"352":{"tf":1.0},"357":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":2.23606797749979},"373":{"tf":1.0},"376":{"tf":3.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"393":{"tf":1.4142135623730951},"395":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"401":{"tf":2.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.7320508075688772},"406":{"tf":1.7320508075688772},"412":{"tf":1.7320508075688772},"414":{"tf":1.7320508075688772},"416":{"tf":3.0},"419":{"tf":1.4142135623730951},"422":{"tf":1.0},"425":{"tf":3.7416573867739413},"427":{"tf":3.3166247903554},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":3.0},"440":{"tf":1.4142135623730951},"443":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.0},"457":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.7320508075688772},"471":{"tf":2.0},"476":{"tf":2.23606797749979},"480":{"tf":3.872983346207417},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":2.23606797749979},"497":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":4.0},"508":{"tf":2.0},"510":{"tf":1.4142135623730951},"514":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"522":{"tf":2.0},"526":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":2.23606797749979},"531":{"tf":3.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"543":{"tf":1.7320508075688772},"549":{"tf":1.0},"551":{"tf":1.7320508075688772},"553":{"tf":2.449489742783178},"554":{"tf":1.4142135623730951},"557":{"tf":1.0},"560":{"tf":1.7320508075688772},"563":{"tf":1.7320508075688772},"565":{"tf":2.0},"568":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"572":{"tf":1.0},"575":{"tf":1.7320508075688772},"577":{"tf":3.1622776601683795},"578":{"tf":2.0},"580":{"tf":1.7320508075688772},"583":{"tf":1.0},"588":{"tf":1.7320508075688772},"589":{"tf":1.0},"591":{"tf":2.0},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.7320508075688772},"600":{"tf":2.8284271247461903},"601":{"tf":2.0},"606":{"tf":1.0},"609":{"tf":1.7320508075688772},"611":{"tf":2.0},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.7320508075688772},"623":{"tf":1.7320508075688772},"632":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"642":{"tf":1.7320508075688772},"644":{"tf":1.0},"652":{"tf":1.4142135623730951},"664":{"tf":1.0},"677":{"tf":1.0},"684":{"tf":1.0},"73":{"tf":2.449489742783178},"756":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":3.4641016151377544},"791":{"tf":1.0},"799":{"tf":1.0},"80":{"tf":1.0},"801":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"82":{"tf":1.0},"830":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"857":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.4142135623730951},"88":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"914":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.0},"94":{"tf":2.449489742783178},"952":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"553":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":6,"docs":{"324":{"tf":1.0},"347":{"tf":2.0},"473":{"tf":1.0},"565":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"203":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"229":{"tf":2.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"348":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":2.0},"368":{"tf":1.4142135623730951},"369":{"tf":2.0},"374":{"tf":1.4142135623730951},"375":{"tf":2.0},"402":{"tf":1.0},"619":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":2.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.0},"841":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"665":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"665":{"tf":1.0}}}}},"df":2,"docs":{"315":{"tf":1.0},"318":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"655":{"tf":1.0},"658":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"184":{"tf":1.0},"234":{"tf":1.0},"246":{"tf":1.0},"704":{"tf":1.0},"924":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"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":{"448":{"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":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"690":{"tf":1.0},"921":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"739":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"117":{"tf":1.0},"173":{"tf":1.0},"674":{"tf":1.0},"693":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"652":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"5":{"df":1,"docs":{"44":{"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":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":103,"docs":{"11":{"tf":2.449489742783178},"117":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"173":{"tf":1.7320508075688772},"175":{"tf":2.0},"224":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":2.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"288":{"tf":2.6457513110645907},"289":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":2.449489742783178},"44":{"tf":2.23606797749979},"456":{"tf":1.0},"48":{"tf":1.7320508075688772},"484":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"529":{"tf":1.0},"561":{"tf":1.0},"63":{"tf":1.0},"669":{"tf":2.449489742783178},"673":{"tf":2.0},"685":{"tf":3.0},"692":{"tf":2.23606797749979},"721":{"tf":1.0},"727":{"tf":1.0},"731":{"tf":1.4142135623730951},"735":{"tf":1.0},"739":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":2.23606797749979},"763":{"tf":1.7320508075688772},"768":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"78":{"tf":1.0},"783":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"843":{"tf":1.0},"848":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":2.23606797749979},"862":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"897":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":1.0},"915":{"tf":1.7320508075688772},"916":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"936":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"a":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"354":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"742":{"tf":1.0},"837":{"tf":1.0},"906":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"1":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":34,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"136":{"tf":1.0},"218":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.0},"352":{"tf":1.7320508075688772},"356":{"tf":1.0},"363":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.7320508075688772},"569":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"890":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"563":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"566":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"566":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"566":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"566":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"565":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"690":{"tf":1.0},"691":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"19":{"tf":1.7320508075688772},"689":{"tf":1.0},"690":{"tf":2.0},"691":{"tf":1.7320508075688772},"692":{"tf":1.0},"915":{"tf":1.4142135623730951},"939":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":4,"docs":{"670":{"tf":1.7320508075688772},"672":{"tf":1.7320508075688772},"673":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"41":{"tf":1.0},"968":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}},"d":{"df":9,"docs":{"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"n":{"df":1,"docs":{"738":{"tf":1.0}}}},"s":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"744":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"127":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"652":{"tf":1.0},"715":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"801":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"861":{"tf":1.0},"958":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"867":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"203":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"880":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":30,"docs":{"246":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"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.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}}}}}}}}}},"l":{"df":4,"docs":{"315":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"894":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"834":{"tf":1.0},"915":{"tf":1.0},"94":{"tf":1.4142135623730951},"958":{"tf":1.0},"96":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"315":{"tf":1.0},"328":{"tf":1.0},"356":{"tf":1.0},"830":{"tf":1.7320508075688772},"858":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"969":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"958":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"861":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"50":{"tf":1.0},"669":{"tf":1.4142135623730951},"674":{"tf":1.0},"677":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"776":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"924":{"tf":1.0},"948":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"545":{"tf":1.0},"632":{"tf":1.0},"636":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"df":23,"docs":{"0":{"tf":1.0},"218":{"tf":1.0},"233":{"tf":1.7320508075688772},"243":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"894":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"909":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.7320508075688772},"952":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"342":{"tf":1.0},"912":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"241":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":11,"docs":{"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"218":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"712":{"tf":1.7320508075688772},"9":{"tf":1.0},"957":{"tf":2.0},"958":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"131":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"31":{"tf":1.0},"379":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"679":{"tf":1.0},"786":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"5":{"tf":1.0},"957":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"19":{"tf":1.4142135623730951},"673":{"tf":2.23606797749979},"751":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.4142135623730951},"815":{"tf":1.0},"820":{"tf":1.4142135623730951},"831":{"tf":1.0},"832":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"867":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"195":{"tf":1.0},"82":{"tf":1.0},"960":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"110":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"89":{"tf":1.0},"968":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.0},"387":{"tf":1.0},"801":{"tf":1.0},"862":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"233":{"tf":1.0},"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"190":{"tf":1.0},"258":{"tf":1.0},"371":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"79":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"655":{"tf":1.0},"658":{"tf":1.0},"715":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"376":{"tf":1.0},"595":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"289":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"n":{"d":{"df":1,"docs":{"342":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"890":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"241":{"tf":1.4142135623730951},"905":{"tf":1.4142135623730951},"906":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":2.0},"19":{"tf":1.0},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"272":{"tf":1.0},"289":{"tf":1.0},"673":{"tf":1.0},"690":{"tf":1.4142135623730951},"711":{"tf":2.449489742783178},"749":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"804":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"867":{"tf":1.0},"886":{"tf":1.0},"904":{"tf":1.0},"910":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.0},"929":{"tf":1.4142135623730951},"958":{"tf":1.0}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"129":{"tf":1.0},"132":{"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":{}},"s":{"df":0,"docs":{},"h":{"df":30,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"315":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":26,"docs":{"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.4142135623730951},"259":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"330":{"tf":1.0},"379":{"tf":1.0},"454":{"tf":1.0},"677":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.4142135623730951},"853":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"289":{"tf":1.0},"342":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"618":{"tf":1.0},"693":{"tf":1.0},"698":{"tf":1.0},"730":{"tf":1.0},"751":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"915":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"803":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"105":{"tf":1.0},"294":{"tf":1.4142135623730951},"697":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"927":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":47,"docs":{"100":{"tf":1.0},"107":{"tf":1.7320508075688772},"114":{"tf":1.0},"19":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":3.0},"224":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":2.0},"673":{"tf":1.4142135623730951},"680":{"tf":1.0},"70":{"tf":1.0},"712":{"tf":1.0},"725":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"79":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"834":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"86":{"tf":1.7320508075688772},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.0},"91":{"tf":1.0},"929":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"22":{"tf":2.0},"834":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"113":{"tf":1.0},"118":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"958":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"736":{"tf":1.0},"867":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"d":{"!":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"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":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"710":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":1.0},"652":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.0},"653":{"tf":1.0},"665":{"tf":1.0},"761":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"127":{"tf":1.0},"315":{"tf":1.0},"340":{"tf":1.0},"694":{"tf":1.7320508075688772},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"753":{"tf":1.0},"79":{"tf":1.0},"809":{"tf":1.0},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"570":{"tf":1.0},"968":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"877":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"782":{"tf":1.0}}}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"19":{"tf":1.7320508075688772},"751":{"tf":1.0},"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"132":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"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":{"798":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":18,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"657":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"786":{"tf":1.0},"833":{"tf":1.0},"855":{"tf":1.4142135623730951},"858":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"652":{"tf":1.0}}}}}}}}}},"0":{"df":17,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"416":{"tf":1.0},"642":{"tf":1.0}}},"2":{"df":3,"docs":{"480":{"tf":1.0},"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"333":{"tf":1.0},"334":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":17,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"136":{"tf":2.0},"205":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":2.0},"484":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"701":{"tf":1.0},"775":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"916":{"tf":1.4142135623730951},"936":{"tf":1.0}},"l":{"df":1,"docs":{"132":{"tf":1.0}}},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"701":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":59,"docs":{"108":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"138":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"276":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":2.0},"281":{"tf":1.4142135623730951},"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.0},"289":{"tf":1.0},"290":{"tf":2.0},"291":{"tf":1.4142135623730951},"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":2.0},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"387":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"678":{"tf":1.4142135623730951},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":2.0},"857":{"tf":1.0}}}}}}}}},"df":1,"docs":{"701":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"795":{"tf":1.0},"830":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":3,"docs":{"226":{"tf":1.0},"422":{"tf":1.0},"537":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"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":{},"p":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"402":{"tf":1.0},"493":{"tf":1.0},"619":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"z":{"0":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"a":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}},"title":{"root":{"0":{"1":{"df":28,"docs":{"732":{"tf":1.0},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"766":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"817":{"tf":1.0},"829":{"tf":1.0},"855":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"896":{"tf":1.0},"899":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0}}},"2":{"df":18,"docs":{"730":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"791":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"816":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}}},"3":{"df":27,"docs":{"728":{"tf":1.0},"729":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.0},"804":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"872":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"909":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.0},"934":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0}}},"4":{":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"727":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"760":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"798":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"892":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0}}},"5":{"df":30,"docs":{"716":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"871":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.0},"910":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}}},"6":{"df":24,"docs":{"720":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"775":{"tf":1.0},"786":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"898":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0}}},"7":{"df":26,"docs":{"717":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"869":{"tf":1.0},"886":{"tf":1.0},"913":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0}}},"8":{"df":21,"docs":{"719":{"tf":1.0},"720":{"tf":1.0},"736":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"766":{"tf":1.0},"768":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"919":{"tf":1.0}}},"9":{"df":30,"docs":{"718":{"tf":1.0},"735":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"796":{"tf":1.0},"803":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"860":{"tf":1.0},"884":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":33,"docs":{"275":{"tf":1.0},"717":{"tf":1.0},"734":{"tf":1.0},"739":{"tf":1.0},"744":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"829":{"tf":1.0},"842":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"917":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"952":{"tf":1.0}}},"1":{"df":37,"docs":{"715":{"tf":1.0},"716":{"tf":1.0},"733":{"tf":1.0},"741":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"831":{"tf":1.0},"849":{"tf":1.0},"857":{"tf":1.0},"865":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"938":{"tf":1.0}}},"2":{"df":24,"docs":{"729":{"tf":1.0},"731":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"801":{"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},"819":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0}}},"3":{"df":4,"docs":{"752":{"tf":1.0},"789":{"tf":1.0},"854":{"tf":1.0},"947":{"tf":1.0}}},"4":{"df":4,"docs":{"774":{"tf":1.0},"867":{"tf":1.0},"907":{"tf":1.0},"946":{"tf":1.0}}},"5":{"df":8,"docs":{"743":{"tf":1.0},"755":{"tf":1.0},"770":{"tf":1.0},"780":{"tf":1.0},"809":{"tf":1.0},"813":{"tf":1.0},"902":{"tf":1.0},"922":{"tf":1.0}}},"6":{"df":9,"docs":{"732":{"tf":1.0},"773":{"tf":1.0},"788":{"tf":1.0},"804":{"tf":1.0},"841":{"tf":1.0},"866":{"tf":1.0},"901":{"tf":1.0},"904":{"tf":1.0},"932":{"tf":1.0}}},"7":{"df":15,"docs":{"754":{"tf":1.0},"769":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"800":{"tf":1.0},"812":{"tf":1.0},"818":{"tf":1.0},"836":{"tf":1.0},"864":{"tf":1.0},"870":{"tf":1.0},"914":{"tf":1.0},"928":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}}},"8":{"df":10,"docs":{"759":{"tf":1.0},"784":{"tf":1.0},"808":{"tf":1.0},"830":{"tf":1.0},"876":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.0}}},"9":{"df":6,"docs":{"751":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0}}},"df":5,"docs":{"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0}}},"2":{"0":{"1":{"9":{"df":18,"docs":{"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":57,"docs":{"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.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0}}},"1":{"df":71,"docs":{"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"855":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0}}},"2":{"df":36,"docs":{"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.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},"765":{"tf":1.0},"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},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0}}},"3":{"df":33,"docs":{"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},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0}}},"4":{"df":25,"docs":{"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},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"740":{"tf":1.0},"772":{"tf":1.0},"840":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"931":{"tf":1.0},"942":{"tf":1.0}}},"1":{"df":5,"docs":{"719":{"tf":1.0},"873":{"tf":1.0},"894":{"tf":1.0},"912":{"tf":1.0},"935":{"tf":1.0}}},"2":{"df":13,"docs":{"727":{"tf":1.0},"765":{"tf":1.0},"805":{"tf":1.0},"828":{"tf":1.0},"839":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.0},"920":{"tf":1.0},"930":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0}}},"3":{"df":8,"docs":{"721":{"tf":1.0},"723":{"tf":1.0},"734":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"859":{"tf":1.0},"891":{"tf":1.0},"954":{"tf":1.0}}},"4":{"df":9,"docs":{"718":{"tf":1.0},"742":{"tf":1.0},"758":{"tf":1.0},"827":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"846":{"tf":1.0},"896":{"tf":1.0},"953":{"tf":1.0}}},"5":{"df":10,"docs":{"753":{"tf":1.0},"757":{"tf":1.0},"771":{"tf":1.0},"792":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"834":{"tf":1.0},"845":{"tf":1.0},"893":{"tf":1.0},"916":{"tf":1.0}}},"6":{"df":12,"docs":{"749":{"tf":1.0},"750":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"844":{"tf":1.0},"855":{"tf":1.0},"863":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"948":{"tf":1.0}}},"7":{"df":4,"docs":{"833":{"tf":1.0},"862":{"tf":1.0},"900":{"tf":1.0},"906":{"tf":1.0}}},"8":{"df":7,"docs":{"715":{"tf":1.0},"728":{"tf":1.0},"737":{"tf":1.0},"761":{"tf":1.0},"793":{"tf":1.0},"824":{"tf":1.0},"852":{"tf":1.0}}},"9":{"df":7,"docs":{"730":{"tf":1.0},"787":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"880":{"tf":1.0}}},"df":5,"docs":{"191":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"259":{"tf":1.0},"267":{"tf":1.0}}},"3":{"0":{"df":6,"docs":{"733":{"tf":1.0},"748":{"tf":1.0},"802":{"tf":1.0},"892":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0}}},"1":{"df":4,"docs":{"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"799":{"tf":1.0}}},"df":1,"docs":{"268":{"tf":1.0}}},"4":{"df":1,"docs":{"269":{"tf":1.0}}},"5":{"df":1,"docs":{"270":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"8":{"df":1,"docs":{"273":{"tf":1.0}}},"9":{"df":1,"docs":{"274":{"tf":1.0}}},"a":{".":{"df":0,"docs":{},"k":{".":{"a":{"df":2,"docs":{"187":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"356":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"475":{"tf":1.0},"493":{"tf":1.0},"574":{"tf":1.0},"585":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"476":{"tf":1.0},"494":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"505":{"tf":1.0},"517":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"257":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"691":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"d":{"df":10,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"445":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"961":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}}},"df":13,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"379":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0}}},"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":{},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"316":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"671":{"tf":1.0},"674":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":66,"docs":{"112":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.0},"318":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"372":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"403":{"tf":1.0},"405":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"444":{"tf":1.0},"447":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.0},"479":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"516":{"tf":1.0},"518":{"tf":1.0},"527":{"tf":1.0},"530":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"550":{"tf":1.0},"552":{"tf":1.0},"562":{"tf":1.0},"564":{"tf":1.0},"573":{"tf":1.0},"576":{"tf":1.0},"584":{"tf":1.0},"587":{"tf":1.0},"597":{"tf":1.0},"599":{"tf":1.0},"608":{"tf":1.0},"610":{"tf":1.0},"620":{"tf":1.0},"622":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"648":{"tf":1.0},"650":{"tf":1.0},"964":{"tf":1.0}}},"p":{"df":1,"docs":{"679":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"5":{"tf":1.0},"966":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":15,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"142":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"51":{"tf":1.0},"671":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"101":{"tf":1.0},"80":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"205":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"692":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}},"df":3,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"695":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"245":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"125":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"561":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"684":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"140":{"tf":1.0},"675":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"310":{"tf":1.0},"311":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"958":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"706":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"381":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"241":{"tf":1.0},"245":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"26":{"tf":1.0},"268":{"tf":1.0},"63":{"tf":1.0},"663":{"tf":1.0},"671":{"tf":1.0},"676":{"tf":1.0},"682":{"tf":1.0},"684":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"691":{"tf":1.0},"81":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"458":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"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":1,"docs":{"285":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"50":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"204":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"118":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"270":{"tf":1.0},"379":{"tf":1.0},"714":{"tf":1.0},"889":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"713":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"72":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"78":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"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":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"117":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"689":{"tf":1.0},"691":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"258":{"tf":1.0},"663":{"tf":1.0},"676":{"tf":1.0},"682":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"260":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"20":{"tf":1.0},"316":{"tf":1.0},"43":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"967":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"959":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"654":{"tf":1.0},"659":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"402":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"619":{"tf":1.0},"75":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"401":{"tf":1.0},"412":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"50":{"tf":1.0},"674":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"317":{"tf":1.0},"336":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"546":{"tf":1.0}}}}}}}}},"df":29,"docs":{"117":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"389":{"tf":1.0},"399":{"tf":1.0},"410":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":1.0},"535":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.4142135623730951},"592":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.0},"627":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"183":{"tf":1.0},"684":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"549":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":18,"docs":{"215":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"348":{"tf":1.0},"352":{"tf":1.0},"363":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"138":{"tf":1.0},"147":{"tf":1.0},"256":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"645":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"159":{"tf":1.0},"164":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"626":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"153":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"272":{"tf":1.0},"462":{"tf":1.0},"52":{"tf":1.0}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"321":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"471":{"tf":1.0},"488":{"tf":1.0},"503":{"tf":1.0},"515":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"182":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"339":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"179":{"tf":1.0},"180":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"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":{"969":{"tf":1.0}}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"57":{"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":{"698":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"229":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"273":{"tf":1.0},"34":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"165":{"tf":1.0},"171":{"tf":1.0},"213":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"344":{"tf":1.0},"55":{"tf":1.0},"560":{"tf":1.0},"679":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"347":{"tf":1.0},"645":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"340":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"254":{"tf":1.0},"326":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"209":{"tf":1.0},"330":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"685":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"626":{"tf":1.0},"672":{"tf":1.0}}}}},"r":{"a":{"df":20,"docs":{"388":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"510":{"tf":1.0},"522":{"tf":1.0},"534":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"568":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"350":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":15,"docs":{"108":{"tf":1.0},"20":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"85":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"231":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"378":{"tf":1.0},"967":{"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":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"687":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"306":{"tf":1.0},"35":{"tf":1.0},"888":{"tf":1.0},"968":{"tf":1.0}}}}},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"j":{"df":1,"docs":{"240":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.0}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"369":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"44":{"tf":1.0},"692":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"375":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":54,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"29":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"39":{"tf":1.0},"402":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"619":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"671":{"tf":1.0},"674":{"tf":1.0},"68":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"691":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"712":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"957":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"670":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"702":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"959":{"tf":1.0},"968":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"259":{"tf":1.0},"561":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"34":{"tf":1.0},"423":{"tf":1.0},"538":{"tf":1.0},"630":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"222":{"tf":1.0},"349":{"tf":1.0},"4":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"965":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"263":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"691":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"692":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"232":{"tf":1.0},"674":{"tf":1.0},"679":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"685":{"tf":1.0}},"r":{"df":12,"docs":{"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},"208":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"673":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"o":{"df":7,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"50":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"267":{"tf":1.0}}}},"t":{"df":0,"docs":{},"’":{"df":1,"docs":{"182":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"121":{"tf":1.0},"169":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"698":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"b":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"225":{"tf":1.0},"656":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"377":{"tf":1.0},"378":{"tf":1.0},"391":{"tf":1.0},"412":{"tf":1.0},"433":{"tf":1.0},"488":{"tf":1.0},"515":{"tf":1.0},"583":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"’":{"df":1,"docs":{"253":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"270":{"tf":1.0},"309":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"135":{"tf":1.0},"357":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"227":{"tf":1.0},"689":{"tf":1.0}}},"t":{"df":2,"docs":{"38":{"tf":1.0},"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"344":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":10,"docs":{"217":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"44":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"62":{"tf":1.0},"672":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":1,"docs":{"686":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"459":{"tf":1.0},"477":{"tf":1.0},"711":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"503":{"tf":1.0},"515":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"204":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"225":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"221":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":84,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"35":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"619":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"67":{"tf":1.0},"677":{"tf":1.0},"69":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"277":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"196":{"tf":1.0},"274":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"262":{"tf":1.0},"263":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"202":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"281":{"tf":1.0},"286":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"687":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"w":{"df":7,"docs":{"102":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0},"961":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"680":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"546":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"638":{"tf":1.0},"645":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"683":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"671":{"tf":1.0}}}}}}},"n":{"c":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0}}}}}}},"s":{"/":{"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":{"271":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"184":{"tf":1.0},"653":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0},"962":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":51,"docs":{"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"545":{"tf":1.0},"547":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"644":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"683":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"223":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":44,"docs":{"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.4142135623730951},"275":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"336":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"647":{"tf":1.0},"66":{"tf":1.0},"678":{"tf":1.0},"709":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"696":{"tf":1.0},"697":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"704":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}},"e":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":11,"docs":{"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"700":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"115":{"tf":1.0},"958":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{".":{"0":{"df":4,"docs":{"894":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"903":{"tf":1.0}}},"1":{"df":2,"docs":{"899":{"tf":1.0},"902":{"tf":1.0}}},"2":{"df":1,"docs":{"898":{"tf":1.0}}},"3":{"df":1,"docs":{"897":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"967":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"692":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":2,"docs":{"59":{"tf":1.0},"61":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"115":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"119":{"tf":1.0},"192":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.0},"268":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"121":{"tf":1.0},"267":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"169":{"tf":1.0},"18":{"tf":1.0},"235":{"tf":1.0},"658":{"tf":1.0},"673":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"661":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"595":{"tf":1.0},"596":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"157":{"tf":1.0},"177":{"tf":1.0},"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":23,"docs":{"205":{"tf":1.0},"389":{"tf":1.0},"399":{"tf":1.0},"410":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":1.0},"535":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"569":{"tf":1.0},"592":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.0},"627":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"618":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"563":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":27,"docs":{"114":{"tf":1.0},"258":{"tf":1.0},"327":{"tf":1.0},"382":{"tf":1.0},"392":{"tf":1.0},"403":{"tf":1.0},"413":{"tf":1.0},"424":{"tf":1.0},"434":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"516":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"550":{"tf":1.0},"562":{"tf":1.0},"573":{"tf":1.0},"584":{"tf":1.0},"597":{"tf":1.0},"608":{"tf":1.0},"620":{"tf":1.0},"631":{"tf":1.0},"639":{"tf":1.0},"679":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"182":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":26,"docs":{"3":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"502":{"tf":1.0},"513":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"581":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"964":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"336":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"20":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"113":{"tf":1.0},"120":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.0},"159":{"tf":1.0},"164":{"tf":1.0},"262":{"tf":1.0},"698":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":11,"docs":{"15":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"58":{"tf":1.0},"673":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"295":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"181":{"tf":1.0},"182":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"183":{"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":3,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"283":{"tf":1.0},"293":{"tf":1.0},"302":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"663":{"tf":1.0},"682":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":22,"docs":{"121":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"340":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"674":{"tf":1.0},"688":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"78":{"tf":1.0},"965":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"354":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"267":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"366":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":24,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"330":{"tf":1.0},"35":{"tf":1.0},"383":{"tf":1.0},"393":{"tf":1.0},"41":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"446":{"tf":1.0},"529":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"460":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"254":{"tf":1.0},"676":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"541":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":1,"docs":{"339":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"118":{"tf":1.0},"219":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"105":{"tf":1.0},"222":{"tf":1.0},"31":{"tf":1.0},"349":{"tf":1.0},"4":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"84":{"tf":1.0},"965":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"253":{"tf":1.0},"456":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"675":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}},"u":{"df":1,"docs":{"320":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"680":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"474":{"tf":1.0},"491":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"457":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"422":{"tf":1.0},"433":{"tf":1.0},"443":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"130":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"301":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"133":{"tf":1.0},"561":{"tf":1.0},"648":{"tf":1.0},"66":{"tf":1.0},"710":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"136":{"tf":1.0},"259":{"tf":1.0},"649":{"tf":1.0}},"p":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"107":{"tf":1.0},"44":{"tf":1.0},"86":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"232":{"tf":1.0},"657":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":9,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"340":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"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":{"63":{"tf":1.0}}},"y":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":32,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"318":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.0},"394":{"tf":1.0},"405":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"463":{"tf":1.0},"479":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"542":{"tf":1.0},"552":{"tf":1.0},"564":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"599":{"tf":1.0},"610":{"tf":1.0},"622":{"tf":1.0},"633":{"tf":1.0},"641":{"tf":1.0},"650":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":23,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":23,"docs":{"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"887":{"tf":1.0}}},"2":{"df":1,"docs":{"886":{"tf":1.0}}},"3":{"df":1,"docs":{"885":{"tf":1.0}}},"4":{"df":1,"docs":{"884":{"tf":1.0}}},"5":{"df":1,"docs":{"883":{"tf":1.0}}},"6":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"629":{"tf":1.0},"684":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"75":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"316":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"272":{"tf":1.0},"471":{"tf":1.0},"488":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"o":{"df":1,"docs":{"246":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"320":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"707":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"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":1,"docs":{"49":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"468":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"712":{"tf":1.0},"957":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"379":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"310":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"714":{"tf":1.0},"889":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"116":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"230":{"tf":1.0},"537":{"tf":1.0},"546":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"346":{"tf":1.0},"699":{"tf":1.0}}}},"df":19,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"28":{"tf":1.0},"326":{"tf":1.0},"461":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"671":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"183":{"tf":1.0},"2":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"963":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"526":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"0":{".":{"1":{"df":6,"docs":{"882":{"tf":1.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"956":{"tf":1.0}}},"1":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"942":{"tf":1.0}}},"1":{"df":1,"docs":{"941":{"tf":1.0}}},"2":{"df":1,"docs":{"940":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"938":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"937":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"936":{"tf":1.0}}},"1":{"df":1,"docs":{"935":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"931":{"tf":1.0}}},"1":{"df":1,"docs":{"930":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"954":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"927":{"tf":1.0}}},"1":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"920":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"919":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"918":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"953":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"917":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"950":{"tf":1.0}}},"1":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"947":{"tf":1.0}}},"1":{"df":1,"docs":{"946":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"945":{"tf":1.0}}},"1":{"df":1,"docs":{"944":{"tf":1.0}}},"2":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"910":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"880":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"909":{"tf":1.0}}},"1":{"df":1,"docs":{"908":{"tf":1.0}}},"2":{"df":1,"docs":{"907":{"tf":1.0}}},"3":{"df":1,"docs":{"906":{"tf":1.0}}},"4":{"df":1,"docs":{"905":{"tf":1.0}}},"5":{"df":1,"docs":{"904":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"878":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"877":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"875":{"tf":1.0}}},"1":{"df":1,"docs":{"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"871":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"870":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"869":{"tf":1.0}}},"1":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"866":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"863":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"861":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"857":{"tf":1.0}}},"1":{"df":1,"docs":{"856":{"tf":1.0}}},"2":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":3,"docs":{"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"854":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"853":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"852":{"tf":1.0}}},"1":{"df":1,"docs":{"851":{"tf":1.0}}},"2":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"849":{"tf":1.0}}},"1":{"df":1,"docs":{"848":{"tf":1.0}}},"2":{"df":1,"docs":{"847":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"846":{"tf":1.0}}},"1":{"df":1,"docs":{"845":{"tf":1.0}}},"2":{"df":1,"docs":{"844":{"tf":1.0}}},"3":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"841":{"tf":1.0}}},"1":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"839":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"837":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"836":{"tf":1.0}}},"1":{"df":1,"docs":{"835":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"833":{"tf":1.0}}},"1":{"df":1,"docs":{"832":{"tf":1.0}}},"2":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"830":{"tf":1.0}}},"1":{"df":1,"docs":{"829":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"828":{"tf":1.0}}},"1":{"df":1,"docs":{"827":{"tf":1.0}}},"2":{"df":1,"docs":{"826":{"tf":1.0}}},"3":{"df":1,"docs":{"825":{"tf":1.0}}},"4":{"df":1,"docs":{"824":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"1":{"df":1,"docs":{"822":{"tf":1.0}}},"2":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"811":{"tf":1.0}}},"1":{"df":1,"docs":{"810":{"tf":1.0}}},"2":{"df":1,"docs":{"809":{"tf":1.0}}},"3":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"819":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"818":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"816":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"814":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"813":{"tf":1.0}}},"1":{"df":1,"docs":{"812":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"1":{"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"1":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"799":{"tf":1.0}}},"1":{"df":1,"docs":{"798":{"tf":1.0}}},"2":{"df":1,"docs":{"797":{"tf":1.0}}},"3":{"df":1,"docs":{"796":{"tf":1.0}}},"4":{"df":1,"docs":{"795":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":5,"docs":{"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"792":{"tf":1.0}}},"1":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"788":{"tf":1.0}}},"1":{"df":1,"docs":{"787":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.0}}},"1":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"783":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"782":{"tf":1.0}}},"1":{"df":1,"docs":{"781":{"tf":1.0}}},"2":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"779":{"tf":1.0}}},"1":{"df":1,"docs":{"778":{"tf":1.0}}},"2":{"df":1,"docs":{"777":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"775":{"tf":1.0}}},"1":{"df":1,"docs":{"774":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":2,"docs":{"893":{"tf":1.0},"894":{"tf":1.0}}},"1":{"df":1,"docs":{"892":{"tf":1.0}}},"2":{"df":1,"docs":{"891":{"tf":1.0}}},"3":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"772":{"tf":1.0}}},"1":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"770":{"tf":1.0}}},"1":{"df":1,"docs":{"769":{"tf":1.0}}},"2":{"df":1,"docs":{"768":{"tf":1.0}}},"3":{"df":1,"docs":{"767":{"tf":1.0}}},"4":{"df":1,"docs":{"766":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"765":{"tf":1.0}}},"1":{"df":1,"docs":{"764":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"756":{"tf":1.0}}},"1":{"df":1,"docs":{"755":{"tf":1.0}}},"2":{"df":1,"docs":{"754":{"tf":1.0}}},"3":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"1":{"df":1,"docs":{"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"750":{"tf":1.0}}},"1":{"df":1,"docs":{"749":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"748":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"747":{"tf":1.0}}},"1":{"df":1,"docs":{"746":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"745":{"tf":1.0}}},"1":{"df":1,"docs":{"744":{"tf":1.0}}},"2":{"df":1,"docs":{"743":{"tf":1.0}}},"3":{"df":1,"docs":{"742":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"735":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"729":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{".":{"0":{".":{"0":{"df":1,"docs":{"727":{"tf":1.0}}},"1":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"725":{"tf":1.0}}},"1":{"df":1,"docs":{"724":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"722":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"718":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"117":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"468":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"685":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"218":{"tf":1.0},"352":{"tf":1.0},"363":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"690":{"tf":1.0},"691":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"672":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"272":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"247":{"tf":1.0},"250":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"711":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"256":{"tf":1.0},"83":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"107":{"tf":1.0},"86":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"694":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":8,"docs":{"20":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}});
\ No newline at end of file
diff --git a/book/searchindex.json b/book/searchindex.json
index 84b153b8cc..c6534a045f 100644
--- a/book/searchindex.json
+++ b/book/searchindex.json
@@ -1 +1 @@
-{"doc_urls":["index.html#introduction","index.html#sections","index.html#user-guides","index.html#api-reference","index.html#sdk-specific-information","index.html#appendix","index.html#contact","index.html#license","user/adding-glean-to-your-project/index.html#adding-glean-to-your-project","user/adding-glean-to-your-project/index.html#glean-integration-checklist","user/adding-glean-to-your-project/kotlin.html#adding-glean-to-your-kotlin-project","user/adding-glean-to-your-project/kotlin.html#setting-up-the-dependency","user/adding-glean-to-your-project/kotlin.html#dependency-for-local-testing","user/adding-glean-to-your-project/kotlin.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/swift.html#adding-glean-to-your-swift-project","user/adding-glean-to-your-project/swift.html#requirements","user/adding-glean-to-your-project/swift.html#setting-up-the-dependency","user/adding-glean-to-your-project/swift.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/python.html#adding-glean-to-your-python-project","user/adding-glean-to-your-project/python.html#setting-up-the-dependency","user/adding-glean-to-your-project/python.html#consuming-yaml-registry-files","user/adding-glean-to-your-project/python.html#automation-steps","user/adding-glean-to-your-project/python.html#parallelism","user/adding-glean-to-your-project/rust.html#adding-glean-to-your-rust-project","user/adding-glean-to-your-project/rust.html#setting-up-the-dependency","user/adding-glean-to-your-project/rust.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/rust.html#glean-build-is-in-beta","user/adding-glean-to-your-project/rust.html#include-the-generated-code","user/adding-glean-to-your-project/rust.html#use-the-metrics","user/adding-glean-to-your-project/javascript.html#adding-glean-to-your-javascript-project","user/adding-glean-to-your-project/javascript.html#requirements","user/adding-glean-to-your-project/javascript.html#browser-extension-specific-requirements","user/adding-glean-to-your-project/javascript.html#setting-up-the-dependency","user/adding-glean-to-your-project/javascript.html#browser-extension-security-considerations","user/adding-glean-to-your-project/javascript.html#common-import-errors","user/adding-glean-to-your-project/javascript.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/javascript.html#automation-steps","user/adding-glean-to-your-project/javascript.html#documentation","user/adding-glean-to-your-project/javascript.html#yaml-registry-files-linting","user/adding-glean-to-your-project/qt.html#adding-glean-to-your-qtqml-project","user/adding-glean-to-your-project/qt.html#requirements","user/adding-glean-to-your-project/qt.html#setting-up-the-dependency","user/adding-glean-to-your-project/qt.html#picking-the-correct-version","user/adding-glean-to-your-project/qt.html#consuming-yaml-registry-files","user/adding-glean-to-your-project/qt.html#make-sure-you-have-the-correct-glean_parser-version","user/adding-glean-to-your-project/qt.html#automation-steps","user/adding-glean-to-your-project/qt.html#documentation","user/adding-glean-to-your-project/qt.html#yaml-registry-files-linting","user/adding-glean-to-your-project/qt.html#debugging","user/adding-glean-to-your-project/qt.html#troubleshooting","user/adding-glean-to-your-project/qt.html#submitping-may-cause-crashes-when-debugging-ios-devices","user/adding-glean-to-your-project/server.html#adding-glean-to-your-server-application","user/adding-glean-to-your-project/server.html#differences-from-using-the-glean-sdk","user/adding-glean-to-your-project/server.html#when-to-use-server-side-collection","user/adding-glean-to-your-project/server.html#how-to-add-glean-server-side-collection-to-your-service","user/adding-glean-to-your-project/server.html#how-to-add-a-new-event-to-your-server-side-collection","user/adding-glean-to-your-project/server.html#technical-details---ingestion","user/adding-glean-to-your-project/enable-data-ingestion.html#enabling-data-to-be-ingested-by-the-data-platform","user/adding-glean-to-your-project/enable-data-ingestion.html#requirements","user/adding-glean-to-your-project/enable-data-ingestion.html#add-your-product-to-probe-scraper","user/adding-glean-to-your-project/enable-data-ingestion.html#validate-and-publish-metrics","user/adding-glean-to-your-project/enable-data-ingestion.html#add-your-library-to-probe-scraper","user/integrating-glean-for-product-managers.html#integrating-glean-for-product-managers","user/integrating-glean-for-product-managers.html#building-a-telemetry-plan","user/integrating-glean-for-product-managers.html#integrating-glean-into-your-product","user/integrating-glean-for-product-managers.html#optional-adapting-glean-to-your-platform","user/integrating-glean-for-product-managers.html#optional-designing-ping-submission","user/integrating-glean-for-product-managers.html#optional-new-metric-types","user/integrating-glean-for-product-managers.html#integrating-glean-into-glam","user/metrics/adding-new-metrics.html#adding-new-metrics","user/metrics/adding-new-metrics.html#table-of-contents","user/metrics/adding-new-metrics.html#process-overview","user/metrics/adding-new-metrics.html#choosing-a-metric-type","user/metrics/adding-new-metrics.html#is-it-a-single-measurement","user/metrics/adding-new-metrics.html#are-you-measuring-user-behavior","user/metrics/adding-new-metrics.html#are-you-counting-things","user/metrics/adding-new-metrics.html#are-you-measuring-time","user/metrics/adding-new-metrics.html#for-how-long-do-you-need-to-collect-this-data","user/metrics/adding-new-metrics.html#when-should-the-glean-sdk-automatically-clear-the-measurement","user/metrics/adding-new-metrics.html#a-lifetime-example","user/metrics/adding-new-metrics.html#what-if-none-of-these-lifetimes-are-appropriate","user/metrics/adding-new-metrics.html#what-should-this-new-metric-be-called","user/metrics/adding-new-metrics.html#reuse-names-from-other-applications","user/metrics/adding-new-metrics.html#make-names-unique-within-an-application","user/metrics/adding-new-metrics.html#be-as-specific-as-possible","user/metrics/adding-new-metrics.html#what-if-none-of-these-metric-types-is-the-right-fit","user/metrics/adding-new-metrics.html#how-do-i-make-sure-my-metric-is-working","user/metrics/adding-new-metrics.html#adding-the-metric-to-the-metricsyaml-file","user/metrics/adding-new-metrics.html#using-the-metric-from-your-code","user/metrics/adding-new-metrics.html#capitalization","user/metrics/adding-new-metrics.html#adding-new-metrics","user/metrics/adding-new-metrics.html#table-of-contents","user/metrics/adding-new-metrics.html#process-overview","user/metrics/adding-new-metrics.html#choosing-a-metric-type","user/metrics/adding-new-metrics.html#is-it-a-single-measurement","user/metrics/adding-new-metrics.html#are-you-measuring-user-behavior","user/metrics/adding-new-metrics.html#are-you-counting-things","user/metrics/adding-new-metrics.html#are-you-measuring-time","user/metrics/adding-new-metrics.html#for-how-long-do-you-need-to-collect-this-data","user/metrics/adding-new-metrics.html#when-should-the-glean-sdk-automatically-clear-the-measurement","user/metrics/adding-new-metrics.html#a-lifetime-example","user/metrics/adding-new-metrics.html#what-if-none-of-these-lifetimes-are-appropriate","user/metrics/adding-new-metrics.html#what-should-this-new-metric-be-called","user/metrics/adding-new-metrics.html#reuse-names-from-other-applications","user/metrics/adding-new-metrics.html#make-names-unique-within-an-application","user/metrics/adding-new-metrics.html#be-as-specific-as-possible","user/metrics/adding-new-metrics.html#what-if-none-of-these-metric-types-is-the-right-fit","user/metrics/adding-new-metrics.html#how-do-i-make-sure-my-metric-is-working","user/metrics/adding-new-metrics.html#adding-the-metric-to-the-metricsyaml-file","user/metrics/adding-new-metrics.html#using-the-metric-from-your-code","user/metrics/adding-new-metrics.html#capitalization","user/metrics/testing-metrics.html#unit-testing-glean-metrics","user/metrics/testing-metrics.html#example-of-using-the-test-api","user/metrics/testing-metrics.html#generating-testing-coverage-reports","user/metrics/testing-metrics.html#recording-coverage","user/metrics/testing-metrics.html#post-processing-the-results","user/metrics/testing-metrics.html#uploading-coverage","user/metrics/validation-checklist.html#validating-the-collected-data","user/metrics/validation-checklist.html#how-to-annotate-metrics-without-changing-the-source-code","user/metrics/validation-checklist.html#does-the-product-support-multiple-release-channels","user/metrics/error-reporting.html#error-reporting","user/collected-metrics/metrics.html#the-glean-javascript-sdk-provides-a-slightly-different-set-of-metrics-and-pings","user/collected-metrics/metrics.html#metrics","user/collected-metrics/metrics.html#pings","user/collected-metrics/metrics.html#all-pings","user/collected-metrics/metrics.html#baseline","user/collected-metrics/metrics.html#deletion-request","user/collected-metrics/metrics.html#metrics-1","user/pings/index.html#pings","user/pings/index.html#table-of-contents","user/pings/index.html#payload-structure","user/pings/index.html#the-ping_info-section","user/pings/index.html#the-client_info-section","user/pings/index.html#ping-submission","user/pings/index.html#url","user/pings/index.html#limitations","user/pings/index.html#submitted-headers","user/pings/custom.html#custom-pings","user/pings/custom.html#defining-a-custom-ping","user/pings/custom.html#sending-metrics-in-a-custom-ping","user/pings/custom.html#ping-metadata-must-be-loaded-before-sending","user/pings/custom.html#the-gleanrestarted-event","user/pings/custom.html#event-timestamps-throughout-application-restarts","user/pings/testing-custom-pings.html#testing-custom-pings","user/pings/testing-custom-pings.html#general-testing-strategy","user/pings/sent-by-glean.html#pings-sent-by-glean","user/pings/sent-by-glean.html#available-pings-per-platform","user/pings/sent-by-glean.html#defining-foreground-and-background-state","user/pings/sent-by-glean.html#foreground","user/pings/sent-by-glean.html#background","user/pings/sent-by-glean.html#foreground-1","user/pings/sent-by-glean.html#background-1","user/pings/baseline.html#the-baseline-ping","user/pings/baseline.html#description","user/pings/baseline.html#platform-availability","user/pings/baseline.html#scheduling","user/pings/baseline.html#contents","user/pings/baseline.html#querying-ping-contents","user/pings/baseline.html#example-baseline-ping","user/pings/deletion-request.html#the-deletion-request-ping","user/pings/deletion-request.html#description","user/pings/deletion-request.html#platform-availability","user/pings/deletion-request.html#scheduling","user/pings/deletion-request.html#contents","user/pings/deletion-request.html#example-deletion-request-ping","user/pings/events.html#the-events-ping","user/pings/events.html#description","user/pings/events.html#platform-availability","user/pings/events.html#scheduling","user/pings/events.html#python-and-javascript-caveats","user/pings/events.html#contents","user/pings/events.html#example-event-json","user/pings/metrics.html#the-metrics-ping","user/pings/metrics.html#description","user/pings/metrics.html#platform-availability","user/pings/metrics.html#scheduling","user/pings/metrics.html#contents","user/pings/metrics.html#querying-ping-contents","user/pings/metrics.html#scheduling-examples","user/pings/metrics.html#crossing-due-time-with-the-application-closed","user/pings/metrics.html#crossing-due-time-and-changing-timezones","user/pings/metrics.html#the-application-doesnt-run-in-a-week","user/pings/metrics.html#the-application-doesnt-run-for-a-week-and-when-its-finally-re-opened-the-timezone-has-changed","user/pings/metrics.html#the-user-changes-timezone-in-an-extreme-enough-fashion-that-they-cross-0400-twice-on-the-same-date","user/pings/ping-schedules-and-timings.html#ping-schedules-and-timings-overview","user/server-knobs/index.html#server-knobs-glean-data-control-plane","user/server-knobs/index.html#contents","user/server-knobs/metrics/index.html#data-control-plane-aka-server-knobs","user/server-knobs/metrics/index.html#contents","user/server-knobs/metrics/example-scenarios.html#example-scenarios","user/server-knobs/metrics/example-scenarios.html#scenario-1","user/server-knobs/metrics/example-scenarios.html#scenario-2","user/server-knobs/metrics/product-integration.html#product-integration","user/server-knobs/metrics/product-integration.html#desktop-feature-integration","user/server-knobs/metrics/product-integration.html#integration-option-1","user/server-knobs/metrics/product-integration.html#integration-option-2-advanced-use","user/server-knobs/metrics/product-integration.html#mobile-feature-integration","user/server-knobs/metrics/product-integration.html#integration-option-1-1","user/server-knobs/metrics/product-integration.html#integration-option-2-advanced-use-1","user/server-knobs/metrics/experimenter-configuration.html#experimenter-configuration","user/server-knobs/metrics/experimenter-configuration.html#example-configuration","user/server-knobs/metrics/advanced-topics.html#advanced-topics","user/server-knobs/metrics/advanced-topics.html#merging-of-configurations-from-multiple-features","user/server-knobs/metrics/advanced-topics.html#example","user/server-knobs/metrics/advanced-topics.html#merging-caveats","user/server-knobs/metrics/faq.html#frequently-asked-questions","user/server-knobs/pings/index.html#data-control-plane-aka-server-knobs","user/server-knobs/pings/index.html#contents","user/server-knobs/pings/product-integration.html#product-integration","user/server-knobs/pings/experimenter-configuration.html#experimenter-configuration","user/server-knobs/pings/experimenter-configuration.html#example-configuration","user/server-knobs/other/index.html#other-server-knobs","user/server-knobs/other/index.html#contents","user/server-knobs/other/max-events.html#max-events","user/server-knobs/other/max-events.html#example-configuration","user/debugging/index.html#debugging-products-using-the-glean-sdk","user/debugging/index.html#features","user/debugging/index.html#log-pings","user/debugging/index.html#debug-view-tag","user/debugging/index.html#source-tags","user/debugging/index.html#send-ping","user/debugging/index.html#debugging-methods","user/debugging/index.html#platform-specific-information","user/debugging/index.html#available-debugging-methods-per-platform","user/debugging/android.html#debugging-android-applications-using-the-glean-sdk","user/debugging/android.html#glean-kotlin-sdk-log-messages","user/debugging/android.html#android-studio","user/debugging/android.html#command-line","user/debugging/ios.html#debugging-ios-applications-using-the-glean-sdk","user/debugging/ios.html#enabling-debugging-features-in-ios-through-environment-variables","user/debugging/ios.html#enabling-debugging-features-in-ios-through-a-custom-url-scheme","user/debugging/ios.html#available-commands-and-query-format","user/debugging/ios.html#instrumenting-the-application-for-glean-swift-sdk-debug-functionality","user/debugging/ios.html#invoking-the-glean-ios-debug-commands","user/debugging/ios.html#glean-log-messages","user/debugging/python.html#debugging-python-applications-using-the-glean-sdk","user/debugging/python.html#sending-pings","user/debugging/python.html#logging-pings","user/debugging/python.html#simple-logging-api","user/debugging/python.html#flexible-logging-api","user/debugging/javascript.html#debugging-javascript-applications-using-gleanjs","user/debugging/javascript.html#debugging-in-the-browser","user/debugging/javascript.html#sending-pings","user/debugging/javascript.html#logging-pings","user/debugging/javascript.html#firefox","user/debugging/javascript.html#chromium-based-browsers","user/howto/index.html#how-tos","user/howto/index.html#server-knobs-walkthrough","user/howto/index.html#real-time-events","user/howto/index.html#telemetrydata-bug-investigation-recommendations","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#server-knobs-a-complete-walkthrough","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#purpose","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#audience","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#lets-get-started","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#experiment-setup","user/howto/real-time-events/real-time-events.html#real-time-events","user/howto/real-time-events/real-time-events.html#defining-real-time-events-within-the-glean-sdk","user/howto/real-time-events/real-time-events.html#methods-to-achieve-this-with-glean","user/howto/real-time-events/real-time-events.html#option-1-configuring-glean-to-send-all-events-as-soon-as-they-are-recorded","user/howto/real-time-events/real-time-events.html#option-2-using-a-custom-ping-and-submitting-it-immediately-pings-as-events","user/howto/real-time-events/real-time-events.html#considerations","user/howto/real-time-events/real-time-events.html#what-real-time-glean-eventspings-are--not","user/howto/real-time-events/real-time-events.html#more-network-requests","user/howto/real-time-events/real-time-events.html#more-ingestion-endpoint-traffic","user/howto/real-time-events/real-time-events.html#storage-space-requirements","user/howto/investigating-data-issues/investigating-data-issues.html#telemetrydata-bug-investigation-recommendations","user/howto/investigating-data-issues/investigating-data-issues.html#1-countries","user/howto/investigating-data-issues/investigating-data-issues.html#2-isp-internet-service-provider","user/howto/investigating-data-issues/investigating-data-issues.html#3-product-version--build-id","user/howto/investigating-data-issues/investigating-data-issues.html#4-glean-sdk-version","user/howto/investigating-data-issues/investigating-data-issues.html#5-other-library-version-changes","user/howto/investigating-data-issues/investigating-data-issues.html#6-osplatform-sdk-version","user/howto/investigating-data-issues/investigating-data-issues.html#7-time-differences-startend_time-vs-submission_timestamp","user/howto/investigating-data-issues/investigating-data-issues.html#8-glean-errors","user/howto/investigating-data-issues/investigating-data-issues.html#9-hardware-details-manufacturerversion-mobile-platforms-only","user/howto/investigating-data-issues/investigating-data-issues.html#10-ping-reason","reference/yaml/index.html#yaml-registry-format","reference/yaml/index.html#metricsyaml-file","reference/yaml/index.html#pingsyaml-file","reference/yaml/index.html#tagsyaml-file","reference/yaml/metrics.html#metrics-yaml-registry-format","reference/yaml/metrics.html#note-on-the-naming-of-these-files","reference/yaml/metrics.html#file-structure","reference/yaml/metrics.html#schema","reference/yaml/metrics.html#tags","reference/yaml/metrics.html#category","reference/yaml/metrics.html#name","reference/yaml/metrics.html#metric-parameters","reference/yaml/metrics.html#required-parameters","reference/yaml/metrics.html#optional-parameters","reference/yaml/pings.html#pings-yaml-registry-format","reference/yaml/pings.html#note-on-the-naming-of-these-files","reference/yaml/pings.html#file-structure","reference/yaml/pings.html#schema","reference/yaml/pings.html#name","reference/yaml/pings.html#reserved-ping-names","reference/yaml/pings.html#ping-parameters","reference/yaml/pings.html#required-parameters","reference/yaml/pings.html#optional-parameters","reference/yaml/tags.html#tags-yaml-registry-format","reference/yaml/tags.html#note-on-the-naming-of-these-files","reference/yaml/tags.html#file-structure","reference/yaml/tags.html#schema","reference/yaml/tags.html#name","reference/yaml/tags.html#tag-parameters","reference/yaml/tags.html#required-parameters","reference/general/index.html#the-general-api","reference/general/index.html#the-api","reference/general/initializing.html#initializing","reference/general/initializing.html#libraries-are-not-required-to-initialize-glean","reference/general/initializing.html#behavior-when-uninitialized","reference/general/initializing.html#behavior-once-initialized","reference/general/initializing.html#when-upload-is-enabled","reference/general/initializing.html#when-upload-is-disabled","reference/general/initializing.html#api","reference/general/initializing.html#gleaninitializeconfiguration","reference/general/initializing.html#consuming-glean-through-android-components","reference/general/initializing.html#custom-uploaders","reference/general/initializing.html#testing-api","reference/general/initializing.html#reference","reference/general/toggling-upload-status.html#toggling-upload-status","reference/general/toggling-upload-status.html#disabling-upload","reference/general/toggling-upload-status.html#enabling-upload","reference/general/toggling-upload-status.html#api","reference/general/toggling-upload-status.html#gleansetuploadenabledboolean","reference/general/toggling-upload-status.html#reference","reference/general/experiments-api.html#using-the-experiments-api","reference/general/experiments-api.html#recording-api","reference/general/experiments-api.html#setexperimentactive","reference/general/experiments-api.html#setexperimentinactive","reference/general/experiments-api.html#set-an-experimentation-identifier","reference/general/experiments-api.html#testing-api","reference/general/experiments-api.html#testisexperimentactive","reference/general/experiments-api.html#testgetexperimentdata","reference/general/experiments-api.html#testgetexperimentationid","reference/general/experiments-api.html#reference","reference/general/register-custom-pings.html#registering-custom-pings","reference/general/register-custom-pings.html#api","reference/general/register-custom-pings.html#registerpings","reference/general/shutdown.html#shut-down","reference/general/shutdown.html#how-the-glean-sdks-execute-tasks","reference/general/shutdown.html#api","reference/general/shutdown.html#shutdown","reference/general/shutdown.html#reference","reference/general/glean-event-listener.html#glean-event-listener","reference/general/glean-event-listener.html#summary","reference/general/glean-event-listener.html#usage","reference/general/glean-event-listener.html#examples","reference/debug/index.html#debugging","reference/debug/index.html#platform-specific-information","reference/debug/index.html#features","reference/debug/index.html#log-pings","reference/debug/index.html#debug-view-tag","reference/debug/index.html#source-tags","reference/debug/index.html#send-pings","reference/debug/logPings.html#log-pings","reference/debug/logPings.html#on-how-to-access-logs","reference/debug/logPings.html#limits","reference/debug/logPings.html#api","reference/debug/logPings.html#setlogpings","reference/debug/logPings.html#getlogpings","reference/debug/logPings.html#environment-variable","reference/debug/logPings.html#glean_log_pings","reference/debug/debugViewTag.html#debug-view-tag","reference/debug/debugViewTag.html#limits","reference/debug/debugViewTag.html#api","reference/debug/debugViewTag.html#setdebugviewtag","reference/debug/debugViewTag.html#getdebugviewtag","reference/debug/debugViewTag.html#environment-variable","reference/debug/debugViewTag.html#glean_debug_view_tag","reference/debug/sourceTags.html#source-tags","reference/debug/sourceTags.html#limits","reference/debug/sourceTags.html#api","reference/debug/sourceTags.html#setsourcetags","reference/debug/sourceTags.html#environment-variable","reference/debug/sourceTags.html#glean_source_tags","reference/metrics/index.html#metrics","reference/metrics/index.html#labeled-metrics","reference/metrics/index.html#label-format","reference/metrics/index.html#adding-or-changing-metric-types","reference/metrics/index.html#deprecated-metrics","reference/metrics/boolean.html#boolean","reference/metrics/boolean.html#recording-api","reference/metrics/boolean.html#set","reference/metrics/boolean.html#testing-api","reference/metrics/boolean.html#testgetvalue","reference/metrics/boolean.html#testgetnumrecordederrors","reference/metrics/boolean.html#metric-parameters","reference/metrics/boolean.html#extra-metric-parameters","reference/metrics/boolean.html#data-questions","reference/metrics/boolean.html#reference","reference/metrics/labeled_booleans.html#labeled-booleans","reference/metrics/labeled_booleans.html#recording-api","reference/metrics/labeled_booleans.html#set","reference/metrics/labeled_booleans.html#testing-api","reference/metrics/labeled_booleans.html#testgetvalue","reference/metrics/labeled_booleans.html#testgetnumrecordederrors","reference/metrics/labeled_booleans.html#metric-parameters","reference/metrics/labeled_booleans.html#extra-metric-parameters","reference/metrics/labeled_booleans.html#data-questions","reference/metrics/labeled_booleans.html#reference","reference/metrics/counter.html#counter","reference/metrics/counter.html#let-the-glean-metric-do-the-counting","reference/metrics/counter.html#recording-api","reference/metrics/counter.html#add","reference/metrics/counter.html#testing-api","reference/metrics/counter.html#testgetvalue","reference/metrics/counter.html#testgetnumrecordederrors","reference/metrics/counter.html#metric-parameters","reference/metrics/counter.html#extra-metric-parameters","reference/metrics/counter.html#data-questions","reference/metrics/counter.html#reference","reference/metrics/labeled_counters.html#labeled-counters","reference/metrics/labeled_counters.html#recording-api","reference/metrics/labeled_counters.html#add","reference/metrics/labeled_counters.html#testing-api","reference/metrics/labeled_counters.html#testgetvalue","reference/metrics/labeled_counters.html#testgetnumrecordederrors","reference/metrics/labeled_counters.html#metric-parameters","reference/metrics/labeled_counters.html#extra-metric-parameters","reference/metrics/labeled_counters.html#data-questions","reference/metrics/labeled_counters.html#reference","reference/metrics/string.html#strings","reference/metrics/string.html#important","reference/metrics/string.html#recording-api","reference/metrics/string.html#set","reference/metrics/string.html#testing-api","reference/metrics/string.html#testgetvalue","reference/metrics/string.html#testgetnumrecordederrors","reference/metrics/string.html#metric-parameters","reference/metrics/string.html#extra-metric-parameters","reference/metrics/string.html#data-questions","reference/metrics/string.html#reference","reference/metrics/labeled_strings.html#labeled-strings","reference/metrics/labeled_strings.html#recording-api","reference/metrics/labeled_strings.html#set","reference/metrics/labeled_strings.html#testing-api","reference/metrics/labeled_strings.html#testgetvalue","reference/metrics/labeled_strings.html#testgetnumrecordederrors","reference/metrics/labeled_strings.html#metric-parameters","reference/metrics/labeled_strings.html#extra-metric-parameters","reference/metrics/labeled_strings.html#data-questions","reference/metrics/labeled_strings.html#reference","reference/metrics/string_list.html#string-list","reference/metrics/string_list.html#recording-api","reference/metrics/string_list.html#add","reference/metrics/string_list.html#set","reference/metrics/string_list.html#testing-api","reference/metrics/string_list.html#testgetvalue","reference/metrics/string_list.html#testgetnumrecordederrors","reference/metrics/string_list.html#metric-parameters","reference/metrics/string_list.html#extra-metric-parameters","reference/metrics/string_list.html#data-questions","reference/metrics/string_list.html#reference","reference/metrics/timespan.html#timespan","reference/metrics/timespan.html#recording-api","reference/metrics/timespan.html#start","reference/metrics/timespan.html#stop","reference/metrics/timespan.html#cancel","reference/metrics/timespan.html#measure","reference/metrics/timespan.html#setrawnanos","reference/metrics/timespan.html#only-use-this-if-you-have-to","reference/metrics/timespan.html#these-are-different","reference/metrics/timespan.html#testing-api","reference/metrics/timespan.html#testgetvalue","reference/metrics/timespan.html#testgetnumrecordederrors","reference/metrics/timespan.html#metric-parameters","reference/metrics/timespan.html#extra-metric-parameters","reference/metrics/timespan.html#values-are-truncated","reference/metrics/timespan.html#data-questions","reference/metrics/timespan.html#reference","reference/metrics/timing_distribution.html#timing-distribution","reference/metrics/timing_distribution.html#recording-api","reference/metrics/timing_distribution.html#start","reference/metrics/timing_distribution.html#stopandaccumulate","reference/metrics/timing_distribution.html#accumulatesamples","reference/metrics/timing_distribution.html#accumulatesinglesample","reference/metrics/timing_distribution.html#measure","reference/metrics/timing_distribution.html#cancel","reference/metrics/timing_distribution.html#testing-api","reference/metrics/timing_distribution.html#testgetvalue","reference/metrics/timing_distribution.html#testgetnumrecordederrors","reference/metrics/timing_distribution.html#metric-parameters","reference/metrics/timing_distribution.html#extra-metric-parameters","reference/metrics/timing_distribution.html#limits","reference/metrics/timing_distribution.html#data-questions","reference/metrics/timing_distribution.html#reference","reference/metrics/timing_distribution.html#simulator","reference/metrics/labeled_timing_distributions.html#labeled-timing-distributions","reference/metrics/labeled_timing_distributions.html#recording-api","reference/metrics/labeled_timing_distributions.html#start","reference/metrics/labeled_timing_distributions.html#stopandaccumulate","reference/metrics/labeled_timing_distributions.html#cancel","reference/metrics/labeled_timing_distributions.html#accumulatesamples","reference/metrics/labeled_timing_distributions.html#accumulatesinglesample","reference/metrics/labeled_timing_distributions.html#testing-api","reference/metrics/labeled_timing_distributions.html#testgetvalue","reference/metrics/labeled_timing_distributions.html#testgetnumrecordederrors","reference/metrics/labeled_timing_distributions.html#metric-parameters","reference/metrics/labeled_timing_distributions.html#extra-metric-parameters","reference/metrics/labeled_timing_distributions.html#data-questions","reference/metrics/labeled_timing_distributions.html#limits","reference/metrics/labeled_timing_distributions.html#reference","reference/metrics/memory_distribution.html#memory-distribution","reference/metrics/memory_distribution.html#recording-api","reference/metrics/memory_distribution.html#accumulate","reference/metrics/memory_distribution.html#testing-api","reference/metrics/memory_distribution.html#testgetvalue","reference/metrics/memory_distribution.html#testgetnumrecordederrors","reference/metrics/memory_distribution.html#metric-parameters","reference/metrics/memory_distribution.html#extra-metric-parameters","reference/metrics/memory_distribution.html#limits","reference/metrics/memory_distribution.html#data-questions","reference/metrics/memory_distribution.html#reference","reference/metrics/memory_distribution.html#simulator","reference/metrics/labeled_memory_distributions.html#labeled-memory-distributions","reference/metrics/labeled_memory_distributions.html#recording-api","reference/metrics/labeled_memory_distributions.html#accumulate","reference/metrics/labeled_memory_distributions.html#testing-api","reference/metrics/labeled_memory_distributions.html#testgetvalue","reference/metrics/labeled_memory_distributions.html#testgetnumrecordederrors","reference/metrics/labeled_memory_distributions.html#metric-parameters","reference/metrics/labeled_memory_distributions.html#extra-metric-parameters","reference/metrics/labeled_memory_distributions.html#data-questions","reference/metrics/labeled_memory_distributions.html#limits","reference/metrics/labeled_memory_distributions.html#reference","reference/metrics/uuid.html#uuid","reference/metrics/uuid.html#recording-api","reference/metrics/uuid.html#generateandset","reference/metrics/uuid.html#set","reference/metrics/uuid.html#testing-api","reference/metrics/uuid.html#testgetvalue","reference/metrics/uuid.html#testgetnumrecordederrors","reference/metrics/uuid.html#metric-parameters","reference/metrics/uuid.html#extra-metric-parameters","reference/metrics/uuid.html#data-questions","reference/metrics/uuid.html#reference","reference/metrics/url.html#url","reference/metrics/url.html#important","reference/metrics/url.html#recording-api","reference/metrics/url.html#set","reference/metrics/url.html#seturl","reference/metrics/url.html#testing-api","reference/metrics/url.html#testgetvalue","reference/metrics/url.html#testgetnumrecordederrors","reference/metrics/url.html#metric-parameters","reference/metrics/url.html#note-on-data_sensitivity-of-url-metrics","reference/metrics/url.html#extra-metric-parameters","reference/metrics/url.html#data-questions","reference/metrics/datetime.html#datetime","reference/metrics/datetime.html#recording-api","reference/metrics/datetime.html#set","reference/metrics/datetime.html#testing-api","reference/metrics/datetime.html#testgetvalue","reference/metrics/datetime.html#testgetvalueasstring","reference/metrics/datetime.html#testgetnumrecordederrors","reference/metrics/datetime.html#metric-parameters","reference/metrics/datetime.html#extra-metric-parameters","reference/metrics/datetime.html#data-questions","reference/metrics/datetime.html#reference","reference/metrics/event.html#events","reference/metrics/event.html#immediate-submission-or-batching","reference/metrics/event.html#recording-api","reference/metrics/event.html#recordobject","reference/metrics/event.html#testing-api","reference/metrics/event.html#testgetvalue","reference/metrics/event.html#testgetnumrecordederrors","reference/metrics/event.html#metric-parameters","reference/metrics/event.html#extra-metric-parameters","reference/metrics/event.html#data-questions","reference/metrics/event.html#limits","reference/metrics/event.html#reference","reference/metrics/custom_distribution.html#custom-distribution","reference/metrics/custom_distribution.html#recording-api","reference/metrics/custom_distribution.html#accumulatesamples","reference/metrics/custom_distribution.html#accumulatesinglesample","reference/metrics/custom_distribution.html#testing-api","reference/metrics/custom_distribution.html#testgetvalue","reference/metrics/custom_distribution.html#testgetnumrecordederrors","reference/metrics/custom_distribution.html#metric-parameters","reference/metrics/custom_distribution.html#extra-metric-parameters","reference/metrics/custom_distribution.html#reference","reference/metrics/custom_distribution.html#simulator","reference/metrics/labeled_custom_distributions.html#labeled-custom-distributions","reference/metrics/labeled_custom_distributions.html#recording-api","reference/metrics/labeled_custom_distributions.html#accumulatesamples","reference/metrics/labeled_custom_distributions.html#accumulatesinglesample","reference/metrics/labeled_custom_distributions.html#testing-api","reference/metrics/labeled_custom_distributions.html#testgetvalue","reference/metrics/labeled_custom_distributions.html#testgetnumrecordederrors","reference/metrics/labeled_custom_distributions.html#metric-parameters","reference/metrics/labeled_custom_distributions.html#extra-metric-parameters","reference/metrics/labeled_custom_distributions.html#data-questions","reference/metrics/labeled_custom_distributions.html#limits","reference/metrics/labeled_custom_distributions.html#reference","reference/metrics/quantity.html#quantity","reference/metrics/quantity.html#do-not-use-quantity-for-counting","reference/metrics/quantity.html#recording-api","reference/metrics/quantity.html#set","reference/metrics/quantity.html#testing-api","reference/metrics/quantity.html#testgetvalue","reference/metrics/quantity.html#testgetnumrecordederrors","reference/metrics/quantity.html#metric-parameters","reference/metrics/quantity.html#extra-metric-parameters","reference/metrics/quantity.html#data-questions","reference/metrics/quantity.html#reference","reference/metrics/labeled_quantity.html#labeled-quantities","reference/metrics/labeled_quantity.html#do-not-use-labeled-quantity-metrics-for-counting","reference/metrics/labeled_quantity.html#recording-api","reference/metrics/labeled_quantity.html#set","reference/metrics/labeled_quantity.html#testing-api","reference/metrics/labeled_quantity.html#testgetvalue","reference/metrics/labeled_quantity.html#testgetnumrecordederrors","reference/metrics/labeled_quantity.html#metric-parameters","reference/metrics/labeled_quantity.html#extra-metric-parameters","reference/metrics/labeled_quantity.html#data-questions","reference/metrics/labeled_quantity.html#limits","reference/metrics/labeled_quantity.html#reference","reference/metrics/rate.html#rate","reference/metrics/rate.html#let-the-glean-metric-do-the-counting","reference/metrics/rate.html#recording-api","reference/metrics/rate.html#addtonumerator--addtodenominator","reference/metrics/rate.html#testing-api","reference/metrics/rate.html#testgetvalue","reference/metrics/rate.html#testgetnumrecordederrors","reference/metrics/rate.html#metric-parameters","reference/metrics/rate.html#external-denominators","reference/metrics/rate.html#data-questions","reference/metrics/rate.html#reference","reference/metrics/text.html#text","reference/metrics/text.html#important","reference/metrics/text.html#recording-api","reference/metrics/text.html#set","reference/metrics/text.html#testing-api","reference/metrics/text.html#testgetvalue","reference/metrics/text.html#testgetnumrecordederrors","reference/metrics/text.html#metric-parameters","reference/metrics/text.html#data-questions","reference/metrics/object.html#object","reference/metrics/object.html#recording-api","reference/metrics/object.html#set","reference/metrics/object.html#testing-api","reference/metrics/object.html#testgetvalue","reference/metrics/object.html#testgetnumrecordederrors","reference/metrics/object.html#metric-parameters","reference/metrics/object.html#example-object-metric-definition","reference/metrics/object.html#data-questions","reference/pings/index.html#pings","reference/pings/index.html#submission-api","reference/pings/index.html#submit","reference/pings/index.html#testing-api","reference/pings/index.html#getregisteredpingnames","reference/pings/index.html#testbeforenextsubmit","language-bindings/index.html#overview","language-bindings/index.html#rust-core-based-sdks","language-bindings/index.html#rust","language-bindings/index.html#kotlin","language-bindings/index.html#swift","language-bindings/index.html#python","language-bindings/index.html#javascript-core-based-sdks","language-bindings/index.html#javascript","language-bindings/index.html#qml","language-bindings/android/index.html#android-specific-information","language-bindings/android/android-build-configuration-options.html#android-build-script-configuration-options","language-bindings/android/android-build-configuration-options.html#gleanbuilddate","language-bindings/android/android-build-configuration-options.html#allowmetricsfromaar","language-bindings/android/android-build-configuration-options.html#gleangeneratemarkdowndocs","language-bindings/android/android-build-configuration-options.html#gleandocsdirectory","language-bindings/android/android-build-configuration-options.html#gleanyamlfiles","language-bindings/android/android-build-configuration-options.html#gleanexpirebyversion","language-bindings/android/android-build-configuration-options.html#gleanpythonenvdir","language-bindings/android/android-offline-builds.html#offline-builds-of-android-applications-that-use-glean","language-bindings/android/android-offline-builds.html#provide-an-externally-managed-virtualenv","language-bindings/android/android-offline-builds.html#provide-a-python-interpreter-and-the-required-wheels","language-bindings/android/instrument-android-crashes-example.html#instrumenting-android-crashes-with-the-glean-sdk","language-bindings/android/instrument-android-crashes-example.html#before-you-start","language-bindings/android/instrument-android-crashes-example.html#setup-build-configuration","language-bindings/android/instrument-android-crashes-example.html#add-a-custom-metric","language-bindings/android/instrument-android-crashes-example.html#add-a-custom-ping","language-bindings/android/instrument-android-crashes-example.html#instrument-the-app-to-record-the-event","language-bindings/android/instrument-android-crashes-example.html#next-steps","language-bindings/ios/index.html#ios-specific-information","language-bindings/ios/ios-build-configuration-options.html#ios-build-script-configuration-options","language-bindings/ios/ios-build-configuration-options.html#--output----o-path","language-bindings/ios/ios-build-configuration-options.html#--build-date----b","language-bindings/ios/ios-build-configuration-options.html#--expire-by-version","language-bindings/ios/ios-build-configuration-options.html#--markdown----m","language-bindings/ios/ios-build-configuration-options.html#--glean-namespace----g","language-bindings/javascript/index.html#glean-javascript-sdk","language-bindings/javascript/cli.html#command-line-interface","language-bindings/javascript/cli.html#customizing-virtual-environment","language-bindings/javascript/cli.html#what-if-the-glean-command-is-called-from-inside-an-active-virtual-environment","language-bindings/javascript/cli.html#preventing-automatic-installation-of-glean_parser","language-bindings/javascript/plugins/index.html#plugins","language-bindings/javascript/plugins/index.html#on-writing-your-own-plugins","language-bindings/javascript/plugins/index.html#available-plugins","language-bindings/javascript/plugins/index.html#pingencryptionplugin","language-bindings/javascript/plugins/encryption.html#pingencryptionplugin","language-bindings/javascript/plugins/encryption.html#requesting-an-encryption-key","language-bindings/javascript/plugins/encryption.html#usage","language-bindings/javascript/plugins/encryption.html#entry-point","language-bindings/javascript/plugins/encryption.html#instantiating","appendix/glossary.html#glossary","appendix/glossary.html#glean","appendix/glossary.html#glean-pipeline","appendix/glossary.html#glean-sdks","appendix/glossary.html#glean-sdks-book","appendix/glossary.html#glean-tools","appendix/glossary.html#metric","appendix/glossary.html#ping","appendix/glossary.html#submission","appendix/glossary.html#measurement-window","appendix/glossary.html#this-week-in-glean-twig","appendix/changelog/index.html#changelog","appendix/changelog/sdk.html#unreleased-changes","appendix/changelog/sdk.html#v6300-2024-11-28","appendix/changelog/sdk.html#v6200-2024-11-05","appendix/changelog/sdk.html#v6120-2024-10-07","appendix/changelog/sdk.html#v6110-2024-09-24","appendix/changelog/sdk.html#v6100-2024-08-21","appendix/changelog/sdk.html#v6050-2024-08-06","appendix/changelog/sdk.html#v6040-2024-07-23","appendix/changelog/sdk.html#v6030-2024-05-31","appendix/changelog/sdk.html#v6020-2024-05-23","appendix/changelog/sdk.html#v6011-2024-05-31","appendix/changelog/sdk.html#v6010-2024-05-06","appendix/changelog/sdk.html#v6001-2024-05-31","appendix/changelog/sdk.html#v6000-2024-04-22","appendix/changelog/sdk.html#v5900-2024-03-28","appendix/changelog/sdk.html#v5810-2024-03-12","appendix/changelog/sdk.html#v5800-2024-02-29","appendix/changelog/sdk.html#v5700-2024-02-12","appendix/changelog/sdk.html#v5610-2024-01-16","appendix/changelog/sdk.html#v5600-2023-11-30","appendix/changelog/sdk.html#v5500-2023-10-23","appendix/changelog/sdk.html#v5400-2023-09-12","appendix/changelog/sdk.html#v5320-2023-08-02","appendix/changelog/sdk.html#v5310-2023-06-28","appendix/changelog/sdk.html#v5300-2023-06-07","appendix/changelog/sdk.html#v5270-2023-05-10","appendix/changelog/sdk.html#v5260-2023-04-20","appendix/changelog/sdk.html#v5250-2023-04-11","appendix/changelog/sdk.html#v5243-2023-03-24","appendix/changelog/sdk.html#v5242-2023-03-15","appendix/changelog/sdk.html#v5241-2023-03-10","appendix/changelog/sdk.html#v5240-2023-03-09","appendix/changelog/sdk.html#v5231-2023-03-01","appendix/changelog/sdk.html#v5230-2023-02-23","appendix/changelog/sdk.html#v5220-2023-01-30","appendix/changelog/sdk.html#v5211-2023-01-26","appendix/changelog/sdk.html#v5210-2023-01-26","appendix/changelog/sdk.html#v5201-2023-01-19","appendix/changelog/sdk.html#v5200-2022-12-13","appendix/changelog/sdk.html#v5183-2022-11-25","appendix/changelog/sdk.html#v5182-2022-11-17","appendix/changelog/sdk.html#v5181-2022-11-15","appendix/changelog/sdk.html#v5180-2022-11-03","appendix/changelog/sdk.html#v5170-2022-10-25","appendix/changelog/sdk.html#v5160-2022-10-24","appendix/changelog/sdk.html#v5150-2022-10-18","appendix/changelog/sdk.html#v5140-2022-10-04","appendix/changelog/sdk.html#v5130-2022-09-28","appendix/changelog/sdk.html#v5120-2022-09-08","appendix/changelog/sdk.html#v5110-2022-08-08","appendix/changelog/sdk.html#v5101-2022-07-26","appendix/changelog/sdk.html#v5100-2022-07-22","appendix/changelog/sdk.html#v5014-2022-08-01","appendix/changelog/sdk.html#v5013-2022-07-26","appendix/changelog/sdk.html#v5012-2022-07-08","appendix/changelog/sdk.html#v5011-2022-06-17","appendix/changelog/sdk.html#v5010-2022-06-15","appendix/changelog/sdk.html#v5001-2022-05-25","appendix/changelog/sdk.html#v5000-2022-05-20","appendix/changelog/sdk.html#v4420-2022-05-16","appendix/changelog/sdk.html#v4411-2022-04-14","appendix/changelog/sdk.html#v4410-2022-04-06","appendix/changelog/sdk.html#v4400-2022-02-09","appendix/changelog/sdk.html#v4302-2022-01-17","appendix/changelog/sdk.html#v4301-2022-01-17","appendix/changelog/sdk.html#v4300-2022-01-17","appendix/changelog/sdk.html#v4232-2021-12-15","appendix/changelog/sdk.html#v4231-2021-12-07","appendix/changelog/sdk.html#v4230-2021-12-07","appendix/changelog/sdk.html#v4220-2021-11-03","appendix/changelog/sdk.html#v4210-2021-10-18","appendix/changelog/sdk.html#v4201-2021-10-11","appendix/changelog/sdk.html#v4200-2021-10-06","appendix/changelog/sdk.html#v4111-2021-09-29","appendix/changelog/sdk.html#v4110-2021-09-16","appendix/changelog/sdk.html#v4100-2021-09-13","appendix/changelog/sdk.html#v4020-2021-09-08","appendix/changelog/sdk.html#v4011-2021-09-02","appendix/changelog/sdk.html#v4010-2021-08-25","appendix/changelog/sdk.html#v4000-2021-07-28","appendix/changelog/sdk.html#v3910-2021-07-26","appendix/changelog/sdk.html#v3904-2021-07-26","appendix/changelog/sdk.html#v3903-2021-06-09","appendix/changelog/sdk.html#v3902-2021-06-07","appendix/changelog/sdk.html#v3901-2021-06-04","appendix/changelog/sdk.html#v3900-2021-05-31","appendix/changelog/sdk.html#v3801-2021-05-17","appendix/changelog/sdk.html#v3800-2021-05-12","appendix/changelog/sdk.html#v3700-2021-04-30","appendix/changelog/sdk.html#v3601-2021-04-09","appendix/changelog/sdk.html#v3600-2021-03-16","appendix/changelog/sdk.html#v3500-2021-02-22","appendix/changelog/sdk.html#v3410-2021-02-04","appendix/changelog/sdk.html#v3400-2021-01-29","appendix/changelog/sdk.html#v33103-2021-01-18","appendix/changelog/sdk.html#v33102-2021-01-15","appendix/changelog/sdk.html#v33101-2021-01-06","appendix/changelog/sdk.html#v33100-2021-01-06","appendix/changelog/sdk.html#v3391-2020-12-17","appendix/changelog/sdk.html#v3390-2020-12-15","appendix/changelog/sdk.html#v3380-2020-12-10","appendix/changelog/sdk.html#v3370-2020-12-07","appendix/changelog/sdk.html#v3360-2020-12-02","appendix/changelog/sdk.html#v3350-2020-12-01","appendix/changelog/sdk.html#v3340-2020-11-17","appendix/changelog/sdk.html#v3330-2020-11-12","appendix/changelog/sdk.html#v3320-2020-11-10","appendix/changelog/sdk.html#v3312-2020-11-04","appendix/changelog/sdk.html#v3311-2020-11-04","appendix/changelog/sdk.html#v3310-2020-11-04","appendix/changelog/sdk.html#v3304-2020-09-28","appendix/changelog/sdk.html#v3303-2020-09-25","appendix/changelog/sdk.html#v3302-2020-09-25","appendix/changelog/sdk.html#v3301-2020-09-24","appendix/changelog/sdk.html#v3300-2020-09-22","appendix/changelog/sdk.html#v3241-2020-10-01","appendix/changelog/sdk.html#v3240-2020-09-18","appendix/changelog/sdk.html#v3232-2020-09-11","appendix/changelog/sdk.html#v3231-2020-09-09","appendix/changelog/sdk.html#v3230-2020-08-27","appendix/changelog/sdk.html#v3220-2020-08-25","appendix/changelog/sdk.html#v3211-2020-08-24","appendix/changelog/sdk.html#v3210-2020-08-17","appendix/changelog/sdk.html#v3200-2020-08-03","appendix/changelog/sdk.html#v3160-2020-07-24","appendix/changelog/sdk.html#v3150-2020-07-22","appendix/changelog/sdk.html#v3141-2020-07-20","appendix/changelog/sdk.html#v3140-2020-07-16","appendix/changelog/sdk.html#v3130-2020-07-10","appendix/changelog/sdk.html#v3123-2020-06-29","appendix/changelog/sdk.html#v3122-2020-06-26","appendix/changelog/sdk.html#v3121-2020-06-25","appendix/changelog/sdk.html#v3120-2020-06-24","appendix/changelog/sdk.html#v3112-2020-06-23","appendix/changelog/sdk.html#v3111-2020-06-12","appendix/changelog/sdk.html#v3110-2020-06-11","appendix/changelog/sdk.html#v3102-2020-05-29","appendix/changelog/sdk.html#v3101-2020-05-29","appendix/changelog/sdk.html#v3100-2020-05-28","appendix/changelog/sdk.html#v3010-2020-05-22","appendix/changelog/sdk.html#v3000-2020-05-13","appendix/changelog/sdk.html#v2912-2021-01-26","appendix/changelog/sdk.html#v2911-2020-05-22","appendix/changelog/sdk.html#v2910-2020-05-11","appendix/changelog/sdk.html#v2900-2020-05-05","appendix/changelog/sdk.html#v2800-2020-04-23","appendix/changelog/sdk.html#v2710-2020-04-09","appendix/changelog/sdk.html#v2700-2020-04-08","appendix/changelog/sdk.html#v2600-2020-03-27","appendix/changelog/sdk.html#v2510-2020-02-26","appendix/changelog/sdk.html#v2500-2020-02-17","appendix/changelog/sdk.html#v2420-2020-02-11","appendix/changelog/sdk.html#v2410-2020-01-16","appendix/changelog/sdk.html#v2400-2020-01-14","appendix/changelog/sdk.html#v2301-2020-01-08","appendix/changelog/sdk.html#v2300-2020-01-07","appendix/changelog/sdk.html#v2210-2019-12-17","appendix/changelog/sdk.html#v2200-2019-12-05","appendix/changelog/sdk.html#v2130-2019-12-03","appendix/changelog/sdk.html#v2120-2019-11-21","appendix/changelog/sdk.html#v2111-2019-11-20","appendix/changelog/sdk.html#v2110-2019-11-20","appendix/changelog/sdk.html#v2100-2019-11-18","appendix/changelog/sdk.html#v2020-2019-11-11","appendix/changelog/sdk.html#v2010-2019-11-11","appendix/changelog/sdk.html#v2000-2019-11-11","appendix/changelog/sdk.html#v1910-2019-10-29","appendix/changelog/sdk.html#v1900-2019-10-22","appendix/changelog/sdk.html#v001-testing6-2019-10-18","appendix/changelog/sdk.html#v001-testing5-2019-10-10","appendix/changelog/sdk.html#v001-testing4-2019-10-09","appendix/changelog/sdk.html#v001-testing3-2019-10-08","appendix/changelog/sdk.html#v001-testing2-2019-10-07","appendix/changelog/sdk.html#v001-testing1-2019-10-02","appendix/changelog/sdk.html#general","appendix/changelog/js.html#unreleased-changes","appendix/changelog/js.html#v503-2024-08-02","appendix/changelog/js.html#v502-2024-05-23","appendix/changelog/js.html#v501-2024-04-30","appendix/changelog/js.html#v500-2024-03-25","appendix/changelog/js.html#v500-pre0-2024-03-21","appendix/changelog/js.html#v410-pre0-2024-03-05","appendix/changelog/js.html#v400-2024-01-24","appendix/changelog/js.html#v400-pre3-2023-12-22","appendix/changelog/js.html#v400-pre2-2023-12-06","appendix/changelog/js.html#v400-pre1-2023-12-01","appendix/changelog/js.html#v400-pre0-2023-11-27","appendix/changelog/js.html#v300-2023-11-16","appendix/changelog/js.html#v300-pre1-2023-11-15","appendix/changelog/js.html#v300-pre0-2023-11-10","appendix/changelog/js.html#v205-2023-10-16","appendix/changelog/js.html#v204-2023-10-10","appendix/changelog/js.html#v203-2023-09-27","appendix/changelog/js.html#v202-2023-09-14","appendix/changelog/js.html#v201-2023-08-11","appendix/changelog/js.html#v200-2023-08-03","appendix/changelog/js.html#v140-2023-05-10","appendix/changelog/js.html#v130-2022-10-18","appendix/changelog/js.html#v120-2022-09-21","appendix/changelog/js.html#v110-2022-07-18","appendix/changelog/js.html#v100-2022-03-17","appendix/changelog/js.html#v0320-2022-03-01","appendix/changelog/js.html#v0310-2022-01-25","appendix/changelog/js.html#v0300-2022-01-10","appendix/changelog/js.html#v0290-2022-01-04","appendix/changelog/js.html#v0280-2021-12-08","appendix/changelog/js.html#v0270-2021-11-22","appendix/changelog/js.html#v0260-2021-11-19","appendix/changelog/js.html#v0250-2021-11-15","appendix/changelog/js.html#v0240-2021-11-04","appendix/changelog/js.html#v0230-2021-10-12","appendix/changelog/js.html#v0220-2021-10-06","appendix/changelog/js.html#v0211-2021-09-30","appendix/changelog/js.html#v0210-2021-09-30","appendix/changelog/js.html#v0200-2021-09-17","appendix/changelog/js.html#v0190-2021-09-03","appendix/changelog/js.html#v0181-2021-07-22","appendix/changelog/js.html#v0180-2021-07-20","appendix/changelog/js.html#v0170-2021-07-16","appendix/changelog/js.html#v0160-2021-07-06","appendix/changelog/js.html#v0150-2021-06-03","appendix/changelog/js.html#v0141-2021-05-21","appendix/changelog/js.html#v0140-2021-05-19","appendix/changelog/js.html#v0130-2021-05-18","appendix/changelog/js.html#v0120-2021-05-11","appendix/changelog/js.html#v0110-2021-05-03","appendix/changelog/js.html#v0102-2021-04-26","appendix/changelog/js.html#v0101-2021-04-26","appendix/changelog/js.html#v0100-2021-04-20","appendix/changelog/js.html#v092-2021-04-19","appendix/changelog/js.html#v091-2021-04-19","appendix/changelog/js.html#v090-2021-04-19","appendix/changelog/js.html#v081-2021-04-14","appendix/changelog/js.html#v080-2021-04-13","appendix/changelog/js.html#v070-2021-03-26","appendix/changelog/js.html#v061-2021-03-22","appendix/changelog/js.html#v060-2021-03-22","appendix/changelog/js.html#v050-2021-03-18","appendix/changelog/js.html#v040-2021-03-10","appendix/changelog/js.html#v030-2021-02-24","appendix/changelog/js.html#v020-2021-02-23","appendix/changelog/js.html#v011-2021-02-17","appendix/changelog/js.html#v010-2021-02-17","appendix/twig.html#this-week-in-glean-twig","appendix/twig.html#blog-posts","appendix/contribution-guidelines.html#contribution-guidelines","appendix/contribution-guidelines.html#table-of-contents","appendix/contribution-guidelines.html#where-to-add-new-content","appendix/contribution-guidelines.html#overview","appendix/contribution-guidelines.html#user-guides","appendix/contribution-guidelines.html#api-reference","appendix/contribution-guidelines.html#sdk-specific-information","appendix/contribution-guidelines.html#appendix","appendix/contribution-guidelines.html#in-which-format-to-present-content","appendix/contribution-guidelines.html#general-guidelines","appendix/contribution-guidelines.html#custom-elements"],"index":{"documentStore":{"docInfo":{"0":{"body":106,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":33,"breadcrumbs":8,"title":4},"100":{"body":275,"breadcrumbs":6,"title":2},"101":{"body":50,"breadcrumbs":7,"title":3},"102":{"body":6,"breadcrumbs":7,"title":3},"103":{"body":60,"breadcrumbs":7,"title":3},"104":{"body":71,"breadcrumbs":9,"title":5},"105":{"body":37,"breadcrumbs":6,"title":2},"106":{"body":26,"breadcrumbs":9,"title":5},"107":{"body":64,"breadcrumbs":8,"title":4},"108":{"body":57,"breadcrumbs":8,"title":4},"109":{"body":43,"breadcrumbs":7,"title":3},"11":{"body":116,"breadcrumbs":7,"title":3},"110":{"body":155,"breadcrumbs":5,"title":1},"111":{"body":64,"breadcrumbs":7,"title":4},"112":{"body":142,"breadcrumbs":7,"title":4},"113":{"body":23,"breadcrumbs":7,"title":4},"114":{"body":31,"breadcrumbs":5,"title":2},"115":{"body":105,"breadcrumbs":6,"title":3},"116":{"body":29,"breadcrumbs":5,"title":2},"117":{"body":179,"breadcrumbs":6,"title":3},"118":{"body":34,"breadcrumbs":9,"title":6},"119":{"body":28,"breadcrumbs":8,"title":5},"12":{"body":44,"breadcrumbs":7,"title":3},"120":{"body":123,"breadcrumbs":5,"title":2},"121":{"body":9,"breadcrumbs":14,"title":9},"122":{"body":24,"breadcrumbs":6,"title":1},"123":{"body":5,"breadcrumbs":6,"title":1},"124":{"body":132,"breadcrumbs":6,"title":1},"125":{"body":165,"breadcrumbs":6,"title":1},"126":{"body":76,"breadcrumbs":7,"title":2},"127":{"body":424,"breadcrumbs":6,"title":1},"128":{"body":36,"breadcrumbs":2,"title":1},"129":{"body":67,"breadcrumbs":3,"title":2},"13":{"body":164,"breadcrumbs":10,"title":6},"130":{"body":84,"breadcrumbs":3,"title":2},"131":{"body":160,"breadcrumbs":3,"title":2},"132":{"body":319,"breadcrumbs":3,"title":2},"133":{"body":18,"breadcrumbs":3,"title":2},"134":{"body":54,"breadcrumbs":2,"title":1},"135":{"body":122,"breadcrumbs":2,"title":1},"136":{"body":182,"breadcrumbs":3,"title":2},"137":{"body":65,"breadcrumbs":7,"title":2},"138":{"body":74,"breadcrumbs":8,"title":3},"139":{"body":12,"breadcrumbs":9,"title":4},"14":{"body":33,"breadcrumbs":8,"title":4},"140":{"body":61,"breadcrumbs":10,"title":5},"141":{"body":24,"breadcrumbs":7,"title":2},"142":{"body":259,"breadcrumbs":10,"title":5},"143":{"body":13,"breadcrumbs":7,"title":3},"144":{"body":52,"breadcrumbs":7,"title":3},"145":{"body":90,"breadcrumbs":7,"title":3},"146":{"body":30,"breadcrumbs":8,"title":4},"147":{"body":8,"breadcrumbs":8,"title":4},"148":{"body":14,"breadcrumbs":5,"title":1},"149":{"body":52,"breadcrumbs":5,"title":1},"15":{"body":2,"breadcrumbs":5,"title":1},"150":{"body":19,"breadcrumbs":5,"title":1},"151":{"body":50,"breadcrumbs":5,"title":1},"152":{"body":0,"breadcrumbs":8,"title":2},"153":{"body":15,"breadcrumbs":7,"title":1},"154":{"body":10,"breadcrumbs":8,"title":2},"155":{"body":57,"breadcrumbs":7,"title":1},"156":{"body":15,"breadcrumbs":7,"title":1},"157":{"body":32,"breadcrumbs":9,"title":3},"158":{"body":64,"breadcrumbs":9,"title":3},"159":{"body":0,"breadcrumbs":10,"title":3},"16":{"body":34,"breadcrumbs":7,"title":3},"160":{"body":84,"breadcrumbs":8,"title":1},"161":{"body":11,"breadcrumbs":9,"title":2},"162":{"body":13,"breadcrumbs":8,"title":1},"163":{"body":9,"breadcrumbs":8,"title":1},"164":{"body":59,"breadcrumbs":11,"title":4},"165":{"body":0,"breadcrumbs":8,"title":2},"166":{"body":20,"breadcrumbs":7,"title":1},"167":{"body":10,"breadcrumbs":8,"title":2},"168":{"body":45,"breadcrumbs":7,"title":1},"169":{"body":33,"breadcrumbs":9,"title":3},"17":{"body":194,"breadcrumbs":10,"title":6},"170":{"body":74,"breadcrumbs":7,"title":1},"171":{"body":73,"breadcrumbs":9,"title":3},"172":{"body":0,"breadcrumbs":8,"title":2},"173":{"body":91,"breadcrumbs":7,"title":1},"174":{"body":10,"breadcrumbs":8,"title":2},"175":{"body":172,"breadcrumbs":7,"title":1},"176":{"body":39,"breadcrumbs":7,"title":1},"177":{"body":11,"breadcrumbs":9,"title":3},"178":{"body":0,"breadcrumbs":8,"title":2},"179":{"body":42,"breadcrumbs":11,"title":5},"18":{"body":28,"breadcrumbs":8,"title":4},"180":{"body":45,"breadcrumbs":11,"title":5},"181":{"body":45,"breadcrumbs":10,"title":4},"182":{"body":45,"breadcrumbs":16,"title":10},"183":{"body":120,"breadcrumbs":17,"title":11},"184":{"body":249,"breadcrumbs":11,"title":4},"185":{"body":96,"breadcrumbs":12,"title":6},"186":{"body":15,"breadcrumbs":7,"title":1},"187":{"body":95,"breadcrumbs":16,"title":6},"188":{"body":16,"breadcrumbs":11,"title":1},"189":{"body":0,"breadcrumbs":14,"title":2},"19":{"body":126,"breadcrumbs":7,"title":3},"190":{"body":150,"breadcrumbs":14,"title":2},"191":{"body":79,"breadcrumbs":14,"title":2},"192":{"body":29,"breadcrumbs":14,"title":2},"193":{"body":12,"breadcrumbs":15,"title":3},"194":{"body":71,"breadcrumbs":15,"title":3},"195":{"body":181,"breadcrumbs":17,"title":5},"196":{"body":0,"breadcrumbs":15,"title":3},"197":{"body":71,"breadcrumbs":15,"title":3},"198":{"body":138,"breadcrumbs":17,"title":5},"199":{"body":42,"breadcrumbs":14,"title":2},"2":{"body":42,"breadcrumbs":3,"title":2},"20":{"body":59,"breadcrumbs":8,"title":4},"200":{"body":13,"breadcrumbs":14,"title":2},"201":{"body":0,"breadcrumbs":14,"title":2},"202":{"body":42,"breadcrumbs":16,"title":4},"203":{"body":347,"breadcrumbs":13,"title":1},"204":{"body":40,"breadcrumbs":14,"title":2},"205":{"body":49,"breadcrumbs":16,"title":3},"206":{"body":94,"breadcrumbs":16,"title":6},"207":{"body":9,"breadcrumbs":11,"title":1},"208":{"body":71,"breadcrumbs":14,"title":2},"209":{"body":35,"breadcrumbs":14,"title":2},"21":{"body":126,"breadcrumbs":6,"title":2},"210":{"body":13,"breadcrumbs":14,"title":2},"211":{"body":13,"breadcrumbs":10,"title":2},"212":{"body":35,"breadcrumbs":9,"title":1},"213":{"body":34,"breadcrumbs":14,"title":2},"214":{"body":8,"breadcrumbs":14,"title":2},"215":{"body":10,"breadcrumbs":9,"title":5},"216":{"body":0,"breadcrumbs":5,"title":1},"217":{"body":6,"breadcrumbs":6,"title":2},"218":{"body":79,"breadcrumbs":7,"title":3},"219":{"body":8,"breadcrumbs":6,"title":2},"22":{"body":228,"breadcrumbs":5,"title":1},"220":{"body":3,"breadcrumbs":6,"title":2},"221":{"body":58,"breadcrumbs":6,"title":2},"222":{"body":23,"breadcrumbs":7,"title":3},"223":{"body":70,"breadcrumbs":9,"title":5},"224":{"body":358,"breadcrumbs":11,"title":6},"225":{"body":17,"breadcrumbs":10,"title":5},"226":{"body":50,"breadcrumbs":7,"title":2},"227":{"body":69,"breadcrumbs":7,"title":2},"228":{"body":0,"breadcrumbs":11,"title":6},"229":{"body":25,"breadcrumbs":12,"title":7},"23":{"body":28,"breadcrumbs":8,"title":4},"230":{"body":40,"breadcrumbs":13,"title":8},"231":{"body":210,"breadcrumbs":9,"title":4},"232":{"body":226,"breadcrumbs":12,"title":7},"233":{"body":208,"breadcrumbs":10,"title":5},"234":{"body":85,"breadcrumbs":8,"title":3},"235":{"body":16,"breadcrumbs":11,"title":6},"236":{"body":20,"breadcrumbs":7,"title":2},"237":{"body":51,"breadcrumbs":7,"title":2},"238":{"body":27,"breadcrumbs":8,"title":3},"239":{"body":59,"breadcrumbs":8,"title":3},"24":{"body":11,"breadcrumbs":7,"title":3},"240":{"body":18,"breadcrumbs":10,"title":5},"241":{"body":40,"breadcrumbs":7,"title":2},"242":{"body":30,"breadcrumbs":7,"title":2},"243":{"body":11,"breadcrumbs":7,"title":2},"244":{"body":10,"breadcrumbs":6,"title":1},"245":{"body":15,"breadcrumbs":8,"title":3},"246":{"body":9,"breadcrumbs":3,"title":1},"247":{"body":9,"breadcrumbs":5,"title":3},"248":{"body":12,"breadcrumbs":5,"title":3},"249":{"body":10,"breadcrumbs":6,"title":4},"25":{"body":0,"breadcrumbs":10,"title":6},"250":{"body":0,"breadcrumbs":9,"title":4},"251":{"body":31,"breadcrumbs":6,"title":1},"252":{"body":38,"breadcrumbs":6,"title":1},"253":{"body":19,"breadcrumbs":7,"title":2},"254":{"body":476,"breadcrumbs":7,"title":2},"255":{"body":0,"breadcrumbs":8,"title":3},"256":{"body":20,"breadcrumbs":12,"title":7},"257":{"body":0,"breadcrumbs":8,"title":3},"258":{"body":182,"breadcrumbs":13,"title":8},"259":{"body":80,"breadcrumbs":14,"title":9},"26":{"body":69,"breadcrumbs":7,"title":3},"260":{"body":0,"breadcrumbs":6,"title":1},"261":{"body":51,"breadcrumbs":9,"title":4},"262":{"body":35,"breadcrumbs":8,"title":3},"263":{"body":19,"breadcrumbs":9,"title":4},"264":{"body":44,"breadcrumbs":8,"title":3},"265":{"body":13,"breadcrumbs":10,"title":4},"266":{"body":23,"breadcrumbs":8,"title":2},"267":{"body":37,"breadcrumbs":11,"title":5},"268":{"body":35,"breadcrumbs":11,"title":5},"269":{"body":23,"breadcrumbs":10,"title":4},"27":{"body":33,"breadcrumbs":7,"title":3},"270":{"body":20,"breadcrumbs":10,"title":4},"271":{"body":35,"breadcrumbs":10,"title":4},"272":{"body":24,"breadcrumbs":12,"title":6},"273":{"body":17,"breadcrumbs":9,"title":3},"274":{"body":17,"breadcrumbs":12,"title":6},"275":{"body":38,"breadcrumbs":9,"title":3},"276":{"body":72,"breadcrumbs":6,"title":3},"277":{"body":10,"breadcrumbs":5,"title":2},"278":{"body":10,"breadcrumbs":5,"title":2},"279":{"body":15,"breadcrumbs":5,"title":2},"28":{"body":23,"breadcrumbs":6,"title":2},"280":{"body":47,"breadcrumbs":8,"title":4},"281":{"body":23,"breadcrumbs":7,"title":3},"282":{"body":36,"breadcrumbs":6,"title":2},"283":{"body":13,"breadcrumbs":5,"title":1},"284":{"body":8,"breadcrumbs":5,"title":1},"285":{"body":62,"breadcrumbs":5,"title":1},"286":{"body":30,"breadcrumbs":5,"title":1},"287":{"body":19,"breadcrumbs":6,"title":2},"288":{"body":318,"breadcrumbs":6,"title":2},"289":{"body":579,"breadcrumbs":6,"title":2},"29":{"body":42,"breadcrumbs":8,"title":4},"290":{"body":49,"breadcrumbs":8,"title":4},"291":{"body":23,"breadcrumbs":7,"title":3},"292":{"body":24,"breadcrumbs":6,"title":2},"293":{"body":13,"breadcrumbs":5,"title":1},"294":{"body":50,"breadcrumbs":5,"title":1},"295":{"body":13,"breadcrumbs":7,"title":3},"296":{"body":0,"breadcrumbs":6,"title":2},"297":{"body":155,"breadcrumbs":6,"title":2},"298":{"body":36,"breadcrumbs":6,"title":2},"299":{"body":44,"breadcrumbs":8,"title":4},"3":{"body":17,"breadcrumbs":3,"title":2},"30":{"body":16,"breadcrumbs":5,"title":1},"300":{"body":23,"breadcrumbs":7,"title":3},"301":{"body":11,"breadcrumbs":6,"title":2},"302":{"body":13,"breadcrumbs":5,"title":1},"303":{"body":24,"breadcrumbs":5,"title":1},"304":{"body":0,"breadcrumbs":6,"title":2},"305":{"body":12,"breadcrumbs":6,"title":2},"306":{"body":40,"breadcrumbs":4,"title":2},"307":{"body":75,"breadcrumbs":3,"title":1},"308":{"body":26,"breadcrumbs":4,"title":1},"309":{"body":13,"breadcrumbs":7,"title":4},"31":{"body":67,"breadcrumbs":8,"title":4},"310":{"body":28,"breadcrumbs":5,"title":2},"311":{"body":0,"breadcrumbs":6,"title":3},"312":{"body":19,"breadcrumbs":5,"title":2},"313":{"body":44,"breadcrumbs":5,"title":2},"314":{"body":0,"breadcrumbs":4,"title":1},"315":{"body":432,"breadcrumbs":4,"title":1},"316":{"body":324,"breadcrumbs":8,"title":5},"317":{"body":95,"breadcrumbs":5,"title":2},"318":{"body":412,"breadcrumbs":5,"title":2},"319":{"body":17,"breadcrumbs":4,"title":1},"32":{"body":106,"breadcrumbs":7,"title":3},"320":{"body":21,"breadcrumbs":8,"title":3},"321":{"body":30,"breadcrumbs":7,"title":2},"322":{"body":23,"breadcrumbs":7,"title":2},"323":{"body":0,"breadcrumbs":6,"title":1},"324":{"body":68,"breadcrumbs":6,"title":1},"325":{"body":17,"breadcrumbs":6,"title":1},"326":{"body":77,"breadcrumbs":7,"title":3},"327":{"body":0,"breadcrumbs":6,"title":2},"328":{"body":161,"breadcrumbs":5,"title":1},"329":{"body":41,"breadcrumbs":5,"title":1},"33":{"body":35,"breadcrumbs":8,"title":4},"330":{"body":67,"breadcrumbs":7,"title":3},"331":{"body":0,"breadcrumbs":6,"title":2},"332":{"body":22,"breadcrumbs":5,"title":1},"333":{"body":62,"breadcrumbs":5,"title":1},"334":{"body":36,"breadcrumbs":5,"title":1},"335":{"body":14,"breadcrumbs":5,"title":1},"336":{"body":15,"breadcrumbs":8,"title":3},"337":{"body":0,"breadcrumbs":6,"title":1},"338":{"body":147,"breadcrumbs":6,"title":1},"339":{"body":18,"breadcrumbs":6,"title":2},"34":{"body":55,"breadcrumbs":7,"title":3},"340":{"body":52,"breadcrumbs":8,"title":4},"341":{"body":0,"breadcrumbs":5,"title":1},"342":{"body":73,"breadcrumbs":5,"title":1},"343":{"body":8,"breadcrumbs":5,"title":1},"344":{"body":17,"breadcrumbs":9,"title":3},"345":{"body":11,"breadcrumbs":7,"title":1},"346":{"body":57,"breadcrumbs":7,"title":1},"347":{"body":67,"breadcrumbs":7,"title":1},"348":{"body":25,"breadcrumbs":2,"title":1},"349":{"body":33,"breadcrumbs":4,"title":3},"35":{"body":53,"breadcrumbs":10,"title":6},"350":{"body":6,"breadcrumbs":2,"title":1},"351":{"body":9,"breadcrumbs":3,"title":2},"352":{"body":11,"breadcrumbs":4,"title":3},"353":{"body":9,"breadcrumbs":3,"title":2},"354":{"body":20,"breadcrumbs":3,"title":2},"355":{"body":17,"breadcrumbs":5,"title":2},"356":{"body":18,"breadcrumbs":5,"title":2},"357":{"body":6,"breadcrumbs":4,"title":1},"358":{"body":0,"breadcrumbs":4,"title":1},"359":{"body":21,"breadcrumbs":4,"title":1},"36":{"body":0,"breadcrumbs":6,"title":2},"360":{"body":14,"breadcrumbs":4,"title":1},"361":{"body":0,"breadcrumbs":5,"title":2},"362":{"body":66,"breadcrumbs":4,"title":1},"363":{"body":35,"breadcrumbs":7,"title":3},"364":{"body":19,"breadcrumbs":5,"title":1},"365":{"body":0,"breadcrumbs":5,"title":1},"366":{"body":31,"breadcrumbs":5,"title":1},"367":{"body":23,"breadcrumbs":5,"title":1},"368":{"body":0,"breadcrumbs":6,"title":2},"369":{"body":70,"breadcrumbs":5,"title":1},"37":{"body":69,"breadcrumbs":5,"title":1},"370":{"body":35,"breadcrumbs":5,"title":2},"371":{"body":60,"breadcrumbs":4,"title":1},"372":{"body":0,"breadcrumbs":4,"title":1},"373":{"body":44,"breadcrumbs":4,"title":1},"374":{"body":0,"breadcrumbs":5,"title":2},"375":{"body":76,"breadcrumbs":4,"title":1},"376":{"body":246,"breadcrumbs":3,"title":1},"377":{"body":131,"breadcrumbs":4,"title":2},"378":{"body":9,"breadcrumbs":4,"title":2},"379":{"body":51,"breadcrumbs":6,"title":4},"38":{"body":39,"breadcrumbs":8,"title":4},"380":{"body":8,"breadcrumbs":4,"title":2},"381":{"body":6,"breadcrumbs":4,"title":1},"382":{"body":0,"breadcrumbs":5,"title":2},"383":{"body":39,"breadcrumbs":4,"title":1},"384":{"body":0,"breadcrumbs":5,"title":2},"385":{"body":68,"breadcrumbs":4,"title":1},"386":{"body":31,"breadcrumbs":4,"title":1},"387":{"body":38,"breadcrumbs":5,"title":2},"388":{"body":1,"breadcrumbs":6,"title":3},"389":{"body":2,"breadcrumbs":5,"title":2},"39":{"body":28,"breadcrumbs":8,"title":4},"390":{"body":14,"breadcrumbs":4,"title":1},"391":{"body":8,"breadcrumbs":6,"title":2},"392":{"body":0,"breadcrumbs":6,"title":2},"393":{"body":119,"breadcrumbs":5,"title":1},"394":{"body":0,"breadcrumbs":6,"title":2},"395":{"body":99,"breadcrumbs":5,"title":1},"396":{"body":61,"breadcrumbs":5,"title":1},"397":{"body":27,"breadcrumbs":6,"title":2},"398":{"body":104,"breadcrumbs":7,"title":3},"399":{"body":3,"breadcrumbs":6,"title":2},"4":{"body":19,"breadcrumbs":4,"title":3},"40":{"body":4,"breadcrumbs":5,"title":1},"400":{"body":20,"breadcrumbs":5,"title":1},"401":{"body":45,"breadcrumbs":4,"title":1},"402":{"body":31,"breadcrumbs":6,"title":3},"403":{"body":0,"breadcrumbs":5,"title":2},"404":{"body":108,"breadcrumbs":4,"title":1},"405":{"body":0,"breadcrumbs":5,"title":2},"406":{"body":77,"breadcrumbs":4,"title":1},"407":{"body":48,"breadcrumbs":4,"title":1},"408":{"body":37,"breadcrumbs":5,"title":2},"409":{"body":1,"breadcrumbs":6,"title":3},"41":{"body":39,"breadcrumbs":7,"title":3},"410":{"body":3,"breadcrumbs":5,"title":2},"411":{"body":14,"breadcrumbs":4,"title":1},"412":{"body":35,"breadcrumbs":6,"title":2},"413":{"body":0,"breadcrumbs":6,"title":2},"414":{"body":192,"breadcrumbs":5,"title":1},"415":{"body":0,"breadcrumbs":6,"title":2},"416":{"body":110,"breadcrumbs":5,"title":1},"417":{"body":59,"breadcrumbs":5,"title":1},"418":{"body":28,"breadcrumbs":6,"title":2},"419":{"body":104,"breadcrumbs":7,"title":3},"42":{"body":18,"breadcrumbs":7,"title":3},"420":{"body":6,"breadcrumbs":6,"title":2},"421":{"body":20,"breadcrumbs":5,"title":1},"422":{"body":22,"breadcrumbs":4,"title":1},"423":{"body":15,"breadcrumbs":4,"title":1},"424":{"body":0,"breadcrumbs":5,"title":2},"425":{"body":134,"breadcrumbs":4,"title":1},"426":{"body":0,"breadcrumbs":5,"title":2},"427":{"body":110,"breadcrumbs":4,"title":1},"428":{"body":69,"breadcrumbs":4,"title":1},"429":{"body":37,"breadcrumbs":5,"title":2},"43":{"body":17,"breadcrumbs":8,"title":4},"430":{"body":1,"breadcrumbs":6,"title":3},"431":{"body":13,"breadcrumbs":5,"title":2},"432":{"body":14,"breadcrumbs":4,"title":1},"433":{"body":11,"breadcrumbs":6,"title":2},"434":{"body":0,"breadcrumbs":6,"title":2},"435":{"body":140,"breadcrumbs":5,"title":1},"436":{"body":0,"breadcrumbs":6,"title":2},"437":{"body":95,"breadcrumbs":5,"title":1},"438":{"body":60,"breadcrumbs":5,"title":1},"439":{"body":31,"breadcrumbs":6,"title":2},"44":{"body":83,"breadcrumbs":9,"title":5},"440":{"body":104,"breadcrumbs":7,"title":3},"441":{"body":7,"breadcrumbs":6,"title":2},"442":{"body":20,"breadcrumbs":5,"title":1},"443":{"body":29,"breadcrumbs":6,"title":2},"444":{"body":0,"breadcrumbs":6,"title":2},"445":{"body":94,"breadcrumbs":5,"title":1},"446":{"body":105,"breadcrumbs":5,"title":1},"447":{"body":0,"breadcrumbs":6,"title":2},"448":{"body":101,"breadcrumbs":5,"title":1},"449":{"body":41,"breadcrumbs":5,"title":1},"45":{"body":0,"breadcrumbs":6,"title":2},"450":{"body":39,"breadcrumbs":6,"title":2},"451":{"body":1,"breadcrumbs":7,"title":3},"452":{"body":3,"breadcrumbs":6,"title":2},"453":{"body":14,"breadcrumbs":5,"title":1},"454":{"body":45,"breadcrumbs":4,"title":1},"455":{"body":0,"breadcrumbs":5,"title":2},"456":{"body":128,"breadcrumbs":4,"title":1},"457":{"body":65,"breadcrumbs":4,"title":1},"458":{"body":49,"breadcrumbs":4,"title":1},"459":{"body":45,"breadcrumbs":4,"title":1},"46":{"body":57,"breadcrumbs":5,"title":1},"460":{"body":14,"breadcrumbs":4,"title":1},"461":{"body":55,"breadcrumbs":4,"title":1},"462":{"body":52,"breadcrumbs":4,"title":1},"463":{"body":0,"breadcrumbs":5,"title":2},"464":{"body":78,"breadcrumbs":4,"title":1},"465":{"body":42,"breadcrumbs":4,"title":1},"466":{"body":41,"breadcrumbs":5,"title":2},"467":{"body":39,"breadcrumbs":6,"title":3},"468":{"body":16,"breadcrumbs":5,"title":2},"469":{"body":4,"breadcrumbs":5,"title":2},"47":{"body":22,"breadcrumbs":8,"title":4},"470":{"body":14,"breadcrumbs":4,"title":1},"471":{"body":156,"breadcrumbs":6,"title":2},"472":{"body":0,"breadcrumbs":6,"title":2},"473":{"body":92,"breadcrumbs":5,"title":1},"474":{"body":63,"breadcrumbs":5,"title":1},"475":{"body":86,"breadcrumbs":5,"title":1},"476":{"body":154,"breadcrumbs":5,"title":1},"477":{"body":25,"breadcrumbs":5,"title":1},"478":{"body":53,"breadcrumbs":5,"title":1},"479":{"body":0,"breadcrumbs":6,"title":2},"48":{"body":44,"breadcrumbs":5,"title":1},"480":{"body":179,"breadcrumbs":5,"title":1},"481":{"body":57,"breadcrumbs":5,"title":1},"482":{"body":28,"breadcrumbs":6,"title":2},"483":{"body":23,"breadcrumbs":7,"title":3},"484":{"body":76,"breadcrumbs":5,"title":1},"485":{"body":4,"breadcrumbs":6,"title":2},"486":{"body":6,"breadcrumbs":5,"title":1},"487":{"body":82,"breadcrumbs":5,"title":1},"488":{"body":23,"breadcrumbs":8,"title":3},"489":{"body":0,"breadcrumbs":7,"title":2},"49":{"body":0,"breadcrumbs":5,"title":1},"490":{"body":61,"breadcrumbs":6,"title":1},"491":{"body":67,"breadcrumbs":6,"title":1},"492":{"body":46,"breadcrumbs":6,"title":1},"493":{"body":114,"breadcrumbs":6,"title":1},"494":{"body":116,"breadcrumbs":6,"title":1},"495":{"body":0,"breadcrumbs":7,"title":2},"496":{"body":81,"breadcrumbs":6,"title":1},"497":{"body":23,"breadcrumbs":6,"title":1},"498":{"body":35,"breadcrumbs":7,"title":2},"499":{"body":127,"breadcrumbs":8,"title":3},"5":{"body":62,"breadcrumbs":2,"title":1},"50":{"body":40,"breadcrumbs":10,"title":6},"500":{"body":17,"breadcrumbs":7,"title":2},"501":{"body":81,"breadcrumbs":6,"title":1},"502":{"body":10,"breadcrumbs":6,"title":1},"503":{"body":45,"breadcrumbs":6,"title":2},"504":{"body":0,"breadcrumbs":6,"title":2},"505":{"body":69,"breadcrumbs":5,"title":1},"506":{"body":0,"breadcrumbs":6,"title":2},"507":{"body":192,"breadcrumbs":5,"title":1},"508":{"body":60,"breadcrumbs":5,"title":1},"509":{"body":25,"breadcrumbs":6,"title":2},"51":{"body":26,"breadcrumbs":8,"title":4},"510":{"body":30,"breadcrumbs":7,"title":3},"511":{"body":13,"breadcrumbs":5,"title":1},"512":{"body":4,"breadcrumbs":6,"title":2},"513":{"body":9,"breadcrumbs":5,"title":1},"514":{"body":83,"breadcrumbs":5,"title":1},"515":{"body":19,"breadcrumbs":8,"title":3},"516":{"body":0,"breadcrumbs":7,"title":2},"517":{"body":60,"breadcrumbs":6,"title":1},"518":{"body":0,"breadcrumbs":7,"title":2},"519":{"body":80,"breadcrumbs":6,"title":1},"52":{"body":48,"breadcrumbs":8,"title":4},"520":{"body":24,"breadcrumbs":6,"title":1},"521":{"body":35,"breadcrumbs":7,"title":2},"522":{"body":134,"breadcrumbs":8,"title":3},"523":{"body":15,"breadcrumbs":7,"title":2},"524":{"body":59,"breadcrumbs":6,"title":1},"525":{"body":10,"breadcrumbs":6,"title":1},"526":{"body":11,"breadcrumbs":4,"title":1},"527":{"body":0,"breadcrumbs":5,"title":2},"528":{"body":65,"breadcrumbs":4,"title":1},"529":{"body":102,"breadcrumbs":4,"title":1},"53":{"body":21,"breadcrumbs":8,"title":4},"530":{"body":0,"breadcrumbs":5,"title":2},"531":{"body":110,"breadcrumbs":4,"title":1},"532":{"body":53,"breadcrumbs":4,"title":1},"533":{"body":39,"breadcrumbs":5,"title":2},"534":{"body":1,"breadcrumbs":6,"title":3},"535":{"body":3,"breadcrumbs":5,"title":2},"536":{"body":14,"breadcrumbs":4,"title":1},"537":{"body":20,"breadcrumbs":4,"title":1},"538":{"body":32,"breadcrumbs":4,"title":1},"539":{"body":0,"breadcrumbs":5,"title":2},"54":{"body":36,"breadcrumbs":10,"title":6},"540":{"body":41,"breadcrumbs":4,"title":1},"541":{"body":51,"breadcrumbs":4,"title":1},"542":{"body":0,"breadcrumbs":5,"title":2},"543":{"body":67,"breadcrumbs":4,"title":1},"544":{"body":64,"breadcrumbs":4,"title":1},"545":{"body":42,"breadcrumbs":5,"title":2},"546":{"body":12,"breadcrumbs":7,"title":4},"547":{"body":1,"breadcrumbs":6,"title":3},"548":{"body":13,"breadcrumbs":5,"title":2},"549":{"body":33,"breadcrumbs":4,"title":1},"55":{"body":9,"breadcrumbs":10,"title":6},"550":{"body":0,"breadcrumbs":5,"title":2},"551":{"body":143,"breadcrumbs":4,"title":1},"552":{"body":0,"breadcrumbs":5,"title":2},"553":{"body":146,"breadcrumbs":4,"title":1},"554":{"body":80,"breadcrumbs":4,"title":1},"555":{"body":48,"breadcrumbs":4,"title":1},"556":{"body":40,"breadcrumbs":5,"title":2},"557":{"body":32,"breadcrumbs":6,"title":3},"558":{"body":4,"breadcrumbs":5,"title":2},"559":{"body":14,"breadcrumbs":4,"title":1},"56":{"body":13,"breadcrumbs":7,"title":3},"560":{"body":58,"breadcrumbs":4,"title":1},"561":{"body":18,"breadcrumbs":6,"title":3},"562":{"body":0,"breadcrumbs":5,"title":2},"563":{"body":134,"breadcrumbs":4,"title":1},"564":{"body":0,"breadcrumbs":5,"title":2},"565":{"body":179,"breadcrumbs":4,"title":1},"566":{"body":52,"breadcrumbs":4,"title":1},"567":{"body":64,"breadcrumbs":5,"title":2},"568":{"body":69,"breadcrumbs":6,"title":3},"569":{"body":3,"breadcrumbs":5,"title":2},"57":{"body":28,"breadcrumbs":11,"title":5},"570":{"body":53,"breadcrumbs":4,"title":1},"571":{"body":14,"breadcrumbs":4,"title":1},"572":{"body":35,"breadcrumbs":6,"title":2},"573":{"body":0,"breadcrumbs":6,"title":2},"574":{"body":24,"breadcrumbs":5,"title":1},"575":{"body":40,"breadcrumbs":5,"title":1},"576":{"body":0,"breadcrumbs":6,"title":2},"577":{"body":130,"breadcrumbs":5,"title":1},"578":{"body":54,"breadcrumbs":5,"title":1},"579":{"body":40,"breadcrumbs":6,"title":2},"58":{"body":2,"breadcrumbs":7,"title":1},"580":{"body":72,"breadcrumbs":7,"title":3},"581":{"body":3,"breadcrumbs":5,"title":1},"582":{"body":45,"breadcrumbs":5,"title":1},"583":{"body":29,"breadcrumbs":8,"title":3},"584":{"body":0,"breadcrumbs":7,"title":2},"585":{"body":67,"breadcrumbs":6,"title":1},"586":{"body":68,"breadcrumbs":6,"title":1},"587":{"body":0,"breadcrumbs":7,"title":2},"588":{"body":84,"breadcrumbs":6,"title":1},"589":{"body":23,"breadcrumbs":6,"title":1},"59":{"body":21,"breadcrumbs":10,"title":4},"590":{"body":44,"breadcrumbs":7,"title":2},"591":{"body":142,"breadcrumbs":8,"title":3},"592":{"body":14,"breadcrumbs":7,"title":2},"593":{"body":56,"breadcrumbs":6,"title":1},"594":{"body":10,"breadcrumbs":6,"title":1},"595":{"body":12,"breadcrumbs":4,"title":1},"596":{"body":17,"breadcrumbs":6,"title":3},"597":{"body":0,"breadcrumbs":5,"title":2},"598":{"body":50,"breadcrumbs":4,"title":1},"599":{"body":0,"breadcrumbs":5,"title":2},"6":{"body":31,"breadcrumbs":2,"title":1},"60":{"body":61,"breadcrumbs":9,"title":3},"600":{"body":93,"breadcrumbs":4,"title":1},"601":{"body":66,"breadcrumbs":4,"title":1},"602":{"body":38,"breadcrumbs":5,"title":2},"603":{"body":10,"breadcrumbs":6,"title":3},"604":{"body":3,"breadcrumbs":5,"title":2},"605":{"body":14,"breadcrumbs":4,"title":1},"606":{"body":16,"breadcrumbs":6,"title":2},"607":{"body":18,"breadcrumbs":9,"title":5},"608":{"body":0,"breadcrumbs":6,"title":2},"609":{"body":53,"breadcrumbs":5,"title":1},"61":{"body":31,"breadcrumbs":10,"title":4},"610":{"body":0,"breadcrumbs":6,"title":2},"611":{"body":47,"breadcrumbs":5,"title":1},"612":{"body":23,"breadcrumbs":5,"title":1},"613":{"body":56,"breadcrumbs":6,"title":2},"614":{"body":115,"breadcrumbs":7,"title":3},"615":{"body":3,"breadcrumbs":6,"title":2},"616":{"body":46,"breadcrumbs":5,"title":1},"617":{"body":10,"breadcrumbs":5,"title":1},"618":{"body":37,"breadcrumbs":4,"title":1},"619":{"body":29,"breadcrumbs":6,"title":3},"62":{"body":56,"breadcrumbs":8,"title":4},"620":{"body":0,"breadcrumbs":5,"title":2},"621":{"body":168,"breadcrumbs":5,"title":2},"622":{"body":0,"breadcrumbs":5,"title":2},"623":{"body":103,"breadcrumbs":4,"title":1},"624":{"body":45,"breadcrumbs":4,"title":1},"625":{"body":42,"breadcrumbs":5,"title":2},"626":{"body":67,"breadcrumbs":5,"title":2},"627":{"body":9,"breadcrumbs":5,"title":2},"628":{"body":8,"breadcrumbs":4,"title":1},"629":{"body":9,"breadcrumbs":4,"title":1},"63":{"body":64,"breadcrumbs":7,"title":3},"630":{"body":16,"breadcrumbs":4,"title":1},"631":{"body":0,"breadcrumbs":5,"title":2},"632":{"body":72,"breadcrumbs":4,"title":1},"633":{"body":0,"breadcrumbs":5,"title":2},"634":{"body":66,"breadcrumbs":4,"title":1},"635":{"body":67,"breadcrumbs":4,"title":1},"636":{"body":43,"breadcrumbs":5,"title":2},"637":{"body":9,"breadcrumbs":5,"title":2},"638":{"body":3,"breadcrumbs":4,"title":1},"639":{"body":0,"breadcrumbs":5,"title":2},"64":{"body":19,"breadcrumbs":7,"title":3},"640":{"body":66,"breadcrumbs":4,"title":1},"641":{"body":0,"breadcrumbs":5,"title":2},"642":{"body":76,"breadcrumbs":4,"title":1},"643":{"body":26,"breadcrumbs":4,"title":1},"644":{"body":59,"breadcrumbs":5,"title":2},"645":{"body":43,"breadcrumbs":7,"title":4},"646":{"body":11,"breadcrumbs":5,"title":2},"647":{"body":21,"breadcrumbs":2,"title":1},"648":{"body":0,"breadcrumbs":3,"title":2},"649":{"body":74,"breadcrumbs":2,"title":1},"65":{"body":65,"breadcrumbs":8,"title":4},"650":{"body":0,"breadcrumbs":3,"title":2},"651":{"body":18,"breadcrumbs":2,"title":1},"652":{"body":269,"breadcrumbs":2,"title":1},"653":{"body":83,"breadcrumbs":2,"title":1},"654":{"body":21,"breadcrumbs":5,"title":4},"655":{"body":40,"breadcrumbs":2,"title":1},"656":{"body":41,"breadcrumbs":2,"title":1},"657":{"body":30,"breadcrumbs":2,"title":1},"658":{"body":27,"breadcrumbs":2,"title":1},"659":{"body":13,"breadcrumbs":5,"title":4},"66":{"body":47,"breadcrumbs":8,"title":4},"660":{"body":39,"breadcrumbs":2,"title":1},"661":{"body":26,"breadcrumbs":2,"title":1},"662":{"body":22,"breadcrumbs":4,"title":3},"663":{"body":29,"breadcrumbs":10,"title":5},"664":{"body":31,"breadcrumbs":6,"title":1},"665":{"body":62,"breadcrumbs":6,"title":1},"666":{"body":45,"breadcrumbs":6,"title":1},"667":{"body":21,"breadcrumbs":6,"title":1},"668":{"body":25,"breadcrumbs":6,"title":1},"669":{"body":49,"breadcrumbs":6,"title":1},"67":{"body":64,"breadcrumbs":8,"title":4},"670":{"body":32,"breadcrumbs":6,"title":1},"671":{"body":55,"breadcrumbs":10,"title":6},"672":{"body":9,"breadcrumbs":8,"title":4},"673":{"body":159,"breadcrumbs":9,"title":5},"674":{"body":60,"breadcrumbs":10,"title":5},"675":{"body":37,"breadcrumbs":7,"title":2},"676":{"body":13,"breadcrumbs":8,"title":3},"677":{"body":208,"breadcrumbs":8,"title":3},"678":{"body":172,"breadcrumbs":8,"title":3},"679":{"body":95,"breadcrumbs":9,"title":4},"68":{"body":23,"breadcrumbs":7,"title":3},"680":{"body":40,"breadcrumbs":7,"title":2},"681":{"body":22,"breadcrumbs":4,"title":3},"682":{"body":21,"breadcrumbs":10,"title":5},"683":{"body":6,"breadcrumbs":9,"title":4},"684":{"body":41,"breadcrumbs":10,"title":5},"685":{"body":53,"breadcrumbs":8,"title":3},"686":{"body":45,"breadcrumbs":9,"title":4},"687":{"body":35,"breadcrumbs":10,"title":5},"688":{"body":44,"breadcrumbs":4,"title":3},"689":{"body":24,"breadcrumbs":7,"title":3},"69":{"body":0,"breadcrumbs":4,"title":3},"690":{"body":61,"breadcrumbs":7,"title":3},"691":{"body":17,"breadcrumbs":11,"title":7},"692":{"body":57,"breadcrumbs":8,"title":4},"693":{"body":55,"breadcrumbs":3,"title":1},"694":{"body":8,"breadcrumbs":4,"title":2},"695":{"body":0,"breadcrumbs":4,"title":2},"696":{"body":12,"breadcrumbs":3,"title":1},"697":{"body":96,"breadcrumbs":6,"title":1},"698":{"body":37,"breadcrumbs":8,"title":3},"699":{"body":0,"breadcrumbs":6,"title":1},"7":{"body":14,"breadcrumbs":2,"title":1},"70":{"body":58,"breadcrumbs":3,"title":2},"700":{"body":9,"breadcrumbs":7,"title":2},"701":{"body":55,"breadcrumbs":6,"title":1},"702":{"body":7,"breadcrumbs":2,"title":1},"703":{"body":23,"breadcrumbs":2,"title":1},"704":{"body":32,"breadcrumbs":3,"title":2},"705":{"body":12,"breadcrumbs":3,"title":2},"706":{"body":1,"breadcrumbs":4,"title":3},"707":{"body":10,"breadcrumbs":3,"title":2},"708":{"body":19,"breadcrumbs":2,"title":1},"709":{"body":18,"breadcrumbs":2,"title":1},"71":{"body":41,"breadcrumbs":3,"title":2},"710":{"body":54,"breadcrumbs":2,"title":1},"711":{"body":45,"breadcrumbs":3,"title":2},"712":{"body":18,"breadcrumbs":4,"title":3},"713":{"body":7,"breadcrumbs":2,"title":1},"714":{"body":2,"breadcrumbs":4,"title":2},"715":{"body":56,"breadcrumbs":6,"title":4},"716":{"body":54,"breadcrumbs":6,"title":4},"717":{"body":16,"breadcrumbs":6,"title":4},"718":{"body":30,"breadcrumbs":6,"title":4},"719":{"body":25,"breadcrumbs":6,"title":4},"72":{"body":13,"breadcrumbs":4,"title":3},"720":{"body":45,"breadcrumbs":6,"title":4},"721":{"body":69,"breadcrumbs":6,"title":4},"722":{"body":16,"breadcrumbs":6,"title":4},"723":{"body":9,"breadcrumbs":6,"title":4},"724":{"body":18,"breadcrumbs":6,"title":4},"725":{"body":23,"breadcrumbs":6,"title":4},"726":{"body":18,"breadcrumbs":6,"title":4},"727":{"body":63,"breadcrumbs":6,"title":4},"728":{"body":35,"breadcrumbs":6,"title":4},"729":{"body":51,"breadcrumbs":6,"title":4},"73":{"body":105,"breadcrumbs":3,"title":2},"730":{"body":28,"breadcrumbs":6,"title":4},"731":{"body":47,"breadcrumbs":6,"title":4},"732":{"body":51,"breadcrumbs":6,"title":4},"733":{"body":13,"breadcrumbs":6,"title":4},"734":{"body":78,"breadcrumbs":6,"title":4},"735":{"body":39,"breadcrumbs":6,"title":4},"736":{"body":74,"breadcrumbs":6,"title":4},"737":{"body":33,"breadcrumbs":6,"title":4},"738":{"body":99,"breadcrumbs":6,"title":4},"739":{"body":39,"breadcrumbs":6,"title":4},"74":{"body":35,"breadcrumbs":4,"title":3},"740":{"body":12,"breadcrumbs":6,"title":4},"741":{"body":75,"breadcrumbs":6,"title":4},"742":{"body":25,"breadcrumbs":6,"title":4},"743":{"body":17,"breadcrumbs":6,"title":4},"744":{"body":12,"breadcrumbs":6,"title":4},"745":{"body":25,"breadcrumbs":6,"title":4},"746":{"body":8,"breadcrumbs":6,"title":4},"747":{"body":58,"breadcrumbs":6,"title":4},"748":{"body":7,"breadcrumbs":6,"title":4},"749":{"body":13,"breadcrumbs":6,"title":4},"75":{"body":48,"breadcrumbs":3,"title":2},"750":{"body":46,"breadcrumbs":6,"title":4},"751":{"body":18,"breadcrumbs":6,"title":4},"752":{"body":137,"breadcrumbs":6,"title":4},"753":{"body":37,"breadcrumbs":6,"title":4},"754":{"body":19,"breadcrumbs":6,"title":4},"755":{"body":23,"breadcrumbs":6,"title":4},"756":{"body":36,"breadcrumbs":6,"title":4},"757":{"body":25,"breadcrumbs":6,"title":4},"758":{"body":26,"breadcrumbs":6,"title":4},"759":{"body":32,"breadcrumbs":6,"title":4},"76":{"body":119,"breadcrumbs":3,"title":2},"760":{"body":19,"breadcrumbs":6,"title":4},"761":{"body":40,"breadcrumbs":6,"title":4},"762":{"body":95,"breadcrumbs":6,"title":4},"763":{"body":42,"breadcrumbs":6,"title":4},"764":{"body":20,"breadcrumbs":6,"title":4},"765":{"body":70,"breadcrumbs":6,"title":4},"766":{"body":11,"breadcrumbs":6,"title":4},"767":{"body":20,"breadcrumbs":6,"title":4},"768":{"body":12,"breadcrumbs":6,"title":4},"769":{"body":25,"breadcrumbs":6,"title":4},"77":{"body":105,"breadcrumbs":5,"title":4},"770":{"body":31,"breadcrumbs":6,"title":4},"771":{"body":14,"breadcrumbs":6,"title":4},"772":{"body":166,"breadcrumbs":6,"title":4},"773":{"body":45,"breadcrumbs":6,"title":4},"774":{"body":20,"breadcrumbs":6,"title":4},"775":{"body":30,"breadcrumbs":6,"title":4},"776":{"body":56,"breadcrumbs":6,"title":4},"777":{"body":8,"breadcrumbs":6,"title":4},"778":{"body":7,"breadcrumbs":6,"title":4},"779":{"body":46,"breadcrumbs":6,"title":4},"78":{"body":155,"breadcrumbs":6,"title":5},"780":{"body":9,"breadcrumbs":6,"title":4},"781":{"body":8,"breadcrumbs":6,"title":4},"782":{"body":45,"breadcrumbs":6,"title":4},"783":{"body":14,"breadcrumbs":6,"title":4},"784":{"body":13,"breadcrumbs":6,"title":4},"785":{"body":21,"breadcrumbs":6,"title":4},"786":{"body":60,"breadcrumbs":6,"title":4},"787":{"body":9,"breadcrumbs":6,"title":4},"788":{"body":25,"breadcrumbs":6,"title":4},"789":{"body":38,"breadcrumbs":6,"title":4},"79":{"body":275,"breadcrumbs":3,"title":2},"790":{"body":28,"breadcrumbs":6,"title":4},"791":{"body":26,"breadcrumbs":6,"title":4},"792":{"body":39,"breadcrumbs":6,"title":4},"793":{"body":70,"breadcrumbs":6,"title":4},"794":{"body":14,"breadcrumbs":6,"title":4},"795":{"body":10,"breadcrumbs":6,"title":4},"796":{"body":31,"breadcrumbs":6,"title":4},"797":{"body":9,"breadcrumbs":6,"title":4},"798":{"body":15,"breadcrumbs":6,"title":4},"799":{"body":115,"breadcrumbs":6,"title":4},"8":{"body":24,"breadcrumbs":6,"title":3},"80":{"body":50,"breadcrumbs":4,"title":3},"800":{"body":13,"breadcrumbs":6,"title":4},"801":{"body":70,"breadcrumbs":6,"title":4},"802":{"body":81,"breadcrumbs":6,"title":4},"803":{"body":57,"breadcrumbs":6,"title":4},"804":{"body":118,"breadcrumbs":6,"title":4},"805":{"body":54,"breadcrumbs":6,"title":4},"806":{"body":68,"breadcrumbs":6,"title":4},"807":{"body":119,"breadcrumbs":6,"title":4},"808":{"body":7,"breadcrumbs":6,"title":4},"809":{"body":46,"breadcrumbs":6,"title":4},"81":{"body":6,"breadcrumbs":4,"title":3},"810":{"body":13,"breadcrumbs":6,"title":4},"811":{"body":45,"breadcrumbs":6,"title":4},"812":{"body":27,"breadcrumbs":6,"title":4},"813":{"body":23,"breadcrumbs":6,"title":4},"814":{"body":87,"breadcrumbs":6,"title":4},"815":{"body":40,"breadcrumbs":6,"title":4},"816":{"body":48,"breadcrumbs":6,"title":4},"817":{"body":42,"breadcrumbs":6,"title":4},"818":{"body":60,"breadcrumbs":6,"title":4},"819":{"body":22,"breadcrumbs":6,"title":4},"82":{"body":60,"breadcrumbs":4,"title":3},"820":{"body":30,"breadcrumbs":6,"title":4},"821":{"body":6,"breadcrumbs":6,"title":4},"822":{"body":6,"breadcrumbs":6,"title":4},"823":{"body":78,"breadcrumbs":6,"title":4},"824":{"body":61,"breadcrumbs":6,"title":4},"825":{"body":9,"breadcrumbs":6,"title":4},"826":{"body":12,"breadcrumbs":6,"title":4},"827":{"body":19,"breadcrumbs":6,"title":4},"828":{"body":25,"breadcrumbs":6,"title":4},"829":{"body":23,"breadcrumbs":6,"title":4},"83":{"body":71,"breadcrumbs":6,"title":5},"830":{"body":104,"breadcrumbs":6,"title":4},"831":{"body":68,"breadcrumbs":6,"title":4},"832":{"body":9,"breadcrumbs":6,"title":4},"833":{"body":34,"breadcrumbs":6,"title":4},"834":{"body":210,"breadcrumbs":6,"title":4},"835":{"body":21,"breadcrumbs":6,"title":4},"836":{"body":15,"breadcrumbs":6,"title":4},"837":{"body":84,"breadcrumbs":6,"title":4},"838":{"body":83,"breadcrumbs":6,"title":4},"839":{"body":95,"breadcrumbs":6,"title":4},"84":{"body":37,"breadcrumbs":3,"title":2},"840":{"body":53,"breadcrumbs":6,"title":4},"841":{"body":10,"breadcrumbs":6,"title":4},"842":{"body":66,"breadcrumbs":6,"title":4},"843":{"body":22,"breadcrumbs":6,"title":4},"844":{"body":20,"breadcrumbs":6,"title":4},"845":{"body":17,"breadcrumbs":6,"title":4},"846":{"body":53,"breadcrumbs":6,"title":4},"847":{"body":34,"breadcrumbs":6,"title":4},"848":{"body":16,"breadcrumbs":6,"title":4},"849":{"body":40,"breadcrumbs":6,"title":4},"85":{"body":26,"breadcrumbs":6,"title":5},"850":{"body":9,"breadcrumbs":6,"title":4},"851":{"body":9,"breadcrumbs":6,"title":4},"852":{"body":83,"breadcrumbs":6,"title":4},"853":{"body":80,"breadcrumbs":6,"title":4},"854":{"body":67,"breadcrumbs":6,"title":4},"855":{"body":15,"breadcrumbs":6,"title":4},"856":{"body":11,"breadcrumbs":6,"title":4},"857":{"body":30,"breadcrumbs":6,"title":4},"858":{"body":128,"breadcrumbs":6,"title":4},"859":{"body":55,"breadcrumbs":6,"title":4},"86":{"body":64,"breadcrumbs":5,"title":4},"860":{"body":55,"breadcrumbs":6,"title":4},"861":{"body":130,"breadcrumbs":6,"title":4},"862":{"body":114,"breadcrumbs":6,"title":4},"863":{"body":21,"breadcrumbs":6,"title":4},"864":{"body":125,"breadcrumbs":6,"title":4},"865":{"body":117,"breadcrumbs":6,"title":4},"866":{"body":29,"breadcrumbs":6,"title":4},"867":{"body":75,"breadcrumbs":6,"title":4},"868":{"body":23,"breadcrumbs":6,"title":4},"869":{"body":60,"breadcrumbs":6,"title":4},"87":{"body":57,"breadcrumbs":5,"title":4},"870":{"body":7,"breadcrumbs":6,"title":4},"871":{"body":22,"breadcrumbs":6,"title":4},"872":{"body":26,"breadcrumbs":6,"title":4},"873":{"body":42,"breadcrumbs":6,"title":4},"874":{"body":14,"breadcrumbs":6,"title":4},"875":{"body":35,"breadcrumbs":6,"title":4},"876":{"body":22,"breadcrumbs":6,"title":4},"877":{"body":15,"breadcrumbs":6,"title":4},"878":{"body":31,"breadcrumbs":6,"title":4},"879":{"body":28,"breadcrumbs":6,"title":4},"88":{"body":43,"breadcrumbs":4,"title":3},"880":{"body":59,"breadcrumbs":6,"title":4},"881":{"body":32,"breadcrumbs":6,"title":4},"882":{"body":29,"breadcrumbs":7,"title":5},"883":{"body":6,"breadcrumbs":7,"title":5},"884":{"body":22,"breadcrumbs":7,"title":5},"885":{"body":11,"breadcrumbs":7,"title":5},"886":{"body":7,"breadcrumbs":7,"title":5},"887":{"body":2,"breadcrumbs":7,"title":5},"888":{"body":8,"breadcrumbs":3,"title":1},"889":{"body":2,"breadcrumbs":4,"title":2},"89":{"body":155,"breadcrumbs":2,"title":1},"890":{"body":20,"breadcrumbs":6,"title":4},"891":{"body":22,"breadcrumbs":6,"title":4},"892":{"body":23,"breadcrumbs":6,"title":4},"893":{"body":8,"breadcrumbs":6,"title":4},"894":{"body":26,"breadcrumbs":7,"title":5},"895":{"body":34,"breadcrumbs":7,"title":5},"896":{"body":8,"breadcrumbs":6,"title":4},"897":{"body":29,"breadcrumbs":7,"title":5},"898":{"body":18,"breadcrumbs":7,"title":5},"899":{"body":11,"breadcrumbs":7,"title":5},"9":{"body":180,"breadcrumbs":6,"title":3},"90":{"body":0,"breadcrumbs":7,"title":3},"900":{"body":18,"breadcrumbs":7,"title":5},"901":{"body":7,"breadcrumbs":6,"title":4},"902":{"body":18,"breadcrumbs":7,"title":5},"903":{"body":12,"breadcrumbs":7,"title":5},"904":{"body":11,"breadcrumbs":6,"title":4},"905":{"body":27,"breadcrumbs":6,"title":4},"906":{"body":9,"breadcrumbs":6,"title":4},"907":{"body":37,"breadcrumbs":6,"title":4},"908":{"body":25,"breadcrumbs":6,"title":4},"909":{"body":39,"breadcrumbs":6,"title":4},"91":{"body":58,"breadcrumbs":6,"title":2},"910":{"body":12,"breadcrumbs":6,"title":4},"911":{"body":25,"breadcrumbs":6,"title":4},"912":{"body":98,"breadcrumbs":6,"title":4},"913":{"body":45,"breadcrumbs":6,"title":4},"914":{"body":42,"breadcrumbs":6,"title":4},"915":{"body":127,"breadcrumbs":6,"title":4},"916":{"body":119,"breadcrumbs":6,"title":4},"917":{"body":32,"breadcrumbs":6,"title":4},"918":{"body":20,"breadcrumbs":6,"title":4},"919":{"body":91,"breadcrumbs":6,"title":4},"92":{"body":41,"breadcrumbs":6,"title":2},"920":{"body":32,"breadcrumbs":6,"title":4},"921":{"body":55,"breadcrumbs":6,"title":4},"922":{"body":26,"breadcrumbs":6,"title":4},"923":{"body":83,"breadcrumbs":6,"title":4},"924":{"body":69,"breadcrumbs":6,"title":4},"925":{"body":38,"breadcrumbs":6,"title":4},"926":{"body":13,"breadcrumbs":6,"title":4},"927":{"body":34,"breadcrumbs":6,"title":4},"928":{"body":20,"breadcrumbs":6,"title":4},"929":{"body":139,"breadcrumbs":6,"title":4},"93":{"body":13,"breadcrumbs":7,"title":3},"930":{"body":12,"breadcrumbs":6,"title":4},"931":{"body":6,"breadcrumbs":6,"title":4},"932":{"body":19,"breadcrumbs":6,"title":4},"933":{"body":84,"breadcrumbs":6,"title":4},"934":{"body":21,"breadcrumbs":6,"title":4},"935":{"body":27,"breadcrumbs":6,"title":4},"936":{"body":16,"breadcrumbs":6,"title":4},"937":{"body":20,"breadcrumbs":6,"title":4},"938":{"body":30,"breadcrumbs":6,"title":4},"939":{"body":41,"breadcrumbs":6,"title":4},"94":{"body":105,"breadcrumbs":6,"title":2},"940":{"body":9,"breadcrumbs":6,"title":4},"941":{"body":13,"breadcrumbs":6,"title":4},"942":{"body":24,"breadcrumbs":6,"title":4},"943":{"body":7,"breadcrumbs":6,"title":4},"944":{"body":10,"breadcrumbs":6,"title":4},"945":{"body":20,"breadcrumbs":6,"title":4},"946":{"body":13,"breadcrumbs":6,"title":4},"947":{"body":32,"breadcrumbs":6,"title":4},"948":{"body":9,"breadcrumbs":6,"title":4},"949":{"body":10,"breadcrumbs":6,"title":4},"95":{"body":35,"breadcrumbs":7,"title":3},"950":{"body":66,"breadcrumbs":6,"title":4},"951":{"body":100,"breadcrumbs":6,"title":4},"952":{"body":27,"breadcrumbs":6,"title":4},"953":{"body":36,"breadcrumbs":6,"title":4},"954":{"body":10,"breadcrumbs":6,"title":4},"955":{"body":9,"breadcrumbs":6,"title":4},"956":{"body":130,"breadcrumbs":6,"title":4},"957":{"body":22,"breadcrumbs":5,"title":3},"958":{"body":443,"breadcrumbs":4,"title":2},"959":{"body":20,"breadcrumbs":4,"title":2},"96":{"body":48,"breadcrumbs":6,"title":2},"960":{"body":49,"breadcrumbs":4,"title":2},"961":{"body":23,"breadcrumbs":5,"title":3},"962":{"body":34,"breadcrumbs":3,"title":1},"963":{"body":51,"breadcrumbs":4,"title":2},"964":{"body":66,"breadcrumbs":4,"title":2},"965":{"body":28,"breadcrumbs":5,"title":3},"966":{"body":17,"breadcrumbs":3,"title":1},"967":{"body":0,"breadcrumbs":5,"title":3},"968":{"body":69,"breadcrumbs":4,"title":2},"969":{"body":434,"breadcrumbs":4,"title":2},"97":{"body":119,"breadcrumbs":6,"title":2},"98":{"body":105,"breadcrumbs":8,"title":4},"99":{"body":155,"breadcrumbs":9,"title":5}},"docs":{"0":{"body":"The Glean SDKs are modern cross-platform telemetry client libraries and are a part of the Glean project . Glean logo The Glean SDKs are available for several programming languages and development environments. Each SDK aims to contain the same group of features with similar, but idiomatic APIs. To learn more about each SDK, refer to the SDKs overview page. To get started adding Glean to your project, choose one of the following guides: Kotlin Get started adding Glean to an Android application or library. Swift Get started adding Glean to an iOS application or library. Python Get started adding Glean to any Python project. Rust Get started adding Glean to any Rust project or library. JavaScript Get started adding Glean to a website, web extension or Node.js project. QML Get started adding Glean to a Qt/QML application or library. Server Get started adding Glean to a server-side application. For development documentation on the Glean SDK, refer to the Glean SDK development book .","breadcrumbs":"Glean » Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Glean » Sections","id":"1","title":"Sections"},"10":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Kotlin project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so. Currently, this SDK only supports the Android platform.","breadcrumbs":"Adding Glean to your project » Kotlin » Adding Glean to your Kotlin project","id":"10","title":"Adding Glean to your Kotlin project"},"100":{"body":"Let's work through an example to see how these lifetimes play out in practice. Let's suppose we have a user preference, \"turbo mode\", which defaults to false, but the user can turn it to true at any time. We want to know when this flag is true so we can measure its affect on other metrics in the same ping. In the following diagram, we look at a time period that sends 4 pings across two separate runs of the application. We assume here, that like the Glean SDK's built-in metrics ping , the developer writing the metric isn't in control of when the ping is submitted. In this diagram, the ping measurement windows are represented as rectangles, but the moment the ping is \"submitted\" is represented by its right edge. The user changes the \"turbo mode\" setting from false to true in the first run, and then toggles it again twice in the second run. Metric lifetime timeline A. Ping lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. It is included in the first ping after being recorded (Ping 2), which causes it to be cleared. B. Ping lifetime, set on init and change : The default value is included in Ping 1, and the changed value is included in Ping 2, which causes it to be cleared. It therefore misses Ping 3, but when the application is started, it is recorded again and it is included in Ping 4. However, this causes it to be cleared again and it is not in Ping 5. C. Application lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. After the value is changed, it is included in Pings 2 and 3, but then due to application restart it is cleared, so it is not included until the value is manually toggled again. D. Application, set on init and change : The default value is included in Ping 1, and the changed value is included in Pings 2 and 3. Even though the application startup causes it to be cleared, it is set again, and all subsequent pings also have the value. E. User, set on change : The default value is missing from Ping 1, but since user lifetime metrics aren't cleared unless the user profile is reset (e.g. on Android, when the product is uninstalled), it is included in all subsequent pings. F. User, set on init and change : Since user lifetime metrics aren't cleared unless the user profile is reset, it is included in all subsequent pings. This would be true even if the \"turbo mode\" preference were never changed again. Note that for all of the metric configurations, the toggle of the preference off and on during Ping 4 is completely missed. If you need to create a ping containing one, and only one, value for this metric, consider using a custom ping to create a ping whose lifetime matches the lifetime of the value.","breadcrumbs":"Metrics » Adding new metrics » A lifetime example","id":"100","title":"A lifetime example"},"101":{"body":"If the timing at which the metric is sent in the ping needs to closely match the timing of the metrics value, the best option is to use a custom ping to manually control when pings are sent. This is especially useful when metrics need to be tightly related to one another, for example when you need to measure the distribution of frame paint times when a particular rendering backend is in use. If these metrics were in different pings, with different measurement windows, it is much harder to do that kind of reasoning with much certainty.","breadcrumbs":"Metrics » Adding new metrics » What if none of these lifetimes are appropriate?","id":"101","title":"What if none of these lifetimes are appropriate?"},"102":{"body":"Metric names have a maximum length of 30 characters.","breadcrumbs":"Metrics » Adding new metrics » What should this new metric be called?","id":"102","title":"What should this new metric be called?"},"103":{"body":"There's a lot of value using the same name for analogous metrics collected across different products. For example, BigQuery makes it simple to join columns with the same name across multiple tables. Therefore, we encourage you to investigate if a similar metric is already being collected by another product. If it is, there may be an opportunity for code reuse across these products, and if all the projects are using the Glean SDK, it's easy for libraries to send their own metrics. If sharing the code doesn't make sense, at a minimum we recommend using the same metric name for similar actions and concepts whenever possible.","breadcrumbs":"Metrics » Adding new metrics » Reuse names from other applications","id":"103","title":"Reuse names from other applications"},"104":{"body":"Metric identifiers (the combination of a metric's category and name) must be unique across all metrics that are sent by a single application. This includes not only the metrics defined in the app's metrics.yaml, but the metrics.yaml of any Glean SDK-using library that the application uses, including the Glean SDK itself. Therefore, care should be taken to name things specifically enough so as to avoid namespace collisions. In practice, this generally involves thinking carefully about the category of the metric, more than the name. Note: Duplicate metric identifiers are not currently detected at build time. See bug 1578383 for progress on that. However, the probe_scraper process, which runs nightly, will detect duplicate metrics and e-mail the notification_emails associated with the given metrics.","breadcrumbs":"Metrics » Adding new metrics » Make names unique within an application","id":"104","title":"Make names unique within an application"},"105":{"body":"More broadly, you should choose the names of metrics to be as specific as possible. It is not necessary to put the type of the metric in the category or name, since this information is retained in other ways through the entire end-to-end system. For example, if defining a set of events related to search, put them in a category called search, rather than just events or search_events. The events word here would be redundant.","breadcrumbs":"Metrics » Adding new metrics » Be as specific as possible","id":"105","title":"Be as specific as possible"},"106":{"body":"The current set of metrics the Glean SDKs support is based on known common use cases, but new use cases are discovered all the time. Please reach out to us on #glean:mozilla.org . If you think you need a new metric type, we have a process for that .","breadcrumbs":"Metrics » Adding new metrics » What if none of these metric types is the right fit?","id":"106","title":"What if none of these metric types is the right fit?"},"107":{"body":"The Glean SDK has rich support for writing unit tests involving metrics. Writing a good unit test is a large topic, but in general, you should write unit tests for all new telemetry that does the following: Performs the operation being measured. Asserts that metrics contain the expected data, using the testGetValue API on the metric. Where applicable, asserts that no errors are recorded, such as when values are out of range, using the testGetNumRecordedErrors API. In addition to unit tests, it is good practice to validate the incoming data for the new metric on a pre-release channel to make sure things are working as expected.","breadcrumbs":"Metrics » Adding new metrics » How do I make sure my metric is working?","id":"107","title":"How do I make sure my metric is working?"},"108":{"body":"The metrics.yaml file defines the metrics your application or library will send. They are organized into categories. The overall organization is: # Required to indicate this is a `metrics.yaml` file\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 toolbar: click: type: event description: | Event to record toolbar clicks. metadata: tags: - Interaction notification_emails: - CHANGE-ME@example.com bugs: - https://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review expires: 2019-06-01 # <-- Update to a date in the future double_click: ... Refer to the metrics YAML registry format for a full reference on the metrics.yaml file structure.","breadcrumbs":"Metrics » Adding new metrics » Adding the metric to the metrics.yaml file","id":"108","title":"Adding the metric to the metrics.yaml file"},"109":{"body":"The reference documentation for each metric type goes into detail about using each metric type from your code. Note that all Glean metrics are write-only. Outside of unit tests, it is impossible to retrieve a value from the Glean SDK's database. While this may seem limiting, this is required to: enforce the semantics of certain metric types (e.g. that Counters can only be incremented). ensure the lifetime of the metric (when it is cleared or reset) is correctly handled.","breadcrumbs":"Metrics » Adding new metrics » Using the metric from your code","id":"109","title":"Using the metric from your code"},"11":{"body":"The Glean Kotlin SDK is published on maven.mozilla.org . To use it, you need to add the following to your project's top-level build file, in the allprojects block (see e.g. Glean SDK's own build.gradle ): repositories { maven { url \"https://maven.mozilla.org/maven2\" }\n} Each module that uses the Glean Kotlin SDK needs to specify it in its build file, in the dependencies block. Add this to your Gradle configuration: implementation \"org.mozilla.components:service-glean:{latest-version}\" Pick the correct version The {latest-version} placeholder in the above link should be replaced with the version of Android Components used by the project. The Glean Kotlin SDK is released as part of android-components . Therefore, it follows android-components' versions. The android-components release page can be used to determine the latest version. For example, if version 33.0.0 is used, then the include directive becomes: implementation \"org.mozilla.components:service-glean:33.0.0\" Size impact on the application APK The Glean Kotlin SDK APK ships binary libraries for all the supported platforms. Each library file measures about 600KB. If the final APK size of the consuming project is a concern, please enable ABI splits .","breadcrumbs":"Adding Glean to your project » Kotlin » Setting up the dependency","id":"11","title":"Setting up the dependency"},"110":{"body":"One thing to note is that we try to adhere to the coding conventions of each language wherever possible, so the metric name and category in the metrics.yaml (which is in snake_case) may be changed to some other case convention, such as camelCase, when used from code. Event extras and labels are never capitalized, no matter the target language. Category and metric names in the metrics.yaml are in snake_case, but given the Kotlin coding standards defined by ktlint , these identifiers must be camelCase in Kotlin. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: import org.mozilla.yourApplication.GleanMetrics.Views\nGleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, but given the Swift coding standards defined by swiftlint , these identifiers must be camelCase in Swift. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: GleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, which matches the PEP8 standard, so no translation is needed for Python. Given the Rust coding standards defined by clippy , identifiers should all be snake_case. This includes category names which in the metrics.yaml are dotted.snake_case: compound.category: metric_name: ... In Rust this becomes: use firefox_on_glean::metrics; metrics::compound_category::metric_name... JavaScript identifiers are customarily camelCase. This requires transforming a metric defined in the metrics.yaml as: compound.category: metric_name: ... to a form useful in JS as: import * as compoundCategory from \"./path/to/generated/files/compoundCategory.js\"; compoundCategory.metricName... Firefox Desktop has Coding Style Guidelines for both C++ and JS. This results in, for a metric defined in the metrics.yaml as: compound.category: metric_name: ... an identifier that looks like: C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::compound_category::metric_name... JavaScript Glean.compoundCategory.metricName... Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Adding new metrics » Capitalization","id":"110","title":"Capitalization"},"111":{"body":"In order to support unit testing inside of client applications using the Glean SDK, a set of testing API functions have been included. The intent is to make the Glean SDKs easier to test 'out of the box' in any client application it may be used in. These functions expose a way to inspect and validate recorded metric values within the client application. but are restricted to test code only. (Outside of a testing context, Glean APIs are otherwise write-only so that it can enforce semantics and constraints about data). To encourage using the testing APIs, it is also possible to generate testing coverage reports to show which metrics in your project are tested.","breadcrumbs":"Metrics » Testing metrics » Unit testing Glean metrics","id":"111","title":"Unit testing Glean metrics"},"112":{"body":"In order to enable metrics testing APIs in each SDK, Glean must be reset and put in testing mode. For documentation on how to do that, refer to Initializing - Testing API . Check out full examples of using the metric testing API on each Glean SDK. All examples omit the step of resetting Glean for tests to focus solely on metrics unit testing. // Record a metric value with extra to validate against\nGleanMetrics.BrowserEngagement.click.record( BrowserEngagementExtras(font = \"Courier\")\n) // Record more events without extras attached\nBrowserEngagement.click.record()\nBrowserEngagement.click.record() // Retrieve a snapshot of the recorded events\nval events = BrowserEngagement.click.testGetValue()!! // Check if we collected all 3 events in the snapshot\nassertEquals(3, events.size) // Check extra key/value for first event in the list\nassertEquals(\"Courier\", events.elementAt(0).extra[\"font\"]) // Record a metric value with extra to validate against\nGleanMetrics.BrowserEngagement.click.record([.font: \"Courier\"]) // Record more events without extras attached\nBrowserEngagement.click.record()\nBrowserEngagement.click.record() // Retrieve a snapshot of the recorded events\nlet events = BrowserEngagement.click.testGetValue()! // Check if we collected all 3 events in the snapshot\nXCTAssertEqual(3, events.count) // Check extra key/value for first event in the list\nXCTAssertEqual(\"Courier\", events[0].extra?[\"font\"]) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Record a metric value with extra to validate against\nmetrics.url.visit.add(1) # Check if we collected any events into the 'click' metric\nassert metrics.url.visit.test_get_value() is not Null # Retrieve a snapshot of the recorded events\nassert 1 == metrics.url.visit.test_get_value()","breadcrumbs":"Metrics » Testing metrics » Example of using the test API","id":"112","title":"Example of using the test API"},"113":{"body":"Glean can generate coverage reports to track which metrics are tested in your unit test suite. There are three steps to integrate it into your continuous integration workflow: recording coverage, post-processing the results, and uploading the results.","breadcrumbs":"Metrics » Testing metrics » Generating testing coverage reports","id":"113","title":"Generating testing coverage reports"},"114":{"body":"Glean testing coverage is enabled by setting the GLEAN_TEST_COVERAGE environment variable to the name of a file to store results. It is good practice to set it to the absolute path to a file, since some testing harnesses (such as cargo test) may change the current working directory. GLEAN_TEST_COVERAGE=$(realpath glean_coverage.txt) make test","breadcrumbs":"Metrics » Testing metrics » Recording coverage","id":"114","title":"Recording coverage"},"115":{"body":"A post-processing step is required to convert the raw output in the file specified by GLEAN_TEST_COVERAGE into usable output for coverage reporting tools. Currently, the only coverage reporting tool supported is codecov.io . This post-processor is available in the coverage subcommand in the glean_parser tool. For some build systems, glean_parser is already installed for you by the build system integration at the following locations: On Android/Gradle, $GRADLE_HOME/glean/bootstrap-4.5.11/Miniconda3/bin/glean_parser On iOS, $PROJECT_ROOT/.venv/bin/glean_parser For other systems, install glean_parser using pip install glean_parser The glean_parser coverage command requires the following parameters: -f: The output format to produce, for example codecovio to produce codecov.io 's custom format. -o: The path to the output file, for example codecov.json. -c: The input raw coverage file. glean_coverage.txt in the example above. A list of the metrics.yaml files in your repository. For example, to produce output for codecov.io : glean_parser coverage -f codecovio -o glean_coverage.json -c glean_coverage.txt app/metrics.yaml In this example, the glean_coverage.json file is now ready for uploading to codecov.io.","breadcrumbs":"Metrics » Testing metrics » Post-processing the results","id":"115","title":"Post-processing the results"},"116":{"body":"If using codecov.io, the uploader doesn't send coverage results for YAML files by default. Pass the -X yaml option to the uploader to make sure they are included: bash <(curl -s https://codecov.io/bash) -X yaml Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Testing metrics » Uploading coverage","id":"116","title":"Uploading coverage"},"117":{"body":"It is worth investing time when instrumentation is added to the product to understand if the data looks reasonable and expected, and to take action if it does not. It is important to highlight that an automated rigorous test suite for testing metrics is an important precondition for building confidence in newly collected data (especially business-critical ones). The following checklist could help guide this validation effort. Before releasing the product with the new data collection, make sure the data looks as expected by generating sample data on a local machine and inspecting it on the Glean Debug View (see the debugging facilities) : a. Is the data showing up in the correct ping(s)? b. Does the metric report the expected data? c. If exercising the same path again, is it expected for the data to be submitted again? And does it? As users start adopting the version of the product with the new data collection (usually within a few days of release), the initial data coming in should be checked, to understand how the measurements are behaving in the wild: a. Does this organically-sent data satisfy the same quality expectations the manually-sent data did in Step 1? b. Is the metric showing up correctly in the Glean Dictionary ? c. Is there any new error being reported for the new data points? If so, does this point to an edge case that should be documented and/or fixed in the code? d. As the first three or four days pass, distributions will converge towards their final shapes. Consider extreme values; are there a very high number of zero/minimum values when there shouldn't be, or values near what you would realistically expect to be the maximum (e.g. a timespan for a single day that is reporting close to 86,400 seconds)? In case of oddities in the data, how much of the product population is affected? Does this require changing the instrumentation or documenting?","breadcrumbs":"Metrics » Validating metrics » Validating the collected data","id":"117","title":"Validating the collected data"},"118":{"body":"Data practitioners that lack familiarity with YAML or product-specific development workflows can still document any discovered edge-cases and anomalies by identifying the metric in the Glean Dictionary and initiate adding commentary from the metric page. After enough data is collected from the product population, are the expectations from the previous points still met?","breadcrumbs":"Metrics » Validating metrics » How to annotate metrics without changing the source code?","id":"118","title":"How to annotate metrics without changing the source code?"},"119":{"body":"In case of multiple distinct product populations, the above checklist should be ideally run against all of them. For example, in case of Firefox , the checklist should be run for the Nightly population first, then on the other channels as the collection moves across the release trains. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Validating metrics » Does the product support multiple release channels?","id":"119","title":"Does the product support multiple release channels?"},"12":{"body":"Due to its use of a native library you will need additional setup to allow local testing. First add a new configuration to your build.gradle, just before your dependencies: configurations { jnaForTest\n} Then add the following lines to your dependencies block: jnaForTest \"net.java.dev.jna:jna:5.6.0@jar\"\ntestImplementation files(configurations.jnaForTest.copyRecursive().files)\ntestImplementation \"org.mozilla.telemetry:glean-forUnitTests:${project.ext.glean_version}\" Note: Always use org.mozilla.telemetry:glean-forUnitTests. This package is standalone and its version will be exported from the main Glean package automatically.","breadcrumbs":"Adding Glean to your project » Kotlin » Dependency for local testing","id":"12","title":"Dependency for local testing"},"120":{"body":"The Glean SDKs record the number of errors that occur when metrics are passed invalid data or are otherwise used incorrectly. This information is reported back in special labeled counter metrics in the glean.error category. Error metrics are included in the same pings as the metric that caused the error. Additionally, error metrics are always sent in the metrics ping ping. The following categories of errors are recorded: invalid_value: The metric value was invalid. invalid_label: The label on a labeled metric was invalid. invalid_state: The metric caught an invalid state while recording. invalid_overflow: The metric value to be recorded overflows the metric-specific upper range. invalid_type: The metric value is not of the expected type. This error type is only recorded by the Glean JavaScript SDK. This error may only happen in dynamically typed languages. For example, if you had a string metric and passed it a string that was too long: MyMetrics.stringMetric.set(\"this_string_is_longer_than_the_limit_for_string_metrics\") The following error metric counter would be incremented: Glean.error.invalidOverflow[\"my_metrics.string_metric\"].add(1) Resulting in the following keys in the ping: { \"metrics\": { \"labeled_counter\": { \"glean.error.invalid_overflow\": { \"my_metrics.string_metric\": 1 } } }\n} If you have a debug build of the Glean SDK, details about the errors being recorded are included in the logs. This detailed information is not included in Glean pings. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Error reporting » Error reporting","id":"120","title":"Error reporting"},"121":{"body":"If you are looking for the metrics collected by Glean.js, refer to the documentation over on the @mozilla/glean.js repository.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » The Glean JavaScript SDK provides a slightly different set of metrics and pings","id":"121","title":"The Glean JavaScript SDK provides a slightly different set of metrics and pings"},"122":{"body":"This document enumerates the metrics collected by this project using the Glean SDK . This project may depend on other projects which also collect metrics. This means you might have to go searching through the dependency tree to get a full picture of everything collected by this project.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » Metrics","id":"122","title":"Metrics"},"123":{"body":"all-pings baseline deletion-request metrics","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » Pings","id":"123","title":"Pings"},"124":{"body":"These metrics are sent in every ping. All Glean pings contain built-in metrics in the ping_info and client_info sections. In addition to those built-in metrics, the following metrics are added to the ping: Name Type Description Data reviews Extras Expiration Data Sensitivity glean.client.annotation.experimentation_id string An experimentation identifier derived and provided by the application for the purpose of experimentation enrollment. Bug 1848201 never 1 glean.error.invalid_label labeled_counter Counts the number of times a metric was set with an invalid label. The labels are the category.name identifier of the metric. Bug 1499761 never 1 glean.error.invalid_overflow labeled_counter Counts the number of times a metric was set a value that overflowed. The labels are the category.name identifier of the metric. Bug 1591912 never 1 glean.error.invalid_state labeled_counter Counts the number of times a timing metric was used incorrectly. The labels are the category.name identifier of the metric. Bug 1499761 never 1 glean.error.invalid_value labeled_counter Counts the number of times a metric was set to an invalid value. The labels are the category.name identifier of the metric. Bug 1499761 never 1 glean.restarted event Recorded when the Glean SDK is restarted. Only included in custom pings that record events. For more information, please consult the Custom Ping documentation . Bug 1716725 never 1","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » all-pings","id":"124","title":"all-pings"},"125":{"body":"This is a built-in ping that is assembled out of the box by the Glean SDK. See the Glean SDK documentation for the baseline ping . This ping is sent if empty. This ping includes the client id . Data reviews for this ping: https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3 https://bugzilla.mozilla.org/show_bug.cgi?id=1599877#c25 Bugs related to this ping: https://bugzilla.mozilla.org/1512938 https://bugzilla.mozilla.org/1599877 Reasons this ping may be sent: active: The ping was submitted when the application became active again, which includes when the application starts. In earlier versions, this was called foreground. *Note*: this ping will not contain the `glean.baseline.duration` metric. dirty_startup: The ping was submitted at startup, because the application process was killed before the Glean SDK had the chance to generate this ping, before becoming inactive, in the last session. *Note*: this ping will not contain the `glean.baseline.duration` metric. inactive: The ping was submitted when becoming inactive. In earlier versions, this was called background. All Glean pings contain built-in metrics in the ping_info and client_info sections. In addition to those built-in metrics, the following metrics are added to the ping: Name Type Description Data reviews Extras Expiration Data Sensitivity glean.baseline.duration timespan The duration of the last foreground session. Bug 1512938 never 1, 2 glean.validation.pings_submitted labeled_counter A count of the pings submitted, by ping type. This metric appears in both the metrics and baseline pings. - On the metrics ping, the counts include the number of pings sent since the last metrics ping (including the last metrics ping) - On the baseline ping, the counts include the number of pings send since the last baseline ping (including the last baseline ping) Bug 1586764 never 1","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » baseline","id":"125","title":"baseline"},"126":{"body":"This is a built-in ping that is assembled out of the box by the Glean SDK. See the Glean SDK documentation for the deletion-request ping . This ping is sent if empty. This ping includes the client id . Data reviews for this ping: https://bugzilla.mozilla.org/show_bug.cgi?id=1587095#c6 https://bugzilla.mozilla.org/show_bug.cgi?id=1702622#c2 Bugs related to this ping: https://bugzilla.mozilla.org/1587095 https://bugzilla.mozilla.org/1702622 Reasons this ping may be sent: at_init: The ping was submitted at startup. Glean discovered that between the last time it was run and this time, upload of data has been disabled. set_upload_enabled: The ping was submitted between Glean init and Glean shutdown. Glean was told after init but before shutdown that upload has changed from enabled to disabled. All Glean pings contain built-in metrics in the ping_info and client_info sections. This ping contains no metrics.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » deletion-request","id":"126","title":"deletion-request"},"127":{"body":"This is a built-in ping that is assembled out of the box by the Glean SDK. See the Glean SDK documentation for the metrics ping . This ping includes the client id . Data reviews for this ping: https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3 https://bugzilla.mozilla.org/show_bug.cgi?id=1557048#c13 Bugs related to this ping: https://bugzilla.mozilla.org/1512938 Reasons this ping may be sent: overdue: The last ping wasn't submitted on the current calendar day, but it's after 4am, so this ping submitted immediately reschedule: A ping was just submitted. This ping was rescheduled for the next calendar day at 4am. today: The last ping wasn't submitted on the current calendar day, but it is still before 4am, so schedule to send this ping on the current calendar day at 4am. tomorrow: The last ping was already submitted on the current calendar day, so schedule this ping for the next calendar day at 4am. upgrade: This ping was submitted at startup because the application was just upgraded. All Glean pings contain built-in metrics in the ping_info and client_info sections. In addition to those built-in metrics, the following metrics are added to the ping: Name Type Description Data reviews Extras Expiration Data Sensitivity glean.database.size memory_distribution The size of the database file at startup. Bug 1656589 never 1 glean.error.io counter The number of times we encountered an IO error when writing a pending ping to disk. Bug 1686233 never 1 glean.error.preinit_tasks_overflow counter The number of tasks that overflowed the pre-initialization buffer. Only sent if the buffer ever overflows. In Version 0 this reported the total number of tasks enqueued. Bug 1609482 never 1 glean.upload.deleted_pings_after_quota_hit counter The number of pings deleted after the quota for the size of the pending pings directory or number of files is hit. Since quota is only calculated for the pending pings directory, and deletion request ping live in a different directory, deletion request pings are never deleted. Bug 1601550 never 1 glean.upload.discarded_exceeding_pings_size memory_distribution The size of pings that exceeded the maximum ping size allowed for upload. Bug 1597761 never 1 glean.upload.in_flight_pings_dropped counter How many pings were dropped because we found them already in-flight. Bug 1816401 never 1 glean.upload.missing_send_ids counter How many ping upload responses did we not record as a success or failure (in glean.upload.send_success or glean.upload.send_failue, respectively) due to an inconsistency in our internal bookkeeping? Bug 1816400 never 1 glean.upload.pending_pings counter The total number of pending pings at startup. This does not include deletion-request pings. Bug 1665041 never 1 glean.upload.pending_pings_directory_size memory_distribution The size of the pending pings directory upon initialization of Glean. This does not include the size of the deletion request pings directory. Bug 1601550 never 1 glean.upload.ping_upload_failure labeled_counter Counts the number of ping upload failures, by type of failure. This includes failures for all ping types, though the counts appear in the next successfully sent metrics ping. Bug 1589124 status_code_4xxstatus_code_5xxstatus_code_unknownunrecoverablerecoverable never 1 glean.upload.send_failure timing_distribution Time needed for a failed send of a ping to the servers and getting a reply back. Bug 1814592 never 1 glean.upload.send_success timing_distribution Time needed for a successful send of a ping to the servers and getting a reply back Bug 1814592 never 1 glean.validation.foreground_count counter On mobile, the number of times the application went to foreground. Bug 1683707 never 1 glean.validation.pings_submitted labeled_counter A count of the pings submitted, by ping type. This metric appears in both the metrics and baseline pings. - On the metrics ping, the counts include the number of pings sent since the last metrics ping (including the last metrics ping) - On the baseline ping, the counts include the number of pings send since the last baseline ping (including the last baseline ping) Bug 1586764 never 1 glean.validation.shutdown_dispatcher_wait timing_distribution Time waited for the dispatcher to unblock during shutdown. Most samples are expected to be below the 10s timeout used. Bug 1828066 never 1 glean.validation.shutdown_wait timing_distribution Time waited for the uploader at shutdown. Bug 1814592 never 1 Data categories are defined here . Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » metrics","id":"127","title":"metrics"},"128":{"body":"A ping is a bundle of related metrics, gathered in a payload to be transmitted. The ping payload is encoded in JSON format and contains one or more of the common sections with shared information data. If data collection is enabled, the chosen Glean SDK may provide a set of built-in pings that are assembled out of the box without any developer intervention.","breadcrumbs":"Pings » Pings","id":"128","title":"Pings"},"129":{"body":"Payload structure The ping_info section seq start_time end_time reason (optional) experiments (optional) The client_info section app_build app_channel (optional) app_display_version build_date (optional) architecture client_id (optional) device_manufacturer (optional) device_model (optional) first_run_date os os_version android_sdk_version (optional) windows_build_number (optional) telemetry_sdk_build locale (optional) Ping submission URL Limitations Rate limiting Request body size limiting Storage quota Submitted headers Content-Type Date User-Agent (deprecated) X-Telemetry-Agent X-Debug-Id (optional) X-Source-Tags (optional)","breadcrumbs":"Pings » Table of contents","id":"129","title":"Table of contents"},"13":{"body":"In order for the Glean Kotlin SDK to generate an API for your metrics, two Gradle plugins must be included in your build: The Glean Gradle plugin JetBrains' Python envs plugin The Glean Gradle plugin is distributed through Mozilla's Maven, so we need to tell your build where to look for it by adding the following to the top of your build.gradle: buildscript { repositories { // Include the next clause if you are tracking snapshots of android components maven { url \"https://snapshots.maven.mozilla.org/maven2\" } maven { url \"https://maven.mozilla.org/maven2\" } dependencies { classpath \"org.mozilla.components:tooling-glean-gradle:{android-components-version}\" } }\n} Important As above, the {android-components-version} placeholder in the above link should be replaced with the version number of android components used in your project. The JetBrains Python plugin is distributed in the Gradle plugin repository, so it can be included with: plugins { id \"com.jetbrains.python.envs\" version \"0.0.26\"\n} Right before the end of the same file, we need to apply the Glean Gradle plugin. Set any additional parameters to control the behavior of the Glean Gradle plugin before calling apply plugin. // Optionally, set any parameters to send to the plugin.\next.gleanGenerateMarkdownDocs = true\napply plugin: \"org.mozilla.telemetry.glean-gradle-plugin\" Rosetta 2 required on Apple Silicon On Apple Silicon machines (M1/M2/M3 MacBooks and iMacs) Rosetta 2 is required for the bundled Python. See the Apple documentation about Rosetta 2 and Bug 1775420 for details. You can install it with softwareupdate --install-rosetta Offline builds The Glean Gradle plugin has limited support for offline builds of applications that use the Glean SDK. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Kotlin » Setting up metrics and pings code generation","id":"13","title":"Setting up metrics and pings code generation"},"130":{"body":"Every ping payload has the following keys at the top-level: The ping_info section contains core metadata that is included in every ping that doesn't set the metadata.include_info_sections property to false. The client_info section contains information that identifies the client. It is included in every ping that doesn't set the metadata.include_info_sections property to false. When included, it contains a persistent client identifier client_id, except when the include_client_id property is set to false. The following keys are only present if any metrics or events were recorded for the given ping: The metrics section contains the submitted values for all metric types except for events . It has keys for each of the metric types, under which is data for each metric. The events section contains the events recorded in the ping. See the payload documentation for more details for each metric type in the metrics and events section.","breadcrumbs":"Pings » Payload structure","id":"130","title":"Payload structure"},"131":{"body":"Metadata about the ping itself. This section is included in every ping that doesn't set the metadata.include_info_sections property to false. The following fields are included in the ping_info section. Optional fields are marked accordingly. seq Type: Counter , Lifetime: User A running counter of the number of times pings of this type have been sent. start_time Type: Datetime , Lifetime: User The time of the start of collection of the data in the ping, in local time and with millisecond precision (by default), including timezone information. ( Note : Custom pings can opt-out of precise timestamps and use minute precision.) end_time Type: Datetime , Lifetime: Ping The time of the end of collection of the data in the ping, in local time and with millisecond precision (by default), including timezone information. This is also the time this ping was generated and is likely well before ping transmission time. ( Note : Custom pings can opt-out of precise timestamps and use minute precision.) reason (optional) The reason the ping was submitted. The specific set of values and their meanings are defined for each metric type in the reasons field in the pings.yaml file. experiments (optional) A dictionary of active experiments. This object contains experiment annotations keyed by the experiment id. Each annotation contains the experiment branch the client is enrolled in and may contain a string to string map with additional data in the extra key. Both the id and branch are truncated to 30 characters. See Using the Experiments API on how to record experiments data. { \"\": { \"branch\": \"branch-id\", \"extra\": { \"some-key\": \"a-value\" } }\n}","breadcrumbs":"Pings » The ping_info section","id":"131","title":"The ping_info section"},"132":{"body":"A limited amount of metrics that are generally useful across products. The data is provided by the embedding application or automatically fetched by the Glean SDK. It is collected at initialization time and sent in every ping afterwards. For historical reasons it contains metrics that are only useful on a certain platform. This section is included in every ping that doesn't set the metadata.include_info_sections property to false. Additional metrics require a proposal Adding new metrics maintained by the Glean SDKs team will require a full proposal and details on why that value is useful across multiple platforms and products and needs Glean SDKs team ownership. The Glean SDKs are not taking ownership of new metrics that are platform- or product-specific. The following fields are included in the client_info section. Optional fields are marked accordingly. app_build Type: String , Lifetime: Application The build identifier generated by the CI system (e.g. \"1234/A\"). If the value was not provided through configuration, this metric gets set to Unknown. app_channel (optional) Type: String , Lifetime: Application The product-provided release channel (e.g. \"beta\"). app_display_version Type: String , Lifetime: Application The user-visible version string (e.g. \"1.0.3\"). The meaning of the string (e.g. whether semver or a git hash) is application-specific. If the value was not provided through configuration, this metric gets set to Unknown. build_date (optional) Type: Datetime , Lifetime: Application architecture Type: String , Lifetime: Application The architecture of the device (e.g. \"arm\", \"x86\"). client_id (optional) Type: UUID , Lifetime: User A UUID identifying a profile and allowing user-oriented correlation of data. device_manufacturer (optional) Type: String , Lifetime: Application The manufacturer of the device the application is running on. Not set if the device manufacturer can't be determined (e.g. on Desktop). device_model (optional) Type: String , Lifetime: Application The model of the device the application is running on. On Android, this is Build.MODEL, the user-visible marketing name, like \"Pixel 2 XL\". Not set if the device model can't be determined (e.g. on Desktop). first_run_date Type: Datetime , Lifetime: User The date of the first run of the application, in local time and with day precision, including timezone information. os Type: String , Lifetime: Application The name of the operating system (e.g. \"Linux\", \"Android\", \"iOS\"). os_version Type: String , Lifetime: Application The user-visible version of the operating system (e.g. \"1.2.3\"). If the version detection fails, this metric gets set to Unknown. android_sdk_version (optional) Type: String , Lifetime: Application The Android specific SDK version of the software running on this hardware device (e.g. \"23\"). windows_build_number (optional ) Type: Quantity , Lifetime: Application The optional Windows build number, reported by Windows (e.g. 22000) and not set for other platforms. telemetry_sdk_build Type: String , Lifetime: Application The version of the Glean SDK. locale (optional) Type: String , Lifetime: Application The locale of the application during initialization (e.g. \"es-ES\"). If the locale can't be determined on the system, the value is \"und\", to indicate \"undetermined\".","breadcrumbs":"Pings » The client_info section","id":"132","title":"The client_info section"},"133":{"body":"The pings that the Glean SDKs generate are submitted to the Mozilla servers at specific paths, in order to provide additional metadata without the need to unpack the ping payload.","breadcrumbs":"Pings » Ping submission","id":"133","title":"Ping submission"},"134":{"body":"A typical submission URL looks like \"/submit////\" where: : the address of the server that receives the pings; : a unique application id, automatically detected by the Glean SDK; this is the value returned by Context.getPackageName() ; : the name of the ping; this can be one of the pings available out of the box with the Glean SDK, or a custom ping; : the version of the Glean ping schema; : a unique identifier for this ping.","breadcrumbs":"Pings » URL","id":"134","title":"URL"},"135":{"body":"To keep resource usage in check, the Glean SDK enforces some limitations on ping uploading and ping storage. Rate limiting Only up to 15 ping submissions every 60 seconds are allowed. For the JavaScript SDK that limit is higher and up to 40 ping submissions every 60 seconds are allowed. Request body size limiting The body of a ping request may have up to 1MB (after compression). Pings that exceed this size are discarded and don't get uploaded. Size and number of discarded pings are recorded on the internal Glean metric glean.upload.discarded_exceeding_pings_size . Storage quota Pending pings are stored on disk. Storage is scanned every time Glean is initialized and upon scanning Glean checks its size. If it exceeds a size of 10MB or 250 pending pings, pings are deleted to get the storage back to an accepted size. Pings are deleted oldest first, until the storage size is below the quota. The number of deleted pings due to exceeding storage quota is recorded on the metric glean.upload.deleted_pings_after_quota_hit and the size of the pending pings directory is recorded (regardless on whether quota has been reached) on the metric glean.upload.pending_pings_directory_size . Deletion request pings are not subject to this limitation and never get deleted.","breadcrumbs":"Pings » Limitations","id":"135","title":"Limitations"},"136":{"body":"A pre-defined set of headers is additionally sent along with the submitted ping. Content-Type Describes the data sent to the server. Value is always application/json; charset=utf-8. Date Submission date/time in GMT/UTC+0 offset, e.g. Mon, 23 Jan 2019 10:10:10 GMT+00:00. User-Agent (deprecated) Up to Glean v44.0.0 and Glean.js v0.13.0 this contained the Glean SDK version and platform information. Newer Glean SDKs do not overwrite this header. See X-Telemetry-Agent for details. Clients might still send it, for example, when sending pings from browsers it will contain the characteristic browser UA string . This header is parsed by the Glean pipeline and can be queried at analysis time through the metadata.user_agent.* fields in the ping tables. X-Telemetry-Agent The Glean SDK version and platform this ping is sent from. Useful for debugging purposes when pings are sent to the error stream . as it describes the application and the Glean SDK used for sending the ping. It's looks like Glean/40.0.0 (Kotlin on Android), where 40.0.0 is the Glean Kotlin SDK version number and Kotlin on Android is the name of the language used by the SDK that sent the request plus the name of the platform it is running on. X-Debug-Id (optional) Debug header attached to Glean pings by using the debug APIs , e.g. test-tag. When this header is present, the ping is redirected to the Glean Debug View . X-Source-Tags (optional) A list of tags to associate with the ping, useful for clustering pings at analysis time, for example to tell data generated from CI from other data e.g. automation, perf. This header is attached to Glean pings by using the debug APIs . Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Submitted headers","id":"136","title":"Submitted headers"},"137":{"body":"Applications can define metrics that are sent in custom pings. Unlike the built-in pings, custom pings are sent explicitly by the application. This is useful when the scheduling of the built-in pings ( metrics , baseline and events ) are not appropriate for your data. Since the timing of the submission of custom pings is handled by the application, the measurement window is under the application's control. This is especially useful when metrics need to be tightly related to one another, for example when you need to measure the distribution of frame paint times when a particular rendering backend is in use. If these metrics were in different pings, with different measurement windows, it is much harder to do that kind of reasoning with much certainty.","breadcrumbs":"Pings » Adding new custom pings » Custom pings","id":"137","title":"Custom pings"},"138":{"body":"Custom pings must be defined in a pings.yaml file , placed in the same directory alongside your app's metrics.yaml file. For example, to define a custom ping called search specifically for search information: $schema: moz://mozilla.org/schemas/glean/pings/2-0-0 search: description: > A ping to record search data. metadata: tags: - Search include_client_id: false notification_emails: - CHANGE-ME@example.com bugs: - http://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review Tags are an optional feature you can use to provide an additional layer of categorization to pings. Any tags specified in the metadata section of a ping must have a corresponding entry in a tags YAML registry for your project. Refer to the pings YAML registry format for a full reference on the pings.yaml file structure.","breadcrumbs":"Pings » Adding new custom pings » Defining a custom ping","id":"138","title":"Defining a custom ping"},"139":{"body":"To send a metric on a custom ping, you add the custom ping's name to the send_in_pings parameter in the metrics.yaml file.","breadcrumbs":"Pings » Adding new custom pings » Sending metrics in a custom ping","id":"139","title":"Sending metrics in a custom ping"},"14":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Swift project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so. Currently, this SDK only supports the iOS platform.","breadcrumbs":"Adding Glean to your project » Swift » Adding Glean to your Swift project","id":"14","title":"Adding Glean to your Swift project"},"140":{"body":"After defining a custom ping, before it can be used for sending data, its metadata must be loaded into your application or library . For example, to define a new metric to record the default search engine, which is sent in a custom ping called search, put search in the send_in_pings parameter. Note that it is an error to specify a ping in send_in_pings that does not also have an entry in pings.yaml. search.default: name: type: string description: > The name of the default search engine. send_in_pings: - search If this metric should also be sent in the default ping for the given metric type, you can add the special value default to send_in_pings: send_in_pings: - search - default","breadcrumbs":"Pings » Adding new custom pings » Ping metadata must be loaded before sending!","id":"140","title":"Ping metadata must be loaded before sending!"},"141":{"body":"For custom pings that contain event metrics, the glean.restarted event is injected by Glean on every application restart that may happen during the pings measurement window. Note : All leading and trailing glean.restarted events are omitted from each ping.","breadcrumbs":"Pings » Adding new custom pings » The glean.restarted event","id":"141","title":"The glean.restarted event"},"142":{"body":"Event timestamps are always calculated relative to the first event in a ping. The first event will always have timestamp 0 and subsequent events will have timestamps corresponding to the elapsed amount of milliseconds since that first event. That is also the case for events recorded throughout restarts. Example In the below example payload, there were two events recorded on the first application run. The first event is timestamp 0 and the second event happens one second after the first one, so it has timestamp 1000. The application is restarted one hour after the first event and a glean.restarted event is recorded, timestamp 3600000. Finally, an event is recorded during the second application run two seconds after restart, timestamp 3602000. { ... \"events\": [ { \"timestamp\": 0, \"category\": \"examples\", \"name\": \"event_example\", }, { \"timestamp\": 1000, \"category\": \"examples\", \"name\": \"event_example\" }, { \"timestamp\": 3600000, \"category\": \"glean\", \"name\": \"restarted\" }, { \"timestamp\": 3602000, \"category\": \"examples\", \"name\": \"event_example\" }, ]\n} Caveat: Handling decreasing time offsets For events recorded in a single application run, Glean relies on a monotonically increasing timer to calculate event timestamps, while for calculating the time elapsed between application runs Glean has to rely on the computer clock, which is not necessarily monotonically increasing. In the case that timestamps in between application runs are not monotonically increasing, Glean will take the value of the previous timestamp and add one millisecond, thus guaranteeing that timestamps are always increasing. Checking for decreasing time offsets between restarts When this edge case is hit, Glean records an InvalidValue error for the glean.restarted metric. This metric may be consulted at analysis time. It is sent in the same ping where the error happened. In the below example payload, the first and second application runs go exactly like in the example above . The only difference is that when the restart happens, the offset between the absolute time of the first event and the absolute time of the restart is not enough to keep the timestamps increasing. That may happen for many reasons, such as a change in timezones or simply a manual change in the clock by the user. In this case, Glean will ignore the incorrect timestamp and add one millisecond to the last timestamp of the previous run, in order to keep the monotonically increasing nature of the timestamps. { ... \"events\": [ { \"timestamp\": 0, \"category\": \"examples\", \"name\": \"event_example\", }, { \"timestamp\": 1000, \"category\": \"examples\", \"name\": \"event_example\" }, { \"timestamp\": 1001, \"category\": \"glean\", \"name\": \"restarted\" }, { \"timestamp\": 3001, \"category\": \"examples\", \"name\": \"event_example\" }, ]\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Adding new custom pings » Event timestamps throughout application restarts","id":"142","title":"Event timestamps throughout application restarts"},"143":{"body":"Applications defining custom pings can use use the ping testing API to test these pings in unit tests.","breadcrumbs":"Pings » Testing custom pings » Testing custom pings","id":"143","title":"Testing custom pings"},"144":{"body":"The schedule of custom pings depends on the specific application implementation, since it is up to the SDK user to define the ping semantics. This makes the testing strategy a bit more complex, but usually boiling down to: Triggering the code path that accumulates/records the data. Defining a callback validation function using the ping testing API . Finally triggering the code path that submits the custom ping or submitting the ping using the submit API . Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Testing custom pings » General testing strategy","id":"144","title":"General testing strategy"},"145":{"body":"If data collection is enabled, the Glean SDKs provide a set of built-in pings that are assembled out of the box without any developer intervention. The following is a list of these built-in pings: baseline ping : A small ping sent every time the application goes to foreground and background. Going to foreground also includes when the application starts. deletion-request ping : Sent when the user disables telemetry in order to request a deletion of their data. events ping : The default ping for events. Sent every time the application goes to background or a certain number of events is reached. Is not sent when there are no events recorded, even if there are other metrics with values. metrics ping : The default ping for metrics. Sent approximately daily. Applications can also define and send their own custom pings when the schedules of these pings is not suitable. There is also a high-level overview of how the metrics and baseline pings relate and the timings they record.","breadcrumbs":"Pings » Pings sent by Glean » Pings sent by Glean","id":"145","title":"Pings sent by Glean"},"146":{"body":"SDK baseline deletion-request events metrics Kotlin ✅ ✅ ✅ ✅ Swift ✅ ✅ ✅ ✅ Python ✅ [1] ✅ ✅ [2] ❌ Rust ✅ ✅ ✅ ✅ JavaScript ❌ ✅ ✅ ❌ Firefox Desktop ✅ ✅ ✅ ✅ Not sent automatically. Use the handle_client_active and handle_client_inactive API. Sent on startup when pending events are stored. Additionally sent when handle_client_inactive is called.","breadcrumbs":"Pings » Pings sent by Glean » Available pings per platform","id":"146","title":"Available pings per platform"},"147":{"body":"These docs refer to application 'foreground' and 'background' state in several places.","breadcrumbs":"Pings » Pings sent by Glean » Defining foreground and background state","id":"147","title":"Defining foreground and background state"},"148":{"body":"For Android, this specifically means the activity becomes visible to the user, it has entered the Started state, and the system invokes the onStart() callback.","breadcrumbs":"Pings » Pings sent by Glean » Foreground","id":"148","title":"Foreground"},"149":{"body":"This specifically means when the activity is no longer visible to the user, it has entered the Stopped state, and the system invokes the onStop() callback. This may occur, if the user uses Overview button to change to another app, the user presses the Back button and navigates to a previous application or the home screen, or if the user presses the Home button to return to the home screen. This can also occur if the user navigates away from the application through some notification or other means. The system may also call onStop() when the activity has finished running, and is about to be terminated.","breadcrumbs":"Pings » Pings sent by Glean » Background","id":"149","title":"Background"},"15":{"body":"Python >= 3.8.","breadcrumbs":"Adding Glean to your project » Swift » Requirements","id":"15","title":"Requirements"},"150":{"body":"For iOS, the Glean Swift SDK attaches to the willEnterForegroundNotification . This notification is posted by the OS shortly before an app leaves the background state on its way to becoming the active app.","breadcrumbs":"Pings » Pings sent by Glean » Foreground","id":"150","title":"Foreground"},"151":{"body":"For iOS, this specifically means when the app is no longer visible to the user, or when the UIApplicationDelegate receives the applicationDidEnterBackground event. This may occur if the user opens the task switcher to change to another app, or if the user presses the Home button to show the home screen. This can also occur if the user navigates away from the app through a notification or other means. Note: Glean does not currently support Scene based lifecycle events that were introduced in iOS 13. Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Background","id":"151","title":"Background"},"152":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » The baseline ping","id":"152","title":"The baseline ping"},"153":{"body":"This ping is intended to provide metrics that are managed by the Glean SDKs themselves, and not explicitly set by the application or included in the application's metrics.yaml file.","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Description","id":"153","title":"Description"},"154":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop baseline ping ✅ ✅ ❌ ✅ ❌ ✅","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Platform availability","id":"154","title":"Platform availability"},"155":{"body":"The baseline ping is automatically submitted with a reason: active when the application becomes active (on mobile it means getting to foreground ). These baseline pings do not contain duration. The baseline ping is automatically submitted with a reason: inactive when the application becomes inactive (on mobile it means getting to background ). If no baseline ping is triggered when becoming inactive (e.g. the process is abruptly killed) a baseline ping with reason dirty_startup will be submitted on the next application startup. This only happens from the second application start onward. See also the ping schedules and timing overview .","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Scheduling","id":"155","title":"Scheduling"},"156":{"body":"The baseline ping also includes the common ping sections found in all pings. It also includes a number of metrics defined in the Glean SDKs themselves .","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Contents","id":"156","title":"Contents"},"157":{"body":"A quick note about querying ping contents (i.e. for sql.telemetry.mozilla.org ): Each metric in the baseline ping is organized by its metric type, and uses a namespace of glean.baseline. For instance, in order to select duration you would use metrics.timespan['glean.baseline.duration']. If you were trying to select a String based metric such as os, then you would use metrics.string['glean.baseline.os']","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Querying ping contents","id":"157","title":"Querying ping contents"},"158":{"body":"{ \"ping_info\": { \"experiments\": { \"third_party_library\": { \"branch\": \"enabled\" } }, \"seq\": 0, \"start_time\": \"2019-03-29T09:50-04:00\", \"end_time\": \"2019-03-29T09:53-04:00\", \"reason\": \"foreground\" }, \"client_info\": { \"telemetry_sdk_build\": \"0.49.0\", \"first_run_date\": \"2019-03-29-04:00\", \"os\": \"Android\", \"android_sdk_version\": \"27\", \"os_version\": \"8.1.0\", \"device_manufacturer\": \"Google\", \"device_model\": \"Android SDK built for x86\", \"architecture\": \"x86\", \"app_build\": \"1\", \"app_display_version\": \"1.0\", \"client_id\": \"35dab852-74db-43f4-8aa0-88884211e545\" }, \"metrics\": { \"timespan\": { \"glean.baseline.duration\": { \"value\": 52, \"time_unit\": \"second\" } } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Example baseline ping","id":"158","title":"Example baseline ping"},"159":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » The deletion-request ping","id":"159","title":"The deletion-request ping"},"16":{"body":"The Glean Swift SDK can be consumed as a Swift Package. In your Xcode project add a new package dependency: https://github.com/mozilla/glean-swift Use the dependency rule \"Up to Next Major Version\". Xcode will automatically fetch the latest version for you. The Glean library will be automatically available to your code when you import it: import Glean","breadcrumbs":"Adding Glean to your project » Swift » Setting up the dependency","id":"16","title":"Setting up the dependency"},"160":{"body":"This ping is submitted when a user opts out of sending technical and interaction data. This ping contains the client id. This ping is intended to communicate to the Data Pipeline that the user wishes to have their reported Telemetry data deleted. As such it attempts to send itself at the moment the user opts out of data collection, and continues to try and send itself. Adding secondary ids It is possible to send secondary ids in the deletion request ping. For instance, if the application is migrating from legacy telemetry to Glean, the legacy client ids can be added to the deletion request ping by creating a metrics.yaml entry for the id to be added with a send_in_pings value of deletion_request. An example metrics.yaml entry might look like this: legacy_client_id: type: uuid description: A UUID uniquely identifying the legacy client. send_in_pings: - deletion_request ...","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Description","id":"160","title":"Description"},"161":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop deletion-request ping ✅ ✅ ✅ ✅ ✅ ✅","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Platform availability","id":"161","title":"Platform availability"},"162":{"body":"The deletion-request ping is automatically submitted when upload is disabled in Glean. If upload fails, it is retried after Glean is initialized.","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Scheduling","id":"162","title":"Scheduling"},"163":{"body":"The deletion-request does not contain additional metrics aside from secondary ids that have been added.","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Contents","id":"163","title":"Contents"},"164":{"body":"{ \"ping_info\": { \"seq\": 0, \"start_time\": \"2019-12-06T09:50-04:00\", \"end_time\": \"2019-12-06T09:53-04:00\" }, \"client_info\": { \"telemetry_sdk_build\": \"22.0.0\", \"first_run_date\": \"2019-03-29-04:00\", \"os\": \"Android\", \"android_sdk_version\": \"28\", \"os_version\": \"9\", \"device_manufacturer\": \"Google\", \"device_model\": \"Android SDK built for x86\", \"architecture\": \"x86\", \"app_build\": \"1\", \"app_display_version\": \"1.0\", \"client_id\": \"35dab852-74db-43f4-8aa0-88884211e545\" }, \"metrics\": { \"uuid\": { \"legacy_client_id\": \"5faffa6d-6147-4d22-a93e-c1dbd6e06171\" } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Example deletion-request ping","id":"164","title":"Example deletion-request ping"},"165":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » The events ping","id":"165","title":"The events ping"},"166":{"body":"The events ping's purpose is to transport event metric information. If the application crashes, an events ping is generated next time the application starts with events that were not sent before the crash.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Description","id":"166","title":"Description"},"167":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop events ping ✅ ✅ ✅ ✅ ✅ ✅","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Platform availability","id":"167","title":"Platform availability"},"168":{"body":"The events ping is automatically submitted under the following circumstances: If there are any recorded events to send when the application becomes inactive (on mobile, this means going to background ). When the queue of events exceeds Glean.configuration.maxEvents (default 1 for Glean.js, 500 for all other SDKs). This configuration option can be changed at initialization or through Server Knobs . If there are any unsent events found on disk when starting the application. (This results in this ping never containing the glean.restarted event.)","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Scheduling","id":"168","title":"Scheduling"},"169":{"body":"Since the Glean Python and JavaScript SDKs don't have a generic concept of \"inactivity\", case (1) above cannot be handled automatically. On Python, users can call the handle_client_inactive API to let Glean know the app is inactive and that will trigger submission of the events ping. On JavaScript there is no such API and only cases (2) and (3) apply.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Python and JavaScript caveats","id":"169","title":"Python and JavaScript caveats"},"17":{"body":"The metrics.yaml file is parsed at build time and Swift code is generated. Add a new metrics.yaml file to your Xcode project. Follow these steps to automatically run the parser at build time: Download the sdk_generator.sh script from the Glean repository: https://raw.githubusercontent.com/mozilla/glean/{latest-release}/glean-core/ios/sdk_generator.sh Pick the correct version As above, the {latest-version} placeholder should be replaced with the version number of Glean Swift SDK release used in this project. Add the sdk_generator.sh file to your Xcode project. On your application targets' Build Phases settings tab, click the + icon and choose New Run Script Phase. Create a Run Script in which you specify your shell (ex: /bin/sh), add the following contents to the script area below the shell: bash $PWD/sdk_generator.sh Set additional options to control the behavior of the script. Add the path to your metrics.yaml and (optionally) pings.yaml and tags.yaml under \"Input files\": $(SRCROOT)/{project-name}/metrics.yaml\n$(SRCROOT)/{project-name}/pings.yaml\n$(SRCROOT)/{project-name}/tags.yaml Add the path to the generated code file to the \"Output Files\": $(SRCROOT)/{project-name}/Generated/Metrics.swift If you are using Git, add the following lines to your .gitignore file: .venv/\n{project-name}/Generated This will ignore files that are generated at build time by the sdk_generator.sh script. They don't need to be kept in version control, as they can be re-generated from your metrics.yaml and pings.yaml files. Glean and embedded extensions Metric collection is a no-op in application extensions and Glean will not run. Since extensions run in a separate sandbox and process from the application, Glean would run in an extension as if it were a completely separate application with different client ids and storage. This complicates things because Glean doesn’t know or care about other processes. Because of this, Glean is purposefully prevented from running in an application extension and if metrics need to be collected from extensions, it's up to the integrating application to pass the information to the base application to record in Glean. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Swift » Setting up metrics and pings code generation","id":"17","title":"Setting up metrics and pings code generation"},"170":{"body":"At the top-level, this ping contains the following keys: client_info: The information common to all pings . ping_info: The information common to all pings . events: An array of all of the events that have occurred since the last time the events ping was sent. Each entry in the events array is an object with the following properties: \"timestamp\": The milliseconds relative to the first event in the ping. \"category\": The category of the event, as defined by its location in the metrics.yaml file. \"name\": The name of the event, as defined in the metrics.yaml file. \"extra\" (optional): A mapping of strings to strings providing additional data about the event. Keys are restricted to 40 UTF-8 bytes while values in the extra object are limited a maximum length of 500 UTF-8 bytes.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Contents","id":"170","title":"Contents"},"171":{"body":"{ \"ping_info\": { \"experiments\": { \"third_party_library\": { \"branch\": \"enabled\" } }, \"seq\": 0, \"start_time\": \"2019-03-29T09:50-04:00\", \"end_time\": \"2019-03-29T10:02-04:00\" }, \"client_info\": { \"telemetry_sdk_build\": \"0.49.0\", \"first_run_date\": \"2019-03-29-04:00\", \"os\": \"Android\", \"android_sdk_version\": \"27\", \"os_version\": \"8.1.0\", \"device_manufacturer\": \"Google\", \"device_model\": \"Android SDK built for x86\", \"architecture\": \"x86\", \"app_build\": \"1\", \"app_display_version\": \"1.0\", \"client_id\": \"35dab852-74db-43f4-8aa0-88884211e545\" }, \"events\": [ { \"timestamp\": 0, \"category\": \"examples\", \"name\": \"event_example\", \"extra\": { \"metadata1\": \"extra\", \"metadata2\": \"more_extra\" } }, { \"timestamp\": 1000, \"category\": \"examples\", \"name\": \"event_example\" } ]\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Example event JSON","id":"171","title":"Example event JSON"},"172":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The metrics ping","id":"172","title":"The metrics ping"},"173":{"body":"The metrics ping is intended for all of the metrics that are explicitly set by the application or are included in the application's metrics.yaml file (except events). The reported data is tied to the ping's measurement window , which is the time between the collection of two metrics pings. Ideally, this window is expected to be about 24 hours, given that the collection is scheduled daily at 04:00. However, the metrics ping is only submitted while the application is actually running, so in practice, it may not meet the 04:00 target very frequently. Data in the ping_info section of the ping can be used to infer the length of this window and the reason that triggered the ping to be submitted. If the application crashes, unsent recorded metrics are sent along with the next metrics ping. Additionally, it is undesirable to mix metric recording from different versions of the application. Therefore, if a version upgrade is detected, the metrics ping is collected immediately before further metrics from the new version are recorded.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Description","id":"173","title":"Description"},"174":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop metrics ping ✅ ✅ ❌ ✅ ❌ ✅","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Platform availability","id":"174","title":"Platform availability"},"175":{"body":"The desired behavior is to collect the ping at the first available opportunity after 04:00 local time on a new calendar day, but given constraints of the platform, it can only be submitted while the application is running. This breaks down into three scenarios: the application was just installed; the application was just upgraded (the version of the app is different from the last time the app was run); the application was just started (after a crash or a long inactivity period); the application was running at 04:00. In the first case, since the application was just installed, if the due time for the current calendar day has passed, a metrics ping is immediately generated and scheduled for sending (reason code overdue). Otherwise, if the due time for the current calendar day has not passed, a ping collection is scheduled for that time (reason code today). In the second case, if a version change is detected at startup, the metrics ping is immediately submitted so that metrics from one version are not aggregated with metrics from another version (reason code upgrade). In the third case, if the metrics ping was not already collected on the current calendar day, and it is before 04:00, a collection is scheduled for 04:00 on the current calendar day (reason code today). If it is after 04:00, a new collection is scheduled immediately (reason code overdue). Lastly, if a ping was already collected on the current calendar day, the next one is scheduled for collecting at 04:00 on the next calendar day (reason code tomorrow). In the fourth and last case, the application is running during a scheduled ping collection time. The next ping is scheduled for 04:00 the next calendar day (reason code reschedule). More scheduling examples are included below. See also the ping schedules and timing overview .","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Scheduling","id":"175","title":"Scheduling"},"176":{"body":"The metrics ping contains all of the metrics defined in metrics.yaml (except events) that don't specify a ping or where default is specified in their send in pings property. Additionally, error metrics in the glean.error category are included in the metrics ping. The metrics ping shall also include the common ping_info and 'client_info' sections. It also includes a number of metrics defined in the Glean SDKs themselves .","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Contents","id":"176","title":"Contents"},"177":{"body":"Information about query ping contents is available in Accessing Glean data in the Firefox data docs.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Querying ping contents","id":"177","title":"Querying ping contents"},"178":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Scheduling Examples","id":"178","title":"Scheduling Examples"},"179":{"body":"The application is opened on Feb 7 on 15:00, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 8 on 17:00. Glean notes that we passed local 04:00 since MW1. Glean closes MW1, with: start_time=Feb7/15:00; end_time=Feb8/17:00. Glean records metric A again, into MW2, which has a start_time of Feb8/17:00.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Crossing due time with the application closed","id":"179","title":"Crossing due time with the application closed"},"18":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Python project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Python » Adding Glean to your Python project","id":"18","title":"Adding Glean to your Python project"},"180":{"body":"The application is opened on Feb 7 on 15:00 in timezone UTC, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 8 on 17:00 in timezone UTC+1. Glean notes that we passed local 04:00 UTC+1 since MW1. Glean closes MW1, with: start_time=Feb7/15:00/UTC; end_time=Feb8/17:00/UTC+1. Glean records metric A again, into MW2.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Crossing due time and changing timezones","id":"180","title":"Crossing due time and changing timezones"},"181":{"body":"The application is opened on Feb 7 on 15:00 in timezone UTC, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 16 on 17:00 in timezone UTC. Glean notes that we passed local 04:00 UTC since MW1. Glean closes MW1, with: start_time=Feb7/15:00/UTC; end_time=Feb16/17:00/UTC. Glean records metric A again, into MW2.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The application doesn’t run in a week","id":"181","title":"The application doesn’t run in a week"},"182":{"body":"The application is opened on Feb 7 on 15:00 in timezone UTC, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 16 on 17:00 in timezone UTC+1. Glean notes that we passed local 04:00 UTC+1 since MW1. Glean closes MW1, with: start_time=Feb7/15:00/UTC end_time=Feb16/17:00/UTC+1. Glean records metric A again, into MW2.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The application doesn’t run for a week, and when it’s finally re-opened the timezone has changed","id":"182","title":"The application doesn’t run for a week, and when it’s finally re-opened the timezone has changed"},"183":{"body":"The application is opened on Feb 7 at 15:00 in timezone UTC+11, closed at 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 8 at 04:30 in timezone UTC+11. Glean notes that we passed local 04:00 UTC+11. Glean closes MW1, with: start_time=Feb7/15:00/UTC+11; end_time=Feb8/04:30/UTC+11. Glean records metric A again, into MW2. The user changes to timezone UTC-10 and opens the application at Feb 7 at 22:00 in timezone UTC-10 Glean records metric A again, into MW2 (not MW1, which was already sent). The user opens the application at Feb 8 05:00 in timezone UTC-10 Glean notes that we have not yet passed local 04:00 on Feb 9 Measurement window MW2 remains the current measurement window The user opens the application at Feb 9 07:00 in timezone UTC-10 Glean notes that we have passed local 04:00 on Feb 9 Glean closes MW2 with: start_time=Feb8/04:30/UTC+11; end_time=Feb9/19:00/UTC-10. Glean records metric A again, into MW3. Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The user changes timezone in an extreme enough fashion that they cross 04:00 twice on the same date","id":"183","title":"The user changes timezone in an extreme enough fashion that they cross 04:00 twice on the same date"},"184":{"body":"Full reference details about the metrics and baseline ping schedules are detailed elsewhere. The following diagram shows a typical timeline of a mobile application, when pings are sent and what timing-related information is included. ping timeline diagram There are two distinct runs of the application, where the OS shutdown the application at the end of Run 1, and the user started it up again at the beginning of Run 2. There are three distinct foreground sessions, where the application was visible on the screen and the user was able to interact with it. The rectangles for the baseline and metrics pings represent the measurement windows of those pings, which always start exactly at the end of the preceding ping. The ping_info.start_time and ping_info.end_time metrics included in these pings correspond to these beginning and the end of their measurement windows. The baseline.duration metric (included only in baseline pings) corresponds to amount of time the application spent on the foreground, which, since measurement window always extend to the next ping, is not always the same thing as the baseline ping's measurement window. The submission_timestamp is the time the ping was received at the telemetry endpoint, added by the ingestion pipeline. It is not exactly the same as ping_info.end_time, since there may be various networking and system latencies both on the client and in the ingestion pipeline (represented by the dotted horizontal line, not to scale). Also of note is that start_time/end_time are measured using the client's real-time clock in its local timezone, which is not a fully reliable source of time. The \"Baseline 4\" ping illustrates an important corner case. When \"Session 2\" ended, the OS also shut down the entire process, and the Glean SDK did not have an opportunity to send a baseline ping immediately. In this case, it is sent at the next available opportunity when the application starts up again in \"Run 2\". This baseline ping is annotated with the reason code dirty_startup. The \"Metrics 2\" ping likewise illustrates another important corner case. \"Metrics 1\" was able to be sent at the target time of 04:00 (local device time) because the application was currently running. However, the next time 04:00 came around, the application was not active, so the Glean SDK was unable to send a metrics ping. It is sent at the next available opportunity, when the application starts up again in \"Run 2\". This metrics ping is annotated with the reason code overdue. NOTE : Ping scheduling and other application lifecycle dependent activities are not set up when Glean is used in a non-main process. See initializing Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Schedules and timings overview » Ping schedules and timings overview","id":"184","title":"Ping schedules and timings overview"},"185":{"body":"Glean provides Server Knobs, a Data Control Plane through which Glean runtime settings can be changed remotely including the ability to enable, disable or throttle metrics and pings through a Nimbus rollout or experiment. Products can use this capability to control \"data traffic\", similar to how a network control plane controls \"network traffic\". Server Knobs provides the ability to do the following: Allow runtime changes to data collection without needing to land code and ride release trains. Eliminate the need for manual creation and maintenance of feature flags specific to data collection. Sampling of measurements from a subset of the population so that we do not collect or ingest more data than is necessary from high traffic areas of an application instrumented with Glean metrics. Operational safety through being able to react to high-volume or unwanted data. Visibility into sampling and sampling rates for remotely configured metrics.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Server Knobs: Glean Data Control Plane","id":"185","title":"Server Knobs: Glean Data Control Plane"},"186":{"body":"Controlling Metrics with Server Knobs Controlling Pings with Server Knobs Other Server Knobs Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Contents","id":"186","title":"Contents"},"187":{"body":"Glean provides a Data Control Plane through which metrics can be enabled, disabled or throttled through a Nimbus rollout or experiment. Products can use this capability to control \"data-traffic\", similar to how a network control plane controls \"network-traffic\". This provides the ability to do the following: Allow runtime changes to data collection without needing to land code and ride release trains. Eliminate the need for manual creation and maintenance of feature flags specific to data collection. Sampling of measurements from a subset of the population so that we do not collect or ingest more data than is necessary from high traffic areas of an application instrumented with Glean metrics. Operational safety through being able to react to high-volume or unwanted data. Visibility into sampling and sampling rates for remotely configured metrics. For information on controlling pings with Server Knobs, see the metrics documentation for Server Knobs - Pings .","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Data Control Plane (a.k.a. Server Knobs)","id":"187","title":"Data Control Plane (a.k.a. Server Knobs)"},"188":{"body":"Example Scenarios Product Integration Experimenter Configuration Advanced Topics Frequently Asked Questions Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Contents","id":"188","title":"Contents"},"189":{"body":"","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Example Scenarios » Example Scenarios","id":"189","title":"Example Scenarios"},"19":{"body":"We recommend using a virtual environment for your work to isolate the dependencies for your project. There are many popular abstractions on top of virtual environments in the Python ecosystem which can help manage your project dependencies. The Glean Python SDK currently has prebuilt wheels on PyPI for Windows (i686 and x86_64), Linux/glibc (x86_64) and macOS (x86_64) . For other platforms, including BSD or Linux distributions that don't use glibc, such as Alpine Linux, the glean_sdk package will be built from source on your machine. This requires that Cargo and Rust are already installed. The easiest way to do this is through rustup . Once you have your virtual environment set up and activated, you can install the Glean Python SDK into it using: $ python -m pip install glean_sdk Important Installing Python wheels is still a rapidly evolving feature of the Python package ecosystem. If the above command fails, try upgrading pip: python -m pip install --upgrade pip Important The Glean Python SDK make extensive use of type annotations to catch type related errors at build time. We highly recommend adding mypy to your continuous integration workflow to catch errors related to type mismatches early.","breadcrumbs":"Adding Glean to your project » Python » Setting up the dependency","id":"19","title":"Setting up the dependency"},"190":{"body":"Landing a metric that is disabled by default and then enabling it for some segment of the population This scenario can be expected in cases such as when instrumenting high-traffic areas of the browser. These are instrumentations that would normally generate a lot of data because they are recorded frequently for every user. In this case, the telemetry which has the potential to be high-volume would land with the “disabled” property of the metric set to “true”. This will ensure that it does not record data by default. An example metric definition with this property set would look something like this: urlbar: impression: disabled: true type: event description: Recorded when urlbar results are shown to the user. ... Once the instrumentation is landed, it can now be enabled for a subset of the population through a Nimbus rollout or experiment without further code changes. Through Nimbus , we have the ability to sample the population by setting the audience size to a certain percentage of the eligible population. Nimbus also provides the ability to target clients based on the available targeting parameters for a particular application (for instance, Firefox Desktop’s available targeting parameters). This can be used to slowly roll out instrumentations to the population in order to validate the data we are collecting before measuring the entire population and potentially avoiding costs and overhead by collecting data that isn’t useful. Note: if planning to use this feature for permanently keeping a data collection on for the whole population, please consider enabling the metrics by default by setting disabled: false in the metrics.yaml. Then you can \"down-sample\" if necessary (see Scenario 2 below).","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Example Scenarios » Scenario 1","id":"190","title":"Scenario 1"},"191":{"body":"Landing a metric that is enabled by default and then disabling it for a segment of the population This is effectively the inverse of Scenario 1 , instead of landing the metrics disabled by default, they are landed as enabled so that they are normally collecting data from the entire population. Similar to the first scenario, a Nimbus rollout or experiment can then be launched to configure the metrics as disabled for a subset of the population. This provides a mechanism by which we can disable the sending of telemetry from an audience that we do not wish to collect telemetry data from. For instance, this could be useful in tuning out telemetry data coming from automation sources or bad actors. In addition, it provides a way to disable broken, incorrect, or unexpectedly noisy instrumentations as an operational safety mechanism to directly control the volume of the data we collect and ingest. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Example Scenarios » Scenario 2","id":"191","title":"Scenario 2"},"192":{"body":"In order to enable sharing of this functionality between multiple Nimbus Features, the implementation is not defined as part of the stand-alone Glean feature defined in the Nimbus Feature Manifest, but instead is intended to be added as a feature variable to other Nimbus Feature definitions for them to make use of.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Product Integration","id":"192","title":"Product Integration"},"193":{"body":"In order to make use of the remote metric configuration in a Firefox Desktop component, there are two available options.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Desktop Feature Integration","id":"193","title":"Desktop Feature Integration"},"194":{"body":"Glean provides a general Nimbus feature that can be used for configuration of metrics named glean. Simply select the glean feature along with your Nimbus feature from the Experimenter UI when configuring the experiment or rollout (see Nimbus documentation for more information on multi-feature experiments). The glean Nimbus feature requires the gleanMetricConfiguration variable to be used to provide the required metric configuration. The format of the configuration is a map of the fully qualified metric name (category.name) of the metric to a boolean value representing whether the metric is enabled. If a metric is omitted from this map, it will default to the value found in the metrics.yaml. An example configuration for the glean feature can be found on the Experimenter Configuration page.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 1:","id":"194","title":"Integration Option 1:"},"195":{"body":"A second option that can give you more control over the metric configuration, especially if there are more than one experiments or rollouts that are currently using the glean feature from Option 1 above, is to add a Feature Variable to represent the Glean metric configuration in your own feature. This can be accomplished by modifying the FeatureManifest.yaml file, adding a variable through which to pass metric configurations. Glean will handle merging this configuration with other metrics configurations for you (See Advanced Topics for more info on this). An example feature manifest entry would look like the following: variables: ... // Definitions of other feature variables gleanMetricConfiguration: type: json description: >- \"Glean metric configuration\" This definition allows for configuration to be set in a Nimbus rollout or experiment and fetched by the client to be applied based on the enrollment. Once the Feature Variable has been defined, the final step is to fetch the configuration from Nimbus and supply it to the Glean API. This can be done during initialization and again any time afterwards, such as in response to receiving an updated configuration from Nimbus. Glean will merge this configuration with any other active configurations and enable or disable the metrics accordingly. An example call to set a configuration through your Nimbus Feature could look like this: // Fetch the Glean metric configuration from your feature's Nimbus variable\nlet cfg = lazy.NimbusFeatures.yourNimbusFeatureName.getVariable( \"gleanMetricConfiguration\"\n);\n// Apply the configuration through the Glean API\nServices.fog.setMetricsFeatureConfig(JSON.stringify(cfg)); It is also recommended to register to listen for updates for the Nimbus Feature and apply new configurations as soon as possible. The following example illustrates how a Nimbus Feature might register and update the metric configuration whenever there is a change to the Nimbus configuration: // Register to listen for the `onUpdate` event from Nimbus\nlazy.NimbusFeatures.yourNimbusFeatureName.onUpdate(() => { // Fetch the Glean metric configuration from your feature's Nimbus variable let cfg = lazy.NimbusFeatures.yourNimbusFeatureName.getVariable( \"gleanMetricConfiguration\" ); // Apply the configuration through the Glean API Services.fog.setMetricsFeatureConfig(JSON.stringify(cfg));\n});","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 2 (Advanced use):","id":"195","title":"Integration Option 2 (Advanced use):"},"196":{"body":"","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Mobile Feature Integration","id":"196","title":"Mobile Feature Integration"},"197":{"body":"Glean provides a general Nimbus feature that can be used for configuration of metrics named glean. Simply select the glean feature along with your Nimbus feature from the Experimenter UI when configuring the experiment or rollout (see Nimbus documentation for more information on multi-feature experiments). The glean Nimbus feature requires the gleanMetricConfiguration variable to be used to provide the required metric configuration. The format of the configuration is a map of the fully qualified metric name (category.name) of the metric to a boolean value representing whether the metric is enabled. If a metric is omitted from this map, it will default to the value found in the metrics.yaml. An example configuration for the glean feature can be found on the Experimenter Configuration page.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 1:","id":"197","title":"Integration Option 1:"},"198":{"body":"A second option that can give you more control over the metric configuration, especially if there are more than one experiments or rollouts that are currently using the glean feature from Option 1 above, is to add a Feature Variable to represent the Glean metric configuration in your own feature. This can be accomplished by modifying the Nimbus Feature Manifest file, adding a variable through which to pass metric configurations. Glean will handle merging this configuration with other metrics configurations for you (See Advanced Topics for more info on this). An example feature manifest entry would look like the following: features: homescreen: description: | The homescreen that the user goes to when they press home or new tab. variables: ... // Other homescreen variables gleanMetricConfiguration: description: Glean metric configuration type: String default: \"{}\" Once the Feature Variable has been defined, the final step is to fetch the configuration from Nimbus and supply it to the Glean API. This can be done during initialization and again any time afterwards, such as in response to receiving an updated configuration from Nimbus. Only the latest configuration provided will be applied and any previously configured metrics that are omitted from the new configuration will not be changed. An example call to set a configuration from the “homescreen” Nimbus Feature could look like this: Glean.applyServerKnobsConfig(FxNimbus.features.homescreen.value().metricsEnabled) Since mobile experiments only update on initialization of the application, it isn't necessary to register to listen for notifications for experiment updates. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 2 (Advanced use):","id":"198","title":"Integration Option 2 (Advanced use):"},"199":{"body":"The structure of this configuration is a key-value collection with the full metric identification of the Glean metric serving as the key in the format . The values of the key-value pair are booleans which represent whether the metric is enabled (true) or not (false). In the example below gleanMetricConfiguration is the name of the variable defined in the Nimbus feature. This configuration would be what is entered into the branch configuration setup in Experimenter when defining an experiment or rollout.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Experimenter Configuration » Experimenter Configuration","id":"199","title":"Experimenter Configuration"},"2":{"body":"This section of the book contains step-by-step guides and essays detailing how to achieve specific tasks with each Glean SDK. It contains guides on the first steps of integrating Glean into your project, choosing the right metric type for you, debugging products that use Glean and Glean's built-in error reporting mechanism. If you want to start using Glean to report data, this is the section you should read.","breadcrumbs":"Glean » User Guides","id":"2","title":"User Guides"},"20":{"body":"For Python, the metrics.yaml file must be available and loaded at runtime. If your project is a script (i.e. just Python files in a directory), you can load the metrics.yaml using: from glean import load_metrics metrics = load_metrics(\"metrics.yaml\") # Use a metric on the returned object\nmetrics.your_category.your_metric.set(\"value\") If your project is a distributable Python package, you need to include the metrics.yaml file using one of the myriad ways to include data in a Python package and then use pkg_resources.resource_filename() to get the filename at runtime. from glean import load_metrics\nfrom pkg_resources import resource_filename metrics = load_metrics(resource_filename(__name__, \"metrics.yaml\")) # Use a metric on the returned object\nmetrics.your_category.your_metric.set(\"value\")","breadcrumbs":"Adding Glean to your project » Python » Consuming YAML registry files","id":"20","title":"Consuming YAML registry files"},"200":{"body":"{ \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"urlbar.abandonment\": true, \"urlbar.engagement\": true, \"urlbar.impression\": true } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Experimenter Configuration » Example Configuration:","id":"200","title":"Example Configuration:"},"201":{"body":"","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Advanced Topics","id":"201","title":"Advanced Topics"},"202":{"body":"Since each feature defined as a Nimbus Feature can independently provide a Glean configuration, these must be merged together into a cohesive configuration for the entire set of metrics collected by Glean. Configurations will be merged together along with the default values in the metrics.yaml file and applied to the appropriate metrics. Only the latest configuration provided for a given metric will be applied and any previously configured metrics that are omitted from the new configuration will not be changed.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Merging of Configurations from Multiple Features","id":"202","title":"Merging of Configurations from Multiple Features"},"203":{"body":"Imagine a situation where we have 3 features (A, B, C). Each of these features has an event (A.event, B.event, C.event) and these events all default to disabled from their definition in the metrics.yaml file. Let’s walk through an example of changing configurations for these features that illustrates how the merging will work: Initial State This is what the initial state of the events looks like with no configurations applied. All of the events are falling back to the defaults from the metrics.yaml file. This is the starting point for Scenario 1 in the Example Scenarios . Feature A No config, default used A.event is disabled Feature B No config, default used B.event is disabled Feature C No config, default used C.event is disabled Second State In this state, let’s create two rollouts which will provide configurations for features A and B that will enable the events associated with each. The first rollout selects Feature A in experimenter and provides the indicated configuration in the Branch setup page. The second rollout does the same thing, only for Feature B. Feature A Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"A.event\": true } } } A.event is enabled Feature B Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"B.event\": true } } } B.event is enabled Feature C No config, default used C.event is disabled As you can see, the A.event and B.event are enabled by the configurations while C.event remains disabled because there is no rollout for it. Third State In this state, let’s end the rollout for Feature B, start a rollout for Feature C, and launch an experiment for Feature A. Because experiments take precedence over rollouts, this should supersede our configuration from the rollout for Feature A. Feature A Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"A.event\": false } } } A.event is disabled Feature B No config, default used B.event is disabled Feature C Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"C.event\": true } } } C.event is enabled After the new changes to the currently running rollouts and experiments, this client is now enrolled in the experiment for Feature A and the configuration is suppressing the A.event. Feature B is no longer sending B.event because it is reverting back to the defaults from the metrics.yaml file. And finally, Feature C is sending C.event with the rollout configuration applied. Fourth State Finally, in this state, let’s end the rollout for Feature C along with the experiment for Feature A. This should stop the sending of the B.event and C.event and resume sending of the A.event as the rollout configuration will again be applied since the experiment configuration is no longer available. Feature A Configuration { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"A.event\": true } } } A.event is enabled Feature B No config, default used B.event is disabled Feature C No config, default used C.event is disabled After the new changes to the currently running rollouts and experiments, this client is now enrolled in the experiment for Feature A and the configuration is suppressing the A.event. Feature B is no longer sending B.event because it is reverting back to the defaults from the metrics.yaml file. And finally, Feature C is sending C.event with the rollout configuration applied. In each case, Glean only updates the configuration associated with the feature that provided it. Nimbus’ feature exclusion would prevent a client from being enrolled in multiple rollouts or experiments for a given feature, so no more than one configuration would be applied per feature for a given client.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Example","id":"203","title":"Example"},"204":{"body":"Because there is currently nothing that ties a particular Nimbus Feature to a set of metrics, care must be taken to avoid feature overlap over a particular metric. If two different features supply conflicting configurations for the same metric, then whether or not the metric is enabled will likely come down to a race condition of whoever set the configuration last. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Merging Caveats","id":"204","title":"Merging Caveats"},"205":{"body":"How can I tell if a given client id has the metric X on? Once we have established the functionality behind the data control plane, a dashboard for monitoring this will be provided. Details are to be determined. Why isn't some client id reporting the metric that should be enabled for all the clients for that channel? (e.g. Some fraction of population may get stuck on “default” config) Nimbus must be able to both reach and supply a valid configuration to the audience. For some outliers this doesn't work and so may be \"unreachable\" at times. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Frequently Asked Questions » Frequently Asked Questions","id":"205","title":"Frequently Asked Questions"},"206":{"body":"Glean provides a Data Control Plane through which pings can be enabled or disabled through a Nimbus rollout or experiment. Products can use this capability to control \"data-traffic\", similar to how a network control plane controls \"network-traffic\". This provides the ability to do the following: Allow runtime changes to data collection without needing to land code and ride release trains. Eliminate the need for manual creation and maintenance of feature flags specific to data collection. Sampling of measurements from a subset of the population so that we do not collect or ingest more data than is necessary from high traffic areas of an application instrumented with Glean metrics. Operational safety through being able to react to high-volume or unwanted data. Visibility into sampling and sampling rates for remotely configured metrics. For information on controlling metrics with Server Knobs, see the metrics documentation for Server Knobs - Metrics .","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Data Control Plane (a.k.a. Server Knobs)","id":"206","title":"Data Control Plane (a.k.a. Server Knobs)"},"207":{"body":"Product Integration Experimenter Configuration Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Contents","id":"207","title":"Contents"},"208":{"body":"Glean provides a general Nimbus feature named glean that can be used for configuration of pings. Simply select the glean feature along with your Nimbus feature from the Experimenter UI when configuring the experiment or rollout (see Nimbus documentation for more information on multi-feature experiments). The glean Nimbus feature requires the gleanMetricConfiguration variable to be used to provide the required metric configuration. The format of the configuration is defined in the Experimenter Configuration section. If a ping is not included, it will default to the value found in the pings.yaml. Note that this can also serve as an override for Glean builtin pings disabled using the Configuration property enable_internal_pings=false during initialization. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Product Integration » Product Integration","id":"208","title":"Product Integration"},"209":{"body":"The structure of this configuration is a key-value collection with the name of the Glean ping serving as the keys and the values are booleans representing whether the ping is enabled (true) or not (false). In the example below, gleanMetricConfiguration is the name of the variable defined in the Nimbus feature. This configuration would be what is entered into the branch configuration setup in Experimenter when defining an experiment or rollout.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Experimenter Configuration » Experimenter Configuration","id":"209","title":"Experimenter Configuration"},"21":{"body":"Documentation The documentation for your application or library's metrics and pings are written in metrics.yaml and pings.yaml. For Mozilla projects, this SDK documentation is automatically published on the Glean Dictionary . For non-Mozilla products, it is recommended to generate markdown-based documentation of your metrics and pings into the repository. For most languages and platforms, this transformation can be done automatically as part of the build. However, for some SDKs the integration to automatically generate docs is an additional step. The Glean Python SDK provides a commandline tool for automatically generating markdown documentation from your metrics.yaml and pings.yaml files. To perform that translation, run glean_parser's translate command: python3 -m glean_parser translate -f markdown -o docs metrics.yaml pings.yaml To get more help about the commandline options: python3 -m glean_parser translate --help We recommend integrating this step into your project's documentation build. The details of that integration is left to you, since it depends on the documentation tool being used and how your project is set up. Metrics linting Glean includes a \"linter\" for metrics.yaml and pings.yaml files called the glinter that catches a number of common mistakes in these files. As part of your continuous integration, you should run the following on your metrics.yaml and pings.yaml files: python3 -m glean_parser glinter metrics.yaml pings.yaml","breadcrumbs":"Adding Glean to your project » Python » Automation steps","id":"21","title":"Automation steps"},"210":{"body":"{ \"gleanMetricConfiguration\": { \"pings_enabled\": { \"baseline\": false, \"events\": false, \"metrics\": false } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Experimenter Configuration » Example Configuration:","id":"210","title":"Example Configuration:"},"211":{"body":"Below are additional Glean parameters and settings that are exposed via Server Knobs for use in a Nimbus experiment or rollout.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Other Server Knobs","id":"211","title":"Other Server Knobs"},"212":{"body":"Max Events per Event Ping Additional Glean settings will be added to Server Knobs as needed or by request. For information on controlling metrics and pings via Server Knobs, please refer to Controlling Metrics with Server Knobs and Controlling Pings with Server Knobs . Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Contents","id":"212","title":"Contents"},"213":{"body":"By default, Glean batches events together to submit on a single events ping. The event_threshold Server Knob controls how many events Glean will collect before submitting an events ping. For instance, if you wanted to disable batching in order to transmit an events ping after every event is recorded you could set event_threshold: 1.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Max Events per Ping » Max Events","id":"213","title":"Max Events"},"214":{"body":"{ \"gleanMetricConfiguration\": { \"event_threshold\": 1 }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Max Events per Ping » Example Configuration:","id":"214","title":"Example Configuration:"},"215":{"body":"Glean provides a few debugging features to assist with debugging a product using Glean.","breadcrumbs":"Debugging products using Glean » Debugging products using the Glean SDK","id":"215","title":"Debugging products using the Glean SDK"},"216":{"body":"","breadcrumbs":"Debugging products using Glean » Features","id":"216","title":"Features"},"217":{"body":"Print the ping payload upon sending a ping.","breadcrumbs":"Debugging products using Glean » Log Pings","id":"217","title":"Log Pings"},"218":{"body":"Tags all outgoing pings as debug pings to make them available for real-time validation, on the Glean Debug View. Glean Debug View The Glean Debug View enables you to easily see in real-time what data your application is sending. This data is what actually arrives in our data pipeline, shown in a web interface that is automatically updated when new data arrives. Any data sent from a Glean-instrumented application usually shows up within 10 seconds, updating the pages automatically. Pings are retained for 3 weeks. Troubleshooting If nothing is showing up on the dashboard after you set a debugViewTag and you see Glean must be enabled before sending pings. in the logs, Glean is disabled. Check with the application author on how to re-enable it.","breadcrumbs":"Debugging products using Glean » Debug View Tag","id":"218","title":"Debug View Tag"},"219":{"body":"Tags outgoing pings with a maximum of 5 comma-separated tags.","breadcrumbs":"Debugging products using Glean » Source Tags","id":"219","title":"Source Tags"},"22":{"body":"Most Glean SDKs use a separate worker thread to do most of its work, including any I/O. This thread is fully managed by the SDK as an implementation detail. Therefore, users should feel free to use the Glean SDKs wherever they are most convenient, without worrying about the performance impact of updating metrics and sending pings. Since the Glean SDKs perform disk and networking I/O, they try to do as much of their work as possible on separate threads and processes. Since there are complex trade-offs and corner cases to support Python parallelism, it is hard to design a one-size-fits-all approach. Default behavior When using the Python SDK, most of the Glean's work is done on a separate thread, managed by the SDK itself. The SDK releases the Global Interpreter Lock (GIL) for most of its operations, therefore your application's threads should not be in contention with the Glean's worker thread. The Glean Python SDK installs an atexit handler so that its worker thread can cleanly finish when your application exits. This handler will wait up to 30 seconds for any pending work to complete. By default, ping uploading is performed in a separate child process. This process will continue to upload any pending pings even after the main process shuts down. This is important for commandline tools where you want to return control to the shell as soon as possible and not be delayed by network connectivity. Cases where subprocesses aren't possible The default approach may not work with applications built using PyInstaller or similar tools which bundle an application together with a Python interpreter making it impossible to spawn new subprocesses of that interpreter. For these cases, there is an option to ensure that ping uploading occurs in the main process. To do this, set the allow_multiprocessing parameter on the glean.Configuration object to False. Using the multiprocessing module Additionally, the default approach does not work if your application uses the multiprocessing module for parallelism. The Glean Python SDK can not wait to finish its work in a multiprocessing subprocess, since atexit handlers are not supported in that context. Therefore, if the Glean Python SDK detects that it is running in a multiprocessing subprocess, all of its work that would normally run on a worker thread will run on the main thread. In practice, this should not be a performance issue: since the work is already in a subprocess, it will not block the main process of your application. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Python » Parallelism","id":"22","title":"Parallelism"},"220":{"body":"Sends a ping on demand.","breadcrumbs":"Debugging products using Glean » Send Ping","id":"220","title":"Send Ping"},"221":{"body":"Each Glean SDK may expose one or more of the following methods to interact with and enable these debugging functionalities. Enable debugging features through APIs exposed through the Glean singleton; Enable debugging features through environment variables set at runtime; Enable debugging features through platform specific tooling. For methods 1. and 2., refer to the API reference section \"Debugging\" for detailed information on how to use them. For method 3. please refer to the platform specific pages on how to debug products using Glean.","breadcrumbs":"Debugging products using Glean » Debugging methods","id":"221","title":"Debugging methods"},"222":{"body":"Debugging Android applications using the Glean SDK Debugging iOS applications using the Glean SDK Debugging Python applications using the Glean SDK Debugging JavaScript applications using Glean.js","breadcrumbs":"Debugging products using Glean » Platform Specific Information","id":"222","title":"Platform Specific Information"},"223":{"body":"Glean API Environment Variables Platform Specific Tooling Kotlin ✅ [1] Swift ✅ ✅ ✅ [2] Python ✅ Rust ✅ ✅ JavaScript ✅ Firefox Desktop ✅ ✅ [3] The Glean Kotlin SDK exposes the GleanDebugActivity for interacting with debug features. Although it is technically possible to also use environment variables in Android, the Glean team is not aware of a proper way to set environment variables in Android devices or emulators. The Glean Swift SDK exposes a custom URL format for interacting with debug features. In Firefox Desktop, developers may use the interface exposed through about:glean to log, tag or send pings. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » Available debugging methods per platform","id":"223","title":"Available debugging methods per platform"},"224":{"body":"The Glean Kotlin SDK exports the GleanDebugActivity that can be used to toggle debugging features on or off. Users can invoke this special activity, at run-time, using the following adb command: adb shell am start -n [applicationId]/mozilla.telemetry.glean.debug.GleanDebugActivity [extra keys] In the above: [applicationId] is the product's application id as defined in the manifest file and/or build script. For the Glean sample application, this is org.mozilla.samples.gleancore for a release build and org.mozilla.samples.gleancore.debug for a debug build. [extra keys] is a list of extra keys to be passed to the debug activity. See the documentation for the command line switches used to pass the extra keys. These are the currently supported keys: key type description logPings boolean (--ez) If set to true, pings are dumped to logcat; defaults to false debugViewTag string (--es) Tags all outgoing pings as debug pings to make them available for real-time validation, on the Glean Debug View . The value must match the pattern [a-zA-Z0-9-]{1,20}. Important : in older versions of the Glean SDK, this was named tagPings sourceTags string array (--esa) Tags outgoing pings with a maximum of 5 comma-separated tags. The tags must match the pattern [a-zA-Z0-9-]{1,20}. The automation tag is meant for tagging pings generated on automation: such pings will be specially handled on the pipeline (i.e. discarded from non-live views ). Tags starting with glean are reserved for future use. Subsequent calls of this overwrite any previously stored tag sendPing string (--es) Sends the ping with the given name immediately startNext string (--es) The name of an exported Android Activity, as defined in the product manifest file, to start right after the GleanDebugActivity completes. All the options provided are propagated to this next activity as well. When omitted, the default launcher activity for the product is started instead. All the options provided to start the activity are passed over to the main activity for the application to process. This is useful if SDK users wants to debug telemetry while providing additional options to the product to enable specific behaviors. Note: Due to limitations on Android logcat message size, pings larger than 4KB are broken into multiple log messages when using logPings. For example, to direct a release build of the Glean sample application to (1) dump pings to logcat, (2) tag the ping with the test-metrics-ping tag, and (3) send the \"metrics\" ping immediately, the following command can be used: adb shell am start -n org.mozilla.samples.gleancore/mozilla.telemetry.glean.debug.GleanDebugActivity \\ --ez logPings true \\ --es sendPing metrics \\ --es debugViewTag test-metrics-ping The logPings command doesn't trigger ping submission and you won't see any output until a ping has been sent. You can use the sendPing command to force a ping to be sent, but it could be more desirable to trigger the pings submission on their normal schedule. For instance, the baseline and events pings can be triggered by moving the app out of the foreground and the metrics ping can be triggered normally if it is overdue for the current calendar day. Note: The device or emulator must be connected to the internet for this to work. Otherwise the job that sends the pings won't be triggered. If no metrics have been collected, no pings will be sent unless send_if_empty is set on your ping . See the ping documentation for more information on ping scheduling to learn when pings are sent. Options that are set using the adb flags are not immediately reset and will persist until the application is closed or manually reset.","breadcrumbs":"Debugging products using Glean » Android » Debugging Android applications using the Glean SDK","id":"224","title":"Debugging Android applications using the Glean SDK"},"225":{"body":"When running a Glean SDK-powered app in the Android emulator or on a device connected to your computer via cable, there are several ways to read the log output.","breadcrumbs":"Debugging products using Glean » Android » Glean Kotlin SDK Log messages","id":"225","title":"Glean Kotlin SDK Log messages"},"226":{"body":"Android Studio can show the logs of a connected emulator or device. To display the log messages for an app: Run an app on your device. Click View > Tool Windows > Logcat (or click Logcat in the tool window bar). The Logcat window will show all log messages and allows to filter those by the application ID. Select the application ID of the product you're debugging. You can also filter by Glean only. More information can be found in the View Logs with Logcat help article.","breadcrumbs":"Debugging products using Glean » Android » Android Studio","id":"226","title":"Android Studio"},"227":{"body":"On the command line you can show all of the log output using: adb logcat This is the unfiltered output of all log messages. You can match for glean using grep: adb logcat | grep -i glean A simple way to filter for only the application that is being debugged is by using pidcat , a wrapper around adb, which adds colors and proper filtering by application ID and log level. Run it like this to filter for an application: pidcat [applicationId] In the above [applicationId] is the product's application id as defined in the manifest file and/or build script. For the Glean sample application, this is org.mozilla.samples.gleancore for a release build and org.mozilla.samples.gleancore.debug for a debug build. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » Android » Command line","id":"227","title":"Command line"},"228":{"body":"","breadcrumbs":"Debugging products using Glean » iOS » Debugging iOS applications using the Glean SDK","id":"228","title":"Debugging iOS applications using the Glean SDK"},"229":{"body":"Debugging features in iOS can be enabled using environment variables. For more information on the available features accessible through this method and how to enable them, see Debugging API reference . These environment variables must be set on the device that is running the application.","breadcrumbs":"Debugging products using Glean » iOS » Enabling debugging features in iOS through environment variables","id":"229","title":"Enabling debugging features in iOS through environment variables"},"23":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Rust project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Rust » Adding Glean to your Rust project","id":"23","title":"Adding Glean to your Rust project"},"230":{"body":"For debugging and validation purposes on iOS, the Glean Swift SDK makes use of a custom URL scheme which is implemented within the application . The Glean Swift SDK provides some convenience functions to facilitate this, but it's up to the consuming application to enable this functionality. Applications that enable this feature will be able to launch the application from a URL with the Glean debug commands embedded in the URL itself.","breadcrumbs":"Debugging products using Glean » iOS » Enabling debugging features in iOS through a custom URL scheme","id":"230","title":"Enabling debugging features in iOS through a custom URL scheme"},"231":{"body":"All 4 Glean debugging features are available through the custom URL scheme tool. logPings : This is either true or false and will cause pings that are submitted to also be echoed to the device's log. debugViewTag : This command will tag outgoing pings with the provided value, in order to identify them in the Glean Debug View. sourceTags : This command tags outgoing pings with a maximum of 5 comma-separated tags. sendPing: This command expects a string name of a ping to force immediate collection and submission of. The structure of the custom URL uses the following format: ://glean?=&= ... Where: is the \"URL Scheme\" that has been added for your app (see Instrumenting the application below), such as glean-sample-app. This is followed by :// and then glean which is required for the Glean Swift SDK to recognize the command is meant for it to process. Following standard URL query format, the next character after glean is the ? indicating the beginning of the query. This is followed by one or more queries in the form of =, where the command is one of the commands listed above, followed by an = and then the value or parameter to be used with the command. There are a few things to consider when creating the custom URL: Invalid commands will log an error and cause the entire URL to be ignored. Not all commands are required to be encoded in the URL, you can mix and match the commands that you need. Multiple instances of commands are not allowed in the same URL and, if present, will cause the entire URL to be ignored. The logPings command doesn't trigger ping submission and you won't see any output until a ping has been submitted. You can use the sendPing command to force a ping to be sent, but it could be more desirable to trigger the pings submission on their normal schedule. For instance, the baseline and events pings can be triggered by moving the app out of the foreground and the metrics ping can be triggered normally if it is overdue for the current calendar day. See the ping documentation for more information on ping scheduling to learn when pings are sent. Enabling debugging features through custom URLs overrides any debugging features set through environment variables.","breadcrumbs":"Debugging products using Glean » iOS » Available commands and query format","id":"231","title":"Available commands and query format"},"232":{"body":"In order to enable the debugging features in an iOS application, it is necessary to add some information to the application's Info.plist, and add a line and possibly an override for a function in the AppDelegate.swift. Register custom URL scheme in Info.plist Note: If your application already has a custom URL scheme implemented, there is no need to implement a second scheme, you can simply use that and skip to the next section about adding the convenience method. If the app doesn't have a custom URL scheme implemented, then you will need to perform the following instructions to register your app to receive custom URLs. Find and open the application's Info.plist and right click any blank area and select Add Row to create a new key. You will be prompted to select a key from a drop-down menu, scroll down to and select URL types. This creates an array item, which can be expanded by clicking the triangle disclosure icon. Select Item 0, click on it and click the disclosure icon to expand it and show the URL identifier line. Double-click the value field and fill in your identifier, typically the same as the bundle ID. Right-click on Item 0 and select Add Row from the context menu. In the dropdown menu, select URL Schemes to add the item. Click on the disclosure icon of URL Schemes to expand the item, double-click the value field of Item 0 and key in the value for your application's custom scheme. For instance, the Glean sample app uses glean-sample-app, which allows for custom URLs to be crafted using that as a protocol, for example: glean-sample-app://glean?logPings=true Add the Glean.handleCustomUrl() convenience function and necessary overrides In order to handle the incoming debug commands, it is necessary to implement the override in the application's AppDelegate.swift file. Within that function, you can make use of the convenience function provided in Glean handleCustomUrl(url: URL). An example of a simple implementation of this would look like this: func application(_: UIApplication, open url: URL, options _: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool { // ... // This does nothing if the url isn't meant for Glean. Glean.shared.handleCustomUrl(url: url) // ... return true\n} If you need additional help setting up a custom URL scheme in your application, please refer to Apple's documentation .","breadcrumbs":"Debugging products using Glean » iOS » Instrumenting the application for Glean Swift SDK debug functionality","id":"232","title":"Instrumenting the application for Glean Swift SDK debug functionality"},"233":{"body":"Now that the app has the debug functionality enabled, there are a few ways in which we can invoke the debug commands. Using a web browser Perhaps the simplest way to invoke the debug functionality is to open a web browser and type/paste the custom URL into the address bar. This is especially useful on an actual device because there isn't a good way to launch from the command line and process the URL for an actual device. Using the glean-sample-app as an example: to activate ping logging, tag the pings to go to the Glean Debug View, and force the events ping to be sent, enter the following URL in a web browser on the iOS device: glean-sample-app://glean?logPings=true&debugViewTag=My-ping-tag&sendPing=events This should cause iOS to prompt you with a dialog asking if you want to open the URL in the Glean Sample App, and if you select \"Okay\" then it will launch (or resume if it's already running) the application with the indicated commands and parameters and immediately force the collection and submission of the events ping. Note: This method does not work if the browser you are using to input the command is the same application you are attempting to pass the Glean debug commands to. So, you couldn't use Firefox for iOS to trigger commands within Firefox for iOS. It is also possible to encode the URL into a 2D barcode or QR code and launch the app via the camera app. After scanning the encoded URL, the dialog prompting to launch the app should appear as if the URL were entered into the browser address bar. Using the command line This method is useful for testing via the Simulator, which typically requires a Mac with Xcode installed, including the Xcode command line tools. In order to perform the same command as above with using the browser to input the URL, you can use the following command in the command line terminal of the Mac: xcrun simctl openurl booted \"glean-sample-app://glean?logPings=true&debugViewTag=My-ping-tag&sendPing=events\" This will launch the simulator and again prompt the user with a dialog box asking if you want to open the URL in the Glean Sample App (or whichever app you are instrumenting and testing).","breadcrumbs":"Debugging products using Glean » iOS » Invoking the Glean-iOS debug commands","id":"233","title":"Invoking the Glean-iOS debug commands"},"234":{"body":"The Glean Swift SDK integrates with the unified logging system available on iOS. There are various ways to retrieve log information, see the official documentation . If debugging in the simulator, the logging messages can be seen in the console window within Xcode. When running a Glean-powered app in the iOS Simulator or on a device connected to your computer via cable you can use Console.app to view the system log. You can filter the logs with category:glean to only see logs from the Glean SDK. You can also use the command line utility log to stream the log output. Run the following in a shell: log stream --predicate 'category contains \"glean\"' See Diagnosing Issues Using Crash Reports and Device Logs for more information about debugging deployed iOS apps. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » iOS » Glean log messages","id":"234","title":"Glean log messages"},"235":{"body":"Debugging features in Python can be enabled using environment variables. For more information on the available features and how to enable them, see the Debugging API reference .","breadcrumbs":"Debugging products using Glean » Python » Debugging Python applications using the Glean SDK","id":"235","title":"Debugging Python applications using the Glean SDK"},"236":{"body":"Unlike other platforms, Python doesn't expose convenience methods to send pings on demand. In case that is necessary, calling the submit function for a given ping, such as pings.custom_ping.submit(), will send it.","breadcrumbs":"Debugging products using Glean » Python » Sending pings","id":"236","title":"Sending pings"},"237":{"body":"Glean offers two options for logging from Python: Simple logging API: A simple API that only allows for setting the logging level, but includes all Glean log messages, including those from its networking subprocess. This is also the only mode in which GLEAN_LOG_PINGS can be used to display ping contents in the log. Flexible logging API: Full use of the Python logging module, including its features for redirecting to files and custom handling of messages, but does not include messages from the networking subprocess about HTTP requests.","breadcrumbs":"Debugging products using Glean » Python » Logging pings","id":"237","title":"Logging pings"},"238":{"body":"You can set the logging level for Glean log messages by passing logging.DEBUG to Glean.initialize as follows: import logging\nfrom glean import Glean Glean.initialize(..., log_level=logging.DEBUG) If you want to see ping contents as well, set the GLEAN_LOG_PINGS environment variable to true.","breadcrumbs":"Debugging products using Glean » Python » Simple logging API","id":"238","title":"Simple logging API"},"239":{"body":"You can set the logging level for the Python logging to DEBUG as follows: import logging logging.basicConfig(level=logging.DEBUG) All log messages from the Glean Python SDK are on the glean logger, so if you need to control it independently, you can set a level for just the Glean Python SDK (but note that the global Python logging level also needs to be set as above): logging.getLogger(\"glean\").setLevel(logging.DEBUG) The flexible logging API is unable to display networking-related log messages or ping contents with GLEAN_LOG_PINGS set to true. See the Python logging documentation for more information. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » Python » Flexible logging API","id":"239","title":"Flexible logging API"},"24":{"body":"The Glean Rust SDK is published on crates.io . Add it to your dependencies in Cargo.toml: [dependencies]\nglean = \"50.0.0\"","breadcrumbs":"Adding Glean to your project » Rust » Setting up the dependency","id":"24","title":"Setting up the dependency"},"240":{"body":"Debugging features in JavaScript can be enabled through APIs exposed on the Glean object. For more information on the available features and how to enable them, see the Debugging API reference .","breadcrumbs":"Debugging products using Glean » JavaScript » Debugging JavaScript applications using Glean.js","id":"240","title":"Debugging JavaScript applications using Glean.js"},"241":{"body":"Websites running Glean allow you to debug at runtime using the window.Glean object in the browser console. You can start debugging by simply: Opening the browser console Calling one of the window.Glean APIs: window.Glean.setLogPings, window.Glean.setDebugViewTag, window.Glean.setSourceTags. These debugging options will persist for the length of the current page session. Once the tab is closed, you will need to make those API calls again.","breadcrumbs":"Debugging products using Glean » JavaScript » Debugging in the browser","id":"241","title":"Debugging in the browser"},"242":{"body":"Unlike other platforms, JavaScript doesn't expose convenience methods to send pings on demand. In case that is necessary, calling the submit function for a given ping, such as pings.customPing.submit(), will send it. Note that this method is only effective for custom pings. Glean internal pings are not exposed to users.","breadcrumbs":"Debugging products using Glean » JavaScript » Sending pings","id":"242","title":"Sending pings"},"243":{"body":"By calling Glean.logPings(true) all subsequent pings sent will be logged to the console. To access the logs for web extensions on","breadcrumbs":"Debugging products using Glean » JavaScript » Logging pings","id":"243","title":"Logging pings"},"244":{"body":"Go to about:debugging#/runtime/this-firefox; Find the extension you want to see the logs for; Click on Inspect.","breadcrumbs":"Debugging products using Glean » JavaScript » Firefox","id":"244","title":"Firefox"},"245":{"body":"Go to chrome://extensions; Find the extension you want to see the logs for; Click on background page. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » JavaScript » Chromium-based browsers","id":"245","title":"Chromium-based browsers"},"246":{"body":"This chapter contains various how-tos and walkthroughs to help aid you in using Glean.","breadcrumbs":"Walkthroughs and How-tos » How-tos","id":"246","title":"How-tos"},"247":{"body":"A step-by-step guide in setting up and launching a Server Knobs Experiment.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough","id":"247","title":"Server Knobs Walkthrough"},"248":{"body":"A guide describing the different methods to collect and transmit data in a \"real-time\" fashion using Glean.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events","id":"248","title":"\"Real-Time\" Events"},"249":{"body":"Recommendations and tips on investigating data anomalies. Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations","id":"249","title":"Telemetry/Data Bug Investigation Recommendations"},"25":{"body":"","breadcrumbs":"Adding Glean to your project » Rust » Setting up metrics and pings code generation","id":"25","title":"Setting up metrics and pings code generation"},"250":{"body":"","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Server Knobs: A Complete Walkthrough","id":"250","title":"Server Knobs: A Complete Walkthrough"},"251":{"body":"This documentation serves as a step by step guide on how to create a Server Knobs configuration and make use of it in a Nimbus experiment or rollout. The intent is to explain everything from selecting the metrics or pings you wish to control all the way through launching the experiment or rollout and validating the data is being collected.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Purpose","id":"251","title":"Purpose"},"252":{"body":"This documentation is aimed at the general users of Nimbus experimentation who wish to enable or disable specific metrics and/or pings as part of their deployment. This documentation assumes the reader has no special knowledge of the inner workings of either Glean or Nimbus, but it does assume that the audience has already undergone the prerequisite Nimbus training program and has access to Experimenter to create experiment and rollout definitions.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Audience","id":"252","title":"Audience"},"253":{"body":"The first step in running a Server Knobs experiment or rollout is creating the definition for it in Experimenter . For the purposes of this walkthrough, a rollout will be used but the instructions are interchangeable if you are instead launching an experiment.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Let’s Get Started!","id":"253","title":"Let’s Get Started!"},"254":{"body":"Create a new experiment From the Experimenter landing page, we select the “Create New” button to begin defining the new rollout. Experimenter landing page Initial experiment definition The initial setup requires a name, hypothesis, and the selection of a target application. New experiment dialog Here we enter a human readable name for the rollout and a brief synopsis of what we expect to learn in the “Hypothesis” section. In the final field we select our target application, Firefox Desktop. When that is complete, we click the “Next” button to proceed with the rollout definition. The next screen we are presented with is the “Summary” page of the experiment/rollout, where we can add additional metadata like a longer description, and link to any briefs or other documentation related to the rollout. We complete the required information and then click on “Save and Continue” Experiment summary page Initial branch configuration The next screen we are presented with is the branch configuration page. On this page we can select the glean feature, and check the box to indicate that this is a rollout. Branch configuration page At this point, we now need to create a bit of JSON configuration to put in the box seen here: Branch payload text box Building the Server Knobs configuration for metrics This JSON configuration is the set of instructions for Glean that lets it know which metrics to enable or disable. In order to do this, we will visit the Glean Dictionary to help identify the metrics we wish to work with and get the identifiers from them needed for the configuration in Experimenter. Upon arriving at the Glean Dictionary, we must first find the right application. Glean Dictionary landing page We are going to select “Firefox for Desktop” to match the application we previously selected in Experimenter. This brings us to a screen where we can search and filter for metrics which are defined in the application. Glean Dictionary page for Firefox Desktop To help locate the metrics we are interested in, start typing in the search box at the top of the list. For instance, if we were interested in urlbar metrics: Using the Glean Dictionary search bar From here we can select a metric, such as “urlbar.engagement” to see more information about it: Detail view of urlbar.engagement metric Here we can see this metric currently has active sampling configurations in both release and nightly. Let’s say we wish to add one for beta also. Our next step is to click the copy to clipboard button next to “Sampling Configuration Snippet”: Sampling configuration snippet button With the snippet copied to the clipboard, we return to Experimenter and our rollout configuration. We can now paste this snippet into the text-box like below: Pasting into the branch configuration text box That’s all that needs to be done here, if this is the only metric we need to configure. But what if we want to configure more than one? Then it’s back to Glean Dictionary to find the rest of the metrics we are interested in. Let’s say we are also interested in the “exposure” metric. Searching for the urlbar.exposure metric As we select the exposure metric from the list, we can see it isn’t currently being sampled by any experiments or rollouts, and we again find the button to copy the configuration snippet to the clipboard. Back to the sampling configuration snippet button Now, we can paste this just below the other snippet inside of Experimenter. Pasting the new metric into Experimenter As you can see, the JSON validator isn’t happy and there’s a red squiggle indicating that there’s a problem. We only need a part of the latest pasted snippet, so we copy the ”urlbar.exposure”: true portion of the snippet, and add a comma after the ”urlbar.engagement”: true in the snippet above. The JSON validator isn't happy We can then delete the remains of the snippet below, leaving us with a metric configuration with multiple metrics in it. This can be repeated for all the necessary metrics required by the rollout or experiment. Cleaning up the branch payload Adding pings to the configuration This same procedure can be used to enable and disable pings, also. In order to copy a snippet for a ping, navigate to the “Pings” tab for the application on the Glean Dictionary. Navigate to the Pings tab From here, select a ping that is desired to be configured remotely. For instance, the “crash” ping: Selecting the crash ping Just like with the metric, select the button to copy the configuration snippet to your clipboard, then paste it into the Experimenter setup. Adding the ping configuration to the Experimenter setup This time we need to get everything for the ”pings_enabled” section, copy and paste it below the ”metrics_enabled” section in the snippet above. We also need to add a comma after the metrics section’s curly brace, like this: Copying the ping config into the right spot Then we can delete the remains of the pasted snippet at the bottom, leaving us with: Cleaning up the ping configuration Wrapping up That should be everything needed to enable the two urlbar metrics, as well as the crash ping. Additional experiment branches can be configured in a similar fashion, or if this is a rollout, it should be ready to launch if the metric configuration is all that is needed. Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Experiment Setup","id":"254","title":"Experiment Setup"},"255":{"body":"","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » \"Real-Time\" Events","id":"255","title":"\"Real-Time\" Events"},"256":{"body":"For the purposes of the Glean SDK and its capabilities, \"real-time\" is limited to: minimizing the time between instrumentation and reporting. It does not imply or describe how quickly received data is made available for querying.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Defining \"real-time\" events within the Glean SDK","id":"256","title":"Defining \"real-time\" events within the Glean SDK"},"257":{"body":"","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Methods to achieve this with Glean","id":"257","title":"Methods to achieve this with Glean"},"258":{"body":"Glean \"events\" ping submission can be configured either during initialization or through Server Knobs . Setting the maximum event threshold to a value of 1 will configure the Glean SDK to submit an \"events\" ping for each and every event as they are recorded. By default, the Glean SDK will batch 500 events per \"events\" ping. As of November 2024, Desktop Release: Median user per day: 67 events / 3 pings The impact of turning on one event per ping based on the median user would result in an increase of approximately 21 times more event ping volume. 85th percentile user per day: 305 events / 11 pings The impact of turning on one event per ping based on the 85th percentile user would result in an increase of approximately 26 times more event ping volume. 95th percentile user per day: 706 events / 19 pings The impact of turning on one event per ping based on the 95th percentile user would result in an increase of approximately 36 times more event ping volume. The current release population of Desktop as a whole sends us over 10 billion events per day in over 340 million event pings. Sending each of those events as a ping would increase the ping volume by 32 times the current rate. Based on this it is safe to assume that sending 1 event per event ping would increase the ingestion traffic and downstream overhead between 20-40x the current levels with Glean batching of events in the client. This is a significant increase that should be taken into consideration before configuring Glean to disable event batching.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Option 1: Configuring Glean to send all events as soon as they are recorded","id":"258","title":"Option 1: Configuring Glean to send all events as soon as they are recorded"},"259":{"body":"If it isn't necessary to receive all Glean SDK events that are instrumented in an application in \"real-time\", it may be preferable to create a custom ping which contains the relevant information to capture the context around the event and submit it as soon as the application event occurs. This has some additional advantages over using just an event in that custom pings are less restrictive than the extras attached to the event in what data and Glean SDK metric types can be used. If it is important to see the event that is being represented as a custom ping in context with other application events, then you only need to define an event metric and use the send_in_pings parameter to send it in both the custom ping and the Glean built-in \"events\" ping. It can then be seen in sequence and within context of all of the application events, and still be sent in \"real-time\" as needed.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Option 2: Using a custom ping and submitting it immediately (\"Pings-as-Events\")","id":"259","title":"Option 2: Using a custom ping and submitting it immediately (\"Pings-as-Events\")"},"26":{"body":"The glean-build crate is new and currently in beta. It can be used as a git dependency. Please file a bug if it does not work for you. At build time you need to generate the metrics and ping API from your definition files. Add the glean-build crate as a build dependency in your Cargo.toml: [build-dependencies]\nglean-build = { git = \"https://github.com/mozilla/glean\" } Then add a build.rs file next to your Cargo.toml and call the builder: use glean_build::Builder; fn main() { Builder::default() .file(\"metrics.yaml\") .file(\"pings.yaml\") .generate() .expect(\"Error generating Glean Rust bindings\");\n} Ensure your metrics.yaml and pings.yaml files are placed next to your Cargo.toml or adjust the path in the code above. You can also leave out any of the files.","breadcrumbs":"Adding Glean to your project » Rust » glean-build is in beta.","id":"26","title":"glean-build is in beta."},"260":{"body":"","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Considerations","id":"260","title":"Considerations"},"261":{"body":"Configuring the Glean SDK to submit events as soon as they are recorded or using custom pings to submit data immediately does not mean that the data is available for analysis in real time. There are networks to traverse, ingestion pipelines, etl, etc. that are all factors to keep in mind when considering how soon the data is available for analysis purposes. This documentation only purports to cover configuring the Glean SDK to send the data in a real-time fashion and does not make any assumptions about the analysis of data in real-time.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » What \"real-time\" Glean events/pings are not","id":"261","title":"What \"real-time\" Glean events/pings are not"},"262":{"body":"For every event recorded or custom ping submitted, a network request will be generated as the ping is submitted for ingestion. By default, the Glean SDK batches up to 500 events per \"events\" ping, so this has the potential to generate up to 500 times as many network requests than the current defaults for the Glean SDK \"events\" ping.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » More network requests","id":"262","title":"More network requests"},"263":{"body":"As a result of the increased network requests, the ingestion endpoint will need to handle this additional traffic. This increases the load of all the processing steps that are involved with ingesting event data from an application.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » More ingestion endpoint traffic","id":"263","title":"More ingestion endpoint traffic"},"264":{"body":"Typically the raw dataset for Glean events contains 1-500 events in a single row of the database. This row also includes metadata such as information about the client application and the ping itself. With only a single event per \"events\" ping, the replication of this metadata across the database will use additional space to house this repeated information that should rarely if ever change between events Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Storage space requirements","id":"264","title":"Storage space requirements"},"265":{"body":"This document outlines several diagnostic categories and the insights they may offer when investigating unusual telemetry patterns or data anomalies.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » Telemetry/Data Bug Investigation Recommendations","id":"265","title":"Telemetry/Data Bug Investigation Recommendations"},"266":{"body":"Purpose: Identify geographical patterns that could explain anomalies. Column Name: metadata.geo.country Considerations: Are there ongoing national holidays or similar events that could affect data? Is the region known for bot activity or unusual behavior?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 1. Countries","id":"266","title":"1. Countries"},"267":{"body":"Purpose: Analyze data at a more granular level than countries to identify potential automation or bot activity. Column Name: metadata.isp.name Considerations: Could the anomaly be traced back to a single ISP, potentially indicating automation? Be mindful of the large number of ISPs; consider applying filters (e.g., HAVING clause) to exclude smaller ISPs.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 2. ISP (Internet Service Provider)","id":"267","title":"2. ISP (Internet Service Provider)"},"268":{"body":"Purpose: Check if issues began with a specific product version or build. Column Names: client_info.app_display_version, client_info.app_build Considerations: Did the issue arise after a particular version update? If so, collaborate with the product team to identify changes. Ensure that the build ID matches a known Mozilla build. If not, it could be a clone, fork, or side-load build.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 3. Product Version / Build ID","id":"268","title":"3. Product Version / Build ID"},"269":{"body":"Purpose: Determine whether the issue is tied to a specific Glean SDK version. Column Name: client_info.telemetry_sdk_build Considerations: Did the anomaly start after an update to Glean? Work with the Glean team to verify version changes.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 4. Glean SDK Version","id":"269","title":"4. Glean SDK Version"},"27":{"body":"glean-build will generate a glean_metrics.rs file that needs to be included in your source code. To do so add the following lines of code in your src/lib.rs file: mod metrics { include!(concat!(env!(\"OUT_DIR\"), \"/glean_metrics.rs\"));\n} Alternatively create src/metrics.rs (or a different name) with only the include line: include!(concat!(env!(\"OUT_DIR\"), \"/glean_metrics.rs\")); Then add mod metrics; to your src/lib.rs file.","breadcrumbs":"Adding Glean to your project » Rust » Include the generated code","id":"27","title":"Include the generated code"},"270":{"body":"Purpose: Identify possible regressions due to library updates. Considerations: Review updates to Application Services, Gecko, and other dependencies (e.g., Viaduct, rkv) that could affect telemetry collection.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 5. Other Library Version Changes","id":"270","title":"5. Other Library Version Changes"},"271":{"body":"Purpose: Check if Operating System or platform SDK changes are impacting data collection. Column Names: client_info.os_version (Android only: client_info.android_sdk_version) Considerations: Have there been changes to platform lifecycle events or background task behaviors (e.g., 0-duration pings, or ping submission issues)? Has the OS changed the behaviour of system APIs?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 6. OS/Platform SDK Version","id":"271","title":"6. OS/Platform SDK Version"},"272":{"body":"Purpose: Assess the delay between telemetry collection and submission. Column Names: ping_info.parsed_start_time, ping_info.parsed_end_time, submission_timestamp Considerations: Are the recorded timestamps reasonable, both in terms of the ping time window and the delay from collection to submission?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 7. Time Differences: start/end_time vs. submission_timestamp","id":"272","title":"7. Time Differences: start/end_time vs. submission_timestamp"},"273":{"body":"Purpose: Identify telemetry or network errors related to data collection. Considerations: Are there networking errors, ingestion issues, or other telemetry failures that could be related to the anomaly?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 8. Glean Errors","id":"273","title":"8. Glean Errors"},"274":{"body":"Purpose: Determine if the issue is hardware-specific. Column Names: client_info.device_manufacturer, client_info.device_model Considerations: Does the anomaly occur primarily on older or newer hardware models?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 9. Hardware Details (Manufacturer/Version) (Mobile platforms only)","id":"274","title":"9. Hardware Details (Manufacturer/Version) (Mobile platforms only)"},"275":{"body":"Purpose: Determine the reason a ping was sent. Column Names: ping_info.reason Considerations: Does the anomaly occur primarily for a specific reason? The built-in pings have different ping reasons based on their schedule baseline ping schedule and reasons metrics ping schedule and reasons events ping schedule and reasons Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 10. Ping reason","id":"275","title":"10. Ping reason"},"276":{"body":"User defined Glean pings and metrics are declared in YAML files, which must be parsed by glean_parser to generate public APIs for said metrics and pings. These files also serve the purpose of documenting metrics and pings. They are consumed by the probe-scraper tool, which generates a REST API to access metrics and pings information consumed by most other tools in the Glean ecosystem, such as GLAM and the Glean Dictionary . Moreover, for products that do not wish to use the Glean Dictionary as their metrics and pings documentation source, glean_parser provides an option to generate Markdown documentation for metrics and pings based on these files. For more information of that, refer to the help output of the translate command, by running in your terminal: $ glean_parser translate --help","breadcrumbs":"YAML Registry Format » YAML Registry Format","id":"276","title":"YAML Registry Format"},"277":{"body":"For a full reference on the metrics.yaml format, refer to the Metrics YAML Registry Format page.","breadcrumbs":"YAML Registry Format » metrics.yaml file","id":"277","title":"metrics.yaml file"},"278":{"body":"For a full reference on the pings.yaml format, refer to the Pings YAML Registry Format page.","breadcrumbs":"YAML Registry Format » pings.yaml file","id":"278","title":"pings.yaml file"},"279":{"body":"For a full reference on the tags.yaml format, refer to the Tags YAML Registry Format page. Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » tags.yaml file","id":"279","title":"tags.yaml file"},"28":{"body":"In your code you can then access generated metrics nested within their category under the metrics module (or your chosen name): metrics::your_category::metric_name.set(true); See the metric API reference for details. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Rust » Use the metrics","id":"28","title":"Use the metrics"},"280":{"body":"Metrics sent by an application or library are defined in YAML files which follow the metrics.yaml JSON schema . This files must be parsed by glean_parser at build time in order to generate code in the target language (e.g. Kotlin, Swift, ...). The generated code is what becomes the public API to access the project's metrics. For more information on how to introduce the glean_parser build step for a specific language / environment, refer to the \"Adding Glean to your project\" section of this book.","breadcrumbs":"YAML Registry Format » Metrics » Metrics YAML Registry Format","id":"280","title":"Metrics YAML Registry Format"},"281":{"body":"Although we refer to metrics definitions YAML files as metrics.yaml throughout Glean documentation this files may be named whatever makes the most sense for each project and may even be broken down into multiple files, if necessary.","breadcrumbs":"YAML Registry Format » Metrics » Note on the naming of these files","id":"281","title":"Note on the naming of these files"},"282":{"body":"---\n# Schema\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 $tags: - frontend # Category\ntoolbar: # Name click: # Metric Parameters type: event description: | Event to record toolbar clicks. metadata: tags: - Interaction notification_emails: - CHANGE-ME@example.com bugs: - https://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review expires: 2019-06-01 double_click: ...","breadcrumbs":"YAML Registry Format » Metrics » File structure","id":"282","title":"File structure"},"283":{"body":"Declaring the schema at the top of a metrics definitions file is required, as it is what indicates that the current file is a metrics definitions file.","breadcrumbs":"YAML Registry Format » Metrics » Schema","id":"283","title":"Schema"},"284":{"body":"You may optionally declare tags at the file level that apply to all metrics in that file.","breadcrumbs":"YAML Registry Format » Metrics » $tags","id":"284","title":"$tags"},"285":{"body":"Categories are the top-level keys on metrics definition files. One single definition file may contain multiple categories grouping multiple metrics. They serve the purpose of grouping related metrics in a project. Categories can contain alphanumeric lower case characters as well as the . and _ characters which can be used to provide extra structure, for example category.subcategory is a valid category. Category lengths may not exceed 40 characters. Categories may not start with the string glean. That prefix is reserved for Glean internal metrics. See the \"Capitalization\" note to understand how the category is formatted in generated code.","breadcrumbs":"YAML Registry Format » Metrics » Category","id":"285","title":"Category"},"286":{"body":"Metric names are the second-level keys on metrics definition files. Names may contain alphanumeric lower case characters as well as the _ character. Metric name lengths may not exceed 30 characters. \"Capitalization\" rules also apply to metric names on generated code.","breadcrumbs":"YAML Registry Format » Metrics » Name","id":"286","title":"Name"},"287":{"body":"Specific metric types may have special required parameters in their definition, these parameters are documented in each \"Metric Type\" reference page. Following are the parameters common to all metric types.","breadcrumbs":"YAML Registry Format » Metrics » Metric parameters","id":"287","title":"Metric parameters"},"288":{"body":"type Specifies the type of a metric, like \"counter\" or \"event\". This defines which operations are valid for the metric, how it is stored and how data analysis tooling displays it. See the list of supported metric types . Types should not be changed after release Once a metric is defined in a product, its type should only be changed in rare circumstances. It's better to rename the metric with the new type instead. The ingestion pipeline will create a new column for a metric with a changed type. Any new analysis will need to use the new column going forward. The old column will still be populated with data from old clients. description A textual description of the metric for humans. It should describe what the metric does, what it means for analysts, and its edge cases or any other helpful information. The description field may contain markdown syntax . Imposed limits on line length The Glean linter uses a line length limit of 80 characters. If your description is longer, e.g. because it includes longer links, you can disable yamllint using the following annotations (and make sure to enable yamllint again as well): # yamllint disable\ndescription: | Your extra long description, that's longer than 80 characters by far.\n# yamllint enable notification_emails A list of email addresses to notify for important events with the metric or when people with context or ownership for the metric need to be contacted. For example when a metric's expiration is within in 14 days, emails will be sent from telemetry-alerts@mozilla.com to the notification_emails addresses associated with the metric. Consider adding both a group email address and an individual who is responsible for this metric. bugs A list of bugs (e.g. Bugzilla or GitHub) that are relevant to this metric. For example, bugs that track its original implementation or later changes to it. Each entry should be the full URL to the bug in an issue tracker. The use of numbers alone is deprecated and will be an error in the future. data_reviews A list of URIs to any data collection review responses relevant to the metric. expires When the metric is set to expire. After a metric expires, an application will no longer collect or send data related to it. May be one of the following values: : An ISO date yyyy-mm-dd in UTC on which the metric expires. For example, 2019-03-13. This date is checked at build time. Except in special cases, this form should be used so that the metric automatically \"sunsets\" after a period of time. Emails will be sent to the notification_emails addresses when the metric is about to expire. Generally, when a metric is no longer needed, it should simply be removed. This does not affect the availability of data already collected by the pipeline. : An integer greater than 0 representing the major version the metric expires in, For example, 11. The version is checked at build time against the major provided to the glean_parser (see e.g. Build configuration for Android , Build configuration for iOS ) and is only valid if a major version is provided at built time. If no major version is provided at build time and expiration by major version is used for a metric, an error is raised. Note that mixing expiration by date and version is not allowed within a product. never: This metric never expires. expired: This metric is manually expired.","breadcrumbs":"YAML Registry Format » Metrics » Required parameters","id":"288","title":"Required parameters"},"289":{"body":"tags default: [] A list of tag names associated with this metric. Must correspond to an entry specified in a tags file . lifetime default: ping Defines the lifetime of the metric. Different lifetimes affect when the metrics value is reset. ping (default) The metric is cleared each time it is submitted in the ping. This is the most common case, and should be used for metrics that are highly dynamic, such as things computed in response to the user's interaction with the application. application The metric is related to an application run, and is cleared after the application restarts and any Glean-owned ping, due at startup, is submitted. This should be used for things that are constant during the run of an application, such as the operating system version. In practice, these metrics are generally set during application startup. A common mistake--- using the ping lifetime for these type of metrics---means that they will only be included in the first ping sent during a particular run of the application. user NOTE: Reach out to the Glean team before using this. The metric is part of the user's profile and will live as long as the profile lives. This is often not the best choice unless the metric records a value that really needs to be persisted for the full lifetime of the user profile, e.g. an identifier like the client_id, the day the product was first executed. It is rare to use this lifetime outside of some metrics that are built in to the Glean SDK. send_in_pings default: events|metrics Defines which pings the metric should be sent on. If not specified, the metric is sent on the default ping, which is the events ping for events and the metrics ping for everything else. Most metrics don't need to specify this unless they are sent on custom pings . The special value default may be used, in case it's required for a metric to be sent on the default ping as well as in a custom ping. Adding metrics to every ping For the small number of metrics that should be in every ping the Glean SDKs will eventually provide a solution. See bug 1695236 for details. send_in_pings: - my-custom-ping - default disabled default: false Data collection for this metric is disabled. This is useful when you want to temporarily disable the collection for a specific metric without removing references to it in your source code. Generally, when a metric is no longer needed, it should simply be removed. This does not affect the availability of data already collected by the pipeline. version default: 0 The version of the metric. A monotonically increasing integer value. This should be bumped if the metric changes in a backward-incompatible way. data_sensitivity default: [] A list of data sensitivity categories that the metric falls under. There are four data collection categories related to data sensitivity defined in Mozilla's data collection review process : Category 1: Technical Data (technical) Information about the machine or Firefox itself. Examples include OS, available memory, crashes and errors, outcome of automated processes like updates, safe browsing, activation, versions, and build id. This also includes compatibility information about features and APIs used by websites, add-ons, and other 3rd-party software that interact with Firefox during usage. Category 2: Interaction Data (interaction) Information about the user’s direct engagement with Firefox. Examples include how many tabs, add-ons, or windows a user has open; uses of specific Firefox features; session length, scrolls and clicks; and the status of discrete user preferences. It also includes information about the user's in-product journeys and product choices helpful to understand engagement (attitudes). For example, selections of add-ons or tiles to determine potential interest categories etc. Category 3: Stored Content & Communications (stored_content) (formerly Web activity data, web_activity) Information about what people store, sync, communicate or connect to where the information is generally considered to be more sensitive and personal in nature. Examples include users' saved URLs or URL history, specific web browsing history, general information about their web browsing history (such as TLDs or categories of webpages visited over time) and potentially certain types of interaction data about specific web pages or stories visited (such as highlighted portions of a story). It also includes information such as content saved by users to an individual account like saved URLs, tags, notes, passwords and files as well as communications that users have with one another through a Mozilla service. Category 4: Highly sensitive data or clearly identifiable personal data (highly_sensitive) Information that directly identifies a person, or if combined with other data could identify a person. This data may be embedded within specific website content, such as memory contents, dumps, captures of screen data, or DOM data. Examples include account registration data like name, password, and email address associated with an account, payment data in connection with subscriptions or donations, contact information such as phone numbers or mailing addresses, email addresses associated with surveys, promotions and customer support contacts. It also includes any data from different categories that, when combined, can identify a person, device, household or account. For example Category 1 log data combined with Category 3 saved URLs. Additional examples are: voice audio commands (including a voice audio file), speech-to-text or text-to-speech (including transcripts), biometric data, demographic information, and precise location data associated with a persistent identifier, individual or small population cohorts. This is location inferred or determined from mechanisms other than IP such as wi-fi access points, Bluetooth beacons, cell phone towers or provided directly to us, such as in a survey or a profile. Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » Metrics » Optional parameters","id":"289","title":"Optional parameters"},"29":{"body":"This page provides a step-by-step guide on how to integrate the Glean JavaScript SDK into a JavaScript project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so. The Glean JavaScript SDK allows integration with three distinct JavaScript environments: websites, web extension and Node.js.","breadcrumbs":"Adding Glean to your project » JavaScript » Adding Glean to your JavaScript project","id":"29","title":"Adding Glean to your JavaScript project"},"290":{"body":"Custom pings sent by an application or library are defined in YAML files which follow the pings.yaml JSON schema . This files must be parsed by glean_parser at build time in order to generate code in the target language (e.g. Kotlin, Swift, ...). The generated code is what becomes the public API to access the project's custom pings. For more information on how to introduce the glean_parser build step for a specific language / environment, refer to the \"Adding Glean to your project\" section of this book.","breadcrumbs":"YAML Registry Format » Pings » Pings YAML Registry Format","id":"290","title":"Pings YAML Registry Format"},"291":{"body":"Although we refer to pings definitions YAML files as pings.yaml throughout Glean documentation this files may be named whatever makes the most sense for each project and may even be broken down into multiple files, if necessary.","breadcrumbs":"YAML Registry Format » Pings » Note on the naming of these files","id":"291","title":"Note on the naming of these files"},"292":{"body":"---\n# Schema\n$schema: moz://mozilla.org/schemas/glean/pings/2-0-0 # Name\nsearch: # Ping parameters description: > A ping to record search data. include_client_id: false notification_emails: - CHANGE-ME@example.com bugs: - http://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review","breadcrumbs":"YAML Registry Format » Pings » File structure","id":"292","title":"File structure"},"293":{"body":"Declaring the schema at the top of a pings definitions file is required, as it is what indicates that the current file is a pings definitions file.","breadcrumbs":"YAML Registry Format » Pings » Schema","id":"293","title":"Schema"},"294":{"body":"Ping names are the top-level keys on pings definitions files. One single definition file may contain multiple ping declarations. Ping names are limited to lowercase letters from the ISO basic Latin alphabet and hyphens and a maximum of 30 characters. Pings may not contain the words custom or ping in their names. These are considered redundant words and will trigger a REDUNDANT_PING lint failure on glean_parser. \"Capitalization\" rules apply to ping names on generated code.","breadcrumbs":"YAML Registry Format » Pings » Name","id":"294","title":"Name"},"295":{"body":"The names baseline, metrics, events, deletion-request, default and all-pings are reserved and may not be used as the name of a custom ping.","breadcrumbs":"YAML Registry Format » Pings » Reserved ping names","id":"295","title":"Reserved ping names"},"296":{"body":"","breadcrumbs":"YAML Registry Format » Pings » Ping parameters","id":"296","title":"Ping parameters"},"297":{"body":"description A textual description of the purpose of the ping. It may contain markdown syntax . metadata default: {} A dictionary of extra metadata associated with this ping. tags default: [] A list of tag names associated with this ping. Must correspond to an entry specified in a tags file . ping_schedule default: [] A list of ping names. When one of those pings is sent, then this ping is also sent, with the same reason. This is useful if you want a ping to be scheduled and sent at the same frequency as another ping, like baseline. Pings cannot list themselves under ping_schedule, however it is possible to accidentally create cycles of pings where Ping A schedules Ping B, which schedules Ping C, which in turn schedules Ping A. This can result in a constant stream of pings being sent. Please use caution with ping_schedule, and ensure that you have not accidentally created any cycles with the ping references. include_client_id A boolean indicating whether to include the client_id in the client_info section of the ping. notification_emails A list of email addresses to notify for important events with the ping or when people with context or ownership for the ping need to be contacted. Consider adding both a group email address and an individual who is responsible for this ping. bugs A list of bugs (e.g. Bugzilla or GitHub) that are relevant to this ping. For example, bugs that track its original implementation or later changes to it. Each entry should be the full URL to the bug in an issue tracker. The use of numbers alone is deprecated and will be an error in the future. data_reviews A list of URIs to any data collection review responses relevant to the metric.","breadcrumbs":"YAML Registry Format » Pings » Required parameters","id":"297","title":"Required parameters"},"298":{"body":"send_if_empty default: false A boolean indicating if the ping is sent if it contains no metric data. reasons default: {} The reasons that this ping may be sent. The keys are the reason codes, and the values are a textual description of each reason. The ping payload will (optionally) contain one of these reasons in the ping_info.reason field. Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » Pings » Optional parameters","id":"298","title":"Optional parameters"},"299":{"body":"Any number of custom \"tags\" can be added to any metric or ping. This can be useful in data discovery tools like the Glean Dictionary . The tags for an application are defined in YAML files which follow the tags.yaml JSON schema . These files must be parsed by glean_parser at build time in order to generate the metadata. For more information on how to introduce the glean_parser build step for a specific language / environment, refer to the \"Adding Glean to your project\" section of this book.","breadcrumbs":"YAML Registry Format » Tags » Tags YAML Registry Format","id":"299","title":"Tags YAML Registry Format"},"3":{"body":"This section of the book contains reference pages for Glean’s user facing APIs. If you are looking for information a specific Glean API, this is the section you should check out.","breadcrumbs":"Glean » API Reference","id":"3","title":"API Reference"},"30":{"body":"Node.js >= 12.20.0 npm >= 7.0.0 Webpack >= 5.34.0 Python >= 3.8 The glean command requires Python to download glean_parser which is a Python library","breadcrumbs":"Adding Glean to your project » JavaScript » Requirements","id":"30","title":"Requirements"},"300":{"body":"Although we refer to tag definitions YAML files as tags.yaml throughout Glean documentation this files may be named whatever makes the most sense for each project and may even be broken down into multiple files, if necessary.","breadcrumbs":"YAML Registry Format » Tags » Note on the naming of these files","id":"300","title":"Note on the naming of these files"},"301":{"body":"---\n# Schema\n$schema: moz://mozilla.org/schemas/glean/tags/1-0-0 Search: description: Metrics or pings in the \"search\" domain","breadcrumbs":"YAML Registry Format » Tags » File structure","id":"301","title":"File structure"},"302":{"body":"Declaring the schema at the top of a tags definitions file is required, as it is what indicates that the current file is a tag definitions file.","breadcrumbs":"YAML Registry Format » Tags » Schema","id":"302","title":"Schema"},"303":{"body":"Tag names are the top-level keys on tag definitions files. One single definition file may contain multiple tag declarations. There is no restriction on the name of a tag, aside from the fact that they have a maximum of 80 characters.","breadcrumbs":"YAML Registry Format » Tags » Name","id":"303","title":"Name"},"304":{"body":"","breadcrumbs":"YAML Registry Format » Tags » Tag parameters","id":"304","title":"Tag parameters"},"305":{"body":"description A textual description of the tag. It may contain markdown syntax . Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » Tags » Required parameters","id":"305","title":"Required parameters"},"306":{"body":"The Glean SDKs have a minimal API available on their top-level Glean object called the General API. This API allows, among other things, to enable and disable upload, register custom pings and set experiment data . Only initialize in the main application! Glean should only be initialized from the main application, not individual libraries. If you are adding Glean support to a library, you can safely skip this section.","breadcrumbs":"General API » The General API","id":"306","title":"The General API"},"307":{"body":"The Glean SDKs provide a general API that supports the following operations. See API reference pages for SDK-specific details. Operation Description Notes initialize Configure and initialize the Glean SDK. Initializing the Glean SDK setUploadEnabled Enable or disable Glean collection and upload. Toggling upload status registerPings Register custom pings generated from pings.yaml. Custom pings setExperimentActive Indicate that an experiment is running. Using the Experiments API setExperimentInactive Indicate that an experiment is no longer running.. Using the Experiments API registerEventListener Register a callback by which a consumer can be notified of all event metrics being recorded. Glean Event Listener Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » The API","id":"307","title":"The API"},"308":{"body":"Glean needs to be initialized in order to be able to send pings, record metrics and perform maintenance tasks. Thus it is advised that Glean be initialized as soon as possible in an application's lifetime and importantly, before any other libraries in the application start using Glean.","breadcrumbs":"General API » Initializing » Initializing","id":"308","title":"Initializing"},"309":{"body":"Libraries rely on the same Glean singleton as the application in which they are embedded. Hence, they are not expected to initialize Glean as the application should already do that.","breadcrumbs":"General API » Initializing » Libraries are not required to initialize Glean","id":"309","title":"Libraries are not required to initialize Glean"},"31":{"body":"webextension-polyfill >= 0.8.0 Glean.js assumes a Promise-based browser API: Firefox provides such an API by default. Other browsers may require using a polyfill library such us webextension-polyfill when using Glean in browser extensions Host permissions to the telemetry server Only necessary if the defined server endpoint denies cross-origin requests Not necessary if using the default https://incoming.telemetry.mozilla.org. \"storage\" API permissions Browser extension example configuration The manifest.json file of the sample browser extension available on the mozilla/glean.js repository provides an example on how to define the above permissions as well as how and where to load the webextension-polyfill script.","breadcrumbs":"Adding Glean to your project » JavaScript » Browser extension specific requirements","id":"31","title":"Browser extension specific requirements"},"310":{"body":"Any API called before Glean is initialized is queued and applied at initialization. To avoid unbounded memory growth the queue is bounded (currently to a maximum of 1 million tasks), and further calls are dropped. The number of calls dropped, if any, is recorded in the glean.error.preinit_tasks_overflow metric.","breadcrumbs":"General API » Initializing » Behavior when uninitialized","id":"310","title":"Behavior when uninitialized"},"311":{"body":"","breadcrumbs":"General API » Initializing » Behavior once initialized","id":"311","title":"Behavior once initialized"},"312":{"body":"Once initialized, if upload is enabled, Glean applies all metric recordings and ping submissions, for both user-defined and builtin metrics and pings. This always happens asynchronously.","breadcrumbs":"General API » Initializing » When upload is enabled","id":"312","title":"When upload is enabled"},"313":{"body":"If upload is disabled, any persisted metrics, events and pings (other than first_run_date) are cleared. Pending deletion-request pings are sent. Subsequent calls to record metrics and submit pings will be no-ops. Because Glean does that as part of its initialization, users are required to always initialize Glean. Glean must be initialized even if upload is disabled. This does not apply to special builds where telemetry is disabled at build time. In that case, it is acceptable to not call initialize at all.","breadcrumbs":"General API » Initializing » When upload is disabled","id":"313","title":"When upload is disabled"},"314":{"body":"","breadcrumbs":"General API » Initializing » API","id":"314","title":"API"},"315":{"body":"Initializes Glean. May only be called once. Subsequent calls to initialize are no-op. Configuration The available initialize configuration options may vary depending on the SDK. Below are listed the configuration options available on most SDKs. Note that on some SDKs some of the options are taken as a configuration object. Check the respective SDK documentation for details. Configuration Option Default value Description applicationId On Android/iOS: determined automatically. Otherwise required . Application identifier. For Android and iOS applications, this is the id used on the platform's respective app store and is extracted automatically from the application context. uploadEnabled Required The user preference on whether or not data upload is enabled. channel - The application's release channel. When present, the app_channel will be reported in all pings' client_info sections. appBuild On Android/iOS: determined automatically. Otherwise: - A build identifier e.g. the build identifier generated by a CI system (e.g. \"1234/A\"). If not present, app_build will be reported as \"Unknown\" on all pings' client_info sections. appDisplayVersion - The user visible version string for the application running Glean. If not present, app_display_version will be reported as \"Unknown\" on all pings' client_info sections. serverEndpoint https://incoming.telemetry.mozilla.org The server pings are sent to. maxEvents Glean.js: 1. Other SDKs: 500. The maximum number of events the Glean storage will hold on to before submitting the 'events' ping. Refer to the events ping documentation for more information on its scheduling. httpUploader - A custom HTTP uploader instance, that will overwrite Glean's provided uploader. Useful for users that wish to use specific uploader implementations. See Custom Uploaders for more information on how and when the use this feature. logLevel - The level for how verbose the internal logging is. The level filter options in order from least to most verbose are: Off, Error, Warn, Info, Debug, Trace. See the log crate docs for more information. enableEventTimestamps true Whether to add a wall clock timestamp to all events. rateLimit 15 pings per 60s interval Specifies the maximum number of pings that can be uploaded per interval of a specified number of seconds. experimentationId - Optional. An identifier derived by the application to be sent in all pings for the purpose of experimentation. See the experiments API documentation for more information. enableInternalPings true Whether to enable the internal \"baseline\", \"events\", and \"metrics\" pings. delayPingLifetimeIo false Whether Glean should delay persistence of data from metrics with ping lifetime. On Android data is automatically persisted every 1000 writes and on backgrounding when enabled. To learn about SDK specific configuration options available, refer to the Reference section. Always initialize Glean with the correct upload preference Glean must always be initialized with real values. Always pass the user preference, e.g. Glean.initialize(uploadEnabled=userSettings.telemetryEnabled) or the equivalent for your application. Calling Glean.setUploadEnabled(false) at a later point will trigger deletion-request pings and regenerate client IDs. This should only be done if the user preference actually changes. An excellent place to initialize Glean is within the onCreate method of the class that extends Android's Application class. import org.mozilla.yourApplication.GleanMetrics.GleanBuildInfo\nimport org.mozilla.yourApplication.GleanMetrics.Pings class SampleApplication : Application() { override fun onCreate() { super.onCreate() // If you have custom pings in your application, you must register them // using the following command. This command should be omitted for // applications not using custom pings. Glean.registerPings(Pings) // Initialize the Glean library. Glean.initialize( applicationContext, // Here, `settings()` is a method to get user preferences, specific to // your application and not part of the Glean API. uploadEnabled = settings().isTelemetryEnabled, configuration = Configuration(), buildInfo = GleanBuildInfo.buildInfo ) }\n} The Glean Kotlin SDK supports use across multiple processes. This is enabled by setting a dataPath value in the Glean.Configuration object passed to Glean.initialize. You do not need to set a dataPath for your main process. This configuration should only be used by a non-main process. Requirements for a non-main process: Glean.initialize must be called with the dataPath value set in the Glean.Configuration. The default dataPath for Glean is {context.applicationInfo.dataDir}/glean_data. If you try to use this path, Glean.initialize will fail and throw an error. Set the default process name as your main process. If this is not set up correctly, pings from the non-main process will not send. Configuration.Builder().setDefaultProcessName() Note : When initializing from a non-main process with a specified dataPath, the lifecycle observers will not be set up. This means you will not receive otherwise scheduled baseline or metrics pings.","breadcrumbs":"General API » Initializing » Glean.initialize(configuration)","id":"315","title":"Glean.initialize(configuration)"},"316":{"body":"When the Glean Kotlin SDK is consumed through Android Components, it is required to configure an HTTP client to be used for upload. For example: // Requires `org.mozilla.components:concept-fetch`\nimport mozilla.components.concept.fetch.Client // Requires `org.mozilla.components:lib-fetch-httpurlconnection`.\n// This can be replaced by other implementations, e.g. `lib-fetch-okhttp`\n// or an implementation from `browser-engine-gecko`.\nimport mozilla.components.lib.fetch.httpurlconnection.HttpURLConnectionClient\nimport mozilla.components.service.glean.config.Configuration\nimport mozilla.components.service.glean.net.ConceptFetchHttpUploader val httpClient = ConceptFetchHttpUploader(lazy { HttpURLConnectionClient() as Client })\nval config = Configuration(httpClient = httpClient)\nGlean.initialize( context, uploadEnabled = true, configuration = config, buildInfo = GleanBuildInfo.buildInfo\n) An excellent place to initialize Glean is within the application(_:) method of the class that extends the UIApplicationDelegate class. import Glean\nimport UIKit @UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate { func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // If you have custom pings in your application, you must register them // using the following command. This command should be omitted for // applications not using custom pings. Glean.shared.registerPings(GleanMetrics.Pings) // Initialize the Glean library. Glean.shared.initialize( // Here, `Settings` is a method to get user preferences specific to // your application, and not part of the Glean API. uploadEnabled = Settings.isTelemetryEnabled, configuration = Configuration(), buildInfo = GleanMetrics.GleanBuild.info ) }\n} The Glean Swift SDK supports use across multiple processes. This is enabled by setting a dataPath value in the Glean.Configuration object passed to Glean.initialize. You do not need to set a dataPath for your main process. This configuration should only be used by a non-main process. Requirements for a non-main process: Glean.initialize must be called with the dataPath value set in the Glean.Configuration. On iOS devices, Glean stores data in the Application Support directory. The default dataPath Glean uses is {FileManager.default.urls(for: .applicationSupportDirectory, in: .userDomainMask)[0]}/glean_data. If you try to use this path, Glean.initialize will fail and throw an error. Note : When initializing from a non-main process with a specified dataPath, the lifecycle observers will not be set up. This means you will not receive otherwise scheduled baseline or metrics pings. The main control for the Glean Python SDK is on the glean.Glean singleton. from glean import Glean, Configuration Glean.initialize( application_id=\"my-app-id\", application_version=\"0.1.0\", # Here, `is_telemetry_enabled` is a method to get user preferences specific to # your application, and not part of the Glean API. upload_enabled=is_telemetry_enabled(), configuration=Configuration(),\n) Unlike in other implementations, the Python SDK does not automatically send any pings. See the custom pings documentation about adding custom pings and sending them. The Glean Rust SDK should be initialized as soon as possible. use glean::{ClientInfoMetrics, Configuration};\nlet cfg = Configuration { data_path, application_id: \"my-app-id\".into(), // Here, `is_telemetry_enabled` is a method to get user preferences specific to // your application, and not part of the Glean API. upload_enabled: is_telemetry_enabled(), max_events: None, delay_ping_lifetime_io: false, server_endpoint: Some(\"https://incoming.telemetry.mozilla.org\".into()), uploader: None, use_core_mps: true,\n}; let client_info = ClientInfoMetrics { app_build: env!(\"CARGO_PKG_VERSION\").to_string(), app_display_version: env!(\"CARGO_PKG_VERSION\").to_string(), channel: None, locale: None,\n}; glean::initialize(cfg, client_info); The Glean Rust SDK does not support use across multiple processes, and must only be initialized on the application's main process. Unlike in other implementations, the Rust SDK does not provide a default uploader. See PingUploader for details. import Glean from \"@mozilla/glean/\"; Glean.initialize( \"my-app-id\", // Here, `isTelemetryEnabled` is a method to get user preferences specific to // your application, and not part of the Glean API. isTelemetryEnabled(), { appDisplayVersion: \"0.1.0\" }\n);","breadcrumbs":"General API » Initializing » Consuming Glean through Android Components","id":"316","title":"Consuming Glean through Android Components"},"317":{"body":"A custom HTTP uploader may be provided at initialization time in order to overwrite Glean's native ping uploader implementation. Each SDK exposes a base class for Glean users to extend into their own custom uploaders. See BaseUploader for details on how to implement a custom upload on Kotlin. See HttpPingUploader for details on how to implement a custom upload on Swift. See BaseUploader for details on how to implement a custom upload on Python. See PingUploader for details on how to implement a custom upload on Rust. import { Uploader, UploadResult, UploadResultStatus } from \"@mozilla/glean/uploader\";\nimport Glean from \"@mozilla/glean/\"; /** * My custom uploader implementation */\nexport class MyCustomUploader extends Uploader { async post(url: string, body: string, headers): Promise { // My custom POST request code }\n} Glean.initialize( \"my-app-id\", // Here, `isTelemetryEnabled` is a method to get user preferences specific to // your application, and not part of the Glean API. isTelemetryEnabled(), { httpClient: new MyCustomUploader() }\n);","breadcrumbs":"General API » Initializing » Custom Uploaders","id":"317","title":"Custom Uploaders"},"318":{"body":"When unit testing metrics and pings, Glean needs to be put in testing mode. Initializing Glean for tests is referred to as \"resetting\". It is advised that Glean is reset before each unit test to prevent side effects of one unit test impacting others. How to do that and the definition of \"testing mode\" varies per Glean SDK. Refer to the information below for SDK specific information. Using the Glean Kotlin SDK's unit testing API requires adding Robolectric 4.0 or later as a testing dependency. In Gradle, this can be done by declaring a testImplementation dependency: dependencies { testImplementation \"org.robolectric:robolectric:4.3.1\"\n} In order to put the Glean Kotlin SDK into testing mode apply the JUnit GleanTestRule to your test class. Testing mode will prevent issues with async calls when unit testing the Glean SDK on Kotlin. It also enables uploading and clears the recorded metrics at the beginning of each test run. The rule can be used as shown: @RunWith(AndroidJUnit4::class)\nclass ActivityCollectingDataTest { // Apply the GleanTestRule to set up a disposable Glean instance. // Please note that this clears the Glean data across tests. @get:Rule val gleanRule = GleanTestRule(ApplicationProvider.getApplicationContext()) @Test fun checkCollectedData() { // The Glean Kotlin SDK testing APIs can be called here. }\n} This will ensure that metrics are done recording when the other test functions are used. Note : There's no automatic test rule for Glean tests implemented in Swift. In order to prevent issues with async calls when unit testing the Glean SDK, it is important to put the Glean Swift SDK into testing mode. When the Glean Swift SDK is in testing mode, it enables uploading and clears the recorded metrics at the beginning of each test run. Activate it by resetting Glean in your test's setup: // All pings and metrics testing APIs are marked as `internal`\n// so you need to import `Glean` explicitly in test mode.\nimport XCTest class GleanUsageTests: XCTestCase { override func setUp() { Glean.shared.resetGlean(clearStores: true) } // ...\n} This will ensure that metrics are done recording when the other test functions are used. The Glean Python SDK contains a helper function glean.testing.reset_glean() for resetting Glean for tests. It has two required arguments: the application ID, and the application version. Each reset of the Glean Python SDK will create a new temporary directory for Glean to store its data in. This temporary directory is automatically cleaned up the next time the Glean Python SDK is reset or when the testing framework finishes. The instructions below assume you are using pytest as the test runner. Other test-running libraries have similar features, but are different in the details. Create a file conftest.py at the root of your test directory, and add the following to reset Glean at the start of every test in your suite: import pytest\nfrom glean import testing @pytest.fixture(name=\"reset_glean\", scope=\"function\", autouse=True)\ndef fixture_reset_glean(): testing.reset_glean(application_id=\"my-app-id\", application_version=\"0.1.0\") Note Glean uses a global singleton object. Tests need to run single-threaded or need to ensure exclusivity using a lock. The Glean Rust SDK contains a helper function test_reset_glean() for resetting Glean for tests. It has three required arguments: the configuration to use the client info to use whether to clear stores before initialization You can call it like below in every test: let dir = tempfile::tempdir().unwrap();\nlet tmpname = dir.path().to_path_buf(); let glean::Configuration { data_path: tmpname, application_id: \"app-id\".into(), upload_enabled: true, max_events: None, delay_ping_lifetime_io: false, server_endpoint: Some(\"invalid-test-host\".into()), uploader: None, use_core_mps: false,\n};\nlet client_info = glean::ClientInfoMetrics::unknown();\nglean::test_reset_glean(cfg, client_info, false); The Glean JavaScript SDK contains a helper function testResetGlean() for resetting Glean for tests. It expects the same list of arguments as Glean.initialize. Each reset of the Glean JavaScript SDK will clear stores. Calling testResetGlean will also make metrics and pings testing APIs available and replace ping uploading with a mock implementation that does not make real HTTP requests. import { testResetGlean } from \"@mozilla/glean/testing\" describe(\"myTestSuite\", () => { beforeEach(async () => { await testResetGlean(\"my-test-id\"); });\n});","breadcrumbs":"General API » Initializing » Testing API","id":"318","title":"Testing API"},"319":{"body":"Swift API docs Python API docs Rust API docs JavaScript API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Initializing » Reference","id":"319","title":"Reference"},"32":{"body":"The Glean JavaScript SDK is distributed as an npm package @mozilla/glean . This package has different entry points to access the different SDKs. @mozilla/glean/web gives access to the websites SDK @mozilla/glean/webext gives access to the web extension SDK @mozilla/glean/node gives access to the Node.js SDK [1] The Node.js SDK does not have persistent storage yet. This means, Glean does not persist state throughout application runs. For updates on the implementation of this feature in Node.js, follow Bug 1728807 . Install Glean in your JavaScript project, by running: npm install @mozilla/glean Then import Glean into your project: // Importing the Glean JavaScript SDK for use in **web extensions**\n//\n// esm\nimport Glean from \"@mozilla/glean/webext\";\n// cjs\nconst { default: Glean } = require(\"@mozilla/glean/webext\"); // Importing the Glean JavaScript SDK for use in **websites**\n//\n// esm\nimport Glean from \"@mozilla/glean/web\";\n// cjs\nconst { default: Glean } = require(\"@mozilla/glean/web\"); // Importing the Glean JavaScript SDK for use in **Node.js**\n//\n// esm\nimport Glean from \"@mozilla/glean/node\";\n// cjs\nconst { default: Glean } = require(\"@mozilla/glean/node\");","breadcrumbs":"Adding Glean to your project » JavaScript » Setting up the dependency","id":"32","title":"Setting up the dependency"},"320":{"body":"The Glean SDKs provide an API for toggling Glean's upload status after initialization. Applications instrumented with Glean are expected to provide some form of user interface to allow for toggling the upload status.","breadcrumbs":"General API » Toggling upload status » Toggling upload status","id":"320","title":"Toggling upload status"},"321":{"body":"When upload is disabled, the Glean SDK will perform the following tasks: Submit a deletion-request ping. Cancel scheduled ping uploads. Clear metrics and pings data from the client, except for the first_run_date metric. While upload is disabled, metrics aren't recorded and no data is uploaded.","breadcrumbs":"General API » Toggling upload status » Disabling upload","id":"321","title":"Disabling upload"},"322":{"body":"When upload is enabled, the Glean SDK will re-initialize its core metrics . The only core metric that is not re-initialized is the first_run_date metric. While upload is enabled all metrics are recorded as expected and pings are sent to the telemetry servers.","breadcrumbs":"General API » Toggling upload status » Enabling upload","id":"322","title":"Enabling upload"},"323":{"body":"","breadcrumbs":"General API » Toggling upload status » API","id":"323","title":"API"},"324":{"body":"Enables or disables upload. If called prior to initialize this function is a no-op. If the upload state is not actually changed in between calls to this function, it is also a no-op. import mozilla.telemetry.glean.Glean open class MainActivity : AppCompatActivity() { override fun onCreate() { // ... uploadSwitch.setOnCheckedChangeListener { _, isChecked -> if (isChecked) { Glean.setUploadEnabled(true) } else { Glean.setUploadEnabled(false) } } }\n} import mozilla.telemetry.glean.Glean Glean.INSTANCE.setUploadEnabled(false); import Glean\nimport UIKit class ViewController: UIViewController { @IBOutlet var enableSwitch: UISwitch! // ... @IBAction func enableToggled(_: Any) { Glean.shared.setUploadEnabled(enableSwitch.isOn) }\n} from glean import Glean Glean.set_upload_enabled(false) use glean; glean::set_upload_enabled(false); import Glean from \"@mozilla/glean/web\"; const uploadSwitch = document.querySelector(\"input[type=checkbox].upload-switch\");\nuploadSwitch.addEventListener(\"change\", event => { if (event.target.checked) { Glean.setUploadEnabled(true); } else { Glean.setUploadEnabled(false); }\n});","breadcrumbs":"General API » Toggling upload status » Glean.setUploadEnabled(boolean)","id":"324","title":"Glean.setUploadEnabled(boolean)"},"325":{"body":"Swift API docs Python API docs Rust API docs JavaScript API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Toggling upload status » Reference","id":"325","title":"Reference"},"326":{"body":"The Glean SDKs support tagging all their pings with experiments annotations. The annotations are useful to report that experiments were active at the time the measurement were collected. The annotations are reported in the optional experiments entry in the ping_info section of all pings. Experiment annotations are not persisted The experiment annotations set through this API are not persisted by the Glean SDKs. The application or consuming library is responsible for setting the relevant experiment annotations at each run. It's not required to define experiment IDs and branches Experiment IDs and branches don't need to be pre-defined in the Glean SDK registry files. Please also note that the extra map is a non-nested arbitrary String to String map. It also has limits on the size of the keys and values defined below.","breadcrumbs":"General API » Annotating experiments » Using the experiments API","id":"326","title":"Using the experiments API"},"327":{"body":"","breadcrumbs":"General API » Annotating experiments » Recording API","id":"327","title":"Recording API"},"328":{"body":"Annotates Glean pings with experiment data. // Annotate Glean pings with experiments data.\nGlean.setExperimentActive( experimentId = \"blue-button-effective\", branch = \"branch-with-blue-button\", extra: mapOf( \"buttonLabel\" to \"test\" )\n) // Annotate Glean pings with experiments data.\nGlean.shared.setExperimentActive( experimentId: \"blue-button-effective\", branch: \"branch-with-blue-button\", extra: [\"buttonLabel\": \"test\"]\n) from glean import Glean Glean.set_experiment_active( experiment_id=\"blue-button-effective\", branch=\"branch-with-blue-button\", extra={ \"buttonLabel\": \"test\" }\n) let mut extra = HashMap::new();\nextra.insert(\"buttonLabel\".to_string(), \"test\".to_string());\nglean::set_experiment_active( \"blue-button-effective\".to_string(), \"branch-with-blue-button\".to_string(), Some(extra),\n); C++ At present there is no dedicated C++ Experiments API for Firefox Desktop If you require one, please file a bug . JavaScript let FOG = Cc[\"@mozilla.org/toolkit/glean;1\"].createInstance(Ci.nsIFOG);\nFOG.setExperimentActive( \"blue-button-effective\", \"branch-with-blue-button\", {\"buttonLabel\": \"test\"}\n); Limits experimentId, branch, and the keys and values of the extra field are fixed at a maximum length of 100 bytes. Longer strings are truncated. (Specifically, length is measured in the number of bytes when the string is encoded in UTF-8.) extra map is limited to 20 entries. If passed a map which contains more elements than this, it is truncated to 20 elements. WARNING Which items are truncated is nondeterministic due to the unordered nature of maps. What's left may not necessarily be the first elements added. Recorded errors invalid_value : If the values of experimentId or branch are truncated for length, if the keys or values in the extra map are truncated for length, or if the extra map is truncated for the number of elements.","breadcrumbs":"General API » Annotating experiments » setExperimentActive","id":"328","title":"setExperimentActive"},"329":{"body":"Removes the experiment annotation. Should be called when the experiment ends. Glean.setExperimentInactive(\"blue-button-effective\") Glean.shared.setExperimentInactive(experimentId: \"blue-button-effective\") from glean import Glean Glean.set_experiment_inactive(\"blue-button-effective\") glean::set_experiment_inactive(\"blue-button-effective\".to_string()); C++ At present there is no dedicated C++ Experiments API for Firefox Desktop If you require one, please file a bug . JavaScript let FOG = Cc[\"@mozilla.org/toolkit/glean;1\"].createInstance(Ci.nsIFOG);\nFOG.setExperimentInactive(\"blue-button-effective\");","breadcrumbs":"General API » Annotating experiments » setExperimentInactive","id":"329","title":"setExperimentInactive"},"33":{"body":"In case of privilege-escalation attack into the context of the web extension using Glean, the malicious scripts would be able to call Glean APIs or use the browser.storage.local APIs directly. That would be a risk to Glean data, but not caused by Glean. Glean-using extensions should be careful not to relax the default Content-Security-Policy that generally prevents these attacks.","breadcrumbs":"Adding Glean to your project » JavaScript » Browser extension security considerations","id":"33","title":"Browser extension security considerations"},"330":{"body":"An experimentation enrollment identifier that is derived and provided by the application can be set through the configuration object passed into the initialize function. See the section on Initializing Glean for more information on how to set this within the Configuration object. This identifier will be set during initialization and sent along with all pings sent by Glean, unless that ping is has opted out of sending the client_id. This identifier is not persisted by Glean and must be persisted by the application if necessary for it to remain consistent between runs. Limits The experimentation ID is subject to the same limitations as a string metric type . Recorded errors The experimentation ID will produce the same errors as a string metric type .","breadcrumbs":"General API » Annotating experiments » Set an experimentation identifier","id":"330","title":"Set an experimentation identifier"},"331":{"body":"","breadcrumbs":"General API » Annotating experiments » Testing API","id":"331","title":"Testing API"},"332":{"body":"Reveals if the experiment is annotated in Glean pings. assertTrue(Glean.testIsExperimentActive(\"blue-button-effective\")) XCTAssertTrue(Glean.shared.testIsExperimentActive(experimentId: \"blue-button-effective\")) from glean import Glean assert Glean.test_is_experiment_active(\"blue-button-effective\") assert!(glean::test_is_experiment_active(\"blue-button-effective\".to_string());","breadcrumbs":"General API » Annotating experiments » testIsExperimentActive","id":"332","title":"testIsExperimentActive"},"333":{"body":"Returns the recorded experiment data including branch and extras. assertEquals( \"branch-with-blue-button\", Glean.testGetExperimentData(\"blue-button-effective\")?.branch\n) XCTAssertEqual( \"branch-with-blue-button\", Glean.testGetExperimentData(experimentId: \"blue-button-effective\")?.branch\n) from glean import Glean assert ( \"branch-with-blue-button\" == Glean.test_get_experiment_data(\"blue-button-effective\").branch\n) assert_eq!( \"branch-with-blue-button\", glean::test_get_experiment_data(\"blue-button-effective\".to_string()).branch,\n); C++ At present there is no dedicated C++ Experiments API for Firefox Desktop If you require one, please file a bug . JavaScript let FOG = Cc[\"@mozilla.org/toolkit/glean;1\"].createInstance(Ci.nsIFOG);\nAssert.equals( \"branch-with-blue-button\", FOG.testGetExperimentData(\"blue-button-effective\").branch\n);","breadcrumbs":"General API » Annotating experiments » testGetExperimentData","id":"333","title":"testGetExperimentData"},"334":{"body":"Returns the current Experimentation ID, if any. assertEquals(\"alpha-beta-gamma-delta\", Glean.testGetExperimentationId()) XCTAssertEqual( \"alpha-beta-gamma-delta\", Glean.shared.testGetExperimentationId()!, \"Experimenatation ids must match\"\n) from glean import Glean assert \"alpha-beta-gamma-delta\" == Glean.test_get_experimentation_id() assert_eq!( \"alpha-beta-gamma-delta\".to_string(), glean_test_get_experimentation_id(), \"Experimentation id must match\"\n);","breadcrumbs":"General API » Annotating experiments » testGetExperimentationId","id":"334","title":"testGetExperimentationId"},"335":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Annotating experiments » Reference","id":"335","title":"Reference"},"336":{"body":"After defining custom pings glean_parser is able to generate code from pings.yaml files in a Pings object, which must be instantiated so Glean can send pings by name.","breadcrumbs":"General API » Registering custom pings » Registering custom pings","id":"336","title":"Registering custom pings"},"337":{"body":"","breadcrumbs":"General API » Registering custom pings » API","id":"337","title":"API"},"338":{"body":"Loads custom ping metadata into your application or library. In Kotlin, this object must be registered from your startup code before calling Glean.initialize (such as in your application's onCreate method or a function called from that method). import org.mozilla.yourApplication.GleanMetrics.Pings override fun onCreate() { Glean.registerPings(Pings) Glean.initialize(applicationContext, uploadEnabled = true)\n} In Swift, this object must be registered from your startup code before calling Glean.shared.initialize (such as in your application's UIApplicationDelegate application(_:didFinishLaunchingWithOptions:) method or a function called from that method). import Glean @UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate { func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { Glean.shared.registerPings(GleanMetrics.Pings) Glean.shared.initialize(uploadEnabled = true) }\n} For Python, the pings.yaml file must be available and loaded at runtime. While the Python SDK does provide a Glean.register_ping_type function, if your project is a script (i.e. just Python files in a directory), you can load the pings.yaml before calling Glean.initialize using: from glean import load_pings pings = load_pings(\"pings.yaml\") Glean.initialize( application_id=\"my-app-id\", application_version=\"0.1.0\", upload_enabled=True,\n) If your project is a distributable Python package, you need to include the pings.yaml file using one of the myriad ways to include data in a Python package and then use pkg_resources.resource_filename() to get the filename at runtime. from glean import load_pings\nfrom pkg_resources import resource_filename pings = load_pings(resource_filename(__name__, \"pings.yaml\")) In Rust custom pings need to be registered individually. This should be done before calling glean::initialize. use your_glean_metrics::pings; glean::register_ping_type(&pings::custom_ping);\nglean::register_ping_type(&pings::search);\nglean::initialize(cfg, client_info); Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Registering custom pings » registerPings","id":"338","title":"registerPings"},"339":{"body":"Provides a way for users to gracefully shut down Glean, by blocking until it is finished performing pending tasks such as recording metrics and uploading pings.","breadcrumbs":"General API » Shut down » Shut down","id":"339","title":"Shut down"},"34":{"body":"\"Cannot find module '@mozilla/glean'\" Glean.js does not have a main package entry point. Instead it relies on a series of entry points depending on the platform you are targeting. In order to import Glean use: import Glean from '@mozilla/glean/{your-platform}' \"Module not found: Error: Can't resolve '@mozilla/glean/webext' in '...'\" Glean.js relies on Node.js' subpath exports feature to define multiple package entry points. Please make sure that you are using a supported Node.js runtime and also make sure the tools you are using support this Node.js feature.","breadcrumbs":"Adding Glean to your project » JavaScript » Common import errors","id":"34","title":"Common import errors"},"340":{"body":"Most calls to Glean APIs are dispatched [1] . This strategy is adopted because most tasks performed by the Glean SDKs involve file system read or write operations, HTTP requests and other time consuming actions. Each Glean SDK has an internal structure called \"Dispatcher\" which makes sure API calls get executed in the order they were called, while not requiring the caller to block on the completion of each of these tasks. Here, this term indicates the tasks are run asynchronously in JavaScript or in a different thread for all other SDKs.","breadcrumbs":"General API » Shut down » How the Glean SDKs execute tasks","id":"340","title":"How the Glean SDKs execute tasks"},"341":{"body":"","breadcrumbs":"General API » Shut down » API","id":"341","title":"API"},"342":{"body":"fn main() { let cfg = Configuration { // ... }; let client_info = /* ... */; glean::initialize(cfg, client_info); // Ensure the dispatcher thread winds down glean::shutdown();\n} import Glean from \"@mozilla/glean/webext\"; async function onUninstall() { // Flips Glean upload status to `false`, // which triggers sending of a `deletion-request` ping. Glean.setUploadEnabled(false); // Block on shut down to guarantee all pending pings // (including the `deletion-request` sent above) // are sent before the extension is uninstalled. await Glean.shutdown(); // Uninstall browser extension without asking for user approval before doing so. await browser.management.uninstallSelf({ showConfirmDialog: false });\n} The shutdown API is available for all JavaScript targets, even though the above example is explicitly using the webext target.","breadcrumbs":"General API » Shut down » shutdown","id":"342","title":"shutdown"},"343":{"body":"Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Shut down » Reference","id":"343","title":"Reference"},"344":{"body":"Note: This API is currently experimental and subject to change or elimination. Please reach out to the Glean Team if you are planning on using this API in its experimental state.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Glean Event Listener","id":"344","title":"Glean Event Listener"},"345":{"body":"Glean provides an API to register a callback by which a consumer can be notified of all event metrics being recorded.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Summary","id":"345","title":"Summary"},"346":{"body":"Consumers can register a callback through this API which will be called with the base identifier of each event metric when it is recorded. The base identifier of the event consists of the category name and the event name with a dot separator: . Glean will execute the registered callbacks on a background thread independent of the thread in which the event is being recorded in order to not interfere with the collection of the event. Glean will ensure that event recordings are reported to listeners in the same order that they are recorded by using the same dispatching mechanisms used to ensure events are recorded in the order they are received.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Usage","id":"346","title":"Usage"},"347":{"body":"class TestEventListener : GleanEventListener { val listenerTag: String = \"TestEventListener\" var lastSeenId: String = \"\" var count: Int = 0 override fun onEventRecorded(id: String) { this.lastSeenId = id this.count += 1 }\n} val listener = TestEventListener()\nGlean.registerEventListener(listener.listenerTag, listener) // If necessary to unregister the listener:\nGlean.unregisterEventListener(listener.listenerTag) class TestEventListener: GleanEventListener { let listenerTag: String = \"TestEventListener\" var lastSeenId: String = \"\" var count: Int64 = 0 func onEventRecorded(_ id: String) { self.lastSeenId = id self.count += 1 }\n} let listener = TestEventListener()\nGlean.shared.registerEventListener(tag: listener.listenerTag, listener: listener) // If necessary to unregister the listener:\nGlean.shared.unregisterEventListener(listener.listenerTag) Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Examples","id":"347","title":"Examples"},"348":{"body":"Different platforms have different ways to enable each debug functionality. They may be enabled through APIs exposed on the Glean singleton, through environment variables set at run time, or through platform specific debug tools.","breadcrumbs":"Debugging » Debugging","id":"348","title":"Debugging"},"349":{"body":"Check out the platform specific guides on how to use Glean's debug functionalities. Debugging applications using the Glean Android SDK Debugging applications using the Glean iOS SDK Debugging applications using the Glean Python SDK Debugging applications using the Glean JavaScript SDK","breadcrumbs":"Debugging » Platform Specific Information","id":"349","title":"Platform Specific Information"},"35":{"body":"In JavaScript, the metrics and pings definitions must be parsed at build time. The @mozilla/glean package exposes glean_parser through the glean script. To parse your YAML registry files using this script, define a new script in your package.json file: { // ... \"scripts\": { // ... \"build:glean\": \"glean translate path/to/metrics.yaml path/to/pings.yaml -f javascript -o path/to/generated\", // Or, if you are building for a Typescript project \"build:glean\": \"glean translate path/to/metrics.yaml path/to/pings.yaml -f typescript -o path/to/generated\" }\n} Then run this script by calling: npm run build:glean","breadcrumbs":"Adding Glean to your project » JavaScript » Setting up metrics and pings code generation","id":"35","title":"Setting up metrics and pings code generation"},"350":{"body":"The Glean SDKs provides four debugging features.","breadcrumbs":"Debugging » Features","id":"350","title":"Features"},"351":{"body":"This is either true or false and will cause all subsequent pings that are submitted, to also be echoed to the device's log.","breadcrumbs":"Debugging » Log Pings","id":"351","title":"Log Pings"},"352":{"body":"This will tag all subsequent outgoing pings with the provided value, in order to identify them in the Glean Debug View .","breadcrumbs":"Debugging » Debug View Tag","id":"352","title":"Debug View Tag"},"353":{"body":"This will tag all subsequent outgoing pings with a maximum of 5 comma-separated tags.","breadcrumbs":"Debugging » Source Tags","id":"353","title":"Source Tags"},"354":{"body":"This feature is only available for the Kotlin and Swift SDKs and in Firefox Desktop via about:glean. This expects the name of a ping and forces its immediate submission. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Send Pings","id":"354","title":"Send Pings"},"355":{"body":"This flag causes all subsequent pings that are submitted to also be echoed to the product's log. Once enabled, the only way to disable this feature is to restart or manually reset the application.","breadcrumbs":"Debugging » Log pings » Log pings","id":"355","title":"Log pings"},"356":{"body":"The Glean SDKs log warnings and errors through platform-specific logging frameworks. See the platform-specific instructions for information on how to view the logs on the platform you are on.","breadcrumbs":"Debugging » Log pings » On how to access logs","id":"356","title":"On how to access logs"},"357":{"body":"The accepted values are true or false. Any other value will be ignored.","breadcrumbs":"Debugging » Log pings » Limits","id":"357","title":"Limits"},"358":{"body":"","breadcrumbs":"Debugging » Log pings » API","id":"358","title":"API"},"359":{"body":"Enables or disables ping logging. This API can safely be called before Glean.initialize. The tag will be applied upon initialization in this case. use glean; glean.set_log_pings(true); import Glean from \"@mozilla/glean/\"; Glean.setLogPings(true);","breadcrumbs":"Debugging » Log pings » setLogPings","id":"359","title":"setLogPings"},"36":{"body":"","breadcrumbs":"Adding Glean to your project » JavaScript » Automation steps","id":"36","title":"Automation steps"},"360":{"body":"Gets the current state of ping logging. val loggingEnabled = Glean.getLogPings() let loggingEnabled = Glean.shared.getLogPings() use glean; let logging_enabled = glean.get_log_pings();","breadcrumbs":"Debugging » Log pings » getLogPings","id":"360","title":"getLogPings"},"361":{"body":"","breadcrumbs":"Debugging » Log pings » Environment variable","id":"361","title":"Environment variable"},"362":{"body":"It is also possible to enable ping logging through the GLEAN_LOG_PINGS environment variable. This variable must be set at runtime, not at compile time. It will be checked upon Glean initialization. Xcode IDE scheme editor popup screenshot To set environment variables to the process running your app in an iOS device or emulator you need to edit the scheme for your app. In the Xcode IDE, use the shortcut Cmd + < to open the scheme editor popup. The environment variables editor is under the Arguments tab on this popup. $ GLEAN_LOG_PINGS=true python my_application.py $ GLEAN_LOG_PINGS=true cargo run $ GLEAN_LOG_PINGS=true ./mach run Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Log pings » GLEAN_LOG_PINGS","id":"362","title":"GLEAN_LOG_PINGS"},"363":{"body":"Tag all subsequent outgoing pings with a given value, in order to redirect them to the Glean Debug View . \"To tag\" a ping with the Debug View Tag means that the ping request will contain the X-Debug-Id header with the given tag. Once enabled, the only way to disable this feature is to restart or manually reset the application.","breadcrumbs":"Debugging » Debug View Tag » Debug View Tag","id":"363","title":"Debug View Tag"},"364":{"body":"Any valid HTTP header value is a valid debug view tag (e.g. any value that matches the regex [a-zA-Z0-9-]{1,20}). Invalid values will be ignored.","breadcrumbs":"Debugging » Debug View Tag » Limits","id":"364","title":"Limits"},"365":{"body":"","breadcrumbs":"Debugging » Debug View Tag » API","id":"365","title":"API"},"366":{"body":"Sets the Debug View Tag to a given value. This API can safely be called before Glean.initialize. The tag will be applied upon initialization in this case. Glean.setDebugViewTag(\"my-tag\") import Glean Glean.shared.setDebugViewTag(\"my-tag\") use glean; glean.set_debug_view_tag(\"my-tag\"); import Glean from \"@mozilla/glean/\"; Glean.setDebugViewTag(\"my-tag\");","breadcrumbs":"Debugging » Debug View Tag » setDebugViewTag","id":"366","title":"setDebugViewTag"},"367":{"body":"Gets the Debug View Tag if set, otherwise returns a language-specific empty/null value. val tag = Glean.getDebugViewTag() ?: \"none\" import Glean if let tag = Glean.shared.getDebugViewTag() { ... } use glean; if let Some(tag) = glean.get_debug_view_tag() { ... };","breadcrumbs":"Debugging » Debug View Tag » getDebugViewTag","id":"367","title":"getDebugViewTag"},"368":{"body":"","breadcrumbs":"Debugging » Debug View Tag » Environment variable","id":"368","title":"Environment variable"},"369":{"body":"It is also possible to set the debug view tag through the GLEAN_DEBUG_VIEW_TAG environment variable. This variable must be set at runtime, not at compile time. It will be checked upon Glean initialization. Xcode IDE scheme editor popup screenshot To set environment variables to the process running your app in an iOS device or emulator you need to edit the scheme for your app. In the Xcode IDE, use the shortcut Cmd + < to open the scheme editor popup. The environment variables editor is under the Arguments tab on this popup. $ GLEAN_DEBUG_VIEW_TAG=\"my-tag\" python my_application.py $ GLEAN_DEBUG_VIEW_TAG=\"my-tag\" cargo run $ GLEAN_DEBUG_VIEW_TAG=\"my-tag\" ./mach run Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Debug View Tag » GLEAN_DEBUG_VIEW_TAG","id":"369","title":"GLEAN_DEBUG_VIEW_TAG"},"37":{"body":"Prefer using the Glean Dictionary While it is still possible to generate Markdown documentation, if working on a public Mozilla project rely on the Glean Dictionary for documentation. Your product will be automatically indexed by the Glean Dictionary after it gets enabled in the pipeline. One of the commands provided by glean_parser allows users to generate Markdown documentation based on the contents of their YAML registry files. To perform that translation, use the translate command with a different output format, as shown below. In your package.json, define the following script: { // ... \"scripts\": { // ... \"docs:glean\": \"glean translate path/to/metrics.yaml path/to/pings.yaml -f markdown -o path/to/docs\", }\n} Then run this script by calling: npm run docs:glean","breadcrumbs":"Adding Glean to your project » JavaScript » Documentation","id":"37","title":"Documentation"},"370":{"body":"Tag all subsequent outgoing pings with a maximum of 5 comma-separated tags. \"To tag\" a ping with Source Tags means that the ping request will contain the X-Source-Tags header with a comma separated list of the given tags. Once enabled, the only way to disable this feature is to restart or manually reset the application.","breadcrumbs":"Debugging » Source Tags » Source Tags","id":"370","title":"Source Tags"},"371":{"body":"Any valid HTTP header value is a valid source tag (e.g. any value that matches the regex [a-zA-Z0-9-]{1,20}) and values starting with the substring glean are reserved for internal Glean usage and thus are also considered invalid. If any value in the list of source tags is invalid, the whole list will be ignored. If the list of tags has more than five members, the whole list will be ignored. The special value automation is meant for tagging pings generated on automation: such pings will be specially handled on the pipeline (i.e. discarded from non-live views ).","breadcrumbs":"Debugging » Source Tags » Limits","id":"371","title":"Limits"},"372":{"body":"","breadcrumbs":"Debugging » Source Tags » API","id":"372","title":"API"},"373":{"body":"Sets the Source Tags to a given value. This API can safely be called before Glean.initialize. The tag will be applied upon initialization in this case. import mozilla.telemetry.glean.Glean Glean.setSourceTags(setOf(\"my-tag\", \"your-tag\", \"our-tag\")) Glean.INSTANCE.setSourceTags(setOf(\"my-tag\", \"your-tag\", \"our-tag\")) import Glean Glean.shared.setSourceTags([\"my-tag\", \"your-tag\", \"our-tag\"]) use glean; glean.set_source_tags([\"my-tag\", \"your-tag\", \"our-tag\"]); import Glean from \"@mozilla/glean/\"; Glean.setSourceTags([\"my-tag\", \"your-tag\", \"our-tag\"]);","breadcrumbs":"Debugging » Source Tags » setSourceTags","id":"373","title":"setSourceTags"},"374":{"body":"","breadcrumbs":"Debugging » Source Tags » Environment variable","id":"374","title":"Environment variable"},"375":{"body":"It is also possible to set the debug view tag through the GLEAN_SOURCE_TAGS environment variable. This variable must be set at runtime, not at compile time. It will be checked upon Glean initialization. Xcode IDE scheme editor popup screenshot To set environment variables to the process running your app in an iOS device or emulator you need to edit the scheme for your app. In the Xcode IDE, use the shortcut Cmd + < to open the scheme editor popup. The environment variables editor is under the Arguments tab on this popup. $ GLEAN_SOURCE_TAGS=my-tag,your-tag,our-tag python my_application.py $ GLEAN_SOURCE_TAGS=my-tag,your-tag,our-tag cargo run $ GLEAN_SOURCE_TAGS=my-tag,your-tag,our-tag ./mach run Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Source Tags » GLEAN_SOURCE_TAGS","id":"375","title":"GLEAN_SOURCE_TAGS"},"376":{"body":"Not sure which metric type to use? These docs contain a series of questions that can help. Reference information about each metric type is linked below. The parameters available that apply to any metric type are in the metric parameters page . There are different metrics to choose from, depending on what you want to achieve: Boolean : Records a single truth value, for example \"is a11y enabled?\" Labeled boolean : Records truth values for a set of labels, for example \"which a11y features are enabled?\" Counter : Used to count how often something happens, for example, how often a certain button was pressed. Labeled counter : Used to count how often something happens, for example which kind of crash occurred (\"uncaught_exception\" or \"native_code_crash\"). String : Records a single Unicode string value, for example the name of the OS. Labeled strings : Records multiple Unicode string values, for example to record which kind of error occurred in different stages of a login process. String List : Records a list of Unicode string values, for example the list of enabled search engines. Timespan : Used to measure how much time is spent in a single task. Timing Distribution : Used to record the distribution of multiple time measurements. Memory Distribution : Used to record the distribution of memory sizes. UUID : Used to record universally unique identifiers (UUIDs), such as a client ID. URL : Used to record URL-like strings. Datetime : Used to record an absolute date and time, such as the time the user first ran the application. Events : Records events e.g. individual occurrences of user actions, say every time a view was open and from where. Custom Distribution : Used to record the distribution of a value that needs fine-grained control of how the histogram buckets are computed. Custom distributions are only available for values that come from Gecko. Quantity : Used to record a single non-negative integer value. For example, the width of the display in pixels. Labeled Quantity : Used to record multiple non-negative integer values. For example, the dimensions of the display in pixels. Rate : Used to record the rate something happens relative to some other thing. For example, the number of HTTP connections that experienced an error relative to the number of total HTTP connections made. Text : Records a single long Unicode text, used when the limits on String are too low. Object : Record structured data.","breadcrumbs":"Metric types » Metrics","id":"376","title":"Metrics"},"377":{"body":"There are two types of metrics listed above - labeled and unlabeled metrics. If a metric is labeled , it means that for a single metric entry you define in metrics.yaml, you can record into multiple metrics under the same name, each of the same type and identified by a different string label. This is useful when you need to break down metrics by a label known at build time or run time. For example: When you want to count a different set of sub-views that users interact with, you could use viewCount[\"view1\"].add() and viewCount[\"view2\"].add(). When you want to count errors that might occur for a feature, you could use errorCount[errorName].add(). Labeled metrics come in two forms: Static labels : The labels are specified at build time in the metrics.yaml file, in the labels parameter. If a label that isn't part of this set is used at run time, it is converted to the special label __other__. The number of static labels is limited to 4096 per metric. Dynamic labels : The labels aren't known at build time, so are set at run time. Only the first 16 labels seen by Glean will be tracked. After that, any additional labels are converted to the special label __other__. Note : Be careful with using arbitrary strings as labels and make sure they can't accidentally contain identifying data (like directory paths or user input).","breadcrumbs":"Metric types » Labeled metrics","id":"377","title":"Labeled metrics"},"378":{"body":"Labels must not exceed 71 characters in length, and may comprise any printable ASCII characters.","breadcrumbs":"Metric types » Label format","id":"378","title":"Label format"},"379":{"body":"Glean has a well-defined process for requesting changes to existing metric types or suggesting the implementation of new metric types: Glean consumers need to file a bug in the Data platforms & tools::Glean Metric Types component, filling in the provided form; The triage owner of the Bugzilla component prioritizes this within 6 business days and kicks off the decision making process . Once the decision process is completed, the bug is closed with a comment outlining the decision that was made.","breadcrumbs":"Metric types » Adding or changing metric types","id":"379","title":"Adding or changing metric types"},"38":{"body":"Glean includes a \"linter\" for the YAML registry files called the glinter that catches a number of common mistakes in these files. To run the linter use the glinter command. In your package.json, define the following script: { // ... \"scripts\": { // ... \"lint:glean\": \"glean glinter path/to/metrics.yaml path/to/pings.yaml\", }\n} Then run this script by calling: npm run lint:glean Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » JavaScript » YAML registry files linting","id":"38","title":"YAML registry files linting"},"380":{"body":"JWE : Deprecated in v37.0.0 Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Deprecated metrics","id":"380","title":"Deprecated metrics"},"381":{"body":"Boolean metrics are used for reporting simple flags.","breadcrumbs":"Metric types » Boolean » Boolean","id":"381","title":"Boolean"},"382":{"body":"","breadcrumbs":"Metric types » Boolean » Recording API","id":"382","title":"Recording API"},"383":{"body":"Sets a boolean metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Flags Flags.a11yEnabled.set(System.isAccesibilityEnabled()) import org.mozilla.yourApplication.GleanMetrics.Flags; Flags.INSTANCE.a11yEnabled().set(System.isAccessibilityEnabled()); Flags.a11yEnabled.set(self.isAccessibilityEnabled) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.flags.a11y_enabled.set(is_accessibility_enabled()) use glean_metrics::flags; flags::a11y_enabled.set(system.is_accessibility_enabled()); import * as flags from \"./path/to/generated/files/flags.js\"; flags.a11yEnabled.set(this.isAccessibilityEnabled()); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::flags::a11y_enabled.Set(false); JavaScript Glean.flags.a11yEnabled.set(false); Recorded errors invalid_type : if a non-boolean value is given (JavaScript only).","breadcrumbs":"Metric types » Boolean » set","id":"383","title":"set"},"384":{"body":"","breadcrumbs":"Metric types » Boolean » Testing API","id":"384","title":"Testing API"},"385":{"body":"Gets the recorded value for a given boolean metric. Returns true or false if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Flags assertTrue(Flags.a11yEnabled.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Flags; assertTrue(Flags.INSTANCE.a11yEnabled().testGetValue()); XCTAssertTrue(Flags.a11yEnabled.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert True is metrics.flags.a11y_enabled.test_get_value() use glean_metrics::flags; assert!(flags::a11y_enabled.test_get_value(None).unwrap()); import * as flags from \"./path/to/generated/files/flags.js\"; assert(await flags.a11yEnabled.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQ(false, mozilla::glean::flags::a11y_enabled.TestGetValue().value()); JavaScript Assert.equal(false, Glean.flags.a11yEnabled.testGetValue());","breadcrumbs":"Metric types » Boolean » testGetValue","id":"385","title":"testGetValue"},"386":{"body":"Gets the number of errors recorded for a given boolean metric. import org.mozilla.yourApplication.GleanMetrics.Flags assertEquals( 0, Flags.a11yEnabled.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Flags; assertEquals( 0, Flags.INSTANCE.a11yEnabled().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Flags.a11yEnabled.testGetNumRecordedErrors(.invalidValue)) assert 0 == metrics.flags.a11y_enabled.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType; use glean_metrics::flags; assert_eq!( 0, flags::a11y_enabled.test_get_num_recorded_errors( ErrorType::InvalidValue )\n);","breadcrumbs":"Metric types » Boolean » testGetNumRecordedErrors","id":"386","title":"testGetNumRecordedErrors"},"387":{"body":"Example boolean metric definition: flags: a11y_enabled: type: boolean description: > Records whether a11y is enabled on the device. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Boolean » Metric parameters","id":"387","title":"Metric parameters"},"388":{"body":"N/A","breadcrumbs":"Metric types » Boolean » Extra metric parameters","id":"388","title":"Extra metric parameters"},"389":{"body":"Is accessibility enabled?","breadcrumbs":"Metric types » Boolean » Data questions","id":"389","title":"Data questions"},"39":{"body":"This page provides a step-by-step guide on how to integrate the Glean.js library into a Qt/QML project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Qt/QML » Adding Glean to your Qt/QML project","id":"39","title":"Adding Glean to your Qt/QML project"},"390":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Boolean » Reference","id":"390","title":"Reference"},"391":{"body":"Labeled booleans are used to record different related boolean flags.","breadcrumbs":"Metric types » Labeled Booleans » Labeled Booleans","id":"391","title":"Labeled Booleans"},"392":{"body":"","breadcrumbs":"Metric types » Labeled Booleans » Recording API","id":"392","title":"Recording API"},"393":{"body":"Sets one of the labels in a labeled boolean metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Accessibility Accessibility.features[\"screen_reader\"].set(isScreenReaderEnabled())\nAccessibility.features[\"high_contrast\"].set(isHighContrastEnabled()) import org.mozilla.yourApplication.GleanMetrics.Accessibility; Acessibility.INSTANCE.features()[\"screen_reader\"].set(isScreenReaderEnabled());\nAcessibility.INSTANCE.features()[\"high_contrast\"].set(isHighContrastEnabled()); Accessibility.features[\"screen_reader\"].set(isScreenReaderEnabled())\nAccessibility.features[\"high_contrast\"].set(isHighContrastEnabled()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.accessibility.features[\"screen_reader\"].set(is_screen_reader_enabled())\nmetrics.accessibility.features[\"high_contrast\"].set(is_high_contrast_enabled()) use glean_metrics::accessibility; accessibility::features.get(\"screen_reader\").set(is_screen_reader_enabled());\naccessibility::features.get(\"high_contrast\").set(is_high_contrast_enabled()); import * as acessibility from \"./path/to/generated/files/acessibility.js\"; acessibility.features[\"screen_reader\"].set(this.isScreenReaderEnabled());\nacessibility.features[\"high_contrast\"].set(this.isHighContrastEnabled()); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::accessibility::features.Get(\"screen_reader\"_ns).Set(true);\nmozilla::glean::accessibility::features.Get(\"high_contrast\"_ns).Set(false); JavaScript Glean.accessibility.features.screen_reader.set(true);\nGlean.accessibility.features[\"high_contrast\"].set(false); Recorded Errors invalid_type : if a non-boolean value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__. Limits Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Booleans » set","id":"393","title":"set"},"394":{"body":"","breadcrumbs":"Metric types » Labeled Booleans » Testing API","id":"394","title":"Testing API"},"395":{"body":"Gets the recorded value for a given label in a labeled boolean metric. Returns the count if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Accessibility // Do the booleans have the expected values?\nassertEquals(True, Accessibility.features[\"screen_reader\"].testGetValue())\nassertEquals(False, Accessibility.features[\"high_contrast\"].testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Accessibility; // Do the booleans have the expected values?\nassertEquals(True, Acessibility.INSTANCE.features()[\"screen_reader\"].testGetValue());\nassertEquals(False, Acessibility.INSTANCE.features()[\"high_contrast\"].testGetValue()); // Do the booleans have the expected values?\nXCTAssertEqual(true, Accessibility.features[\"screen_reader\"].testGetValue())\nXCTAssertEqual(false, Accessibility.features[\"high_contrast\"].testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Do the booleans have the expected values?\nassert metrics.accessibility.features[\"screen_reader\"].test_get_value()\nassert not metrics.accessibility.features[\"high_contrast\"].test_get_value() use glean_metrics::accessibility; // Do the booleans have the expected values?\nassert!(accessibility::features.get(\"screen_reader\").test_get_value(None).unwrap());\nassert!(!accessibility::features.get(\"high_contrast\").test_get_value(None).unwrap()); import * as accessibility from \"./path/to/generated/files/acessibility.js\"; assert(await accessibility.features[\"screen_reader\"].testGetValue());\nassert(!(await accessibility.features[\"high_contrast\"].testGetValue())); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQ( true, mozilla::glean::accessibility::features.Get(\"screen_reader\"_ns).TestGetValue().unwrap().ref());\nASSERT_EQ( false, mozilla::glean::accessibility::features.Get(\"high_contrast\"_ns).TestGetValue().unwrap().ref()); JavaScript Assert.equal(true, Glean.accessibility.features[\"screen_reader\"].testGetValue());\nAssert.equal(false, Glean.accessibility.features.high_contrast.testGetValue());","breadcrumbs":"Metric types » Labeled Booleans » testGetValue","id":"395","title":"testGetValue"},"396":{"body":"Gets the number of errors recorded for a given labeled boolean metric in total. import org.mozilla.yourApplication.GleanMetrics.Accessibility // Did we record any invalid labels?\nassertEquals( 0, Accessibility.features.testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n) import org.mozilla.yourApplication.GleanMetrics.Accessibility; // Did we record any invalid labels?\nassertEquals( 0, Acessibility.INSTANCE.features().testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n); // Were there any invalid labels?\nXCTAssertEqual(0, Accessibility.features.testGetNumRecordedErrors(.invalidLabel)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Did we record any invalid labels?\nassert 0 == metrics.accessibility.features.test_get_num_recorded_errors( ErrorType.INVALID_LABEL\n) use glean::ErrorType;\nuse glean_metrics::accessibility; // Did we record any invalid labels?\nassert_eq!( 1, accessibility::features.test_get_num_recorded_errors( ErrorType::InvalidLabel )\n); import * as accessibility from \"./path/to/generated/files/acessibility.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert( 1, await accessibility.features.testGetNumRecordedErrors(ErrorType.InvalidLabel)\n);","breadcrumbs":"Metric types » Labeled Booleans » testGetNumRecordedErrors","id":"396","title":"testGetNumRecordedErrors"},"397":{"body":"Example labeled boolean metric definition: accessibility: features: type: labeled_boolean description: > a11y features enabled on the device. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 labels: - screen_reader - high_contrast ...","breadcrumbs":"Metric types » Labeled Booleans » Metric parameters","id":"397","title":"Metric parameters"},"398":{"body":"labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Booleans » Extra metric parameters","id":"398","title":"Extra metric parameters"},"399":{"body":"Which accessibility features are enabled?","breadcrumbs":"Metric types » Labeled Booleans » Data questions","id":"399","title":"Data questions"},"4":{"body":"This section contains guides and essays regarding specific usage information and possibilities in each Glean SDK. Check out this section for more information on the SDK you are using.","breadcrumbs":"Glean » SDK Specific Information","id":"4","title":"SDK Specific Information"},"40":{"body":"Python >= 3.7 Qt >= 5.15.2","breadcrumbs":"Adding Glean to your project » Qt/QML » Requirements","id":"40","title":"Requirements"},"400":{"body":"Swift API docs: LabeledMetricType , BooleanMetricType Python API docs: LabeledBooleanMetricType , BooleanMetricType Rust API docs: LabeledMetric , BooleanMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Booleans » Reference","id":"400","title":"Reference"},"401":{"body":"Used to count how often something happens, say how often a certain button was pressed. A counter always starts from 0. Each time you record to a counter, its value is incremented. Unless incremented by a positive value, a counter will not be reported in pings, that means: the value 0 is never sent in a ping. If you find that you need to control the actual value sent in the ping, you may be measuring something, not just counting something, and a Quantity metric may be a better choice.","breadcrumbs":"Metric types » Counter » Counter","id":"401","title":"Counter"},"402":{"body":"When using a counter metric, it is important to let the Glean metric do the counting. Using your own variable for counting and setting the counter yourself could be problematic because it will be difficult to reset the value at the exact moment that the value is sent in a ping. Instead, just use counter.add to increment the value and let Glean handle resetting the counter.","breadcrumbs":"Metric types » Counter » Let the Glean metric do the counting","id":"402","title":"Let the Glean metric do the counting"},"403":{"body":"","breadcrumbs":"Metric types » Counter » Recording API","id":"403","title":"Recording API"},"404":{"body":"Increases the counter by a certain amount. If no amount is passed it defaults to 1. import org.mozilla.yourApplication.GleanMetrics.Controls Controls.refreshPressed.add() // Adds 1 to the counter.\nControls.refreshPressed.add(5) // Adds 5 to the counter. import org.mozilla.yourApplication.GleanMetrics.Controls; Controls.INSTANCE.refreshPressed().add(); // Adds 1 to the counter.\nControls.INSTANCE.refreshPressed().add(5); // Adds 5 to the counter. Controls.refreshPressed.add() // Adds 1 to the counter.\nControls.refreshPressed.add(5) // Adds 5 to the counter. from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.controls.refresh_pressed.add() # Adds 1 to the counter.\nmetrics.controls.refresh_pressed.add(5) # Adds 5 to the counter. use glean_metrics::controls; controls::refresh_pressed.add(1); // Adds 1 to the counter.\ncontrols::refresh_pressed.add(5); // Adds 5 to the counter. import * as controls from \"./path/to/generated/files/controls.js\"; controls.refreshPressed.add(); // Adds 1 to the counter.\ncontrols.refreshPressed.add(5); // Adds 5 to the counter. C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::controls::refresh_pressed.Add(1);\nmozilla::glean::controls::refresh_pressed.Add(5); JavaScript Glean.controls.refreshPressed.add(1);\nGlean.controls.refreshPressed.add(5); Recorded errors invalid_value : If the counter is incremented by a negative value (or, in versions up to and including 54.0.0, 0). invalid_type : If a floating point or non-number value is given. Limits Only increments; Saturates at the largest value that can be represented as a 32-bit signed integer (2147483647).","breadcrumbs":"Metric types » Counter » add","id":"404","title":"add"},"405":{"body":"","breadcrumbs":"Metric types » Counter » Testing API","id":"405","title":"Testing API"},"406":{"body":"Gets the recorded value for a given counter metric. Returns the count if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Controls assertEquals(6, Controls.refreshPressed.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Controls; assertEquals(6, Controls.INSTANCE.refreshPressed().testGetValue()); XCTAssertEqual(6, Controls.refreshPressed.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 6 == metrics.controls.refresh_pressed.test_get_value() use glean_metrics::controls; assert_eq!(6, controls::refresh_pressed.test_get_value(None).unwrap()); import * as controls from \"./path/to/generated/files/controls.js\"; assert.strictEqual(6, await controls.refreshPressed.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_TRUE(mozilla::glean::controls::refresh_pressed.TestGetValue().isOk());\nASSERT_EQ(6, mozilla::glean::controls::refresh_pressed.TestGetValue().unwrap().value()); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(6, Glean.controls.refreshPressed.testGetValue());","breadcrumbs":"Metric types » Counter » testGetValue","id":"406","title":"testGetValue"},"407":{"body":"Gets the number of errors recorded for a given counter metric. import org.mozilla.yourApplication.GleanMetrics.Controls assertEquals( 0, Controls.refreshPressed.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Controls; assertEquals( 0, Controls.INSTANCE.refreshPressed().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Controls.refreshPressed.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") from glean.testing import ErrorType assert 0 == metrics.controls.refresh_pressed.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::controls; assert_eq!( 0, controls::refresh_pressed.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); import * as controls from \"./path/to/generated/files/controls.js\";\nimport { ErrorType } from \"@mozilla/glean/error\";\nassert.strictEqual( 0, await controls.refreshPressed.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Counter » testGetNumRecordedErrors","id":"407","title":"testGetNumRecordedErrors"},"408":{"body":"Example counter metric definition: controls: refresh_pressed: type: counter description: > Counts how often the refresh button is pressed. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Counter » Metric parameters","id":"408","title":"Metric parameters"},"409":{"body":"N/A","breadcrumbs":"Metric types » Counter » Extra metric parameters","id":"409","title":"Extra metric parameters"},"41":{"body":"Glean.js' Qt/QML build is distributed as an asset with every Glean.js release. In order to download the latest version visit https://github.com/mozilla/glean.js/releases/latest . Glean.js is a QML module , so extract the contents of the downloaded file wherever you keep your other modules. Make sure that whichever directory that module is placed in, is part of the QML Import Path . After doing that, import Glean like so: import org.mozilla.Glean ","breadcrumbs":"Adding Glean to your project » Qt/QML » Setting up the dependency","id":"41","title":"Setting up the dependency"},"410":{"body":"How often was a certain button pressed?","breadcrumbs":"Metric types » Counter » Data questions","id":"410","title":"Data questions"},"411":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Counter » Reference","id":"411","title":"Reference"},"412":{"body":"Labeled counters are used to record different related counts that should sum up to a total. Each counter always starts from 0. Each time you record to a labeled counter, its value is incremented. Unless incremented by a positive value, a counter will not be reported in pings, that means: the value 0 is never sent in a ping.","breadcrumbs":"Metric types » Labeled Counters » Labeled Counters","id":"412","title":"Labeled Counters"},"413":{"body":"","breadcrumbs":"Metric types » Labeled Counters » Recording API","id":"413","title":"Recording API"},"414":{"body":"Increases one of the labels in a labeled counter metric by a certain amount. If no amount is passed it defaults to 1. import org.mozilla.yourApplication.GleanMetrics.Stability Stability.crashCount[\"uncaught_exception\"].add() // Adds 1 to the \"uncaught_exception\" counter.\nStability.crashCount[\"native_code_crash\"].add(3) // Adds 3 to the \"native_code_crash\" counter. import org.mozilla.yourApplication.GleanMetrics.Stability; Stability.INSTANCE.crashCount()[\"uncaught_exception\"].add(); // Adds 1 to the \"uncaught_exception\" counter.\nStability.INSTANCE.crashCount()[\"native_code_crash\"].add(3); // Adds 3 to the \"native_code_crash\" counter. Stability.crashCount[\"uncaught_exception\"].add() // Adds 1 to the \"uncaught_exception\" counter.\nStability.crashCount[\"native_code_crash\"].add(3) // Adds 3 to the \"native_code_crash\" counter. from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Adds 1 to the \"uncaught_exception\" counter.\nmetrics.stability.crash_count[\"uncaught_exception\"].add()\n# Adds 3 to the \"native_code_crash\" counter.\nmetrics.stability.crash_count[\"native_code_crash\"].add(3) use glean_metrics::stability; stability::crash_count.get(\"uncaught_exception\").add(1); // Adds 1 to the \"uncaught_exception\" counter.\nstability::crash_count.get(\"native_code_crash\").add(3); // Adds 3 to the \"native_code_crash\" counter. import * as stability from \"./path/to/generated/files/stability.js\"; // Adds 1 to the \"uncaught_exception\" counter.\nstability.crashCount[\"uncaught_exception\"].add();\n// Adds 3 to the \"native_code_crash\" counter.\nstability.crashCount[\"native_code_crash\"].add(3); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::stability::crash_count.Get(\"uncaught_exception\"_ns).Add(1);\nmozilla::glean::stability::crash_count.Get(\"native_code_crash\"_ns).Add(3); JavaScript Glean.stability.crashCount.uncaught_exception.add(1);\nGlean.stability.crashCount[\"native_code_crash\"].add(3); Recorded Errors invalid_value : if the counter is incremented by a negative value (or, in versions up to and including 54.0.0, 0). invalid_type : if a floating point or non-number value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__. Limits Only increments Saturates at the largest value that can be represented as a 32-bit signed integer. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Counters » add","id":"414","title":"add"},"415":{"body":"","breadcrumbs":"Metric types » Labeled Counters » Testing API","id":"415","title":"Testing API"},"416":{"body":"Gets the recorded value for a given label in a labeled counter metric. Returns the count if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Stability // Do the counters have the expected values?\nassertEquals(1, Stability.crashCount[\"uncaught_exception\"].testGetValue())\nassertEquals(3, Stability.crashCount[\"native_code_crash\"].testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Stability; // Do the counters have the expected values?\nassertEquals(1, Stability.INSTANCE.crashCount()[\"uncaught_exception\"].testGetValue());\nassertEquals(3, Stability.INSTANCE.crashCount()[\"native_code_crash\"].testGetValue()); // Do the counters have the expected values?\nXCTAssertEqual(1, Stability.crashCount[\"uncaught_exception\"].testGetValue())\nXCTAssertEqual(3, Stability.crashCount[\"native_code_crash\"].testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Do the counters have the expected values?\nassert 1 == metrics.stability.crash_count[\"uncaught_exception\"].test_get_value()\nassert 3 == metrics.stability.crash_count[\"native_code_crash\"].test_get_value() use glean_metrics::stability; // Do the counters have the expected values?\nassert_eq!(1, stability::crash_count.get(\"uncaught_exception\").test_get_value().unwrap());\nassert_eq!(3, stability::crash_count.get(\"native_code_crash\").test_get_value().unwrap()); import * as stability from \"./path/to/generated/files/stability.js\"; // Do the counters have the expected values?\nassert.strictEqual(1, await stability.crashCount[\"uncaught_exception\"].testGetValue());\nassert.strictEqual(3, await stability.crashCount[\"native_code_crash\"].testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQ( 1, mozilla::glean::stability::crash_count.Get(\"uncaught_exception\"_ns).TestGetValue().unwrap().ref());\nASSERT_EQ( 3, mozilla::glean::stability::crash_count.Get(\"native_code_crash\"_ns).TestGetValue().unwrap().ref()); JavaScript Assert.equal(1, Glean.stability.crashCount[\"uncaught_exception\"].testGetValue());\nAssert.equal(3, Glean.stability.crashCount.native_code_crash.testGetValue());","breadcrumbs":"Metric types » Labeled Counters » testGetValue","id":"416","title":"testGetValue"},"417":{"body":"Gets the number of errors recorded for a given labeled counter metric in total. import org.mozilla.yourApplication.GleanMetrics.Stabilit // Were there any invalid labels?\nassertEquals( 0, Stability.crashCount.testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n) import org.mozilla.yourApplication.GleanMetrics.Stability; // Were there any invalid labels?\nassertEquals( 0, Stability.INSTANCE.crashCount().testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n); // Were there any invalid labels?\nXCTAssertEqual(0, Stability.crashCount.testGetNumRecordedErrors(.invalidLabel)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Were there any invalid labels?\nassert 0 == metrics.stability.crash_count.test_get_num_recorded_errors( ErrorType.INVALID_LABEL\n) use glean::ErrorType; use glean_metrics::stability; // Were there any invalid labels?\nassert_eq!( 0, stability::crash_count.test_get_num_recorded_errors( ErrorType::InvalidLabel )\n); import * as stability from \"./path/to/generated/files/stability.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Were there any invalid labels?\nassert( 0, await stability.crashCount.testGetNumRecordedErrors(ErrorType.InvalidLabel)\n);","breadcrumbs":"Metric types » Labeled Counters » testGetNumRecordedErrors","id":"417","title":"testGetNumRecordedErrors"},"418":{"body":"Example labeled counter metric definition: accessibility: features: type: labeled_counter description: > Counts the number of crashes that occur in the application. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 labels: - uncaught_exception - native_code_crash ...","breadcrumbs":"Metric types » Labeled Counters » Metric parameters","id":"418","title":"Metric parameters"},"419":{"body":"labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Counters » Extra metric parameters","id":"419","title":"Extra metric parameters"},"42":{"body":"The number is the version of the release you downloaded minus its patch version. For example, if you downloaded Glean.js version 0.15.0 your import statement will be: import org.mozilla.Glean 0.15","breadcrumbs":"Adding Glean to your project » Qt/QML » Picking the correct version","id":"42","title":"Picking the correct version"},"420":{"body":"How many times did different types of crashes occur?","breadcrumbs":"Metric types » Labeled Counters » Data questions","id":"420","title":"Data questions"},"421":{"body":"Swift API docs: LabeledMetricType , CounterMetricType Python API docs: LabeledCounterMetricType , CounterMetricType Rust API docs: LabeledMetric , CounterMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Counters » Reference","id":"421","title":"Reference"},"422":{"body":"String metrics allow recording a Unicode string value with arbitrary content. This metric type does not support recording JSON blobs please get in contact with the Glean team if you're missing a type.","breadcrumbs":"Metric types » String » Strings","id":"422","title":"Strings"},"423":{"body":"Be careful using arbitrary strings and make sure they can't accidentally contain identifying data (like directory paths or user input).","breadcrumbs":"Metric types » String » Important","id":"423","title":"Important"},"424":{"body":"","breadcrumbs":"Metric types » String » Recording API","id":"424","title":"Recording API"},"425":{"body":"Set a string metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.SearchDefault // Record a value into the metric.\nSearchDefault.name.set(\"duck duck go\")\n// If it changed later, you can record the new value:\nSearchDefault.name.set(\"wikipedia\") import org.mozilla.yourApplication.GleanMetrics.SearchDefault; // Record a value into the metric.\nSearchDefault.INSTANCE.name().set(\"duck duck go\");\n// If it changed later, you can record the new value:\nSearchDefault.INSTANCE.name().set(\"wikipedia\"); // Record a value into the metric.\nSearchDefault.name.set(\"duck duck go\")\n// If it changed later, you can record the new value:\nSearchDefault.name.set(\"wikipedia\") from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Record a value into the metric.\nmetrics.search_default.name.set(\"duck duck go\")\n# If it changed later, you can record the new value:\nmetrics.search_default.name.set(\"wikipedia\") use glean_metrics::search_default; // Record a value into the metric.\nsearch_default::name.set(\"duck duck go\");\n// If it changed later, you can record the new value:\nsearch_default::name.set(\"wikipedia\"); import * as searchDefault from \"./path/to/generated/files/searchDefault.js\"; // Record a value into the metric.\nsearchDefault.name.set(\"duck duck go\");\n// If it changed later, you can record the new value:\nsearchDefault.name.set(\"wikipedia\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search_default::name.Set(\"wikipedia\"_ns); JavaScript Glean.searchDefault.name.set(\"wikipedia\"); Recorded errors invalid_overflow : if the string is too long. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_type : if a non-string value is given. Limits Fixed maximum string length: 255. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Prior to Glean v60.4.0 the limit was 100 bytes.","breadcrumbs":"Metric types » String » set","id":"425","title":"set"},"426":{"body":"","breadcrumbs":"Metric types » String » Testing API","id":"426","title":"Testing API"},"427":{"body":"Get the recorded value for a given string metric. Returns the string if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. The recorded value may have been truncated. See \"Limits\" section above. import org.mozilla.yourApplication.GleanMetrics.SearchDefault // Does the string metric have the expected value?\nassertEquals(\"wikipedia\", SearchDefault.name.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.SearchDefault; // Does the string metric have the expected value?\nassertEquals(\"wikipedia\", SearchDefault.INSTANCE.name().testGetValue()); // Does the string metric have the expected value?\nXCTAssertEqual(\"wikipedia\", SearchDefault.name.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Does the string metric have the expected value?\nassert \"wikipedia\" == metrics.search_default.name.test_get_value() use glean_metrics::search_default; // Does the string metric have the expected value?\nassert_eq!(6, search_default::name.test_get_value(None).unwrap()); import * as searchDefault from \"./path/to/generated/files/searchDefault.js\"; assert.strictEqual(\"wikipedia\", await searchDefault.name.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" // Is it clear of errors?\nASSERT_TRUE(mozilla::glean::search_default::name.TestGetValue().isOk());\n// Does it have the expected value?\nASSERT_STREQ( \"wikipedia\", mozilla::glean::search_default::name.TestGetValue().unwrap().value().get()\n); JavaScript // Does it have the expected value?\n// testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(\"wikipedia\", Glean.searchDefault.name.testGetValue());","breadcrumbs":"Metric types » String » testGetValue","id":"427","title":"testGetValue"},"428":{"body":"Gets the number of errors recorded for a given string metric. import org.mozilla.yourApplication.GleanMetrics.SearchDefault // Was the string truncated, and an error reported?\nassertEquals( 0, SearchDefault.name.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) import org.mozilla.yourApplication.GleanMetrics.SearchDefault; // Was the string truncated, and an error reported?\nassertEquals( 0, SearchDefault.INSTANCE.name().testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n); // Was the string truncated, and an error reported?\nXCTAssertEqual(0, SearchDefault.name.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Was the string truncated, and an error reported?\nassert 0 == metrics.search_default.name.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse glean_metrics::search_default; // Was the string truncated, and an error reported?\nassert_eq!( 0, search_default::name.test_get_num_recorded_errors( ErrorType::InvalidOverflow )\n); import * as searchDefault from \"./path/to/generated/files/searchDefault.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Was the string truncated, and an error reported?\nassert.strictEqual( 0, await searchDefault.name.testGetNumRecordedErrors(ErrorType.InvalidOverflow)\n);","breadcrumbs":"Metric types » String » testGetNumRecordedErrors","id":"428","title":"testGetNumRecordedErrors"},"429":{"body":"Example string metric definition: controls: refresh_pressed: type: string description: > The name of the default search engine. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » String » Metric parameters","id":"429","title":"Metric parameters"},"43":{"body":"Qt/QML projects need to setup metrics and pings code generation manually. First install the glean_parser CLI tool. pip install glean_parser","breadcrumbs":"Adding Glean to your project » Qt/QML » Consuming YAML registry files","id":"43","title":"Consuming YAML registry files"},"430":{"body":"N/A","breadcrumbs":"Metric types » String » Extra metric parameters","id":"430","title":"Extra metric parameters"},"431":{"body":"Record the operating system name with a value of \"android\". Recording the device model with a value of \"SAMSUNG-SGH-I997\".","breadcrumbs":"Metric types » String » Data questions","id":"431","title":"Data questions"},"432":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » String » Reference","id":"432","title":"Reference"},"433":{"body":"Labeled strings record multiple Unicode string values, each under a different label.","breadcrumbs":"Metric types » Labeled Strings » Labeled Strings","id":"433","title":"Labeled Strings"},"434":{"body":"","breadcrumbs":"Metric types » Labeled Strings » Recording API","id":"434","title":"Recording API"},"435":{"body":"Sets one of the labels in a labeled string metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Login Login.errorsByStage[\"server_auth\"].set(\"Invalid password\") import org.mozilla.yourApplication.GleanMetrics.Login; Login.INSTANCE.errorsByStage()[\"server_auth\"].set(\"Invalid password\"); Login.errorsByStage[\"server_auth\"].set(\"Invalid password\") from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.login.errors_by_stage[\"server_auth\"].set(\"Invalid password\") use glean_metrics::login; login::errors_by_stage.get(\"server_auth\").set(\"Invalid password\"); import * as login from \"./path/to/generated/files/login.js\"; login.errorsByStage[\"server_auth\"].set(\"Invalid password\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::login::errors_by_stage.Get(\"server_auth\"_ns).Set(\"Invalid password\"_ns); JavaScript Glean.login.errorsByStage[\"server_auth\"].set(\"Invalid password\"); Recorded Errors invalid_overflow : if the string is too long, see limits below . invalid_type : if a non-string value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__. Limits Fixed maximum string length: 100. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Strings » set","id":"435","title":"set"},"436":{"body":"","breadcrumbs":"Metric types » Labeled Strings » Testing API","id":"436","title":"Testing API"},"437":{"body":"Gets the recorded value for a given label in a labeled string metric. Returns the string if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Login // Does the metric have the expected value?\nassertTrue(Login.errorsByStage[\"server_auth\"].testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Login; // Does the metric have the expected value?\nassertTrue(Login.INSTANCE.errorsByStage()[\"server_auth\"].testGetValue()); // Does the metric have the expected value?\nXCTAssert(Login.errorsByStage[\"server_auth\"].testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Does the metric have the expected value?\nassert \"Invalid password\" == metrics.login.errors_by_stage[\"server_auth\"].testGetValue()) use glean_metrics::login; // Does the metric have the expected value?\nassert!(login::errors_by_stage.get(\"server_auth\").test_get_value()); import * as login from \"./path/to/generated/files/login.js\"; // Does the metric have the expected value?\nassert.strictEqual(\"Invalid password\", await metrics.login.errorsByStage[\"server_auth\"].testGetValue()) C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_STREQ(\"Invalid password\", mozilla::glean::login::errors_by_stage.Get(\"server_auth\"_ns) .TestGetValue() .unwrap() .ref() .get()); JavaScript Assert.equal(\"Invalid password\", Glean.login.errorsByStage[\"server_auth\"].testGetValue());","breadcrumbs":"Metric types » Labeled Strings » testGetValue","id":"437","title":"testGetValue"},"438":{"body":"Gets the number of errors recorded for a given labeled string metric in total. import org.mozilla.yourApplication.GleanMetrics.Login // Were there any invalid labels?\nassertEquals( 0, Login.errorsByStage.testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n) import org.mozilla.yourApplication.GleanMetrics.Login; // Were there any invalid labels?\nassertEquals( 0, Login.INSTANCE.errorsByStage().testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n); // Were there any invalid labels?\nXCTAssertEqual(0, Login.errorsByStage.testGetNumRecordedErrors(.invalidLabel)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Were there any invalid labels?\nassert 0 == metrics.login.errors_by_stage.test_get_num_recorded_errors( ErrorType.INVALID_LABEL\n) use glean::ErrorType;\nuse glean_metrics::login; // Were there any invalid labels?\nassert_eq!( 0, login::errors_by_stage.test_get_num_recorded_errors( ErrorType::InvalidLabel )\n); import * as login from \"./path/to/generated/files/login.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Were there any invalid labels?\nassert( 0, await login.errorsByStage.testGetNumRecordedErrors(ErrorType.InvalidLabel)\n);","breadcrumbs":"Metric types » Labeled Strings » testGetNumRecordedErrors","id":"438","title":"testGetNumRecordedErrors"},"439":{"body":"Example labeled boolean metric definition: login: errors_by_stage: type: labeled_string description: Records the error type, if any, that occur in different stages of the login process. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 labels: - server_auth - enter_email ...","breadcrumbs":"Metric types » Labeled Strings » Metric parameters","id":"439","title":"Metric parameters"},"44":{"body":"Qt/QML support was added to glean_parser in version 3.5.0 . Then call glean_parser from the command line: glean_parser translate path/to/metrics.yaml path/to/pings.yaml \\ -f javascript \\ -o path/to/generated/files \\ --option platform=qt \\ --option version=0.15 The translate command will takes a list of YAML registry file paths and an output path and parse the given YAML registry files into QML JavaScript files. The generated folder will be a QML module. Make sure wherever the generated module is placed is also part of the QML Import Path . Notice that when building for Qt/QML it is mandatory to give the translate command two extra options. --option platform=qt This option is what changes the output file from standard JavaScript to QML JavaScript. --option version= The version passed to this option will be the version of the generated QML module.","breadcrumbs":"Adding Glean to your project » Qt/QML » Make sure you have the correct glean_parser version!","id":"44","title":"Make sure you have the correct glean_parser version!"},"440":{"body":"labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Strings » Extra metric parameters","id":"440","title":"Extra metric parameters"},"441":{"body":"What kinds of errors occurred at each step in the login process?","breadcrumbs":"Metric types » Labeled Strings » Data questions","id":"441","title":"Data questions"},"442":{"body":"Swift API docs: LabeledMetricType , StringMetricType Python API docs: LabeledStringMetricType , StringMetricType Rust API docs: LabeledMetric , StringMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Strings » Reference","id":"442","title":"Reference"},"443":{"body":"Strings lists are used for recording a list of Unicode string values, such as the names of the enabled search engines. Important Be careful using arbitrary strings and make sure they can't accidentally contain identifying data (like directory paths or user input).","breadcrumbs":"Metric types » String List » String List","id":"443","title":"String List"},"444":{"body":"","breadcrumbs":"Metric types » String List » Recording API","id":"444","title":"Recording API"},"445":{"body":"Add a new string to the list. import org.mozilla.yourApplication.GleanMetrics.Search Search.engines.add(\"wikipedia\")\nSearch.engines.add(\"duck duck go\") import org.mozilla.yourApplication.GleanMetrics.Search; Search.INSTANCE.engines().add(\"wikipedia\");\nSearch.INSTANCE.engines().add(\"duck duck go\"); Search.engines.add(\"wikipedia\")\nSearch.engines.add(\"duck duck go\") from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.search.engines.add(\"wikipedia\")\nmetrics.search.engines.add(\"duck duck go\") use glean_metrics::search; search::engines.add(\"wikipedia\".to_string());\nsearch::engines.add(\"duck duck go\".to_string()); Glean.search.engines.add(\"wikipedia\");\nGlean.search.engines.add(\"duck duck go\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search::engines.Add(\"wikipedia\"_ns);\nmozilla::glean::search::engines.Add(\"duck duck go\"_ns); JavaScript Glean.search.engines.add(\"wikipedia\");\nGlean.search.engines.add(\"duck duck go\"); Recorded errors invalid_overflow : if the string is too long. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_value : if the list is too long. invalid_type : if a non-string value is given. Limits Fixed maximum string length: 100. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Fixed maximum list length: 100 items. Additional strings are dropped.","breadcrumbs":"Metric types » String List » add","id":"445","title":"add"},"446":{"body":"Set the metric to a specific list of strings. An empty list is accepted. import org.mozilla.yourApplication.GleanMetrics.Search Search.engines.set(listOf(\"wikipedia\", \"duck duck go\")) import org.mozilla.yourApplication.GleanMetrics.Search; Search.INSTANCE.engines().set(listOf(\"wikipedia\", \"duck duck go\")); Search.engines.set([\"wikipedia\", \"duck duck go\"]) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.search.engines.set([\"wikipedia\", \"duck duck go\"]) use glean_metrics::search; search::engines.set(vec![\"wikipedia\".to_string(), \"duck duck go\".to_string()]) Glean.search.engines.set([\"wikipedia\", \"duck duck go\"]); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search::engines.Set({\"wikipedia\"_ns, \"duck duck go\"_ns}); JavaScript Glean.search.engines.set([\"wikipedia\", \"duck duck go\"]); Recorded errors invalid_overflow : if any string in the list is too long, see Limits below. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_value : if the list is too long, see Limits below. invalid_type : if a non-string array is given. Limits Fixed maximum string length: 100. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Fixed maximum list length: 100 items. Additional strings are dropped.","breadcrumbs":"Metric types » String List » set","id":"446","title":"set"},"447":{"body":"","breadcrumbs":"Metric types » String List » Testing API","id":"447","title":"Testing API"},"448":{"body":"Gets the recorded value for a given string list metric. Returns the list of strings if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(listOf(\"Google\", \"DuckDuckGo\"), Search.engines.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Search; assertEquals( Arrays.asList(\"Google\", \"DuckDuckGo\"), Search.INSTANCE.engines().testGetValue()\n); XCTAssertEqual([\"Google\", \"DuckDuckGo\"], Search.engines.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert [\"Google\", \"DuckDuckGo\"] == metrics.search.engines.test_get_value() use glean_metrics::search; assert_eq!( vec![\"Google\".to_string(), \"DuckDuckGo\".to_string()], search::engines.test_get_value(None).unwrap()\n); // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nconst engines = Glean.search.engines.testGetValue();\nAssert.ok(engines.includes(\"wikipedia\"));\nAssert.ok(engines.includes(\"duck duck go\")); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQUAL(mozilla::glean::search::engines.TestGetValue().isOk());\nnsTArray list = mozilla::glean::search::engines.TestGetValue().unwrap();\nASSERT_TRUE(list.Contains(\"wikipedia\"_ns));\nASSERT_TRUE(list.Constains(\"duck duck go\"_ns)); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nconst engines = Glean.search.engines.testGetValue();\nAssert.ok(engines.includes(\"wikipedia\"));\nAssert.ok(engines.includes(\"duck duck go\"));","breadcrumbs":"Metric types » String List » testGetValue","id":"448","title":"testGetValue"},"449":{"body":"Gets the number of errors recorded for a given string list metric. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals( 0, Search.engines.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Search; assertEquals( 0, Search.INSTANCE.engines().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Were any of the values too long, and thus an error was recorded?\nXCTAssertEqual(0, Search.engines.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.search.engines.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::search; assert_eq!( 0, search::engines.test_get_num_recorded_errors(ErrorType::InvalidValue)\n);","breadcrumbs":"Metric types » String List » testGetNumRecordedErrors","id":"449","title":"testGetNumRecordedErrors"},"45":{"body":"","breadcrumbs":"Adding Glean to your project » Qt/QML » Automation steps","id":"45","title":"Automation steps"},"450":{"body":"Example string list metric definition: search: engines: type: string_list description: > Records the name of the enabled search engines. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » String List » Metric parameters","id":"450","title":"Metric parameters"},"451":{"body":"N/A","breadcrumbs":"Metric types » String List » Extra metric parameters","id":"451","title":"Extra metric parameters"},"452":{"body":"Which search engines are enabled?","breadcrumbs":"Metric types » String List » Data questions","id":"452","title":"Data questions"},"453":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » String List » Reference","id":"453","title":"Reference"},"454":{"body":"Timespans are used to make a measurement of how much time is spent in a particular task. Irrespective of the timespan's lifetime, both start and stop must occur within the same application session. To measure the distribution of multiple timespans, see Timing Distributions . To record absolute times, see Datetimes . It is not recommended to use timespans in multiple threads, since calling start or stop out of order will be recorded as an invalid_state error.","breadcrumbs":"Metric types » Timespan » Timespan","id":"454","title":"Timespan"},"455":{"body":"","breadcrumbs":"Metric types » Timespan » Recording API","id":"455","title":"Recording API"},"456":{"body":"Starts tracking time. Uses an internal monotonic timer. import org.mozilla.yourApplication.GleanMetrics.Auth fun onShowLogin() { Auth.loginTime.start() // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void onShowLogin() { Auth.INSTANCE.loginTime().start(); // ...\n} func onShowLogin() { Auth.loginTime.start() // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def on_show_login(): metrics.auth.login_time.start() # ... use glean_metrics::auth; fn show_login() { auth::login_time.start(); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onShowLogin() { auth.loginTime.start(); // ...\n} C++ #include \"mozilla/glean/GleanMetrics.h\"\nvoid OnShowLogin() { mozilla::glean::auth::login_time.Start(); // ...\n} JavaScript function onShowLogin() { Glean.auth.loginTime.start(); // ...\n} Recorded errors invalid_state : If the metric is already tracking time (start has already been called and not canceled). Limits The maximum resolution of the elapsed duration is limited by the clock used on each platform. This also determines the behavior of a timespan over sleep: On Android, the SystemClock.elapsedRealtimeNanos() function is used, so it is limited by the accuracy and performance of that timer. The time measurement includes time spent in sleep. On iOS, the mach_absolute_time function is used, so it is limited by the accuracy and performance of that timer. The time measurement does not include time spent in sleep. On Python 3.7 and later, time.monotonic_ns() is used. On earlier versions of Python, time.monotonics() is used, which is not guaranteed to have nanosecond resolution. On other platforms time::precise_time_ns is used, which uses a high-resolution performance counter in nanoseconds provided by the underlying platform.","breadcrumbs":"Metric types » Timespan » start","id":"456","title":"start"},"457":{"body":"Stops tracking time. The metric value is set to the elapsed time. import org.mozilla.yourApplication.GleanMetrics.Auth fun onLogin() { Auth.loginTime.stop() // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void onLogin() { Auth.INSTANCE.loginTime().stop(); // ...\n} func onLogin() { Auth.loginTime.stop() // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def on_login(): metrics.auth.login_time.stop() # ... use glean_metrics::auth;; fn login() { auth::login_time.stop(); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onLogin() { auth.login_time.stop(); // ...\n} C++ #include \"mozilla/glean/GleanMetrics.h\"\nvoid OnLogin() { mozilla::glean::auth::login_time.Stop(); // ...\n} JavaScript function onLogin() { Glean.auth.loginTime.stop(); // ...\n} Recorded errors invalid_state : Calling stop without calling start first, e.g. if the start happened on a previous application run.","breadcrumbs":"Metric types » Timespan » stop","id":"457","title":"stop"},"458":{"body":"Cancels a previous start. No error is recorded if there was no previous start. import org.mozilla.yourApplication.GleanMetrics.Auth fun onLoginCancel() { Auth.loginTime.cancel() // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void onLoginCancel() { Auth.INSTANCE.loginTime().cancel(); // ...\n} func onLoginCancel() { Auth.loginTime.cancel() // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def on_login_cancel(): metrics.auth.login_time.cancel() # ... use glean_metrics::auth; fn login_cancel() { auth::login_time.cancel(); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onLoginCancel() { auth.login_time.cancel(); // ...\n} C++ #include \"mozilla/glean/GleanMetrics.h\"\nvoid OnLoginCancel() { mozilla::glean::auth::login_time.Cancel(); // ...\n} JavaScript function onLoginCancel() { Glean.auth.loginTime.cancel(); // ...\n}","breadcrumbs":"Metric types » Timespan » cancel","id":"458","title":"cancel"},"459":{"body":"Some languages support convenient auto timing of blocks of code. measure is treated as a start and stop pair for the purposes of error recording. Exceptions (if present in the language) are treated as a cancel. import org.mozilla.yourApplication.GleanMetrics.Auth Auth.loginTime.measure { // Process login flow\n} import org.mozilla.yourApplication.GleanMetrics.Auth Auth.INSTANCE.loginTime().measure() -> { // Process login flow return null;\n}); Auth.loginTime.measure { // Process login flow\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") with metrics.auth.login_time.measure(): # ... Do the login ...","breadcrumbs":"Metric types » Timespan » measure","id":"459","title":"measure"},"46":{"body":"Prefer using the Glean Dictionary While it is still possible to generate Markdown documentation, if working on a public Mozilla project rely on the Glean Dictionary for documentation. Your product will be automatically indexed by the Glean Dictionary after it gets enabled in the pipeline. One of the commands provided by glean_parser allows users to generate Markdown documentation based on the contents of their YAML registry files. To perform that translation, use the translate command with a different output format, as shown below. glean_parser translate path/to/metrics.yaml path/to/pings.yaml \\ -f markdown \\ -o path/to/docs","breadcrumbs":"Adding Glean to your project » Qt/QML » Documentation","id":"46","title":"Documentation"},"460":{"body":"Explicitly sets the timespan's value. Regardless of the time unit chosen for the metric, this API expects the raw value to be in nanoseconds .","breadcrumbs":"Metric types » Timespan » setRawNanos","id":"460","title":"setRawNanos"},"461":{"body":"This API should only be used if the code being instrumented cannot make use of start, stop, and cancel or measure. Time is hard, and this API can't help you with it. import org.mozilla.yourApplication.GleanMetrics.Auth fun afterLogin(loginElapsedNs: Long) { Auth.loginTime.setRawNanos(loginElapsedNs) // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void afterLogin(long loginElapsedNs) { Auth.INSTANCE.loginTime().setRawNanos(loginElapsedNs); // ...\n} func afterLogin(_ loginElapsedNs: UInt64) { Auth.loginTime.setRawNanos(loginElapsedNs) // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def after_login(login_elapsed_ns): metrics.auth.login_time.set_raw_nanos(login_elapsed_ns) # ... use std::time::duration;\nuse glean_metrics::auth; fn after_login(login_elapsed: Duration) { auth::login_time.set_raw(login_elapsed); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onAfterLogin(loginElapsedNs) { auth.loginTime.setRawNanos(loginElapsedNs); // ...\n}","breadcrumbs":"Metric types » Timespan » Only use this if you have to","id":"461","title":"Only use this if you have to"},"462":{"body":"Firefox Desktop's setRaw uses the units specified in the metric definition. e.g. if the Timespan's time_unit is millisecond, then the duration parameter is a count of milliseconds. C++ #include \"mozilla/glean/GleanMetrics.h\" void AfterLogin(uint32_t aDuration) { mozilla::glean::auth::login_time.SetRaw(aDuration); // ...\n} JavaScript function afterLogin(aDuration) { Glean.auth.loginTime.setRaw(aDuration); // ...\n} Recorded errors invalid_value : if attempting to record a negative elapsed duration. invalid_state : if this method is called after calling start or this method is called multiple times. invalid_type : if a negative, floating point or non-number value is given.","breadcrumbs":"Metric types » Timespan » These are different","id":"462","title":"These are different"},"463":{"body":"","breadcrumbs":"Metric types » Timespan » Testing API","id":"463","title":"Testing API"},"464":{"body":"Get the currently-stored value. Returns the timespan as a integer in the metric's time unit if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Auth assertTrue(Auth.loginTime.testGetValue() > 0) import org.mozilla.yourApplication.GleanMetrics.Auth; assertTrue(Auth.INSTANCE.loginTime().testGetValue() > 0); XCTAssert(Auth.loginTime.testGetValue() > 0) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert metrics.auth.login_time.test_get_value() > 0 use glean_metrics::auth; assert!(auth::login_time.test_get_value(None).unwrap() > 0); import * as auth from \"./path/to/generated/files/auth.js\"; assert(await auth.loginTime.testGetValue() > 0); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_TRUE(mozilla::glean::auth::login_time.TestGetValue().isOk());\nASSERT_GE(mozilla::glean::auth::login_time.TestGetValue().unwrap().value(), 0); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.ok(Glean.auth.loginTime.testGetValue() > 0);","breadcrumbs":"Metric types » Timespan » testGetValue","id":"464","title":"testGetValue"},"465":{"body":"Gets the number of errors recorded during operations on this metric. import org.mozilla.yourApplication.GleanMetrics.Auth assertEquals( 0, Auth.loginTime.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Auth; assertEquals( 0, Auth.INSTANCE.loginTime().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Auth.loginTime.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.auth.local_time.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean_metrics::auth; assert_eq!(1, auth::login_time.test_get_num_recorded_errors(ErrorType::InvalidValue)); import * as auth from \"./path/to/generated/files/auth.js\";\nimport { ErrorType } from \"@mozilla/glean/error\";; assert.strictEqual( 1, await auth.loginTime.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Timespan » testGetNumRecordedErrors","id":"465","title":"testGetNumRecordedErrors"},"466":{"body":"Example timespan metric definition: auth: login_time: type: timespan description: > Measures the time spent logging in. time_unit: millisecond bugs: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-01-01 data_sensitivity: - interaction For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Timespan » Metric parameters","id":"466","title":"Metric parameters"},"467":{"body":"time_unit Timespans have an optional time_unit parameter to specify the smallest unit of resolution that the timespan will record. The allowed values for time_unit are: nanosecond microsecond millisecond (default) second minute hour day Consider the resolution that is required by your metric, and use the largest possible value that will provide useful information so as to not leak too much fine-grained information from the client.","breadcrumbs":"Metric types » Timespan » Extra metric parameters","id":"467","title":"Extra metric parameters"},"468":{"body":"It is important to note that the value sent in the ping is truncated down to the nearest unit. Therefore, a measurement of 500 nanoseconds will be truncated to 0 microseconds.","breadcrumbs":"Metric types » Timespan » Values are truncated","id":"468","title":"Values are truncated"},"469":{"body":"How long did it take for the user to log in?","breadcrumbs":"Metric types » Timespan » Data questions","id":"469","title":"Data questions"},"47":{"body":"glean_parser includes a \"linter\" for the YAML registry files called the glinter that catches a number of common mistakes in these files. To run the linter use the glinter command. glean_parser glinter path/to/metrics.yaml path/to/pings.yaml","breadcrumbs":"Adding Glean to your project » Qt/QML » YAML registry files linting","id":"47","title":"YAML registry files linting"},"470":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Timespan » Reference","id":"470","title":"Reference"},"471":{"body":"Timing distributions are used to accumulate and store time measurement, for analyzing distributions of the timing data. To measure the distribution of single timespans, see Timespans . To record absolute times, see Datetimes . Timing distributions are recorded in a histogram where the buckets have an exponential distribution, specifically with 8 buckets for every power of 2. That is, the function from a value \\( x \\) to a bucket index is: \\[ \\lfloor 8 \\log_2(x) \\rfloor \\] This makes them suitable for measuring timings on a number of time scales without any configuration. Note Check out how this bucketing algorithm would behave on the Simulator . Timings always span the full length between start and stopAndAccumulate. If the Glean upload is disabled when calling start, the timer is still started. If the Glean upload is disabled at the time stopAndAccumulate is called, nothing is recorded. Multiple concurrent timings in different threads may be measured at the same time. Timings are always stored and sent in the payload as nanoseconds. However, the time_unit parameter controls the minimum and maximum values that will recorded: nanosecond: 1ns <= x <= 10 minutes microsecond: 1μs <= x <= ~6.94 days millisecond: 1ms <= x <= ~19 years Overflowing this range is considered an error and is reported through the error reporting mechanism. Underflowing this range is not an error and the value is silently truncated to the minimum value. Additionally, when a metric comes from GeckoView (the geckoview_datapoint parameter is present), the time_unit parameter specifies the unit that the samples are in when passed to Glean. Glean will convert all of the incoming samples to nanoseconds internally.","breadcrumbs":"Metric types » Timing Distribution » Timing Distribution","id":"471","title":"Timing Distribution"},"472":{"body":"","breadcrumbs":"Metric types » Timing Distribution » Recording API","id":"472","title":"Recording API"},"473":{"body":"Start tracking time for the provided metric. Multiple timers can run simultaneously. Returns a unique TimerId for the new timer. import mozilla.components.service.glean.GleanTimerId\nimport org.mozilla.yourApplication.GleanMetrics.Pages val timerId : GleanTimerId fun onPageStart(e: Event) { timerId = Pages.pageLoad.start()\n} import mozilla.components.service.glean.GleanTimerId;\nimport org.mozilla.yourApplication.GleanMetrics.Pages; GleanTimerId timerId; void onPageStart(Event e) { timerId = Pages.INSTANCE.pageLoad().start();\n} import Glean var timerId : GleanTimerId func onPageStart() { timerId = Pages.pageLoad.start()\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def __init__(self): self.timer_id = None def on_page_start(self, event): self.timer_id = metrics.pages.page_load.start() use glean_metrics::pages; fn on_page_start() { self.timer_id = pages::page_load.start();\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageStart() { // store this ID, you will need it later to stop or cancel your timer const timerId = pages.pageLoad.start();\n} C++ #include \"mozilla/glean/GleanMetrics.h\" auto timerId = mozilla::glean::pages::page_load.Start(); JavaScript let timerId = Glean.pages.pageLoad.start();","breadcrumbs":"Metric types » Timing Distribution » start","id":"473","title":"start"},"474":{"body":"Stops tracking time for the provided metric and associated timer id. Adds a count to the corresponding bucket in the timing distribution. This will record an error if start was not called. import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageLoaded(e: Event) { Pages.pageLoad.stopAndAccumulate(timerId)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; void onPageLoaded(Event e) { Pages.INSTANCE.pageLoad().stopAndAccumulate(timerId);\n} import Glean func onPageLoaded() { Pages.pageLoad.stopAndAccumulate(timerId)\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_loaded(self, event): metrics.pages.page_load.stop_and_accumulate(self.timer_id) use glean_metrics::pages; fn on_page_loaded() { pages::page_load.stop_and_accumulate(self.timer_id);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageLoaded() { pages.pageLoad.stopAndAccumulate(timerId);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.StopAndAccumulate(std::move(timerId)); JavaScript Glean.pages.pageLoad.stopAndAccumulate(timerId);","breadcrumbs":"Metric types » Timing Distribution » stopAndAccumulate","id":"474","title":"stopAndAccumulate"},"475":{"body":"Accumulates the provided signed samples in the metric. This is required so that the platform-specific code can provide us with 64 bit signed integers if no u64 comparable type is available. This will take care of filtering and reporting errors for any provided negative sample. Please note that this assumes that the provided samples are already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then samples are assumed to be in that unit). import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageLoaded(e: Event) { Pages.pageLoad.accumulateSamples(samples)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; void onPageLoaded(Event e) { Pages.INSTANCE.pageLoad().accumulateSamples(samples);\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_loaded(self, event): metrics.pages.page_load.accumulate_samples(samples) use glean_metrics::pages; fn on_page_loaded() { pages::page_load.accumulate_samples(samples);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageLoaded() { pages.pageLoad.accumulateSamples(samples);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.AccumulateRawSamples(samples); JavaScript Glean.pages.pageLoad.accumulateSamples(samples);","breadcrumbs":"Metric types » Timing Distribution » accumulateSamples","id":"475","title":"accumulateSamples"},"476":{"body":"Accumulates a single signed sample and appends it to the metric. Prefer this for the common use case of having a single value to avoid having to pass a collection over a foreign language interface. A signed value is required so that the platform-specific code can provide us with a 64 bit signed integer if no u64 comparable type is available. This will take care of filtering and reporting errors for a negative sample. Please note that this assumes that the provided sample is already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then sample is assumed to be in that unit). import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageLoaded(e: Event) { Pages.pageLoad.accumulateSingleSample(sample)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; void onPageLoaded(Event e) { Pages.INSTANCE.pageLoad().accumulateSingleSample(sample);\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_loaded(self, event): metrics.pages.page_load.accumulate_single_sample(sample) use glean_metrics::pages; fn on_page_loaded() { pages::page_load.accumulate_single_sample(sample);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageLoaded() { pages.pageLoad.accumulateSingleSample(sample);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.AccumulateRawDuration(aDuration); JavaScript Glean.pages.pageLoad.accumulateSingleSample(sample); Limits Samples are limited to the maximum value for the given time unit. Only non-negative values may be recorded (>= 0). Negative values are discarded and an ErrorType::InvalidValue is generated for each instance. Samples that are longer than maximum sample time for the given unit generate an ErrorType::InvalidOverflow error for each instance. Recorded errors invalid_value : If recording a negative timespan. invalid_state : If a non-existing/stopped timer is stopped again. invalid_overflow : If recording a time longer than the maximum for the given unit.","breadcrumbs":"Metric types » Timing Distribution » accumulateSingleSample","id":"476","title":"accumulateSingleSample"},"477":{"body":"For convenience one can measure the time of a function or block of code. import org.mozilla.yourApplication.GleanMetrics.Pages Pages.pageLoad.measure { // Load a page\n} import Glean Pages.pageLoad.measure { // Load a page\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") with metrics.pages.page_load.measure(): # Load a page","breadcrumbs":"Metric types » Timing Distribution » measure","id":"477","title":"measure"},"478":{"body":"Aborts a previous start call. No error is recorded if start was not called. import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageError(e: Event) { Pages.pageLoad.cancel(timerId)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; fun onPageError(e: Event) { Pages.INSTANCE.pageLoad().cancel(timerId);\n} import Glean func onPageError() { Pages.pageLoad.cancel(timerId)\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_error(self, event): metrics.pages.page_load.cancel(self.timer_id) use glean_metrics::pages; fn on_page_error() { pages::page_load.cancel(self.timer_id);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageError() { pages.pageLoad.cancel(timerId);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.Cancel(std::move(timerId)); JavaScript Glean.pages.pageLoad.cancel(timerId);","breadcrumbs":"Metric types » Timing Distribution » cancel","id":"478","title":"cancel"},"479":{"body":"","breadcrumbs":"Metric types » Timing Distribution » Testing API","id":"479","title":"Testing API"},"48":{"body":"By default, the Glean.js QML module uses a minified version of the Glean.js library. It may be useful to use the unminified version of the library in order to get proper line numbers and function names when debugging crashes. The bundle provided contains the unminified version of the library. In order to use it, open the glean.js file inside the included module and change the line: .import \"glean.lib.js\" as Glean to .import \"glean.dev.js\" as Glean","breadcrumbs":"Adding Glean to your project » Qt/QML » Debugging","id":"48","title":"Debugging"},"480":{"body":"Gets the recorded value for a given timing distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Pages // Get snapshot.\nval snapshot = Pages.pageLoad.testGetValue() // Does the sum have the expected value?\nassertEquals(11, snapshot.sum) // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.count) import org.mozilla.yourApplication.GleanMetrics.Pages; // Get snapshot.\nDistributionData snapshot = pages.INSTANCE.pageLoad().testGetValue(); // Does the sum have the expected value?\nassertEquals(11, snapshot.sum); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.getCount()); // Get snapshot.\nlet snapshot = pages.pageLoad.testGetValue() // Does the sum have the expected value?\nXCTAssertEqual(11, snapshot.sum) // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nXCTAssertEqual(2, snapshot.count) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Get snapshot.\nsnapshot = metrics.pages.page_load.test_get_value() # Does the sum have the expected value?\nassert 11 == snapshot.sum # Usually you don't know the exact timing values,\n# but how many should have been recorded.\nassert 2 == snapshot.count use glean::ErrorType;\nuse glean_metrics::pages; // Get snapshot\nlet snapshot = pages::page_load.test_get_value(None).unwrap(); // Does the sum have the expected value?\nassert_eq!(11, snapshot.sum); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassert_eq!(2, snapshot.count); import * as pages from \"./path/to/generated/files/pages.js\"; const snapshot = await pages.pageLoad.testGetValue(); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassert.equal(1, snapshot.count); C++ #include \"mozilla/glean/GleanMetrics.h\" // Does it have an expected values?\nconst data = mozilla::glean::pages::page_load.TestGetValue().value().unwrap();\nASSERT_TRUE(data.sum > 0); JavaScript Assert.ok(Glean.pages.pageLoad.testGetValue().sum > 0);","breadcrumbs":"Metric types » Timing Distribution » testGetValue","id":"480","title":"testGetValue"},"481":{"body":"Gets the number of errors recorded for a given timing distribution metric. import org.mozilla.yourApplication.GleanMetrics.Pages // Assert that no errors were recorded.\nassertEquals( 0, Pages.pageLoad.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Pages; // Assert that no errors were recorded.\nassertEquals( 0, Pages.INSTANCE.pageLoad().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Assert that no errors were recorded.\nXCTAssertEqual(0, Pages.pageLoad.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Assert that no errors were recorded.\nassert 0 == metrics.pages.page_load.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::pages; assert_eq!( 0, pages::page_load.test_get_num_recorded_errors(ErrorType::InvalidValue)\n); import * as pages from \"./path/to/generated/files/pages.js\";\nimport { ErrorType } from \"@mozilla/glean/\"; assert.equal(1, await pages.pageLoad.testGetNumRecordedErrors(ErrorType.InvalidValue));","breadcrumbs":"Metric types » Timing Distribution » testGetNumRecordedErrors","id":"481","title":"testGetNumRecordedErrors"},"482":{"body":"Example timing distribution metric definition: pages: page_load: type: timing_distribution time_unit: millisecond description: > Counts how long each page takes to load bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01","breadcrumbs":"Metric types » Timing Distribution » Metric parameters","id":"482","title":"Metric parameters"},"483":{"body":"time_unit Timing distributions have an optional time_unit parameter to specify the smallest unit of resolution that the timespan will record. The allowed values for time_unit are: nanosecond (default) microsecond millisecond second minute hour day","breadcrumbs":"Metric types » Timing Distribution » Extra metric parameters","id":"483","title":"Extra metric parameters"},"484":{"body":"Timings are recorded in nanoseconds. On Android, the SystemClock.elapsedRealtimeNanos() function is used, so it is limited by the accuracy and performance of that timer. The time measurement includes time spent in sleep. On iOS, the mach_absolute_time function is used, so it is limited by the accuracy and performance of that timer. The time measurement does not include time spent in sleep. On Python 3.7 and later, time.monotonic_ns() is used. On earlier versions of Python, time.monotonics() is used, which is not guaranteed to have nanosecond resolution. In Rust, time::precise_time_ns() is used. The maximum timing value that will be recorded depends on the time_unit parameter: nanosecond: 1ns <= x <= 10 minutes microsecond: 1μs <= x <= ~6.94 days millisecond: 1ms <= x <= ~19 years Longer times will be truncated to the maximum value and an error will be recorded.","breadcrumbs":"Metric types » Timing Distribution » Limits","id":"484","title":"Limits"},"485":{"body":"How long does it take a page to load?","breadcrumbs":"Metric types » Timing Distribution » Data questions","id":"485","title":"Data questions"},"486":{"body":"Swift API docs Python API docs","breadcrumbs":"Metric types » Timing Distribution » Reference","id":"486","title":"Reference"},"487":{"body":"Please, insert your custom data below as a JSON array. Data options Generate normally distributed data Generate log-normally distributed data Generate uniformly distributed data Use custom data Properties Histogram type Functional Log base Buckets per magnitude Maximum value Time unit (time_unit) Nanoseconds Microseconds Milliseconds Note The data provided , is assumed to be in the configured time unit. The data recorded , on the other hand, is always in nanoseconds . This means that, if the configured time unit is not nanoseconds, the data will be transformed before being recorded. Notice this, by using the select field above to change the time unit and see the mean of the data recorded changing. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Timing Distribution » Simulator","id":"487","title":"Simulator"},"488":{"body":"Labeled timing distributions are used to record different related distributions of time measurements. See the Timing Distribution reference for details on bucket distribution, specifics about how Glean records time, and a histogram simulator.","breadcrumbs":"Metric types » Labeled Timing Distributions » Labeled Timing Distributions","id":"488","title":"Labeled Timing Distributions"},"489":{"body":"","breadcrumbs":"Metric types » Labeled Timing Distributions » Recording API","id":"489","title":"Recording API"},"49":{"body":"","breadcrumbs":"Adding Glean to your project » Qt/QML » Troubleshooting","id":"49","title":"Troubleshooting"},"490":{"body":"Start tracking time for the provided metric for the given label. Multiple timers for multiple labels can run simultaneously. Returns a unique TimerId for the new timer. use glean_metrics::devtools; self.start = devtools::cold_toolbox_open_delay .get(toolbox_id) .start(); C++ #include \"mozilla/glean/GleanMetrics.h\" auto timerId = mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .Start(); JavaScript const timerId = Glean.devtools.coldToolboxOpenDelay[toolbox_id].start(); Recorded Errors invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » start","id":"490","title":"start"},"491":{"body":"Stops tracking time for the provided timer from the metric for the given label. Adds a count to the corresponding bucket in the label's timing distribution. Do not use the provided TimerId after passing it to this method. use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .stop_and_accumulate(self.start); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .StopAndAccumulate(std::move(timerId)); JavaScript Glean.devtools.coldToolboxOpenDelay[toolbox_id].stopAndAccumulate(timerId); Recorded errors invalid_state : If a non-existing, cancelled, or already-stopped timer is stopped again. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » stopAndAccumulate","id":"491","title":"stopAndAccumulate"},"492":{"body":"Aborts a previous start call, consuming the supplied timer id. use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .cancel(self.start); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .Cancel(std::move(timerId)); JavaScript Glean.devtools.coldToolboxOpenDelay[toolbox_id].cancel(timerId); Recorded errors invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » cancel","id":"492","title":"cancel"},"493":{"body":"Accumulates the provided, signed samples in the metric for a given label. Where possible, have Glean do the timing for you and don't use methods like this one. If you are doing timing yourself, ensure your time source is monotonic and behaves consistently across platforms. This is required so that the platform-specific code can provide us with 64 bit signed integers if no u64 comparable type is available. This will take care of filtering and reporting errors for any provided negative sample. Please note that this assumes that the provided samples are already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then samples are assumed to be in that unit). use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .accumulate_samples(samples); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .AccumulateRawSamples(samples); JavaScript Glean.devtools.coldToolboxOpenDelay[toolboxId].accumulateSamples(samples); Recorded errors invalid_value : If recording a negative sample. invalid_overflow : If recording a sample longer than the maximum for the given time_unit. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » accumulateSamples","id":"493","title":"accumulateSamples"},"494":{"body":"Accumulates a single signed sample and appends it to the metric for the provided label. Prefer start() and stopAndAccumulate() where possible, but if you must record time externally please prefer this method for individual samples (avoids having to allocate and pass collections). A signed value is required so that the platform-specific code can provide us with a 64 bit signed integer if no u64 comparable type is available. This will take care of filtering and reporting errors for a negative sample. Please note that this assumes that the provided sample is already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then sample is assumed to be in that unit). use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .accumulate_single_sample(sample); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolboxId) .AccumulateRawDuration(aDuration); JavaScript Glean.devtools.coldToolboxOpenDelay[toolboxId].accumulateSamples(sample); Recorded errors invalid_value : If recording a negative sample. invalid_overflow : If recording a sample longer than the maximum for the given time_unit. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » accumulateSingleSample","id":"494","title":"accumulateSingleSample"},"495":{"body":"","breadcrumbs":"Metric types » Labeled Timing Distributions » Testing API","id":"495","title":"Testing API"},"496":{"body":"Gets the recorded value for a given label in a labeled timing distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::devtools; // Get the current snapshot of stored values.\nlet snapshot = devtools::cold_toolbox_open_delay.get(\"webconsole\").test_get_value(None).unwrap(); // Usually you don't know the exact timing values,\n// but you do know how many samples there are:\nassert_eq!(2, snapshot.count);\n// ...and the lower bound of how long they all took:\nassert_ge!(400, snapshot.sum); C++ #include \"mozilla/glean/GleanMetrics.h\" const data = mozilla::glean::devtools::cold_toolbox_open_delay .Get(\"webconsole\"_ns) .TestGetValue().value().unwrap();\nASSERT_TRUE(data.sum > 0); JavaScript Assert.ok(Glean.devtools.coldToolboxOpenDelay[\"webconsole\"].testGetValue().sum > 0);","breadcrumbs":"Metric types » Labeled Timing Distributions » testGetValue","id":"496","title":"testGetValue"},"497":{"body":"Gets the number of errors recorded for a given labeled timing distribution metric in total. use glean::ErrorType;\nuse glean_metrics::network; // Assert there were no negative values instrumented.\nassert_eq!( 0, devtools::cold_toolbox_open_delay.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Timing Distributions » testGetNumRecordedErrors","id":"497","title":"testGetNumRecordedErrors"},"498":{"body":"Example labeled timing distribution metric definition: devtools: cold_toolbox_open_delay: type: labeled_timing_distribution description: > Time taken to open the first DevTools toolbox, per tool being opened. time_unit: millisecond bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 175 labels: - inspector - webconsole - jsdebugger ...","breadcrumbs":"Metric types » Labeled Timing Distributions » Metric parameters","id":"498","title":"Metric parameters"},"499":{"body":"time_unit Labeled timing distributions have an optional time_unit parameter to specify the smallest unit of resolution that it will record. The allowed values for time_unit are: nanosecond (default) microsecond millisecond second minute hour day labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Timing Distributions » Extra metric parameters","id":"499","title":"Extra metric parameters"},"5":{"body":"Glossary In this book we use a lot of Glean specific terminology. In the glossary, we go through many of the terms used throughout this book and describe exactly what we mean when we use them. Changelog This section contains detailed notes about changes in Glean, per release. This Week in Glean “This Week in Glean” is a series of blog posts that the Glean Team at Mozilla is using to try to communicate better about our work. They could be release notes, documentation, hopes, dreams, or whatever: so long as it is inspired by Glean. Contribution Guidelines This section contains detailed information on where and how to include new content to this book.","breadcrumbs":"Glean » Appendix","id":"5","title":"Appendix"},"50":{"body":"The submitPing function hits a known bug in the Qt JavaScript interpreter. This bug is only reproduced in iOS devices, it does not happen in emulators. It also only happens when using the Qt debug library for iOS . There is no way around this bug other than avoiding the Qt debug library for iOS altogether until it is fixed. Refer to the the Qt debugging documentation on how to do that. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Qt/QML » submitPing may cause crashes when debugging iOS devices","id":"50","title":"submitPing may cause crashes when debugging iOS devices"},"500":{"body":"What is the distribution of initial load times of devtools toolboxes, per tool? What is the distribution of how long it takes to load extensions' content scripts, by addon id?","breadcrumbs":"Metric types » Labeled Timing Distributions » Data questions","id":"500","title":"Data questions"},"501":{"body":"Timings are recorded in nanoseconds In Rust, time::precise_time_ns() is used. The maximum timing value that will be recorded depends on the time_unit parameter: nanosecond: 1ns <= x <= 10 minutes microsecond: 1μs <= x <= ~6.94 days millisecond: 1ms <= x <= ~19 years Longer times will be truncated to the maximum value and an error will be recorded. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » Limits","id":"501","title":"Limits"},"502":{"body":"Rust API docs: LabeledMetric , TimingDistributionMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Timing Distributions » Reference","id":"502","title":"Reference"},"503":{"body":"Memory distributions are used to accumulate and store memory sizes. Memory distributions are recorded in a histogram where the buckets have an exponential distribution, specifically with 16 buckets for every power of 2. That is, the function from a value \\( x \\) to a bucket index is: \\[ \\lfloor 16 \\log_2(x) \\rfloor \\] This makes them suitable for measuring memory sizes on a number of different scales without any configuration. Note Check out how this bucketing algorithm would behave on the Simulator .","breadcrumbs":"Metric types » Memory Distribution » Memory Distribution","id":"503","title":"Memory Distribution"},"504":{"body":"","breadcrumbs":"Metric types » Memory Distribution » Recording API","id":"504","title":"Recording API"},"505":{"body":"Accumulates the provided sample in the metric. import org.mozilla.yourApplication.GleanMetrics.Memory fun allocateMemory(nbytes: Int) { // ... Memory.heapAllocated.accumulate(nbytes / 1024)\n} import org.mozilla.yourApplication.GleanMetrics.Memory; fun allocateMemory(nbytes: Int) { // ... Memory.INSTANCE.heapAllocated().accumulate(nbytes / 1024);\n} import Glean func allocateMemory(nbytes: UInt64) { // ... Memory.heapAllocated.accumulate(nbytes / 1024)\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def allocate_memory(nbytes): # ... metrics.memory.heap_allocated.accumulate(nbytes / 1024) use glean_metrics::memory; fn allocate_memory(bytes: u64) { // ... memory::heap_allocated.accumulate(bytes / 1024);\n} import * as memory from \"./path/to/generated/files/memory.js\"; function allocateMemory() { // ... memory.heapAllocated.accumulate(nbytes / 1024);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::memory::heap_allocated.Accumulate(bytes / 1024); JavaScript Glean.memory.heapAllocated.accumulate(bytes / 1024); Recorded errors invalid_value : If recording a negative memory size. invalid_value : If recording a size larger than 1 TB.","breadcrumbs":"Metric types » Memory Distribution » accumulate","id":"505","title":"accumulate"},"506":{"body":"","breadcrumbs":"Metric types » Memory Distribution » Testing API","id":"506","title":"Testing API"},"507":{"body":"Gets the recorded value for a given memory distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Memory // Get snapshot\nval snapshot = Memory.heapAllocated.testGetValue() // Does the sum have the expected value?\nassertEquals(11, snapshot.sum) // Usually you don't know the exact memory values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.count) import org.mozilla.yourApplication.GleanMetrics.Memory; // Get snapshot\nval snapshot = Memory.INSTANCE.heapAllocated().testGetValue(); // Does the sum have the expected value?\nassertEquals(11, snapshot.sum); // Usually you don't know the exact memory values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.getCount()); // Get snapshot\nlet snapshot = try! Memory.heapAllocated.testGetValue() // Does the sum have the expected value?\nXCTAssertEqual(11, snapshot.sum) // Usually you don't know the exact memory values,\n// but how many should have been recorded.\nXCTAssertEqual(2, snapshot.count) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Get snapshot.\nsnapshot = metrics.memory.heap_allocated.test_get_value() # Does the sum have the expected value?\nassert 11 == snapshot.sum # Usually you don't know the exact memory values,\n# but how many should have been recorded.\nassert 2 == snapshot.count use glean::ErrorType;\nuse glean_metrics::memory; // Get snapshot\nlet snapshot = memory::heap_allocated.test_get_value(None).unwrap(); // Does the sum have the expected value?\nassert_eq!(11, snapshot.sum); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassert_eq!(2, snapshot.count); import * as memory from \"./path/to/generated/files/memory.js\"; // Get snapshot\nconst snapshot = await memory.heapAllocated.testGetValue(); // Does the sum have the expected value?\nassert.equal(11, snapshot.sum); // Usually you don't know the exact memory values,\n// but know how many should have been recorded.\nassert.equal(2, snapshot.count); C++ #include \"mozilla/glean/GleanMetrics.h\" // Does it have an expected values?\nconst data = mozilla::glean::memory::heap_allocated.TestGetValue().value().unwrap()\nASSERT_EQ(11 * 1024, data.sum); JavaScript const data = Glean.memory.heapAllocated.testGetValue();\nAssert.equal(11 * 1024, data.sum);","breadcrumbs":"Metric types » Memory Distribution » testGetValue","id":"507","title":"testGetValue"},"508":{"body":"Gets the number of errors recorded for a given memory distribution metric. import org.mozilla.yourApplication.GleanMetrics.Memory // Did this record a negative value?\nassertEquals( 0, Memory.heapAllocated.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Memory; // Assert that no errors were recorded.\nassertEquals( 0, Memory.INSTANCE.heapAllocated().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Did this record a negative value?\nXCTAssertEqual(0, Memory.heapAllocated.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Did this record a negative value?\nassert 0 == metrics.memory.heap_allocated.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::pages; assert_eq!( 0, pages::page_load.test_get_num_recorded_errors(ErrorType::InvalidValue)\n); import * as memory from \"./path/to/generated/files/memory.js\";\nimport { ErrorType } from \"@mozilla/glean/\"; // Did this record a negative value?\nassert.equal( 0, await memory.heapAllocated.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Memory Distribution » testGetNumRecordedErrors","id":"508","title":"testGetNumRecordedErrors"},"509":{"body":"Example memory distribution metric definition: memory: heap_allocated: type: memory_distribution memory_unit: kilobyte description: > The heap memory allocated bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01","breadcrumbs":"Metric types » Memory Distribution » Metric parameters","id":"509","title":"Metric parameters"},"51":{"body":"Glean enables the collection of behavioral metrics through events in server environments. This method does not rely on the Glean SDK but utilizes the Glean parser to generate native code for logging events in a standard format compatible with the ingestion pipeline.","breadcrumbs":"Adding Glean to your project » Server » Adding Glean to your Server Application","id":"51","title":"Adding Glean to your Server Application"},"510":{"body":"memory_unit Memory distributions have an optional memory_unit parameter, which specifies the unit the incoming memory size values are recorded in. The allowed values for memory_unit are: byte (default) kilobyte (= 2^10 = 1,024 bytes) megabyte (= 2^20 = 1,048,576 bytes) gigabyte (= 2^30 = 1,073,741,824 bytes)","breadcrumbs":"Metric types » Memory Distribution » Extra metric parameters","id":"510","title":"Extra metric parameters"},"511":{"body":"The maximum memory size that can be recorded is 1 Terabyte (240 bytes). Larger sizes will be truncated to 1 Terabyte.","breadcrumbs":"Metric types » Memory Distribution » Limits","id":"511","title":"Limits"},"512":{"body":"What is the distribution of the size of heap allocations?","breadcrumbs":"Metric types » Memory Distribution » Data questions","id":"512","title":"Data questions"},"513":{"body":"Swift API docs Python API docs Rust API docs","breadcrumbs":"Metric types » Memory Distribution » Reference","id":"513","title":"Reference"},"514":{"body":"Please, insert your custom data below as a JSON array. Data options Generate normally distributed data Generate log-normally distributed data Generate uniformly distributed data Use custom data Properties Histogram type Functional Log base Buckets per magnitude Maximum value Memory unit (memory_unit) Byte Kilobyte Megabyte Gigabyte Note The data provided , is assumed to be in the configured memory unit. The data recorded , on the other hand, is always in bytes . This means that, if the configured memory unit is not byte, the data will be transformed before being recorded. Notice this, by using the select field above to change the memory unit and see the mean of the data recorded changing. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Memory Distribution » Simulator","id":"514","title":"Simulator"},"515":{"body":"Labeled memory distributions are used to record different related distributions of memory sizes. See the Memory Distribution reference for details on bucket distribution, and a histogram simulator.","breadcrumbs":"Metric types » Labeled Memory Distributions » Labeled Memory Distributions","id":"515","title":"Labeled Memory Distributions"},"516":{"body":"","breadcrumbs":"Metric types » Labeled Memory Distributions » Recording API","id":"516","title":"Recording API"},"517":{"body":"Accumulate the provided sample in the metric. use glean_metrics::network; network::http_upload_bandwidth .get(http_version) .accumulate(self.request_size * 8.0 / 1048576.0 / send_time.as_secs()); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::network::http_upload_bandwidth .Get(httpVersion) .Accumulate(this.mRequestSize * 8.0 / 1048576.0 / sendTime.AsSeconds()); JavaScript Glean.network.httpUploadBandwidth[httpVersion] .accumulate(requestSize * 8.0 / 1048576.0 / sendTime.asSeconds()) Recorded Errors invalid_value : if recording a memory size that is negative or over 1 TB. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Memory Distributions » accumulate","id":"517","title":"accumulate"},"518":{"body":"","breadcrumbs":"Metric types » Labeled Memory Distributions » Testing API","id":"518","title":"Testing API"},"519":{"body":"Gets the recorded value for a given label in a labeled memory distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::network; // Assert the sum of all HTTP2 samples is 42MBps.\nassert_eq!(42, network::http_upload_bandwidth.get(\"h2\").test_get_value(None).unwrap().sum); // Assert there's only the one sample\nassert_eq!(1, network::http_upload_badwidth.get(\"h2\").test_get_value(None).unwrap().count); // Buckets are indexed by their lower bound.\nassert_eq!(1, network::http_upload_bandwidth.get(\"h2\").test_get_value(None).unwrap().values[41]); C++ #include \"mozilla/glean/GleanMetrics.h\" const data = mozilla::glean::network::http_upload_bandwidth .Get(\"h2\") .TestGetValue().value().unwrap()\nASSERT_EQ(42UL, data.sum); JavaScript const data = Glean.network.httpUploadBandwidth[\"h2\"].testGetValue();\nAssert.equal(42, data.sum);","breadcrumbs":"Metric types » Labeled Memory Distributions » testGetValue","id":"519","title":"testGetValue"},"52":{"body":"This implementation of telemetry collection in server environments has some differences compared to using Glean SDK in client applications and Glean.js in the frontend of web applications. Primarily, in server environments the focus is exclusively on event-based metrics, diverging from the broader range of metric types supported by Glean. Additionally, there is no need to incorporate Glean SDK as a dependency in server applications. Instead, the Glean parser is used to generate native code for logging events.","breadcrumbs":"Adding Glean to your project » Server » Differences from using the Glean SDK","id":"52","title":"Differences from using the Glean SDK"},"520":{"body":"Gets the number of errors recorded for a given labeled custom distribution metric in total. use glean::ErrorType;\nuse glean_metrics::network; // Assert there were no negative or overlarge values instrumented.\nassert_eq!( 0, network::http_upload_bandwidth.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Memory Distributions » testGetNumRecordedErrors","id":"520","title":"testGetNumRecordedErrors"},"521":{"body":"Example labeled memory distribution metric definition: network: http_upload_bandwidth: type: labeled_memory_distribution description: > The upload bandwidth for requests larger than 10MB, per HTTP protocol version. memory_unit: megabyte bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 175 labels: - h3 - h2 - http/1.0 - http/1.1","breadcrumbs":"Metric types » Labeled Memory Distributions » Metric parameters","id":"521","title":"Metric parameters"},"522":{"body":"memory_unit Memory distributions have an optional memory_unit parameter, which specifies the unit the incoming memory size values are recorded in. The allowed values for memory_unit are: byte (default) kilobyte (= 2^10 = 1,024 bytes) megabyte (= 2^20 = 1,048,576 bytes) gigabyte (= 2^30 = 1,073,741,824 bytes) labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Memory Distributions » Extra metric parameters","id":"522","title":"Extra metric parameters"},"523":{"body":"What is the distribution of upload bandwidth rates per HTTP protocol version? What is the distribution of bytes received per DOM network API?","breadcrumbs":"Metric types » Labeled Memory Distributions » Data questions","id":"523","title":"Data questions"},"524":{"body":"The maximum memory size that can be recorded is 1 Terabyte (240 bytes). Larger sizes will be truncated to 1 Terabyte. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Memory Distributions » Limits","id":"524","title":"Limits"},"525":{"body":"Rust API docs: LabeledMetric , MemoryDistributionMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Memory Distributions » Reference","id":"525","title":"Reference"},"526":{"body":"UUIDs metrics are used to record values that uniquely identify some entity, such as a client id.","breadcrumbs":"Metric types » UUID » UUID","id":"526","title":"UUID"},"527":{"body":"","breadcrumbs":"Metric types » UUID » Recording API","id":"527","title":"Recording API"},"528":{"body":"Sets a UUID metric to a randomly generated UUID value (UUID v4) . import org.mozilla.yourApplication.GleanMetrics.User // Generate a new UUID and record it\nUser.clientId.generateAndSet() import org.mozilla.yourApplication.GleanMetrics.User; // Generate a new UUID and record it\nUser.INSTANCE.clientId().generateAndSet(); // Generate a new UUID and record it\nUser.clientId.generateAndSet() from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Generate a new UUID and record it\nmetrics.user.client_id.generate_and_set() use uuid::Uuid;\nuse glean_metrics::user; // Generate a new UUID and record it\nuser::client_id.generate_and_set(); import * as user from \"./path/to/generated/files/user.js\"; user.clientId.generateAndSet(); C++ #include \"mozilla/glean/GleanMetrics.h\" // Generate a new UUID and record it.\nmozilla::glean::user::client_id.GenerateAndSet(); JavaScript // Generate a new UUID and record it.\nGlean.user.clientId.generateAndSet();","breadcrumbs":"Metric types » UUID » generateAndSet","id":"528","title":"generateAndSet"},"529":{"body":"Sets a UUID metric to a specific value. Accepts any UUID version. import org.mozilla.yourApplication.GleanMetrics.User // Set a UUID explicitly\nUser.clientId.set(UUID.randomUUID()) // Set a UUID explicitly import org.mozilla.yourApplication.GleanMetrics.User; // Set a UUID explicitly\nUser.INSTANCE.clientId().set(UUID.randomUUID()); User.clientId.set(UUID()) // Set a UUID explicitly import uuid from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Set a UUID explicitly\nmetrics.user.client_id.set(uuid.uuid4()) use uuid::Uuid;\nuse glean_metrics::user; // Set a UUID explicitly\nuser::client_id.set(Uuid::new_v4()); import * as user from \"./path/to/generated/files/user.js\"; const uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\nuser.clientId.set(uuid); C++ #include \"mozilla/glean/GleanMetrics.h\" // Set a specific value.\nnsCString kUuid(\"decafdec-afde-cafd-ecaf-decafdecafde\");\nmozilla::glean::user::client_id.Set(kUuid); JavaScript // Set a specific value.\nconst uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\nGlean.user.clientId.set(uuid); Recorded errors invalid_value : if the value is set to a string that is not a UUID (only applies for dynamically-typed languages, such as Python). invalid_type : if a non-string or non-UUID value is given.","breadcrumbs":"Metric types » UUID » set","id":"529","title":"set"},"53":{"body":"This method is intended for collecting user-level behavioral events in server environments. It is not suitable for collecting system-level metrics or performance data, which should be collected using cloud monitoring tools.","breadcrumbs":"Adding Glean to your project » Server » When to use server-side collection","id":"53","title":"When to use server-side collection"},"530":{"body":"","breadcrumbs":"Metric types » UUID » Testing API","id":"530","title":"Testing API"},"531":{"body":"Gets the recorded value for a given UUID metric. Returns a UUID if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.User // Was it the expected value?\nassertEquals(uuid, User.clientId.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.User; // Was it the expected value?\nassertEquals(uuid, User.INSTANCE.clientId().testGetValue()); // Was it the expected value?\nXCTAssertEqual(uuid, try User.clientId.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Was it the expected value?\nassert uuid == metrics.user.client_id.test_get_value() use uuid::Uuid;\nuse glean_metrics::user; let u = Uuid::new_v4();\n// Does it have the expected value?\nassert_eq!(u, user::client_id.test_get_value(None).unwrap()); import * as user from \"./path/to/generated/files/user.js\"; const uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\nassert(uuid, await user.clientId.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" // Is it clear of errors?\nASSERT_TRUE(mozilla::glean::user::client_id.TestGetValue().isOk());\n// Does it have an expected values?\nASSERT_STREQ(kUuid.get(), mozilla::glean::user::client_id.TestGetValue().unwrap().value().get()); JavaScript const uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\n// testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(Glean.user.clientId.testGetValue(), uuid);","breadcrumbs":"Metric types » UUID » testGetValue","id":"531","title":"testGetValue"},"532":{"body":"Gets the number of errors recorded for a given UUID metric. import org.mozilla.yourApplication.GleanMetrics.User assertEquals( 0, User.clientId.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.User; assertEquals( 0, User.INSTANCE.clientId().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, User.clientId.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") from glean.testing import ErrorType assert 0 == metrics.user.client_id.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::user; assert_eq!( 0, user::client_id.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); import * as user from \"./path/to/generated/files/user.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Was the string truncated, and an error reported?\nassert.strictEqual( 0, await user.clientId.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » UUID » testGetNumRecordedErrors","id":"532","title":"testGetNumRecordedErrors"},"533":{"body":"You first need to add an entry for it to the metrics.yaml file: user: client_id: type: uuid description: > A unique identifier for the client's profile bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » UUID » Metric Parameters","id":"533","title":"Metric Parameters"},"534":{"body":"N/A","breadcrumbs":"Metric types » UUID » Extra metric parameters","id":"534","title":"Extra metric parameters"},"535":{"body":"A unique identifier for the client.","breadcrumbs":"Metric types » UUID » Data questions","id":"535","title":"Data questions"},"536":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » UUID » Reference","id":"536","title":"Reference"},"537":{"body":"URL metrics allow recording URL-like [1] strings. This metric type does not support recording data URLs - please get in contact with the Glean team if you're missing a type.","breadcrumbs":"Metric types » URL » URL","id":"537","title":"URL"},"538":{"body":"Be careful using arbitrary URLs and make sure they can't accidentally contain identifying data (like directory paths, user input or credentials). The Glean SDKs specifically do not validate if a URL is fully spec compliant, all the validations performed are the ones listed in the \"Recorded errors\" section of this page.","breadcrumbs":"Metric types » URL » Important","id":"538","title":"Important"},"539":{"body":"","breadcrumbs":"Metric types » URL » Recording API","id":"539","title":"Recording API"},"54":{"body":"Integrate glean_parser into your build system. Follow instructions for other SDK-enabled platforms, e.g. JavaScript . Use a server outputter to generate logging code. glean_parser currently supports Go , JavaScript/Typescript , Python , and Ruby . Define your metrics in metrics.yaml Request a data review for the collected data Add your product to probe-scraper","breadcrumbs":"Adding Glean to your project » Server » How to add Glean server side collection to your service","id":"54","title":"How to add Glean server side collection to your service"},"540":{"body":"Set a URL metric to a specific string value. import org.mozilla.yourApplication.GleanMetrics.Search Search.template.set(\"https://mysearchengine.com/\") import org.mozilla.yourApplication.GleanMetrics.Search; Search.INSTANCE.template().set(\"https://mysearchengine.com/\"); Search.template.set(\"https://mysearchengine.com\") // Swift's URL type is supported\nlet url = URL(string: \"https://mysearchengine.com\")!\nSearch.template.set(url: url) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.search.template.set(\"https://mysearchengine.com/\") use glean_metrics::search; search::template.set(\"https://mysearchengine.com/\"); import * as search from \"./path/to/generated/files/search.js\"; search.template.set(\"https://mysearchengine.com/\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search::template.Set(\"https://mysearchengine.com/\"_ns); JavaScript Glean.search.template.set(\"https://mysearchengine.com/\");","breadcrumbs":"Metric types » URL » set","id":"540","title":"set"},"541":{"body":"Set a URL metric to a specific URL value. import * as search from \"./path/to/generated/files/search.js\"; search.template.setUrl(new URL(\"https://mysearchengine.com/\")); Recorded errors invalid_value : If the URL passed does not start with a scheme followed by a : character. If the URL passed uses the data: protocol. invalid_overflow : if the URL passed is longer than 8192 characters (before encoding). invalid_type : if a non-string value is given. Limits Fixed maximum URL length: 8192. Longer URLs are truncated and recorded along with an invalid_overflow error.","breadcrumbs":"Metric types » URL » setUrl","id":"541","title":"setUrl"},"542":{"body":"","breadcrumbs":"Metric types » URL » Testing API","id":"542","title":"Testing API"},"543":{"body":"Gets the recorded value for a given URL metric as a (unencoded) string. Returns a URL if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(\"https://mysearchengine.com/\", Search.template.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(\"https://mysearchengine.com/\", Search.INSTANCE.template().testGetValue()); XCTAssertEqual(\"https://mysearchengine.com/\", try Search.template.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert \"https://mysearchengine.com/\" == metrics.search.template.test_get_value() use glean_metrics::search; assert_eq!(\"https://mysearchengine.com/\", search::template.test_get_value(None).unwrap()); import * as search from \"./path/to/generated/files/search.js\"; assert.strictEqual(\"https://mysearchengine.com/\", await search.template.testGetValue());","breadcrumbs":"Metric types » URL » testGetValue","id":"543","title":"testGetValue"},"544":{"body":"Gets the number of errors recorded for a given counter metric. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(0, Search.template.testGetNumRecordedErrors(ErrorType.INVALID_VALUE))\nassertEquals(0, Search.template.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)) import org.mozilla.yourApplication.GleanMetrics.Search; assertEquals( 0, Search.INSTANCE.template().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); assertEquals( 0, Search.INSTANCE.template().testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n); XCTAssertEqual(0, Search.template.testGetNumRecordedErrors(.invalidValue))\nXCTAssertEqual(0, Search.template.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.search.template.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) assert 0 == metrics.search.template.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse glean_metrics::search; assert_eq!( 0, search::template.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); assert_eq!( 0, search::template.test_get_num_recorded_errors( ErrorType::InvalidOverflow )\n); import * as search from \"./path/to/generated/files/search.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await search.template.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);\nassert.strictEqual( 0, await search.template.testGetNumRecordedErrors(ErrorType.InvalidOverflow)\n);","breadcrumbs":"Metric types » URL » testGetNumRecordedErrors","id":"544","title":"testGetNumRecordedErrors"},"545":{"body":"Example URL metric definition: search: template: type: url description: > The base URL used to build the search query for the search engine. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 data_sensitivity: - web_activity For a full reference on metrics parameters common to all metric types, refer to the metrics YAML format reference page.","breadcrumbs":"Metric types » URL » Metric parameters","id":"545","title":"Metric parameters"},"546":{"body":"URL metrics can only either be on categories 3 or 4, namely \"Stored Content & Communications\" or \"Highly sensitive data\" .","breadcrumbs":"Metric types » URL » Note on data_sensitivity of URL metrics","id":"546","title":"Note on data_sensitivity of URL metrics"},"547":{"body":"N/A","breadcrumbs":"Metric types » URL » Extra metric parameters","id":"547","title":"Extra metric parameters"},"548":{"body":"What is the base URL used to build the search query for the search engine? Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » URL » Data questions","id":"548","title":"Data questions"},"549":{"body":"Datetimes are used to record an absolute date and time, for example the date and time that the application was first run. The device's offset from UTC is recorded and sent with the Datetime value in the ping. To record a single elapsed time, see Timespan . To measure the distribution of multiple timespans, see Timing Distributions .","breadcrumbs":"Metric types » Datetime » Datetime","id":"549","title":"Datetime"},"55":{"body":"Follow the standard Glean SDK guide for adding metrics to metrics.yaml file.","breadcrumbs":"Adding Glean to your project » Server » How to add a new event to your server side collection","id":"55","title":"How to add a new event to your server side collection"},"550":{"body":"","breadcrumbs":"Metric types » Datetime » Recording API","id":"550","title":"Recording API"},"551":{"body":"Sets a datetime metric to a specific date value. Defaults to now. import org.mozilla.yourApplication.GleanMetrics.Install Install.firstRun.set() // Records \"now\"\nInstall.firstRun.set(Date(2019, 3, 25)) // Records a custom datetime import org.mozilla.yourApplication.GleanMetrics.Install; Install.INSTANCE.firstRun().set(); // Records \"now\"\nInstall.INSTANCE.firstRun().set(new Date(2019, 3, 25)); // Records a custom datetime Install.firstRun.set() // Records \"now\"\nlet dateComponents = DateComponents( calendar: Calendar.current, year: 2004, month: 12, day: 9, hour: 8, minute: 3, second: 29 )\nInstall.firstRun.set(dateComponents.date!) // Records a custom datetime import datetime from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.install.first_run.set() # Records \"now\"\nmetrics.install.first_run.set(datetime.datetime(2019, 3, 25)) # Records a custom datetime use glean_metrics::install; use chrono::{FixedOffset, TimeZone}; install::first_run.set(None); // Records \"now\"\nlet custom_date = FixedOffset::east(0).ymd(2019, 3, 25).and_hms(0, 0, 0);\ninstall::first_run.set(Some(custom_date)); // Records a custom datetime import * as install from \"./path/to/generated/files/install.js\"; install.firstRun.set(); // Records \"now\"\ninstall.firstRun.set(new Date(\"March 25, 2019 00:00:00\")); // Records a custom datetime C++ #include \"mozilla/glean/GleanMetrics.h\" PRExplodedTime date = {0, 35, 10, 12, 6, 10, 2020, 0, 0, {5 * 60 * 60, 0}};\nmozilla::glean::install::first_run.Set(&date); JavaScript const value = new Date(\"2020-06-11T12:00:00\");\nGlean.install.firstRun.set(value.getTime() * 1000); Recorded errors invalid_value : setting the date time to an invalid value. invalid_type : if a non-Date object is given.","breadcrumbs":"Metric types » Datetime » set","id":"551","title":"set"},"552":{"body":"","breadcrumbs":"Metric types » Datetime » Testing API","id":"552","title":"Testing API"},"553":{"body":"Get the recorded value for a given datetime metric as a language-specific Datetime object. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Install assertEquals(Install.firstRun.testGetValue(), Date(2019, 3, 25)) import org.mozilla.yourApplication.GleanMetrics.Install; assertEquals(Install.INSTANCE.firstRun().testGetValue(), Date(2019, 3, 25)); let expectedDate = DateComponents( calendar: Calendar.current, year: 2004, month: 12, day: 9, hour: 8, minute: 3, second: 29 )\nXCTAssertEqual(expectedDate.date!, try Install.firstRun.testGetValue()) import datetime from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") value = datetime.datetime(1993, 2, 23, 5, 43, tzinfo=datetime.timezone.utc)\nassert value == metrics.install.first_run.test_get_value() use glean_metrics::install; use chrono::{FixedOffset, TimeZone}; let expected_date = FixedOffset::east(0).ymd(2019, 3, 25).and_hms(0, 0, 0);\nassert_eq!(expected_date, metrics.install.first_run.test_get_value(None)); import * as install from \"./path/to/generated/files/install.js\"; const expectedDate = new Date(\"March 25, 2019 00:00:00\");\nassert.deepStrictEqual(expectedDate, await install.firstRun.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" PRExplodedTime date{0, 35, 10, 12, 6, 10, 2020, 0, 0, {5 * 60 * 60, 0}};\nASSERT_TRUE(mozilla::glean::install::first_run.TestGetValue().isOk());\nASSERT_EQ( 0, std::memcmp( &date, mozilla::glean::install::first_run.TestGetValue().unwrap().ptr(), sizeof(date))); JavaScript const value = new Date(\"2020-06-11T12:00:00\");\n// testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(Glean.install.firstRun.testGetValue().getTime(), value.getTime());","breadcrumbs":"Metric types » Datetime » testGetValue","id":"553","title":"testGetValue"},"554":{"body":"Get the recorded value for a given datetime metric as an ISO Date String . Returns a ISO 8601 date string if data is stored. Returns a language-specific empty/null value if no data is stored. The returned string will be truncated to the metric's time unit and will include the timezone offset from UTC, e.g. 2019-03-25-05:00 (in this example, time_unit is day). import org.mozilla.yourApplication.GleanMetrics.Install assertEquals(\"2019-03-25-05:00\", Install.firstRun.testGetValueAsString()) import org.mozilla.yourApplication.GleanMetrics.Install; assertEquals(\"2019-03-25-05:00\", Install.INSTANCE.firstRun().testGetValueAsString()); assertEquals(\"2019-03-25-05:00\", try Install.firstRun.testGetValueAsString()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert \"2019-03-25-05:00\" == metrics.install.first_run.test_get_value_as_str() import * as install from \"./path/to/generated/files/install.js\"; assert.strictEqual(\"2019-03-25-05:00\", await install.firstRun.testGetValueAsString());","breadcrumbs":"Metric types » Datetime » testGetValueAsString","id":"554","title":"testGetValueAsString"},"555":{"body":"Get number of errors recorded for a given datetime metric. import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Install assertEquals(0, Install.firstRun.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)) import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Install; assertEquals( 0, Install.INSTANCE.firstRun().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Install.firstRun.getNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.install.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::install; assert_eq!( 0, install::first_run.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); import * as install from \"./path/to/generated/files/install.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await install.firstRun.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Datetime » testGetNumRecordedErrors","id":"555","title":"testGetNumRecordedErrors"},"556":{"body":"Example datetime metric definition: install: first_run: type: datetime time_unit: day description: > Records the date when the application was first run bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Datetime » Metric parameters","id":"556","title":"Metric parameters"},"557":{"body":"time_unit Datetimes have an optional time_unit parameter to specify the smallest unit of resolution that the metric will record. The allowed values for time_unit are: nanosecond microsecond millisecond (default) second minute hour day Carefully consider the required resolution for recording your metric, and choose the coarsest resolution possible.","breadcrumbs":"Metric types » Datetime » Extra metric parameters","id":"557","title":"Extra metric parameters"},"558":{"body":"When did the user first run the application?","breadcrumbs":"Metric types » Datetime » Data questions","id":"558","title":"Data questions"},"559":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Datetime » Reference","id":"559","title":"Reference"},"56":{"body":"For more technical details on how ingestion works, see the Confluence page . Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Server » Technical details - ingestion","id":"56","title":"Technical details - ingestion"},"560":{"body":"Events allow recording of e.g. individual occurrences of user actions, say every time a view was open and from where. Each event contains the following data: A timestamp, in milliseconds. The first event in any ping always has a value of 0, and subsequent event timestamps are relative to it. If sending events in custom pings, see note on event timestamp calculation throughout restarts. The name of the event. A set of key-value pairs, where the keys are predefined in the extra_keys metric parameter. Values are one of string, boolean, quantity, and are converted to string for transmission.","breadcrumbs":"Metric types » Event » Events","id":"560","title":"Events"},"561":{"body":"In the Glean JavaScript SDK (Glean.js), since version 2.0.2, events are submitted immediately by default. In all the other SDKs, events are batched and sent together by default in the events ping .","breadcrumbs":"Metric types » Event » Immediate submission or batching?","id":"561","title":"Immediate submission or batching?"},"562":{"body":"","breadcrumbs":"Metric types » Event » Recording API","id":"562","title":"Recording API"},"563":{"body":"Record a new event, with optional typed extra values. See Extra metrics parameters . Note that an enum has been generated for handling the extra_keys: it has the same name as the event metric, with Extra added. import org.mozilla.yourApplication.GleanMetrics.Views Views.loginOpened.record(Views.loginOpenedExtra(sourceOfLogin = \"toolbar\")) Note that an enum has been generated for handling the extra_keys: it has the same name as the event metric, with Extra added. Views.loginOpened.record(LoginOpenedExtra(sourceOfLogin: \"toolbar\")) Note that a class has been generated for handling the extra_keys: it has the same name as the event metric, with Extra added. from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.views.login_opened.record(metrics.views.LoginOpenedExtra(sourceOfLogin=\"toolbar\")) Note that an enum has been generated for handling the extra_keys: it has the same name as the event metric, with Keys added. use metrics::views::{self, LoginOpenedExtra}; let extra = LoginOpenedExtra { source_of_login: Some(\"toolbar\".to_string()) };\nviews::login_opened.record(extra); import * as views from \"./path/to/generated/files/views.js\"; views.loginOpened.record({ sourceOfLogin: \"toolbar\" }); C++ #include \"mozilla/glean/GleanMetrics.h\" using mozilla::glean::views::LoginOpenedExtra;\nLoginOpenedExtra extra = { .source_of_login = Some(\"value\"_ns) };\nmozilla::glean::views::login_opened.Record(std::move(extra)) JavaScript const extra = { source_of_login: \"toolbar\" }; // Extra Keys are *NOT* conjugated to camelCase\nGlean.views.loginOpened.record(extra); Recorded errors invalid_overflow : if any of the values in the extras object are greater than 500 bytes in length. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_value : if there is an attempt to record to an extra key which is not allowed i.e. an extra key that has not been listed in the YAML registry file. invalid_type : if the extra value given is not the expected type.","breadcrumbs":"Metric types » Event » record(object)","id":"563","title":"record(object)"},"564":{"body":"","breadcrumbs":"Metric types » Event » Testing API","id":"564","title":"Testing API"},"565":{"body":"Get the list of recorded events. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. Note : By default as of v2.0.2 Glean.js sets maxEvents=1 by default. If you try and call testGetValue() for a recorded event with maxEvents=1, snapshot will not include your event. For your testing instance, you can set maxEvents to a value greater than 1 to test recording events with testGetValue(). import org.mozilla.yourApplication.GleanMetrics.Views val snapshot = Views.loginOpened.testGetValue()\nassertEquals(2, snapshot.size)\nval first = snapshot.single()\nassertEquals(\"login_opened\", first.name)\nassertEquals(\"toolbar\", first.extra?.getValue(\"source_of_login\")) import org.mozilla.yourApplication.GleanMetrics.Views assertEquals(Views.INSTANCE.loginOpened().testGetValue().size) val snapshot = try! Views.loginOpened.testGetValue()\nXCTAssertEqual(2, snapshot.size)\nval first = snapshot[0]\nXCTAssertEqual(\"login_opened\", first.name)\nXCTAssertEqual(\"toolbar\", first.extra?[\"source_of_login\"]) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") snapshot = metrics.views.login_opened.test_get_value()\nassert 2 == len(snapshot)\nfirst = snapshot[0]\nassert \"login_opened\" == first.name\nassert \"toolbar\" == first.extra[\"source_of_login\"] use metrics::views; var snapshot = views::login_opened.test_get_value(None).unwrap();\nassert_eq!(2, snapshot.len());\nlet first = &snapshot[0];\nassert_eq!(\"login_opened\", first.name); let extra = event.extra.unwrap();\nassert_eq!(Some(&\"toolbar\".to_string()), extra.get(\"source_of_login\")); import * as views from \"./path/to/generated/files/views.js\"; const snapshot = await views.loginOpened.testGetValue();\nassert.strictEqual(2, snapshot.length);\nconst first = snapshot[0];\nassert.strictEqual(\"login_opened\", first.name);\nassert.strictEqual(\"toolbar\", first.extra.source_of_login); C++ #include \"mozilla/glean/GleanMetrics.h\" auto optEvents = mozilla::glean::views::login_opened.TestGetValue();\nauto events = optEvents.extract();\nASSERT_EQ(2UL, events.Length());\nASSERT_STREQ(\"login_opened\", events[0].mName.get()); // Note that the list of extra key/value pairs can be in any order.\nASSERT_EQ(1UL, events[0].mExtra.Length());\nauto extra = events[0].mExtra[0]; auto key = std::get<0>(extra);\nauto value = std::get<1>(extra); ASSERT_STREQ(\"source_of_login\"_ns, key.get())\nASSERT_STREQ(\"toolbar\", value.get());\n} JavaScript var events = Glean.views.loginOpened.testGetValue();\nAssert.equal(2, events.length);\nAssert.equal(\"login_opened\", events[0].name); Assert.equal(\"toolbar\", events[0].extra.source_of_login);","breadcrumbs":"Metric types » Event » testGetValue","id":"565","title":"testGetValue"},"566":{"body":"Get the number of errors recorded for a given event metric. import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Views assertEquals( 0, Views.loginOpened.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Views assertEquals( 0, Views.INSTANCE.loginOpened().testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) XCTAssertEqual(0, Views.loginOpened.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nfrom glean.testing import ErrorType\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.views.login_opened.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse metrics::views; assert_eq!( 0, views::login_opened.test_get_num_recorded_errors( ErrorType::InvalidOverflow, None )\n); import * as views from \"./path/to/generated/files/views.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await views.loginOpened.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Event » testGetNumRecordedErrors","id":"566","title":"testGetNumRecordedErrors"},"567":{"body":"Example event metric definition: views: login_opened: type: event description: | Recorded when the login view is opened. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 extra_keys: source_of_login: description: The source from which the login view was opened, e.g. \"toolbar\". type: string For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page. Events require lifetime: ping. Recorded events are always sent in their respective pings and then cleared. They cannot be persisted longer. The glean_parser will reject any other lifetime.","breadcrumbs":"Metric types » Event » Metric parameters","id":"567","title":"Metric parameters"},"568":{"body":"extra_keys The acceptable keys on the \"extra\" object sent with events. A maximum of 50 extra keys is allowed. Each extra key contains additional metadata: description: Required. A description of the key. type: The type of value this extra key can hold. One of string, boolean, quantity. Defaults to string. Recorded value is converted to string for transmission. Note : If not specified only the legacy API on record is available. Extras or string metrics? When designing your metrics, define properties that are slow-changing and common across all events in a given ping as string metrics. Properties specific to a single event or a subset of events should be defined as event extras.","breadcrumbs":"Metric types » Event » Extra metric parameters","id":"568","title":"Extra metric parameters"},"569":{"body":"When and from where was the login view opened?","breadcrumbs":"Metric types » Event » Data questions","id":"569","title":"Data questions"},"57":{"body":"This page provides a step-by-step guide on how to enable data from your product to be ingested by the data platform. This is just one of the required steps for integrating Glean successfully into a product. Check the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Enabling data to be ingested by the data platform","id":"57","title":"Enabling data to be ingested by the data platform"},"570":{"body":"In Glean.js the default value for maxEvents is 1. In all other SDKs it is 500. Once the maxEvents threshold is reached on the client an \"events\" ping is immediately sent. The extra_keys allows for a maximum of 50 keys. The keys in the extra_keys list must be written using printable ASCII characters, with a maximum length of 40 bytes, when encoded as UTF-8. The values in the extras object have a maximum length of 500 bytes when serialized and encoded as UTF-8. Longer values are truncated, and an invalid_overflow error is recorded.","breadcrumbs":"Metric types » Event » Limits","id":"570","title":"Limits"},"571":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Event » Reference","id":"571","title":"Reference"},"572":{"body":"Custom distributions are used to record the distribution of arbitrary values. It should be used only when direct control over how the histogram buckets are computed is required. Otherwise, look at the standard distribution metric types: Timing Distributions Memory Distributions Note : Custom distributions are currently not universally supported. See below for available APIs.","breadcrumbs":"Metric types » Custom Distribution » Custom Distribution","id":"572","title":"Custom Distribution"},"573":{"body":"","breadcrumbs":"Metric types » Custom Distribution » Recording API","id":"573","title":"Recording API"},"574":{"body":"Accumulate the provided samples in the metric. import org.mozilla.yourApplication.GleanMetrics.Graphics Graphics.checkerboardPeak.accumulateSamples([23]) import org.mozilla.yourApplication.GleanMetrics.Graphics; Graphics.INSTANCE.checkerboardPeak().accumulateSamples(listOf(23)); use glean_metrics::graphics; graphics::checkerboard_peak.accumulate_samples_signed(vec![23]); import * as graphics from \"./path/to/generated/files/graphics.js\"; graphics.checkerboardPeak.accumulateSamples([23]); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::graphics::checkerboard_peak.AccumulateSamples({ 23 }); JavaScript Glean.graphics.checkerboardPeak.accumulateSamples([23]);","breadcrumbs":"Metric types » Custom Distribution » accumulateSamples","id":"574","title":"accumulateSamples"},"575":{"body":"Accumulates one sample and appends it to the metric. import org.mozilla.yourApplication.GleanMetrics.Graphics Graphics.checkerboardPeak.accumulateSingleSample(23) import org.mozilla.yourApplication.GleanMetrics.Graphics; Graphics.INSTANCE.checkerboardPeak().accumulateSingleSample(23); use glean_metrics::graphics; graphics::checkerboard_peak.accumulate_single_sample(23); import * as graphics from \"./path/to/generated/files/graphics.js\"; graphics.checkerboardPeak.accumulateSingleSample(23); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::graphics::checkerboard_peak.AccumulateSingleSample(23); JavaScript Glean.graphics.checkerboardPeak.accumulateSingleSample(23); Limits The maximum value of bucket_count is 100. Only non-negative values may be recorded (>= 0). Recorded errors invalid_value: If recording a negative value.","breadcrumbs":"Metric types » Custom Distribution » accumulateSingleSample","id":"575","title":"accumulateSingleSample"},"576":{"body":"","breadcrumbs":"Metric types » Custom Distribution » Testing API","id":"576","title":"Testing API"},"577":{"body":"Gets the recorded value for a given custom distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Graphics // Get snapshot\nval snapshot = Graphics.checkerboardPeak.testGetValue() // Does the sum have the expected value?\nassertEquals(23, snapshot.sum) // Does the count have the expected value?\nassertEquals(1L, snapshot.count) // Buckets are indexed by their lower bound.\nassertEquals(1L, snapshot.values[19]) import org.mozilla.yourApplication.GleanMetrics.Graphics; // Get snapshot\nval snapshot = Graphics.INSTANCE.checkerboardPeak().testGetValue(); // Does the sum have the expected value?\nassertEquals(23, snapshot.sum); // Does the count have the expected value?\nassertEquals(1L, snapshot.count); use glean_metrics::graphics; // Does the sum have the expected value?\nassert_eq!(23, graphics::checkerboard_peak.test_get_value(None).unwrap().sum); // Does the count have the expected value?\nassert_eq!(1, graphics::checkerboard_peak.test_get_value(None).unwrap().count); // Buckets are indexed by their lower bound.\nassert_eq!(1, snapshot.values[19]) import * as graphics from \"./path/to/generated/files/graphics.js\"; // Get snapshot\nconst snapshot = await graphics.checkerboardPeak.testGetValue(); // Does the sum have the expected value?\nassert.equal(23, snapshot.sum); // Buckets are indexed by their lower bound.\nassert.equal(1, snapshot.values[19]); C++ #include \"mozilla/glean/GleanMetrics.h\" auto data = mozilla::glean::graphics::checkerboard_peak.TestGetValue().value();\nASSERT_EQ(23UL, data.sum); JavaScript let data = Glean.graphics.checkerboardPeak.testGetValue();\nAssert.equal(23, data.sum);","breadcrumbs":"Metric types » Custom Distribution » testGetValue","id":"577","title":"testGetValue"},"578":{"body":"Gets the number of errors recorded for a the custom distribution metric. import org.mozilla.yourApplication.GleanMetrics.Graphics /// Did the metric receive a negative value?\nassertEquals( 0, Graphics.checkerboardPeak.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Graphics; /// Did the metric receive a negative value?\nassertEquals( 0, Graphics.INSTANCE.checkerboardPeak().testGetNumRecordedErrors( ErrorType.INVALID_VALUE )\n) use glean::ErrorType;\nuse glean_metrics::graphics; // Were any of the values negative and thus caused an error to be recorded?\nassert_eq!( 0, graphics::checkerboard_peak.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n); import * as graphics from \"./path/to/generated/files/graphics.js\";\nimport { ErrorType } from \"@mozilla/glean/\"; // Did the metric receive a negative value?\nassert.equal( 0, graphics.checkerboardPeak.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Custom Distribution » testGetNumRecordedErrors","id":"578","title":"testGetNumRecordedErrors"},"579":{"body":"Example custom distribution metric definition: graphics: checkerboard_peak: type: custom_distribution description: > Peak number of CSS pixels checkerboarded during a checkerboard event. range_min: 1 range_max: 66355200 bucket_count: 50 histogram_type: exponential unit: pixels gecko_datapoint: CHECKERBOARD_PEAK bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01","breadcrumbs":"Metric types » Custom Distribution » Metric Parameters","id":"579","title":"Metric Parameters"},"58":{"body":"GitHub Workflows","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Requirements","id":"58","title":"Requirements"},"580":{"body":"Custom distributions have the following required parameters: range_min: (Integer) The minimum value of the first bucket range_max: (Integer) The minimum value of the last bucket bucket_count: (Integer) The number of buckets histogram_type: linear: The buckets are evenly spaced exponential: The buckets follow a natural logarithmic distribution Note Check out how these bucketing algorithms would behave on the Custom distribution simulator . Custom distributions have the following optional parameters: unit: (String) The unit of the values in the metric. For documentation purposes only -- does not affect data collection. gecko_datapoint: (String) This is a Gecko-specific property. It is the name of the Gecko metric to accumulate the data from, when using a Glean SDK in a product using GeckoView.","breadcrumbs":"Metric types » Custom Distribution » Extra metric parameters","id":"580","title":"Extra metric parameters"},"581":{"body":"Rust API docs","breadcrumbs":"Metric types » Custom Distribution » Reference","id":"581","title":"Reference"},"582":{"body":"Please, insert your custom data below as a JSON array. Data options Generate normally distributed data Generate log-normally distributed data Generate uniformly distributed data Use custom data Properties Histogram type (histogram_type) Exponential Linear Range minimum (range_min) Range maximum (range_max) Bucket count (bucket_count) Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Custom Distribution » Simulator","id":"582","title":"Simulator"},"583":{"body":"Labeled custom distributions are used to record different related distributions of arbitrary values. If your data is timing or memory based and you don't need direct control over histogram buckets, consider instead: Labeled Timing Distributions Labeled Memory Distributions","breadcrumbs":"Metric types » Labeled Custom Distributions » Labeled Custom Distributions","id":"583","title":"Labeled Custom Distributions"},"584":{"body":"","breadcrumbs":"Metric types » Labeled Custom Distributions » Recording API","id":"584","title":"Recording API"},"585":{"body":"Accumulate the provided samples in the metric. use glean_metrics::network; network::http3_late_ack_ratio .get(\"ack\") .accumulateSamples(vec![(stats.late_ack * 10000) / stats.packets_tx]);\nnetwork::http3_late_ack_ratio .get(\"pto\") .accumulateSamples(vec![(stats.pto_ack * 10000) / stats.packets_tx]); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::network::http3_late_ack_ratio .Get(\"ack\") .AccumulateSamples({(stats.late_ack * 10000) / stats.packets_tx});\nmozilla::glean::network::http3_late_ack_ratio .Get(\"pto\") .AccumulateSamples({(stats.pto_ack * 10000) / stats.packets_tx}); JavaScript Glean.network.http3LateAckRatio[\"ack\"] .accumulateSamples([(stats.late_ack * 10000) / stats.packets_tx]);\nGlean.network.http3LateAckRatio[\"pto\"] .accumulateSamples([(stats.pto_ack * 10000) / stats.packets_tx]); Recorded Errors invalid_value : if recording any negative samples invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Custom Distributions » accumulateSamples","id":"585","title":"accumulateSamples"},"586":{"body":"Accumulates one sample and appends it to the metric. use glean_metrics::network; network::http3_late_ack_ratio .get(\"ack\") .accumulateSingleSample((stats.late_ack * 10000) / stats.packets_tx);\nnetwork::http3_late_ack_ratio .get(\"pto\") .accumulateSingleSample((stats.pto_ack * 10000) / stats.packets_tx); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::network::http3_late_ack_ratio .Get(\"ack\") .AccumulateSingleSample((stats.late_ack * 10000) / stats.packets_tx);\nmozilla::glean::network::http3_late_ack_ratio .Get(\"pto\") .AccumulateSingleSample((stats.pto_ack * 10000) / stats.packets_tx); JavaScript Glean.network.http3LateAckRatio[\"ack\"] .accumulateSingleSample((stats.late_ack * 10000) / stats.packets_tx);\nGlean.network.http3LateAckRatio[\"pto\"] .accumulateSingleSample((stats.pto_ack * 10000) / stats.packets_tx); Recorded Errors invalid_value : if recording a negative sample invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Custom Distributions » accumulateSingleSample","id":"586","title":"accumulateSingleSample"},"587":{"body":"","breadcrumbs":"Metric types » Labeled Custom Distributions » Testing API","id":"587","title":"Testing API"},"588":{"body":"Gets the recorded value for a given label in a labeled custom distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::network; // Assert the sum of all samples is 42.\nassert_eq!(42, network::http3_late_ack_ratio.get(\"ack\").test_get_value(None).unwrap().sum); // Assert there's only the one sample\nassert_eq!(1, network::http3_late_ack_ratio.get(\"ack\").test_get_value(None).unwrap().count); // Buckets are indexed by their lower bound.\nassert_eq!(1, network::http3_late_ack_ratio.get(\"ack\").test_get_value(None).unwrap().values[41]); C++ #include \"mozilla/glean/GleanMetrics.h\" auto data = mozilla::glean::network::http3_late_ack_ratio.Get(\"ack\").TestGetValue().value();\nASSERT_EQ(42UL, data.sum);\nASSERT_EQ(1, data.count);\nASSERT_EQ(1, data.values[41]); JavaScript let data = Glean.network.http3LateAckRatio[\"ack\"].testGetValue();\nAssert.equal(42, data.sum);\nAssert.equal(1, data.count);\nAssert.equal(1, data.values[41]);","breadcrumbs":"Metric types » Labeled Custom Distributions » testGetValue","id":"588","title":"testGetValue"},"589":{"body":"Gets the number of errors recorded for a given labeled custom distribution metric in total. use glean::ErrorType;\nuse glean_metrics::network; // Assert there were no negative values instrumented.\nassert_eq!( 0, network::http3_late_ack_ratio.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Custom Distributions » testGetNumRecordedErrors","id":"589","title":"testGetNumRecordedErrors"},"59":{"body":"At least one week before releasing your product, file a data engineering bug to enable your product's application id. This will result in your product being added to probe scraper 's repositories.yaml .","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Add your product to probe scraper","id":"59","title":"Add your product to probe scraper"},"590":{"body":"Example labeled custom distribution metric definition: network: http3_late_ack_ratio: type: labeled_custom_distribution description: > HTTP3: The ratio of spurious retransmissions per packets sent, represented as an integer permdecimille: `(spurious_retransmission / packet sent * 10000)` range_min: 1 range_max: 2000 bucket_count 100 histogram_type: exponential bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 175 labels: - ack - pto","breadcrumbs":"Metric types » Labeled Custom Distributions » Metric parameters","id":"590","title":"Metric parameters"},"591":{"body":"range_min, range_max, bucket_count, and histogram_type (Required) Labeled custom distributions have the following required parameters: range_min: (Integer) The minimum value of the first bucket range_max: (Integer) The minimum value of the last bucket bucket_count: (Integer) The number of buckets histogram_type: linear: The buckets are evenly spaced exponential: The buckets follow a natural logarithmic distribution labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Custom Distributions » Extra metric parameters","id":"591","title":"Extra metric parameters"},"592":{"body":"What is the distribution of retransmission ratios per connection? What is the distribution of how long it takes to load extensions' content scripts, by addon id?","breadcrumbs":"Metric types » Labeled Custom Distributions » Data questions","id":"592","title":"Data questions"},"593":{"body":"The maximum value of bucket_count is 100. Only non-negative integer values may be recorded (>=0). Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Custom Distributions » Limits","id":"593","title":"Limits"},"594":{"body":"Rust API docs: LabeledMetric , CustomDistributionMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Custom Distributions » Reference","id":"594","title":"Reference"},"595":{"body":"Used to record a single non-negative integer value or 0. For example, the width of the display in pixels.","breadcrumbs":"Metric types » Quantity » Quantity","id":"595","title":"Quantity"},"596":{"body":"If you need to count something (e.g. the number of times a button is pressed) prefer using the Counter metric type, which has a specific API for counting things.","breadcrumbs":"Metric types » Quantity » Do not use Quantity for counting","id":"596","title":"Do not use Quantity for counting"},"597":{"body":"","breadcrumbs":"Metric types » Quantity » Recording API","id":"597","title":"Recording API"},"598":{"body":"Sets a quantity metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Display Display.width.set(width) import org.mozilla.yourApplication.GleanMetrics.Display; Display.INSTANCE.width().set(width); Display.width.set(width) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.display.width.set(width) use glean_metrics::display; display::width.set(width); import * as display from \"./path/to/generated/files/display.js\"; display.width.set(window.innerWidth); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::display::width.Set(innerWidth); JavaScript Glean.display.width.set(innerWidth); Limits Quantities must be non-negative integers or 0. Recorded errors invalid_value : if a negative value is passed in. invalid_type : if a floating point or non-number value is given.","breadcrumbs":"Metric types » Quantity » set","id":"598","title":"set"},"599":{"body":"","breadcrumbs":"Metric types » Quantity » Testing API","id":"599","title":"Testing API"},"6":{"body":"To contact the Glean team you can: Find us in the #glean channel on chat.mozilla.org . To report issues or request changes, file a bug in Bugzilla in Data Platform & Tools :: Glean: SDK . Send an email to glean-team@mozilla.com . The Glean SDKs team is: :janerik , :dexter , :travis , :chutten , :perrymcmanis .","breadcrumbs":"Glean » Contact","id":"6","title":"Contact"},"60":{"body":"After your product has been enabled, you must submit commits to probe scraper to validate and publish metrics. Metrics will only be published from branches defined in probe scraper's repositories.yaml, or the Git default branch if not explicitly configured. This should happen on every CI run to the specified branches. Nightly jobs will then automatically add published metrics to the Glean Dictionary and other data platform tools. Enable the GitHub Workflow by creating a new file .github/workflows/glean-probe-scraper.yml with the following content: ---\nname: Glean probe-scraper\non: [push, pull_request]\njobs: glean-probe-scraper: uses: mozilla/probe-scraper/.github/workflows/glean.yaml@main","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Validate and publish metrics","id":"60","title":"Validate and publish metrics"},"600":{"body":"Gets the recorded value for a given quantity metric. Returns the quantity value if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Display // Does the quantity have the expected value?\nassertEquals(433, Display.width.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Display; // Does the quantity have the expected value?\nassertEquals(433, Display.INSTANCE.width().testGetValue()); // Does the quantity have the expected value?\nXCTAssertEqual(433, try Display.width.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Does the quantity have the expected value?\nassert 433 == metrics.display.width.test_get_value() use glean_metrics::display; // Was anything recorded?\nassert_eq!(433, display::width.test_get_value(None).unwrap()); import * as display from \"./path/to/generated/files/display.js\"; assert.strictEqual(433, await display.width.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_TRUE(mozilla::glean::display::width.TestGetValue().isOk());\nASSERT_EQ(433, mozilla::glean::display::width.TestGetValue().unwrap().value()); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(433, Glean.display.width.testGetValue());","breadcrumbs":"Metric types » Quantity » testGetValue","id":"600","title":"testGetValue"},"601":{"body":"Gets the number of errors recorded for a given quantity metric. import org.mozilla.yourApplication.GleanMetrics.Display // Did it record an error due to a negative value?\nassertEquals(0, Display.width.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)) import org.mozilla.yourApplication.GleanMetrics.Display; // Did the quantity record a negative value?\nassertEquals( 0, Display.INSTANCE.width().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Did the quantity record a negative value?\nXCTAssertEqual(0, Display.width.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Did the quantity record an negative value?\nfrom glean.testing import ErrorType\nassert 0 == metrics.display.width.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::display; assert_eq!( 0, display::width.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n); import * as display from \"./path/to/generated/files/display.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await display.width.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Quantity » testGetNumRecordedErrors","id":"601","title":"testGetNumRecordedErrors"},"602":{"body":"Example quantity metric definition: controls: refresh_pressed: type: quantity description: > The width of the display, in pixels. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 unit: pixels For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Quantity » Metric parameters","id":"602","title":"Metric parameters"},"603":{"body":"unit Quantities have the required unit parameter, which is a free-form string for documentation purposes.","breadcrumbs":"Metric types » Quantity » Extra metric parameters","id":"603","title":"Extra metric parameters"},"604":{"body":"What is the width of the display, in pixels?","breadcrumbs":"Metric types » Quantity » Data questions","id":"604","title":"Data questions"},"605":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Quantity » Reference","id":"605","title":"Reference"},"606":{"body":"Labeled quantity metrics are used to record different related non-negative integer values. For example, the width and height of the display in pixels.","breadcrumbs":"Metric types » Labeled Quantities » Labeled Quantities","id":"606","title":"Labeled Quantities"},"607":{"body":"If you need to count some things (e.g. the number of times buttons are pressed) prefer using the Labeled Counter metric type, which has a specific API for counting things.","breadcrumbs":"Metric types » Labeled Quantities » Do not use Labeled Quantity metrics for counting","id":"607","title":"Do not use Labeled Quantity metrics for counting"},"608":{"body":"","breadcrumbs":"Metric types » Labeled Quantities » Recording API","id":"608","title":"Recording API"},"609":{"body":"Sets a quantity metric to a specific value for the given label. use glean_metrics::gfx; gfx::display.get(\"width\").set(width);\ngfx::display.get(\"height\").set(height); Limits Quantities must be non-negative integers or 0. Recorded errors invalid_value : if a negative value is passed in. invalid_type : if a floating point or non-number value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Quantities » set","id":"609","title":"set"},"61":{"body":"At least one week before releasing your product, file a data engineering bug to add your library to probe scraper and be scraped for metrics as a dependency of another product. This will result in your library being added to probe scraper 's repositories.yaml . Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Add your library to probe scraper","id":"61","title":"Add your library to probe scraper"},"610":{"body":"","breadcrumbs":"Metric types » Labeled Quantities » Testing API","id":"610","title":"Testing API"},"611":{"body":"Gets the recorded value for a given label in a labeled quantity metric. Returns the quantity value if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::gfx; // Was anything recorded?\nassert_eq!(433, gfx::display.get(\"width\").test_get_value(None).unwrap());\nassert_eq!(42, gfx::display.get(\"height\").test_get_value(None).unwrap());","breadcrumbs":"Metric types » Labeled Quantities » testGetValue","id":"611","title":"testGetValue"},"612":{"body":"Gets the number of errors recorded for a given label in a labeled quantity metric. use glean::ErrorType;\nuse glean_metrics::gfx; assert_eq!( 0, gfx::display.get(\"width\").test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);\nassert_eq!( 0, gfx::display.get(\"height\").test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Quantities » testGetNumRecordedErrors","id":"612","title":"testGetNumRecordedErrors"},"613":{"body":"Example quantity metric definition: gfx: display: type: labeled_quantity description: > The dimensions of the display, in pixels. For one-dimensional displays, uses only \"width\". Two-dimensional displays add \"height\". 3D displays gain \"depth\". bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 unit: pixels labels: - width - height - depth For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Labeled Quantities » Metric parameters","id":"613","title":"Metric parameters"},"614":{"body":"unit Labeled Quantities have the required unit parameter, which is a free-form string for documentation purposes. labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Quantities » Extra metric parameters","id":"614","title":"Extra metric parameters"},"615":{"body":"What are the dimensions of the display, in pixels?","breadcrumbs":"Metric types » Labeled Quantities » Data questions","id":"615","title":"Data questions"},"616":{"body":"Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Quantities » Limits","id":"616","title":"Limits"},"617":{"body":"Rust API docs: LabeledMetric , QuantityMetric Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Quantities » Reference","id":"617","title":"Reference"},"618":{"body":"Used to count how often something happens relative to how often something else happens. Like how many documents use a particular CSS Property, or how many HTTP connections had an error. You can think of it like a fraction, with a numerator and a denominator. All rates start without a value. A rate with a numerator of 0 is valid and will be sent to ensure we capture the \"no errors happened\" or \"no use counted\" cases.","breadcrumbs":"Metric types » Rate » Rate","id":"618","title":"Rate"},"619":{"body":"When using a rate metric, it is important to let the Glean metric do the counting. Using your own variable for counting and setting the metric yourself could be problematic: ping scheduling will make it difficult to ensure the metric is at the correct value at the correct time. Instead, count to the numerator and denominator as you go.","breadcrumbs":"Metric types » Rate » Let the Glean metric do the counting","id":"619","title":"Let the Glean metric do the counting"},"62":{"body":"This chapter provides guidance for planning the work involved in integrating Glean into your product, for internal Mozilla customers. For a technical coding perspective, see adding Glean to your project . Glean is the standard telemetry platform required for all new Mozilla products. While there are some upfront costs to integrating Glean in your product, this pays off in easier long-term maintenance and a rich set of self-serve analysis tools. The Glean team is happy to support your telemetry integration and make it successful. Find us in #glean or email glean-team@mozilla.com .","breadcrumbs":"Integrating Glean for project managers » Integrating Glean for product managers","id":"62","title":"Integrating Glean for product managers"},"620":{"body":"","breadcrumbs":"Metric types » Rate » Recording API","id":"620","title":"Recording API"},"621":{"body":"Numerators and denominators need to be counted individually. import org.mozilla.yourApplication.GleanMetrics.Network if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnectionError.addToDenominator(1) External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : import org.mozilla.yourApplication.GleanMetrics.Network if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnections.add(1) import org.mozilla.yourApplication.GleanMetrics.Network; if (connectionHadError) { Network.INSTANCE.httpConnectionError().addToNumerator(1);\n} Network.IMPORTANT.httpConnectionError().addToDenominator(1); External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : import org.mozilla.yourApplication.GleanMetrics.Network; if (connectionHadError) { Network.INSTANCE.httpConnectionError().addToNumerator(1);\n} Network.INSTANCE.httpConnections().add(1) if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnectionError.addToDenominator(1) External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnections.add(1) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") if connection_had_error: metrics.network.http_connection_error.add_to_numerator(1) metrics.network.http_connection_error.add_to_denominator(1) External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") if connection_had_error: metrics.network.http_connection_error.add_to_numerator(1) metrics.network.http_connections.add(1) use glean_metrics::network; if connection_had_error { network::http_connection_error.add_to_numerator(1);\n} network::http_connection_error.add_to_denominator(1); External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : use glean_metrics::network; if connection_had_error { network::http_connection_error.add_to_numerator(1);\n} network::http_connections.add(1); import * as network from \"./path/to/generated/files/network.js\"; if (connectionHadError) { network.httpConnectionError.addToNumerator(1);\n} network.httpConnectionError.addToDenominator(1); C++ #include \"mozilla/glean/GleanMetrics.h\" if (aHadError) {\nmozilla::glean::network::http_connection_error.AddToNumerator(1);\n}\nmozilla::glean::network::http_connection_error.AddToDenominator(1); JavaScript if (aHadError) {\nGlean.network.httpConnectionError.addToNumerator(1);\n}\nGlean.network.httpConnectionError.addToDenominator(1); Recorded errors invalid_value : If either numerator or denominator is incremented by a negative value. invalid_type : If a floating point or non-number value is given. Limits Numerator and Denominator only increment. Numerator and Denominator saturate at the largest value that can be represented as a 32-bit signed integer (2147483647).","breadcrumbs":"Metric types » Rate » addToNumerator / addToDenominator","id":"621","title":"addToNumerator / addToDenominator"},"622":{"body":"","breadcrumbs":"Metric types » Rate » Testing API","id":"622","title":"Testing API"},"623":{"body":"Gets the recorded value for a given rate metric. Returns the numerator/denominator pair if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Network assertEquals(Rate(1, 1), Network.httpConnectionError.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Network; assertEquals(Rate(1, 1), Network.INSTANCE.httpConnectionError().testGetValue()); XCTAssertEqual( Rate(numerator: 1, denominator: 1), Network.httpConnectionError.testGetValue()\n) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert Rate(1, 1) == metrics.network.http_connection_error.test_get_value() use glean_metrics::network; let rate = network::http_connection_error.test_get_value(None).unwrap();\nassert_eq!(1, rate.numerator);\nassert_eq!(1, rate.denominator); import * as network from \"./path/to/generated/files/network.js\"; const { numerator, denominator } = await network.httpConnectionError.testGetValue();\nassert.strictEqual(numerator, 1);\nassert.strictEqual(denominator, 1); C++ #include \"mozilla/glean/GleanMetrics.h\" auto pair = mozilla::glean::network::http_connection_error.TestGetValue().unwrap();\nASSERT_EQ(1, pair.first);\nASSERT_EQ(1, pair.second); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.deepEqual(\n{ numerator: 1, denominator: 1 },\nGlean.network.httpConnectionError.testGetValue()\n);","breadcrumbs":"Metric types » Rate » testGetValue","id":"623","title":"testGetValue"},"624":{"body":"import org.mozilla.yourApplication.GleanMetrics.Network assertEquals( 0, Network.httpConnectionError.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Network; assertEquals( 0, Network.INSTANCE.httpConnectionError().testGetNumRecordedErrors( ErrorType.INVALID_VALUE )\n); XCTAssertEqual( 0, Network.httpConnectionError.testGetNumRecordedErrors(.invalidValue)\n) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") from glean.testing import ErrorType assert 0 == metrics.network.http_connection_error.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::network; assert_eq!( 0, network::http_connection_error.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n); import * as network from \"./path/to/generated/files/network.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 1, await network.httpConnectionError.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Rate » testGetNumRecordedErrors","id":"624","title":"testGetNumRecordedErrors"},"625":{"body":"Example rate metric definition: network: http_connection_error: type: rate description: > How many HTTP connections error out out of the total connections made. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Rate » Metric parameters","id":"625","title":"Metric parameters"},"626":{"body":"If several rates share the same denominator then the denominator should be defined as a counter and shared between rates using the denominator_metric property: network: http_connections: type: counter description: > Total number of http connections made. ... http_connection_error: type: rate description: > How many HTTP connections error out out of the total connections made. denominator_metric: network.http_connections ... http_connection_slow: type: rate description: > How many HTTP connections were slow, out of the total connections made. denominator_metric: network.http_connections ... The Glean JavaScript SDK does not support external denominators for Rate metrics, yet. Follow Bug 1745753 for updates on that features development.","breadcrumbs":"Metric types » Rate » External Denominators","id":"626","title":"External Denominators"},"627":{"body":"How often did an HTTP connection error? How many documents used a given CSS Property?","breadcrumbs":"Metric types » Rate » Data Questions","id":"627","title":"Data Questions"},"628":{"body":"Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Rate » Reference","id":"628","title":"Reference"},"629":{"body":"Records a single long Unicode text, used when the limits on String are too low.","breadcrumbs":"Metric types » Text » Text","id":"629","title":"Text"},"63":{"body":"The Glean SDKs provide support for answering basic product questions out-of-the-box, such as daily active users, product version and platform information. However, it is also a good idea to have a sense of any additional product-specific questions you are trying to answer with telemetry, and, when possible, in collaboration with a data scientist. This of course helps for your own planning, but is also invaluable for the Glean team to support you, since we will understand the ultimate goals of your product's telemetry and ensure the design will meet those goals and we can identify any new features that may be required. It is best to frame this document in the form of questions and use cases rather than as specific data points and schemas.","breadcrumbs":"Integrating Glean for project managers » Building a telemetry plan","id":"63","title":"Building a telemetry plan"},"630":{"body":"This type should only be used in special cases when other metrics don't fit. See limitations below. Reach out to the Glean team before using this.","breadcrumbs":"Metric types » Text » Important","id":"630","title":"Important"},"631":{"body":"","breadcrumbs":"Metric types » Text » Recording API","id":"631","title":"Recording API"},"632":{"body":"Sets a text metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Article Article.content.set(extractedText) import org.mozilla.yourApplication.GleanMetrics.Article; Article.INSTANCE.content().set(extractedText); Article.content.set(extractedText) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.article.content.set(extracted_text) use glean_metrics::article; article::content.set(extracted_text); import * as article from \"./path/to/generated/files/article.js\"; article.content.set(extractedText); Limits Text metrics can only be sent in custom pings . Text metrics are always of data collection category 3 (web_activity) or category 4 (highly_sensitive). Only ping and application lifetimes are allowed. Fixed maximum text length: 200 kilobytes. Longer text is truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Recorded errors invalid_overflow : if the text is too long. invalid_type : if a non-string value is given.","breadcrumbs":"Metric types » Text » set","id":"632","title":"set"},"633":{"body":"","breadcrumbs":"Metric types » Text » Testing API","id":"633","title":"Testing API"},"634":{"body":"Gets the recorded value for a given text metric. Returns the string if data is stored. Returns null if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Article assertEquals(\"some content\", Article.content.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Article; assertEquals(\"some content\", Article.INSTANCE.content().testGetValue()); XCTAssertEqual(\"some content\", Article.content.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert \"some content\" == metrics.article.content.test_get_value() use glean_metrics::article; assert_eq!(\"some content\", article::content.test_get_value(None).unwrap()); import * as article from \"./path/to/generated/files/article.js\"; assert.strictEqual(\"some content\", await article.content.testGetValue());","breadcrumbs":"Metric types » Text » testGetValue","id":"634","title":"testGetValue"},"635":{"body":"Gets the number of errors recorded for a given text metric. import org.mozilla.yourApplication.GleanMetrics.Article // Was the string truncated, and an error reported?\nassertEquals( 0, Article.content.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) import org.mozilla.yourApplication.GleanMetrics.Article; // Was the string truncated, and an error reported?\nassertEquals( 0, Article.content.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n); // Was the string truncated, and an error reported?\nXCTAssertEqual(0, Article.content.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Was the string truncated, and an error reported?\nassert 0 == metrics.article.content.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse glean_metrics::article; // Was the string truncated, and an error reported?\nassert_eq!( 0, article::content.test_get_num_recorded_errors( ErrorType::InvalidOverflow, None )\n); import * as article from \"./path/to/generated/files/article.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await article.content.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Text » testGetNumRecordedErrors","id":"635","title":"testGetNumRecordedErrors"},"636":{"body":"Example text metric definition: article: content: type: text lifetime: ping send_in_pings: - research data_sensitivity: - web_activity description: > The plaintext content of the displayed article. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Text » Metric parameters","id":"636","title":"Metric parameters"},"637":{"body":"What article content was displayed to the user? Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Text » Data questions","id":"637","title":"Data questions"},"638":{"body":"Record structured data.","breadcrumbs":"Metric types » Object » Object","id":"638","title":"Object"},"639":{"body":"","breadcrumbs":"Metric types » Object » Recording API","id":"639","title":"Recording API"},"64":{"body":"The technical steps for integrating Glean in your product are documented in its own chapter for supported platforms. We recommend having a member of the Glean team review this integration to catch any potential pitfalls.","breadcrumbs":"Integrating Glean for project managers » Integrating Glean into your product","id":"64","title":"Integrating Glean into your product"},"640":{"body":"Sets an object metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Party var balloons = Party.BalloonsObject()\nballoons.add(Party.BalloonsObjectItem(colour = \"red\", diameter = 5))\nballoons.add(Party.BalloonsObjectItem(colour = \"green\"))\nParty.balloons.set(balloons) var balloons: Party.BalloonsObject = []\nballoons.append(Party.BalloonsObjectItem(colour: \"red\", diameter: 5))\nballoons.append(Party.BalloonsObjectItem(colour: \"green\"))\nParty.balloons.set(balloons) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") balloons = metrics.BalloonsObject()\nballoons.append(BalloonsObjectItem(colour=\"red\", diameter=5))\nballoons.append(BalloonsObjectItem(colour=\"green\"))\nmetrics.party.balloons.set(balloons) C++ Not yet implemented. JavaScript let balloons = [ { colour: \"red\", diameter: 5 }, { colour: \"blue\", diameter: 7 },\n];\nGlean.party.balloons.set(balloons); Limits Only objects matching the specified structure will be recorded Recorded errors invalid_value : if the passed value doesn't match the predefined structure","breadcrumbs":"Metric types » Object » set","id":"640","title":"set"},"641":{"body":"","breadcrumbs":"Metric types » Object » Testing API","id":"641","title":"Testing API"},"642":{"body":"Gets the recorded value for a given object metric. Returns the data as a JSON object if data is stored. Returns null if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Party val snapshot = metric.testGetValue()!!\nassertEquals(1, snapshot.jsonArray.size) let snapshot = (try! Party.balloons.testGetValue()) as! [Any]\nXCTAssertEqual(1, snapshot.size) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") snapshot = metrics.party.balloons.test_get_value()\nassert 2 == len(snapshot) C++ Not yet implemented. JavaScript // testGetValue will throw a data error on invalid value.\nAssert.equal( [ { colour: \"red\", diameter: 5 }, { colour: \"blue\", diameter: 7 }, ], Glean.party.balloons.testGetValue()\n);","breadcrumbs":"Metric types » Object » testGetValue","id":"642","title":"testGetValue"},"643":{"body":"Gets the number of errors recorded for a given text metric. import org.mozilla.yourApplication.GleanMetrics.Party assertEquals( 0, Party.balloons.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) XCTAssertEqual(0, Party.balloons.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nfrom glean.testing import ErrorType\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.party.balloons.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n)","breadcrumbs":"Metric types » Object » testGetNumRecordedErrors","id":"643","title":"testGetNumRecordedErrors"},"644":{"body":"The definition for an object metric type accepts a structure parameter. This defines the accepted structure of the object using a subset of JSON schema . The allowed types are: string number boolean array object The array type takes an items parameter, that does define the element types it can hold. The object type takes a properties parameter, that defines the nested object structure. array and object metrics can be nested. No other schema parameters are allowed. All fields are optional. Data is validated against this schema at recording time. Missing values will not be serialized into the payload.","breadcrumbs":"Metric types » Object » Metric parameters","id":"644","title":"Metric parameters"},"645":{"body":"party: balloons: type: object description: A collection of balloons bugs: - https://bugzilla.mozilla.org/TODO data_reviews: - http://example.com/reviews notification_emails: - CHANGE-ME@example.com expires: never structure: type: array items: type: object properties: colour: type: string diameter: type: number For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Object » Example object metric definition:","id":"645","title":"Example object metric definition:"},"646":{"body":"What is the crash stack after a Firefox main process crash? Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Object » Data questions","id":"646","title":"Data questions"},"647":{"body":"Glean-owned pings are submitted automatically Products do not need to submit Glean built-in pings, as their scheduling is managed internally. The APIs on this page are only relevant for products defining custom pings .","breadcrumbs":"Pings » Pings","id":"647","title":"Pings"},"648":{"body":"","breadcrumbs":"Pings » Submission API","id":"648","title":"Submission API"},"649":{"body":"Collect and queue a custom ping for eventual uploading. By default, if the ping doesn't currently have any events or metrics set, submit will do nothing. However, if the send_if_empty flag is set to true in the ping definition, it will always be submitted. It is not necessary for the caller to check if Glean is disabled before calling submit. If Glean is disabled submit is a no-op. For example, to submit the custom ping defined in Adding new custom pings : import org.mozilla.yourApplication.GleanMetrics.Pings\nPings.search.submit( Pings.searchReasonCodes.performed\n) import org.mozilla.yourApplication.GleanMetrics.Pings Pings.INSTANCE.search.submit( Pings.INSTANCE.searchReasonCodes.performed\n); import Glean GleanMetrics.Pings.shared.search.submit( reason: .performed\n) from glean import load_pings pings = load_pings(\"pings.yaml\") pings.search.submit(pings.search_reason_codes.PERFORMED) use glean::Pings; pings::search.submit(pings::SearchReasonCodes::Performed); import * as pings from \"./path/to/generated/files/pings.js\"; pings.search.submit(pings.searchReasonCodes.Performed); C++ mozilla::glean_pings::Search.Submit(\"performed\"_ns); JavaScript GleanPings.search.submit(\"performed\");","breadcrumbs":"Pings » submit","id":"649","title":"submit"},"65":{"body":"The Glean SDKs are a collection of cross platform libraries and tools that facilitate collection of Glean conforming telemetry from applications. Consult the list of the currently supported platforms and languages . If your product's tech stack isn't currently supported, please reach out to the Glean team: significant work will be required to create a new integration. In previous efforts, this has ranged from 1 to 3 months FTE of work, so it is important to plan for this work well in advance. While the first phase of this work generally requires the specialized expertise of the Glean team, the second half can benefit from outside developers to move faster.","breadcrumbs":"Integrating Glean for project managers » (Optional) Adapting Glean to your platform","id":"65","title":"(Optional) Adapting Glean to your platform"},"650":{"body":"","breadcrumbs":"Pings » Testing API","id":"650","title":"Testing API"},"651":{"body":"Gets a set of the currently registered ping names. Useful when debugging to know which pings are able to be sent. val knownPings = Glean.getRegisteredPingNames() let knownPings = Glean.shared.getRegisteredPingNames() let known_pings = glean.get_registered_ping_names();","breadcrumbs":"Pings » getRegisteredPingNames","id":"651","title":"getRegisteredPingNames"},"652":{"body":"Runs a validation function before the ping is collected. import org.mozilla.yourApplication.GleanMetrics.Search\nimport org.mozilla.yourApplication.GleanMetrics.Pings // Record some data.\nSearch.defaultEngine.add(5); // Instruct the ping API to validate the ping data.\nvar validatorRun = false\nPings.search.testBeforeNextSubmit { reason -> assertEquals(Pings.searchReasonCodes.performed, reason) assertEquals(5, Search.defaultEngine.testGetValue()) validatorRun = true\n} // Submit the ping.\nPings.search.submit( Pings.searchReasonCodes.performed\n) // Verify that the validator run.\nassertTrue(validatorRun) import org.mozilla.yourApplication.GleanMetrics.Search\nimport org.mozilla.yourApplication.GleanMetrics.Pings // Record some data.\nSearch.INSTANCE.defaultEngine.add(5); // Instruct the ping API to validate the ping data.\nboolean validatorRun = false;\nPings.INSTANCE.search.testBeforeNextSubmit((reason) -> { assertEquals(Pings.searchReasonCodes.performed, reason); assertEquals(5, Search.INSTANCE.defaultEngine.testGetValue()); validatorRun = true;\n}); // Submit the ping.\nPings.INSTANCE.search.submit( Pings.INSTANCE.searchReasonCodes.performed\n); // Verify that the validator run.\nassertTrue(validatorRun); // Record some data.\nSearch.defaultEngine.add(5) // Instruct the ping API to validate the ping data.\nvar validatorRun = false\nGleanMetrics.pings.shared.search.testBeforeNextSubmit { reason in XCTAssertEqual(.performed, reason, \"Unexpected reason for search ping submitted\") XCTAssertEqual(5, try Search.defaultEngine.testGetValue(), \"Unexpected value for default engine in search ping\") validatorRun = true\n} // Submit the ping.\nGleanMetrics.Pings.shared.search.submit( reason: .performed\n) // Verify that the validator run.\nXCTAssert(validatorRun, \"Expected validator to be called by now.\") from glean import load_metrics, load_pings pings = load_pings(\"pings.yaml\")\nmetrics = load_metrics(\"metrics.yaml\") # Record some data.\nmetrics.search.default_engine.add(5) # Need a mutable object and plain booleans are not.\ncallback_was_called = [False] def check_custom_ping(reason): assert reason == pings.search_reason_codes.PERFORMED assert 5 == metrics.search.default_engine.test_get_value() callback_was_called[0] = True # Instruct the ping API to validate the ping data.\npings.search.test_before_next_submit(check_custom_ping) # Submit the ping.\npings.search.submit(pings.search_reason_codes.PERFORMED) # Verify that the validator run.\nassert callback_was_called[0] use glean_metrics::{search, pings}; // Record some data.\nsearch::default_engine.add(5); // Instruct the ping API to validate the ping data.\npings::search.test_before_next_submit(move |reason| { assert_eq!(pings::SearchReasonCodes::Performed, reason); assert_eq!(5, search::default_engine.test_get_value(None).unwrap());\n}); // When the `submit` API is not directly called by the\n// test code, it may be worth checking that the validator\n// function run by using a canary boolean in the closure\n// used in `test_before_next_submit` and asserting on its\n// value after submission. // Submit the ping.\npings::search.submit(pings::SearchReasonCodes::Performed); import * as search from \"./path/to/generated/files/search.js\";\nimport * as pings from \"./path/to/generated/files/pings.js\"; // Record some data.\nsearch.defaultEngine.add(5); // Instruct the ping API to validate the ping data.\nlet validatorRun = false;\nconst p = pings.search.testBeforeNextSubmit(async reason => { assert.strictEqual(reason, \"performed\"); assert.strictEqual(await search.defaultEngine.testGetValue(), 5); validatorRun = true;\n}); // Submit the ping.\npings.search.submit(\"performed\");\n// Wait for the validation to finish.\nassert.doesNotThrow(async () => await p); // Verify that the validator run.\nassert.ok(validatorRun); JavaScript: Glean.search.defaultEngine.add(5);\nlet submitted = false;\nGleanPings.search.testBeforeNextSubmit(reason => { submitted = true; Assert.equal(5, Glean.search.defaultEngine.testGetValue());\n});\nGleanPings.search.submit();\nAssert.ok(submitted); C++: mozilla::glean::search::default_engine.Add(5);\nbool submitted = false;\nmozilla::glean_pings::Search.TestBeforeNextSubmit([&submitted](const nsACString& aReason) { submitted = true; ASSERT_EQ(false, mozilla::glean::search::default_engine.TestGetValue().unwrap().ref());\n});\nmozilla::glean_pings::Search.Submit();\nASSERT_TRUE(submitted); Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » testBeforeNextSubmit","id":"652","title":"testBeforeNextSubmit"},"653":{"body":"The Glean SDKs are available for several programming languages and development environments. Although there are different SDKs, each of them is based off of either a JavaScript core or a Rust core. These cores contain the bulk of the logic of the client libraries. Thin wrappers around them expose APIs for the target platforms. Each SDK may also send a different set of default pings and collect a different set of default metrics . Finally, each SDK may also be [1] accompanied by glean_parser, a Python command line utility that provides a list of useful development tools for developers instrumenting a project using Glean. Some SDKs are not bundled with glean_parser and it is left to the user to install it separately. Rust Core-based SDKs Rust Kotlin Swift Python JavaScript Core-based SDKs JavaScript QML","breadcrumbs":"Overview » Overview","id":"653","title":"Overview"},"654":{"body":"The code for the Rust Core-based SDKs is available on the mozilla/glean repository. These group of SDKs were previously referred to as \"language bindings\" i.e. \"the Kotlin language bindings\" or \"the Python language bindings\".","breadcrumbs":"Overview » Rust Core-based SDKs","id":"654","title":"Rust Core-based SDKs"},"655":{"body":"The Glean Rust SDK can be used with any Rust application. It can serve a wide variety of usage patterns, such as short-lived CLI applications as well as longer-running desktop or server applications. It can optionally send builtin pings at startup. It does not assume an interaction model and the integrating application is responsible to connect the respective hooks. It is available as the glean crate on crates.io.","breadcrumbs":"Overview » Rust","id":"655","title":"Rust"},"656":{"body":"The Glean Kotlin SDK is primarily used for integration with Android applications. It assumes a common interaction model for mobile applications. It sends builtin pings at startup of the integrating application. It is available standalone as org.mozilla.telemetry:glean or via Android Components as org.mozilla.components:service-glean from the Mozilla Maven instance . The Kotlin SDK can also be used from Java. See Android for more on integrating Glean on Android.","breadcrumbs":"Overview » Kotlin","id":"656","title":"Kotlin"},"657":{"body":"The Glean Swift SDK is primarily used for integration with iOS applications. It assumes a common interaction model for mobile applications. It sends builtin pings at startup of the integrating application. It is available as a standalone Xcode framework from the Glean releases page or bundled with the AppServices framework .","breadcrumbs":"Overview » Swift","id":"657","title":"Swift"},"658":{"body":"The Glean Python SDK allows integration with any Python application. It can serve a wide variety of usage patterns, such as short-lived CLI applications as well as longer-running desktop or server applications. It is available as glean-sdk on PyPI .","breadcrumbs":"Overview » Python","id":"658","title":"Python"},"659":{"body":"The code for the JavaScript Core-based SDKs is available on the mozilla/glean.js repository. This collection of SDKs is commonly referred to as Glean.js .","breadcrumbs":"Overview » JavaScript Core-based SDKs","id":"659","title":"JavaScript Core-based SDKs"},"66":{"body":"The Glean SDKs periodically send telemetry to our servers in a bundle known as a \" ping \". For mobile applications with common interaction models, such as web browsers, the Glean SDKs provide basic pings out-of-the-box . For other kinds of products, it may be necessary to carefully design what triggers the submission of a ping. It is important to have a solid telemetry plan (see above) so we can make sure the ping submission will be able to answer the telemetry questions required of the product.","breadcrumbs":"Integrating Glean for project managers » (Optional) Designing ping submission","id":"66","title":"(Optional) Designing ping submission"},"660":{"body":"The Glean JavaScript SDK allows integration with three distint JavaScript environments: websites, web extension and Node.js. It is available as @mozilla/glean on npm . This package has different entry points to access the different SDKs. @mozilla/glean/web gives access to the websites SDK @mozilla/glean/webext gives access to the web extension SDK @mozilla/glean/node gives access to the Node.js SDK","breadcrumbs":"Overview » JavaScript","id":"660","title":"JavaScript"},"661":{"body":"The Glean QML SDK allows integration with Qt/QML applications and libraries. It is available as a compressed file attached to each new Glean.js release and may be downloaded from the project GitHub releases page . Found a bug? Edit this page on GitHub.","breadcrumbs":"Overview » QML","id":"661","title":"QML"},"662":{"body":"The Glean Kotlin SDK can be used in Android applications. The integration into the build system for Android applications can be tuned to your needs. See the following chapters for details. Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Android-specific information","id":"662","title":"Android-specific information"},"663":{"body":"This chapter describes build configuration options that control the behavior of the Glean Kotlin SDK's Gradle plugin. These options are not usually required for normal use. Options can be turned on by setting a variable on the Gradle ext object before applying the Glean Gradle plugin.","breadcrumbs":"Android » Android build configuration options » Android build script configuration options","id":"663","title":"Android build script configuration options"},"664":{"body":"Overwrite the auto-generated build date. If set to 0 a static UNIX epoch time will be used. If set to a ISO8601 datetime string it will use that date. Note that any timezone offset will be ignored and UTC will be used. For other values it will throw an error. ext.gleanBuildDate = \"2022-01-03T17:30:00\"","breadcrumbs":"Android » Android build configuration options » gleanBuildDate","id":"664","title":"gleanBuildDate"},"665":{"body":"Normally, the Glean Kotlin SDK looks for metrics.yaml and pings.yaml files in the root directory of the Glean-using project. However, in some cases, these files may need to ship inside the dependencies of the project. For example, this is used in the engine-gecko component to grab the metrics.yaml from the geckoview AAR. ext.allowMetricsFromAAR = true When this flag is set, every direct dependency of your library will be searched for a metrics.yaml file, and those metrics will be treated as the metrics as if they were defined by your library. That is, API wrappers accessible from your library will be generated for those metrics. The metrics.yaml can be added to the dependency itself by calling this on each relevant build variant: variant.packageLibraryProvider.get().from(\"${topsrcdir}/path/metrics.yaml\")","breadcrumbs":"Android » Android build configuration options » allowMetricsFromAAR","id":"665","title":"allowMetricsFromAAR"},"666":{"body":"The Glean Kotlin SDK can automatically generate Markdown documentation for metrics and pings defined in the registry files, in addition to the metrics API code. ext.gleanGenerateMarkdownDocs = true Flipping the feature to true will generate a metrics.md file in $projectDir/docs at build-time. In general this is not necessary for projects using Mozilla's data ingestion infrastructure: in those cases human-readable documentation will automatically be viewable via the Glean Dictionary .","breadcrumbs":"Android » Android build configuration options » gleanGenerateMarkdownDocs","id":"666","title":"gleanGenerateMarkdownDocs"},"667":{"body":"The gleanDocsDirectory can be used to customize the path of the documentation output directory. If gleanGenerateMarkdownDocs is disabled, it does nothing. Please note that only the metrics.md will be overwritten: any other file available in the target directory will be preserved. ext.gleanDocsDirectory = \"$rootDir/docs/user/telemetry\"","breadcrumbs":"Android » Android build configuration options » gleanDocsDirectory","id":"667","title":"gleanDocsDirectory"},"668":{"body":"By default, the Glean Gradle plugin will look for metrics.yaml and pings.yaml files in the same directory that the plugin is included from in your application or library. To override this, ext.gleanYamlFiles may be set to a list of explicit paths. ext.gleanYamlFiles = [\"$rootDir/glean-core/metrics.yaml\", \"$rootDir/glean-core/pings.yaml\"]","breadcrumbs":"Android » Android build configuration options » gleanYamlFiles","id":"668","title":"gleanYamlFiles"},"669":{"body":"Expire the metrics and pings by version, using the provided major version. If enabled, expiring metrics or pings by date will produce an error. ext.gleanExpireByVersion = 25 Different products have different ways to compute the product version at build-time. For this reason the Glean Gradle plugin cannot provide an automated way to detect the product major version at build time. When using the expiration by version feature in Android, products must provide the major version by themselves.","breadcrumbs":"Android » Android build configuration options » gleanExpireByVersion","id":"669","title":"gleanExpireByVersion"},"67":{"body":"The Glean SDKs have a number of different metric types that it can collect. Metric types provide \"guardrails\" to make sure that telemetry is being collected correctly, and to present the data at analysis time more automatically. Occasionally, products need to collect data that doesn't fit neatly into one of the available metric types. Glean has a process to request and introduce more metric types and we will work with you to design something appropriate. This design and implementation work is at least 4 weeks, though we are working on the foundation to accelerate that. Having a telemetry plan (see above) will help to identify this work early.","breadcrumbs":"Integrating Glean for project managers » (Optional) New metric types","id":"67","title":"(Optional) New metric types"},"670":{"body":"By default, the Glean Gradle plugin will manage its own Python virtualenv in $gradleUserHomeDir/glean to install glean_parser. By specifying a path in ext.gleanPythonEnvDir you can reuse an existing Python virtualenv. ext.gleanPythonEnvDir = \"$buildDir/externallyManagedVenv\" glean_parser must be available in that virtualenv, the Gradle plugin will make no attempt at installing it. Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Android build configuration options » gleanPythonEnvDir","id":"670","title":"gleanPythonEnvDir"},"671":{"body":"The Glean Kotlin SDK has basic support for building Android applications that use Glean in offline mode. The Glean Kotlin SDK uses a Python script, glean_parser to generate code for metrics from the metrics.yaml and pings.yaml files when Glean-using applications are built. When online, the pieces necessary to run this script are installed automatically. For offline builds, the Python environment, and packages of glean_parser and its dependencies must be provided prior to building the Glean-using application. To build a Glean-using application in offline mode, you can either:","breadcrumbs":"Android » Android offline builds » Offline builds of Android applications that use Glean","id":"671","title":"Offline builds of Android applications that use Glean"},"672":{"body":"Set ext.gleanPythonEnvDir to your existing virtualenv before applying the plugin, see gleanPythonEnvDir .","breadcrumbs":"Android » Android offline builds » Provide an externally-managed virtualenv","id":"672","title":"Provide an externally-managed virtualenv"},"673":{"body":"In this mode Glean will setup its own virtualenv in $gradleUserHomeDir/glean, controlled by the GLEAN_PYTHON and GLEAN_PYTHON_WHEELS_DIR environment variables. Install Python 3.8 or later and ensure it's on the PATH. On Linux, installing Python from your Linux distribution's package manager is usually sufficient. On macOS, installing Python from homebrew is known to work, but other package managers may also work. On Windows, we recommend installing one of the official Python installers from python.org . Determine the version of glean_parser required. It can be really difficult to manually determine the version of glean_parser that is required for a given application, since it needs to be tracked through android-components, to glean-core and finally to glean_parser. The required version of glean_parser can be determined by running the following at the top-level of the Glean-using application: $ ./gradlew | grep \"Requires glean_parser\"\nRequires glean_parser==1.28.1 Download packages for glean_parser and its dependencies: In the root directory of the Glean-using project, create a directory called glean-wheels and cd into it. Download packages for glean_parser and its dependencies, replacing X.Y.Z with the correct version of glean_parser: $ python3 -m pip download glean_parser==X.Y.Z Build the Glean-using project using ./gradlew, but passing in the --offline flag. There are a couple of environment variables that control offline building: To override the location of the Python interpreter to use, set the GLEAN_PYTHON environment variable. If unset, the first Python interpreter on the PATH will be used. To override the location of the downloaded Python wheels, set the GLEAN_PYTHON_WHEELS_DIR environment variable. If unset ${projectDir}/glean-wheels will be used. Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Android offline builds » Provide a Python interpreter and the required wheels","id":"673","title":"Provide a Python interpreter and the required wheels"},"674":{"body":"One of the things that might be useful to collect data on in an Android application is crashes. This guide will walk through a basic strategy for instrumenting an Android application with crash telemetry using a custom ping. Note: This is a very simple example of instrumenting crashes using the Glean SDK. There will be challenges to using this approach in a production application that should be considered. For instance, when an app crashes it can be in an unknown state and may not be able to do things like upload data to a server. The recommended way of instrumenting crashes with Android Components is called lib-crash , which takes into consideration things like multiple processes and persistence.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Instrumenting Android crashes with the Glean SDK","id":"674","title":"Instrumenting Android crashes with the Glean SDK"},"675":{"body":"There are a few things that need to be installed in order to proceed, mainly Android Studio . If you include the Android SDK, Android Studio can take a little while to download and get installed. This walk-through assumes some knowledge of Android application development. Knowing where to go to create a new project and how to add dependencies to a Gradle file will be helpful in following this guide.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Before You Start","id":"675","title":"Before You Start"},"676":{"body":"Please follow the instruction in the \"Adding Glean to your project\" chapter in order to set up Glean in an Android project.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Setup Build Configuration","id":"676","title":"Setup Build Configuration"},"677":{"body":"Since crashes will be instrumented with some custom metrics, the next step will be to add a metrics.yaml file to define the metrics used to record the crash information and a pings.yaml file to define a custom ping which will give some control over the scheduling of the uploading. See \"Adding new metrics\" for more information about adding metrics. What metric type should be used to represent the crash data? While this could be implemented several ways, an event is an excellent choice, simply because events capture information in a nice concise way and they have a built-in way of passing additional information using the extras field. If it is necessary to pass along the cause of the exception or a few lines of description, events let us do that easily (with some limitations ). Now that a metric type has been chosen to represent the metric, the next step is creating the metrics.yaml. Inside of the root application folder of the Android Studio project create a new file named metrics.yaml. After adding the schema definition and event metric definition, the metrics.yaml should look like this: # Required to indicate this is a `metrics.yaml` file\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 crash: exception: type: event description: | Event to record crashes caused by unhandled exceptions notification_emails: - crashes@example.com bugs: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 expires: 2021-01-01 send_in_pings: - crash extra_keys: cause: description: The cause of the crash message: description: The exception message As a brief explanation, this creates a metric called exception within a metric category called crash. There is a text description and the required notification_emails, bugs, data_reviews, and expires fields. The send_in_pings field is important to note here that it has a value of - crash. This means that the crash event metric will be sent via a custom ping named crash (which hasn't been created yet). Finally, note the extra_keys field which has two keys defined, cause and message. This allows for sending additional information along with the event to be associated with these keys. Note: For Mozilla applications, a mandatory data review is required in order to collect information with the Glean SDK.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Add A Custom Metric","id":"677","title":"Add A Custom Metric"},"678":{"body":"Define the custom ping that will help control the upload scheduling by creating a pings.yaml file in the same directory as the metrics.yaml file. For more information about adding custom pings, see the section on custom pings . The name of the ping will be crash, so the pings.yaml file should look like this: # Required to indicate this is a `pings.yaml` file\n$schema: moz://mozilla.org/schemas/glean/pings/2-0-0 crash: description: > A ping to transport crash data include_client_id: true notification_emails: - crash@example.com bugs: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 Before the newly defined metric or ping can be used, the application must first be built. This will cause the glean_parser to execute and generate the API files that represent the metric and ping that were newly defined. Note: If changes to the YAML files aren't showing up in the project, try running the clean task on the project before building any time one of the Glean YAML files has been modified. It is recommended that Glean be initialized as early in the application startup as possible, which is why it's good to use a custom Application, like the Glean Sample App GleanApplication.kt . Initializing Glean in the Application.onCreate() is ideal for this purpose. Start by adding the import statement to allow the usage of the custom ping that was created, adding the following to the top of the file: import org.mozilla.gleancrashexample.GleanMetrics.Pings Next, register the custom ping by calling Glean.registerPings(Pings) in the onCreate() function, preferably before calling Glean.initialize(). The completed function should look something like this: override fun onCreate() { super.onCreate() // Register the application's custom pings. Glean.registerPings(Pings) // Initialize the Glean library Glean.initialize(applicationContext)\n} This completes the registration of the custom ping with the Glean Kotlin SDK so that it knows about it and can manage the storage and other important details of it like sending it when send() is called.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Add A Custom Ping","id":"678","title":"Add A Custom Ping"},"679":{"body":"In order to make the custom Application class handle uncaught exceptions, extend the class definition by adding Thread.UncaughtExceptionHandler as an inherited class like this: class MainActivity : AppCompatActivity(), Thread.UncaughtExceptionHandler { ...\n} As part of implementing the Thread.UncaughtExceptionHandler interface, the custom Application needs to implement the override of the uncaughtException() function. An example of this override that records data and sends the ping could look something like this: override fun uncaughtException(thread: Thread, exception: Throwable) { Crash.exception.record( mapOf( Crash.exceptionKeys.cause to exception.cause!!.toString(), Crash.exceptionKeys.message to exception.message!! ) ) Pings.crash.submit()\n} This records data to the Crash.exception metric from the metrics.yaml. The category of the metric is crash and the name is exception so it is accessed it by calling record() on the Crash.exception object. The extra information for the cause and the message is set as well. Finally, calling Pings.crash.submit() forces the crash ping to be scheduled to be sent. The final step is to register the custom Application as the default uncaught exception handler by adding the following to the onCreate() function after Glean.initialize(this): Thread.setDefaultUncaughtExceptionHandler(this)","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Instrument The App To Record The Event","id":"679","title":"Instrument The App To Record The Event"},"68":{"body":"To use GLAM for analysis of your application's data file a ticket in the GLAM repository . A data engineer from the GLAM team will reach out to you if further information is required. Found a bug? Edit this page on GitHub.","breadcrumbs":"Integrating Glean for project managers » Integrating Glean into GLAM","id":"68","title":"Integrating Glean into GLAM"},"680":{"body":"This information didn't really get recorded by anything, as it would be rejected by the telemetry pipeline unless the application was already known. In order to collect telemetry from a new application, there is additional work that is necessary that is beyond the scope of this example. In order for data to be collected from your project, metadata must be added to the probe_scraper. The instructions for accomplishing this can be found in the probe_scraper documentation . Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Next Steps","id":"680","title":"Next Steps"},"681":{"body":"The Glean Swift SDK can be used in iOS applications. The integration into the build system for iOS applications can be tuned to your needs. See the following chapters for details. Found a bug? Edit this page on GitHub.","breadcrumbs":"iOS » iOS-specific information","id":"681","title":"iOS-specific information"},"682":{"body":"This chapter describes build configuration options that control the behavior of the Glean Swift SDK's sdk_generator.sh. These options are not usually required for normal use. Options can be passed as command-line flags.","breadcrumbs":"iOS » iOS build configuration options » iOS build script configuration options","id":"682","title":"iOS build script configuration options"},"683":{"body":"Default: $SOURCE_ROOT/$PROJECT/Generated The folder to place generated code in.","breadcrumbs":"iOS » iOS build configuration options » --output / -o / -o / -b ","id":"684","title":"--build-date / -b "},"685":{"body":"Default: none. Expire the metrics and pings by version, using the provided major version. If enabled, expiring metrics or pings by date will produce an error. bash sdk_generator.sh --expire-by-version 95 Different products have different ways to compute the product version at build-time. For this reason the sdk_generator.sh script cannot provide an automated way to detect the product major version at build time. When using the expiration by version feature in iOS, products must provide the major version by themselves.","breadcrumbs":"iOS » iOS build configuration options » --expire-by-version ","id":"685","title":"--expire-by-version "},"686":{"body":"Default: unset. The Glean Swift SDK can automatically generate Markdown documentation for metrics and pings defined in the registry files, in addition to the metrics API code. If set the documentation will be generated in the provided path. bash sdk_generator.sh --markdown $SOURCE_ROOT/docs In general this is not necessary for projects using Mozilla's data ingestion infrastructure: in those cases human-readable documentation will automatically be viewable via the Glean Dictionary .","breadcrumbs":"iOS » iOS build configuration options » --markdown / -m ","id":"686","title":"--markdown / -m "},"687":{"body":"Default: Glean The Glean namespace to use in generated code. bash sdk_generator.sh --glean-namespace AnotherGlean If you are using the combined release of application-services and the Glean Swift SDK you need to set the namespace to MozillaAppServices, e.g.: bash sdk_generator.sh --glean-namespace MozillaAppServices Found a bug? Edit this page on GitHub.","breadcrumbs":"iOS » iOS build configuration options » --glean-namespace / -g ","id":"687","title":"--glean-namespace / -g "},"688":{"body":"The Glean JavaScript SDK allows integration with three distinct JavaScript environments: websites, web extension and Node.js. It is available as @mozilla/glean on npm . This package has different entry points to access the different SDKs. @mozilla/glean/web gives access to the websites SDK @mozilla/glean/webext gives access to the web extension SDK @mozilla/glean/node gives access to the Node.js SDK Found a bug? Edit this page on GitHub.","breadcrumbs":"JavaScript » Glean JavaScript SDK","id":"688","title":"Glean JavaScript SDK"},"689":{"body":"The @mozilla/glean package exposes the glean CLI. This utility installs glean_parser in a virtual environment and allows users to execute glean_parser command through it. In order to get a list of all commands available run npx glean --help.","breadcrumbs":"JavaScript » Command Line Interface » Command Line Interface","id":"689","title":"Command Line Interface"},"69":{"body":"","breadcrumbs":"Metrics » Adding new metrics","id":"69","title":"Adding new metrics"},"690":{"body":"The glean CLI will look for / create a .venv virtual environment at the directory it is called from and install glean_parser there by default. However, it is possible to customize the directory in which it looks for a virtual environment, by setting the VIRTUAL_ENV environment variable. Example: VIRTUAL_ENV=\"my/venv/path\" npx glean --help By default Glean will try and use specific binaries based on the platform: python.exe on windows and python3 everywhere else. You can customize the Python binary used through environment variables. You are able to define both GLEAN_PYTHON and GLEAN_PIP. Example: Mac: export GLEAN_PYTHON=\nexport GLEAN_PIP= Windows: SET GLEAN_PYTHON=\nSET GLEAN_PIP=","breadcrumbs":"JavaScript » Command Line Interface » Customizing virtual environment","id":"690","title":"Customizing virtual environment"},"691":{"body":"The VIRTUAL_ENV environment variable is automatically set while a virtual environment in active , in which case Glean will not create a new environment, but use the currently active one.","breadcrumbs":"JavaScript » Command Line Interface » What if the glean command is called from inside an active virtual environment?","id":"691","title":"What if the glean command is called from inside an active virtual environment?"},"692":{"body":"In order to prevent the glean CLI from installing glean_parser itself, it must be provided with the path to a virtual environment that already has glean_parser installed. When doing that it is important to keep the separate installation of glean_parser in sync with the version expected by the Glean SDK version in use. The glean CLI exposes the --glean-parser-version command that returns the expected version of glean_parser for such use cases. With this command it is possible to something like: pip install -U glean_parser==$(npx glean --glean-parser-version) Found a bug? Edit this page on GitHub.","breadcrumbs":"JavaScript » Command Line Interface » Preventing automatic installation of glean_parser","id":"692","title":"Preventing automatic installation of glean_parser"},"693":{"body":"The Glean JavaScript SDK accepts a plugin array as an initialization parameter. import Glean from \"@mozilla/glean/webext\"\n// This is not a real available plugin,\n// it is a hypothetical one for illustration purposes.\nimport HypotheticalPlugin from \"@mozilla/glean/plugins/hypothetical\" Glean.initialize( \"my.fancy.modified.app\", uploadStatus, { plugins: [ new HypotheticalPlugin(\"with\", \"hypothetical\", \"arguments\") ] }\n); Plugins attach to specific internal events on the SDK and can modify its behavior. A big advantage of plugins is that they can address very specific use cases of Glean without bloating the final size of the SDK or overloading Glean's configuration object.","breadcrumbs":"JavaScript » Plugins » Plugins","id":"693","title":"Plugins"},"694":{"body":"It is not currently possible for users to write their own plugins, as this feature is still in its infancy.","breadcrumbs":"JavaScript » Plugins » On writing your own plugins","id":"694","title":"On writing your own plugins"},"695":{"body":"","breadcrumbs":"JavaScript » Plugins » Available plugins","id":"695","title":"Available plugins"},"696":{"body":"The PingEncryptionPlugin encrypts the pings payloads before pings are sent. Found a bug? Edit this page on GitHub.","breadcrumbs":"JavaScript » Plugins » PingEncryptionPlugin","id":"696","title":"PingEncryptionPlugin"},"697":{"body":"The PingEncryptionPlugin encrypts the pings payloads before pings are sent. The encryption happens after a ping is collected and before it is sent, the scope of this plugin does not include data encryption before collection. In other words, Glean will still store plain data on the user's machine and the data will only be encrypted during transit. Encrypted pings will not be compliant with the usual Glean ping schema . Instead they will follow a specific encrypted ping schema that looks like this: { \"payload\": \"eyJhbGciOiJFQ0RILUVTI...\"\n} The schema has one field, payload, which is an unbounded string containing the output of the encryption of the common Glean payload. Since JSON is the supported transport for our data ingestion platform, the encrypted payload will be in the JWE Compact Serialization format and must include a key id (kid) header identifying the public key used for encryption. A matching key is derived from the document namespace that uniquely identifies the application instead of the key id derived from the public key.","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » PingEncryptionPlugin","id":"697","title":"PingEncryptionPlugin"},"698":{"body":"The encryption key is provisioned by Data SRE and must be generated before new pings can be successfully ingested into a data store. Without a valid encryption key, the Glean pipeline will not be able to parse the pings and they will be thrown into the error stream. The encryption key should be requested as part of the process of adding a Glean application id to the ingestion pipeline (see this checklist ).","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » Requesting an encryption key","id":"698","title":"Requesting an encryption key"},"699":{"body":"","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » Usage","id":"699","title":"Usage"},"7":{"body":"The Glean SDKs Source Code is subject to the terms of the Mozilla Public License v2.0. You can obtain a copy of the MPL at https://mozilla.org/MPL/2.0/ .","breadcrumbs":"Glean » License","id":"7","title":"License"},"70":{"body":"Process overview Choosing a metric type Is it a single measurement? Are you measuring user behavior? Are you counting things? Are you measuring time? For how long do you need to collect this data? When should the Glean SDK automatically clear the measurement? A lifetime example What if none of these lifetimes are appropriate? What should this new metric be called? Reuse names from other applications Make names unique within an application Be as specific as possible What if none of these metric types is the right fit? How do I make sure my metric is working? Adding the metric to the metrics.yaml file Using the metric from your code Capitalization","breadcrumbs":"Metrics » Table of Contents","id":"70","title":"Table of Contents"},"700":{"body":"//esm\nimport PingEncryptionPlugin from \"@mozilla/glean/plugins/encryption\"\n// cjs\nconst { default: PingEncryptionPlugin } = require(\"@mozilla/glean/plugins/encryption\");","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » Entry point","id":"700","title":"Entry point"},"701":{"body":"The PingEncryptionPlugin constructor expects a JWK as a parameter. This JWK is the key provided by Data SRE during the \"Requesting an encryption key\" step. Glean.initialize({ \"my.fancy.encrypted.app\", uploadStatus, { plugins: [ new PingEncryptionPlugin({ \"crv\": \"P-256\", \"kid\": \"fancy\", \"kty\": \"EC\", \"x\": \"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\", \"y\": \"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\" }) ] }\n}); Note on logPings The logPings debug feature can still be used if ping encryption is turned on. Pings will be logged in their plain format, right before encryption happens. Found a bug? Edit this page on GitHub.","breadcrumbs":"JavaScript » Plugins » Ping Encryption Plugin » Instantiating","id":"701","title":"Instantiating"},"702":{"body":"A glossary with explanations and background for wording used in the Glean project.","breadcrumbs":"Glossary » Glossary","id":"702","title":"Glossary"},"703":{"body":"According to the dictionary the word “glean” means: to gather information or material bit by bit Glean is the combination of the Glean SDK, the Glean pipeline & Glean tools. See also: Glean - product analytics & telemetry .","breadcrumbs":"Glossary » Glean","id":"703","title":"Glean"},"704":{"body":"The general data pipeline is the infrastructure that collects, stores, and analyzes telemetry data from our products and logs from various services. See An overview of Mozilla’s Data Pipeline . The Glean pipeline additionally consists of the Probe Info Service , the schema generator , the JSON Schema transpiler , the ping schemas .","breadcrumbs":"Glossary » Glean Pipeline","id":"704","title":"Glean Pipeline"},"705":{"body":"The Glean SDKs are a bundle of libraries with support for different platforms. The source code is available at https://github.com/mozilla/glean and https://github.com/mozilla/glean.js .","breadcrumbs":"Glossary » Glean SDKs","id":"705","title":"Glean SDKs"},"706":{"body":"This documentation.","breadcrumbs":"Glossary » Glean SDKs book","id":"706","title":"Glean SDKs book"},"707":{"body":"Glean provides additional tools for its usage: Glean parser (Source code: https://github.com/mozilla/glean_parser/ )","breadcrumbs":"Glossary » Glean tools","id":"707","title":"Glean tools"},"708":{"body":"Metrics are the individual things being measured using Glean. They are defined in metrics.yaml files, also known as registry files . Glean itself provides some metrics out of the box .","breadcrumbs":"Glossary » Metric","id":"708","title":"Metric"},"709":{"body":"A ping is a bundle of related metrics, gathered in a payload to be transmitted. The Glean SDKs provide default pings and allows for custom pings, see Glean Pings .","breadcrumbs":"Glossary » Ping","id":"709","title":"Ping"},"71":{"body":"When adding a new metric, the process is: Consider the question you are trying to answer with this data, and choose the metric type and parameters to use. Add a new entry to metrics.yaml . Add code to your project to record into the metric by calling the Glean SDK. Important : Any new data collection requires documentation and data-review . This is also required for any new metric automatically collected by the Glean SDK.","breadcrumbs":"Metrics » Process overview","id":"71","title":"Process overview"},"710":{"body":"\"To submit\" means to collect & to enqueue a ping for uploading. The Glean SDKs store locally all the metrics set by it or by its clients. Each ping has its own schedule to gather all its locally saved metrics and create a JSON payload with them. This is called \"collection\". Upon successful collection, the payload is queued for upload, which may not happen immediately or at all (in case network connectivity is not available). Unless the user has defined their own custom pings, they don’t need to worry too much about submitting pings. All the default pings have their scheduling and submission handled by the SDK.","breadcrumbs":"Glossary » Submission","id":"710","title":"Submission"},"711":{"body":"The measurement window of a ping is the time frame in which metrics are being actively gathered for it. The measurement window start time is the moment the previous ping is submitted. In the absence of a previous ping, this time will be the time the application process started. The measurement window end time is the moment the current ping gets submitted. Any new metric recorded after submission will be part of the next ping, so this pings measurement window is over.","breadcrumbs":"Glossary » Measurement window","id":"711","title":"Measurement window"},"712":{"body":"This Week in Glean is a series of blog posts that the Glean Team at Mozilla is using to try to communicate better about our work. Found a bug? Edit this page on GitHub.","breadcrumbs":"Glossary » This Week in Glean (TWiG)","id":"712","title":"This Week in Glean (TWiG)"},"713":{"body":"mozilla/glean mozilla/glean.js Found a bug? Edit this page on GitHub.","breadcrumbs":"Changelog » Changelog","id":"713","title":"Changelog"},"714":{"body":"Full changelog","breadcrumbs":"Changelog » mozilla/glean » Unreleased changes","id":"714","title":"Unreleased changes"},"715":{"body":"Full changelog General Add methods to access current Glean debugging settings and the list of currently registered pings( Bug 1921976 ). Require glean_parser v16.1.0 ( #3006 ) BREAKING CHANGE: Add new collection-enabled mode (and follows_collection_enabled setting for pings). This allows to control a subset of pings independently from the Glean-wide upload-enabled flag. This deprecates the setUploadEnabled API in favor of setCollectionEnabled. ( #3006 ) Rust Permit Glean shutdown to interrupt UploadManager Wait tasks ( bug 1928288 )","breadcrumbs":"Changelog » mozilla/glean » v63.0.0 (2024-11-28)","id":"715","title":"v63.0.0 (2024-11-28)"},"716":{"body":"Full changelog General BREAKING : Remove LMDB-to-safe-mode migration. Safe-mode became the default in Glean v51. ( bug 1780370 ) BREAKING : Stop sending buckets with 0 counts in memory_distribution and timing_distribution metric payloads ( bug 1898336 ) Require glean_parser v15.2.0 ( bug 1925346 ) Disabled the glean.database.write_time metric as the instrumented behavior was triggering metrics pings to be sent containing only that metric ( Bug 1928168 ) Rust New Metric Type: labeled_quantity ( bug 1925346 )","breadcrumbs":"Changelog » mozilla/glean » v62.0.0 (2024-11-05)","id":"716","title":"v62.0.0 (2024-11-05)"},"717":{"body":"Full changelog Kotlin Accept a ping schedule map on initialize ( #2967 ) Swift Accept a ping schedule map on initialize ( #2967 )","breadcrumbs":"Changelog » mozilla/glean » v61.2.0 (2024-10-07)","id":"717","title":"v61.2.0 (2024-10-07)"},"718":{"body":"Full changelog Kotlin Change Metrics Ping Scheduler to use daemon threads ( #2930 ) Dispatch metric recording for event, object and timing distribution on the task queue ( #2942 ) Rust Experimental : Buffered API for timing, memory and custom distribution ( #2948 )","breadcrumbs":"Changelog » mozilla/glean » v61.1.0 (2024-09-24)","id":"718","title":"v61.1.0 (2024-09-24)"},"719":{"body":"Full changelog General BREAKING CHANGE: Updated to UniFFI 0.28.0 ( #2920 ) BREAKING CHANGE: Update to glean_parser v15.0.0 ( release notes ) Kotlin BREAKING CHANGE: Remove now obsolete type alias ( #2935 )","breadcrumbs":"Changelog » mozilla/glean » v61.0.0 (2024-08-21)","id":"719","title":"v61.0.0 (2024-08-21)"},"72":{"body":"The following is a set of questions to ask about the data being collected to help better determine which metric type to use.","breadcrumbs":"Metrics » Choosing a metric type","id":"72","title":"Choosing a metric type"},"720":{"body":"Full changelog General Make auto-flush behavior configurable and time-based ( #2871 ) Require glean_parser v14.5.0 ( #2916 ) Android Update to Gradle v8.9 ( #2909 ) Fixed GleanTestLocalServer test rule to prevent leaking between tests( Bug 1787234 ) Rust Remove cargo feature preinit_million_queue and set the default pre-init queue size to 10^6 for all consumers ( Bug 1909246 )","breadcrumbs":"Changelog » mozilla/glean » v60.5.0 (2024-08-06)","id":"720","title":"v60.5.0 (2024-08-06)"},"721":{"body":"Full changelog General Bump the string length limit to 255 characters ( #2857 ) New metric glean.database.write_time to measure database writes ( #2845 ) Require glean_parser v14.3.0 ( bug 1909244 ) Android Delay log init until Glean is getting initialized ( #2858 ) Update to Gradle v8.8 ( #2860 ) Updated Kotlin to version 1.9.24 ( #2861 ) Default-enable delayPingLifetimeIo ( #2863 ) Preparing Glean to be able to remove service-glean from Android Components ( #2891 ) Gradle Plugin: Support for using an external Python environment ( #2889 ) Rust New Metric Types: labeled_custom_distribution, labeled_memory_distribution, and labeled_timing_distribution ( bug 1657947 )","breadcrumbs":"Changelog » mozilla/glean » v60.4.0 (2024-07-23)","id":"721","title":"v60.4.0 (2024-07-23)"},"722":{"body":"Full changelog Android Allow configuring delayPingLifetimeIo in Kotlin and auto-flush this data after 1000 writes. It is also auto-flushed on background. ( #2851 )","breadcrumbs":"Changelog » mozilla/glean » v60.3.0 (2024-05-31)","id":"722","title":"v60.3.0 (2024-05-31)"},"723":{"body":"Full changelog Rust Accept a ping schedule map on initialize ( #2839 )","breadcrumbs":"Changelog » mozilla/glean » v60.2.0 (2024-05-23)","id":"723","title":"v60.2.0 (2024-05-23)"},"724":{"body":"Full changelog Android Allow configuring delayPingLifetimeIo in Kotlin and auto-flush this data after 1000 writes. It is also auto-flushed on background. ( #2851 ) (Backported changes)","breadcrumbs":"Changelog » mozilla/glean » v60.1.1 (2024-05-31)","id":"724","title":"v60.1.1 (2024-05-31)"},"725":{"body":"Full changelog Rust New TimingDistribution API for no-allocation single-duration accumulation. ( bug 1892097 ) Python Replace use of deprecated functionality (and make installs work on Python 3.12) ( #2820 )","breadcrumbs":"Changelog » mozilla/glean » v60.1.0 (2024-05-06)","id":"725","title":"v60.1.0 (2024-05-06)"},"726":{"body":"Full changelog Android Allow configuring delayPingLifetimeIo in Kotlin and auto-flush this data after 1000 writes. It is also auto-flushed on background. ( #2851 ) (Backported changes)","breadcrumbs":"Changelog » mozilla/glean » v60.0.1 (2024-05-31)","id":"726","title":"v60.0.1 (2024-05-31)"},"727":{"body":"Full changelog General BREAKING CHANGE: Server Knobs API changes requiring changes to consuming applications which make use of Server Knobs ( Bug 1889114 ) BREAKING CHANGE: Deprecated Server Knobs API setMetricsDisabled has been removed from all bindings. ( #2792 ) Added support for ping_schedule metadata property so that pings can be scheduled to be sent when other pings are sent. ( #2791 ) Android Updated Kotlin to version 1.9.23 ( #2737 ) New metric type: Object ( #2796 ) iOS New metric type: Object ( #2796 ) Python New metric type: Object ( #2796 )","breadcrumbs":"Changelog » mozilla/glean » v60.0.0 (2024-04-22)","id":"727","title":"v60.0.0 (2024-04-22)"},"728":{"body":"Full changelog General Hide glean_timestamp from event extras in tests ( #2776 ) Timing Distribution's timer ids now begin at 1, rather than 0, to make some multi-language use cases easier. ( 2777 ) Add a configuration option to disable internal pings ( #2786 ) Updated to UniFFI 0.27.0 ( #2762 )","breadcrumbs":"Changelog » mozilla/glean » v59.0.0 (2024-03-28)","id":"728","title":"v59.0.0 (2024-03-28)"},"729":{"body":"Full changelog General Enable wall clock timestamp on all events by default ( #2767 ) Rust Timing distribution and Custom distributions now expose accumulate_single_sample. This includes their traits and consumers that make use of them will need to implement the new functions ( Bug 1881297 ) Android Timing and Custom Distributions now have a accumulate_single_sample API that don't require use of a collection ( Bug 1881297 ) Python Timing Distributions now have both a accumulate_samples and accumulate_single_sample ( Bug 1881297 )","breadcrumbs":"Changelog » mozilla/glean » v58.1.0 (2024-03-12)","id":"729","title":"v58.1.0 (2024-03-12)"},"73":{"body":"If the value is true or false, use a boolean metric . If the value is a string, use a string metric . For example, to record the name of the default search engine. Beware: string metrics are exceedingly general, and you are probably best served by selecting the most specific metric for the job, since you'll get better error checking and richer analysis tools for free. For example, avoid storing a number in a string metric --- you probably want a counter metric instead. If you need to store multiple string values in a metric, use a string list metric . For example, you may want to record the list of other Mozilla products installed on the device. For all of the metric types in this section that measure single values, it is especially important to consider how the lifetime of the value relates to the ping it is being sent in. Since these metrics don't perform any aggregation on the client side, when a ping containing the metric is submitted, it will contain only the \"last known\" value for the metric, potentially resulting in data loss . There is further discussion of metric lifetimes below.","breadcrumbs":"Metrics » Is it a single measurement?","id":"73","title":"Is it a single measurement?"},"730":{"body":"Full changelog General Update glean_parser to v13.0.0 ( release notes ) Rust New metric type: Object ( #2489 ) BREAKING CHANGE: Support pings without {client|ping}_info sections ( #2756 ) Android Upgrade Android NDK to r26c ( #2745 )","breadcrumbs":"Changelog » mozilla/glean » v58.0.0 (2024-02-29)","id":"730","title":"v58.0.0 (2024-02-29)"},"731":{"body":"Full changelog General Added an experimental event listener API ( #2719 ) Android BREAKING CHANGE: Update JNA to version 5.14.0. Projects using older JNA releases may encounter errors until they update. ( #2727 ) Set the target Android SDK to version 34 ( #2709 ) Fixed an incorrectly named method. The method is now correctly named setExperimentationId. Update to Gradle v8.6 ( #2721 / #2731 )","breadcrumbs":"Changelog » mozilla/glean » v57.0.0 (2024-02-12)","id":"731","title":"v57.0.0 (2024-02-12)"},"732":{"body":"Full changelog General Errors are now recorded in cases where we had to create a new data store for Glean due to a failure ( bug 1815253 ) Update glean_parser to v11.0.0 ( release notes ) Event metrics can now record a maximum of 50 keys in the event extra object ( Bug 1869429 ) iOS Glean for iOS is now being built with Xcode 15.1 ( #2669 ) Android Replaced whenTaskAdded with configureEach in GleanGradlePlugin to avoid unnecessary configuration. ( #2697 )","breadcrumbs":"Changelog » mozilla/glean » v56.1.0 (2024-01-16)","id":"732","title":"v56.1.0 (2024-01-16)"},"733":{"body":"Full changelog General Updated to UniFFI 0.25.2 ( #2678 ) iOS Dropped support for iOS < 15 ( #2681 )","breadcrumbs":"Changelog » mozilla/glean » v56.0.0 (2023-11-30)","id":"733","title":"v56.0.0 (2023-11-30)"},"734":{"body":"Python BREAKING CHANGE: Dropped support for Python 3.7 ( # ) Full changelog General BREAKING CHANGE: Adding 0 to a counter or labeled_counter metric will be silently ignored instead of raising an invalid_value error ( bug 1762859 ) Trigger the uploader thread after scanning the pending pings directory ( bug 1847950 ) Extend start/stop time of a ping to millisecond precision. Custom pings can opt-out using precise_timestamps: false ( #2456 ) Update glean_parser to v10.0.0. Disallow unit field for anything but quantity, disallows ping lifetime metrics on the events ping, allows to configure precise timestamps in pings ( release notes ) Add an API to set an Experimentation ID that will be annotated to all pings ( Bug 1848201 )","breadcrumbs":"Changelog » mozilla/glean » v55.0.0 (2023-10-23)","id":"734","title":"v55.0.0 (2023-10-23)"},"735":{"body":"Full changelog General Experimental: Add configuration to add a wall clock timestamp to all events ( #2513 ) Python Switched the build system to maturin. This should not have any effect on consumers. ( #2345 ) BREAKING CHANGE: Dropped support for Python 3.6 ( #2345 ) Kotlin Update to Gradle v8.2.1 ( #2516 ) Increase Android compile SDK to version 34 ( #2614 )","breadcrumbs":"Changelog » mozilla/glean » v54.0.0 (2023-09-12)","id":"735","title":"v54.0.0 (2023-09-12)"},"736":{"body":"Full changelog General Update glean_parser to v8.1.0. Subsequently, metric names now have a larger limit of 70 characters ( release notes ) Rust The Ping Rate Limit type is now accessible in the Rust Language Binding ( #2528 ) Gracefully handle a failure when starting the upload thread. Glean no longer crashes in that case. ( #2545 ) locale now exposed through the RLB so it can be set by consumers ( #2531 ) Python Added the shutdown API for Python to ensure orderly shutdown and waiting for uploader processes ( #2538 ) Kotlin Move running of upload task when Glean is running in a background service to use the internal Glean Dispatchers rather than WorkManager. Bug 1844533","breadcrumbs":"Changelog » mozilla/glean » v53.2.0 (2023-08-02)","id":"736","title":"v53.2.0 (2023-08-02)"},"737":{"body":"Full changelog General Gracefully handle the waiting thread going away during shutdown ( #2503 ) Updated to UniFFI 0.24.1 ( #2510 ) Try blocking shutdown 10s for init to complete ( #2518 ) Android Update minimum supported Java byte code generation to 17 ( #2498 )","breadcrumbs":"Changelog » mozilla/glean » v53.1.0 (2023-06-28)","id":"737","title":"v53.1.0 (2023-06-28)"},"738":{"body":"Full changelog General Adds the capability to merge remote metric configurations, enabling multiple Nimbus Features or components to share this functionality ( Bug 1833381 ) StringList metric type limits have been increased. The length of strings allowed has been increased from 50 to 100 to match the String metric type, and the list length has been increased from 20 to 100 ( Bug 1833870 ) Make ping rate limiting configurable on Glean init. ( bug 1647630 ) Rust Timing distribution traits now expose accumulate_samples and accumulate_raw_samples_nanos. This is a breaking change for consumers that make use of the trait as they will need to implement the new functions ( Bug 1829745 ) iOS Make debugging APIs available on Swift ( #2470 ) Added a shutdown API for Swift. This should only be necessary for when Glean is running in a process other than the main process (like in the VPN daemon, for instance)( Bug 1832324 ) Glean for iOS is now being built with Xcode 14.3 ( #2253 )","breadcrumbs":"Changelog » mozilla/glean » v53.0.0 (2023-06-07)","id":"738","title":"v53.0.0 (2023-06-07)"},"739":{"body":"Full changelog General Allow user to configure how verbose the internal logging is ( #2459 ) Added a timeout waiting for the dispatcher at shutdown ( #2461 ) Added a new Glean metric glean.validation.shutdown_dispatcher_wait measuring the wait time at shutdown ( #2461 ) Kotlin Update Kotlin to version 1.8.21 ( #2462 ) Make debugging APIs available on Android ( Bug 1830937 )","breadcrumbs":"Changelog » mozilla/glean » v52.7.0 (2023-05-10)","id":"739","title":"v52.7.0 (2023-05-10)"},"74":{"body":"For tracking user behavior, it is usually meaningful to know the over of events that lead to the use of a feature. Therefore, for user behavior, an event metric is usually the best choice. Be aware, however, that events can be particularly expensive to transmit, store and analyze, so should not be used for higher-frequency measurements - though this is less of a concern in server environments .","breadcrumbs":"Metrics » Are you measuring user behavior?","id":"74","title":"Are you measuring user behavior?"},"740":{"body":"Full changelog Rust The Text metric type is now available in the Rust language bindings ( #2451 )","breadcrumbs":"Changelog » mozilla/glean » v52.6.0 (2023-04-20)","id":"740","title":"v52.6.0 (2023-04-20)"},"741":{"body":"Full changelog General On Rkv detecting a corrupted database delete the old RKV, create a new one and log the error ( #2425 ) Add the Date header as late as possible before the uploader acts ( #2436 ) The logic of the Server Knobs API has been flipped. Instead of applying a list of metrics and their disabled state, the API now accepts a list of metrics and their enabled state ( bug 1811253 ) Kotlin Adds the ability to record metrics on a non-main process. This is enabled by setting a dataPath in the Glean configuration ( bug 1815233 ) iOS Adds the ability to record metrics on a non-main process. This is enabled by setting a dataPath in the Glean configuration ( bug 1815233 )","breadcrumbs":"Changelog » mozilla/glean » v52.5.0 (2023-04-11)","id":"741","title":"v52.5.0 (2023-04-11)"},"742":{"body":"Full changelog General Expose Server Knobs functionality via UniFFI for use on mobile iOS BUGFIX: Prevent another test-only issue: The storage going away when the uploader reports back its status ( #2430 )","breadcrumbs":"Changelog » mozilla/glean » v52.4.3 (2023-03-24)","id":"742","title":"v52.4.3 (2023-03-24)"},"743":{"body":"Full changelog Rust Revert to libstd's remove_dir_all instead of external crate ( #2415 ) Python BUGFIX: Implement an empty shutdown function ( #2417 )","breadcrumbs":"Changelog » mozilla/glean » v52.4.2 (2023-03-15)","id":"743","title":"v52.4.2 (2023-03-15)"},"744":{"body":"Full changelog General Update tempfile crate to remove dependency on potentially vulnerable version of remove_dir_all@0.5.3","breadcrumbs":"Changelog » mozilla/glean » v52.4.1 (2023-03-10)","id":"744","title":"v52.4.1 (2023-03-10)"},"745":{"body":"Full changelog General Update glean_parser to v7.1.0 ( release notes ) Kotlin Upgrade Android NDK to r25c ( #2399 ) iOS BUGFIX: Reworking the HTTP uploader to avoid background uploading issues ( Bug 1819161 )","breadcrumbs":"Changelog » mozilla/glean » v52.4.0 (2023-03-09)","id":"745","title":"v52.4.0 (2023-03-09)"},"746":{"body":"Full changelog General No functional change from v52.3.0, just CI updates.","breadcrumbs":"Changelog » mozilla/glean » v52.3.1 (2023-03-01)","id":"746","title":"v52.3.1 (2023-03-01)"},"747":{"body":"Full changelog General Loosen label restrictions to \"at most 71 characters of printable ASCII\" ( bug 1672273 ) Introduced 2 new Glean health metrics: glean.upload.send_failure and glean.upload.send_success to measure the time for sending a ping ( #2365 ) Introduced a new Glean metric: glean.validation.shutdown_wait to measure the time Glean waits for the uploader on shutdown ( #2365 ) Rust On shutdown wait up to 30s on the uploader to finish work ( #2232 ) iOS BUGFIX: Avoid an invalid state (double-starting) for baseline.duration when Glean is first initialized ( #2368 )","breadcrumbs":"Changelog » mozilla/glean » v52.3.0 (2023-02-23)","id":"747","title":"v52.3.0 (2023-02-23)"},"748":{"body":"Full changelog General Update to UniFFI 0.23 ( #2338 )","breadcrumbs":"Changelog » mozilla/glean » v52.2.0 (2023-01-30)","id":"748","title":"v52.2.0 (2023-01-30)"},"749":{"body":"Full changelog General BUGFIX: Properly invoke the windows build number function from whatsys ( bug 1812672 )","breadcrumbs":"Changelog » mozilla/glean » v52.1.1 (2023-01-26)","id":"749","title":"v52.1.1 (2023-01-26)"},"75":{"body":"If you want to know how many times something happened, use a counter metric . If you are counting a group of related things, or you don't know what all of the things to count are at build time, use a labeled counter metric . If you need to know how many times something happened relative to the number of times something else happened, use a rate metric . If you need to know when the things being counted happened relative to other things, consider using an event .","breadcrumbs":"Metrics » Are you counting things?","id":"75","title":"Are you counting things?"},"750":{"body":"Full changelog General BUGFIX: Custom Pings with events should no longer erroneously post InvalidState errors ( bug 1811872 ) Upgrade to glean_parser v7.0.0 ( #2346 ) Kotlin Update to Gradle v7.6 ( #2317 ) Rust Added a new client_info field windows_build_number (Windows only) ( #2325 ) A new ConfigurationBuilder allows to create the Glean configuration before initialization ( #2313 ) Drop dependency on env_logger for regular builds ( #2312 )","breadcrumbs":"Changelog » mozilla/glean » v52.1.0 (2023-01-26)","id":"750","title":"v52.1.0 (2023-01-26)"},"751":{"body":"Full changelog Android The GleanDebugActivity can run without Glean being initialized ( #2336 ) Python Ship universal2 (aarch64 + x86_64 in one) wheels ( #2340 )","breadcrumbs":"Changelog » mozilla/glean » v52.0.1 (2023-01-19)","id":"751","title":"v52.0.1 (2023-01-19)"},"752":{"body":"Full changelog General Remove the metric glean.validation.first_run_hour. Note that this will mean no reason=upgrade metrics pings from freshly installed clients anymore. ( #2271 ) BEHAVIOUR CHANGE: Events in Custom Pings no longer trigger their submission. ( bug 1716725 ) Custom Pings with unsent events will no longer be sent at startup with reason startup. glean.restarted events will be included in Custom Pings with other events to rationalize event timestamps across restarts. test_reset_glean will remove all previous data if asked to clear stores, even if Glean never has been initialized ( #2294 ) Upgrade to glean_parser v6.5.0, with support for Cow in Rust code ( #2300 ) API REMOVED: The deprecated-since-v38 event metric record(map) API has been removed ( bug 1802550 ) BEHAVIOUR CHANGE: \"events\" pings will no longer be sent if they have metrics but no events ( bug 1803513 ) Experimental: Add functionality necessary to remotely configure the metric disabled property ( bug 1798919 ) This change has no effect when the API is not used and is transparent to consumers. The API is currently experimental because it is not stable and may change. Rust Static labels for labeled metrics are now Cow<'static, str> to reduce heap allocations ( #2272 ) NEW INTERNAL CONFIGURATION OPTION: trim_data_to_registered_pings will trim event storage to just the registered pings. Consult with the Glean Team before using. ( bug 1804915 )","breadcrumbs":"Changelog » mozilla/glean » v52.0.0 (2022-12-13)","id":"752","title":"v52.0.0 (2022-12-13)"},"753":{"body":"Full changelog General Upgrade to rkv 0.18.3. This comes with a bug fix that ensures that interrupted database writes don't corrupt/truncate the database file ( #2288 ) iOS Avoid building a dynamic library ( #2285 ). Note: v51.8.1 and 51.8.2 are not working on iOS and will break the build due to accidentally including a link to a dynamic library.","breadcrumbs":"Changelog » mozilla/glean » v51.8.3 (2022-11-25)","id":"753","title":"v51.8.3 (2022-11-25)"},"754":{"body":"Full changelog General BUGFIX: Reliably clear pending pings and events on Windows using remove_dir_all crate ( bug 1801128 ) Update to rkv v0.18.2 ( #2270 )","breadcrumbs":"Changelog » mozilla/glean » v51.8.2 (2022-11-17)","id":"754","title":"v51.8.2 (2022-11-17)"},"755":{"body":"Full changelog General Do not serialize count field in distribution payload ( #2267 ) BUGFIX: The glean-core \"metrics\" ping scheduler will now schedule and send \"upgrade\"-reason pings. ( bug 1800646 )","breadcrumbs":"Changelog » mozilla/glean » v51.8.1 (2022-11-15)","id":"755","title":"v51.8.1 (2022-11-15)"},"756":{"body":"Full changelog General Upgrade to glean_parser v6.3.0, increases the event extra limit to 15 ( #2255 ) Increase event extras value limit to 500 bytes ( #2255 ) Kotlin Increase to Android target/compile SDK version 33 ( #2246 ) iOS Try to avoid a crash by not invalidating upload sessions ( #2254 )","breadcrumbs":"Changelog » mozilla/glean » v51.8.0 (2022-11-03)","id":"756","title":"v51.8.0 (2022-11-03)"},"757":{"body":"Full changelog iOS Glean for iOS is now being built with Xcode 13.4 again ( #2242 ) Rust Add cargo feature preinit_million_queue to up the preinit queue length from 10^3 to 10^6 ( bug 1796258 )","breadcrumbs":"Changelog » mozilla/glean » v51.7.0 (2022-10-25)","id":"757","title":"v51.7.0 (2022-10-25)"},"758":{"body":"Full changelog General The internal glean-core dispatch queue changed from bounded to unbounded, while still behaving as a bounded queue. iOS BUGFIX: Additional work to address an iOS crash due to an invalidated session ( #2235 )","breadcrumbs":"Changelog » mozilla/glean » v51.6.0 (2022-10-24)","id":"758","title":"v51.6.0 (2022-10-24)"},"759":{"body":"Full changelog General Add count to DistributionData payload ( #2196 ) Update to UniFFI 0.21.0 ( #2229 ) Android Synchronize AndroidX dependencies with AC ( #2219 ) Bump jna to 5.12.1 #2221 ( #2221 ) iOS Glean for iOS is now being built with Xcode 14.0 ( #2188 )","breadcrumbs":"Changelog » mozilla/glean » v51.5.0 (2022-10-18)","id":"759","title":"v51.5.0 (2022-10-18)"},"76":{"body":"If you need to record an absolute time, use a datetime metric . Datetimes are recorded in the user's local time, according to their device's real time clock, along with a timezone offset from UTC. Datetime metrics allow specifying the resolution they are collected at, and to stay lean , they should only be collected at the minimum resolution required to answer your question. If you need to record how long something takes you have a few options. If you need to measure the total time spent doing a particular task, look to the timespan metric . Timespan metrics allow specifying the resolution they are collected at, and to stay lean , they should only be collected at the minimum resolution required to answer your question. Note that this metric should only be used to measure time on a single thread. If multiple overlapping timespans are measured for the same metric, an invalid state error is recorded. If you need to measure the relative occurrences of many timings, use a timing distribution . It builds a histogram of timing measurements, and is safe to record multiple concurrent timespans on different threads. If you need to know the time between multiple distinct actions that aren't a simple \"begin\" and \"end\" pair, consider using an event .","breadcrumbs":"Metrics » Are you measuring time?","id":"76","title":"Are you measuring time?"},"760":{"body":"Full changelog Kotlin Update Kotlin and Android Gradle Plugin to the latest releases ( #2211 ) Swift Fix for iOS startup crash caused by Glean ( #2206 )","breadcrumbs":"Changelog » mozilla/glean » v51.4.0 (2022-10-04)","id":"760","title":"v51.4.0 (2022-10-04)"},"761":{"body":"Full changelog General Update URL metric character limit to 8k to support longer URLs. URLs that are too long now are truncated to MAX_URL_LENGTH and still recorded along with an Overflow error. ( #2199 ) Kotlin Gradle plugin: Fix quoting issue in Python wrapper code ( #2193 ) Bumped the required Android NDK to version 25.1.8937393 ( #2195 )","breadcrumbs":"Changelog » mozilla/glean » v51.3.0 (2022-09-28)","id":"761","title":"v51.3.0 (2022-09-28)"},"762":{"body":"Full changelog General Relax glean_parser version requirement. All \"compatible releases\" are now allowed ( #2086 ) Uploaders can now signal that they can't upload anymore ( #2136 ) Update UniFFI to version 0.19.6 ( #2175 ) Kotlin BUGFIX: Re-enable correctly collecting glean.validation.foreground_count again ( #2153 ) BUGFIX: Gradle plugin: Correctly remove the version conflict check. Now the consuming module need to ensure it uses a single version across all dependencies ( #2155 ) Upgrade dependencies and increase to Android target/compile SDK version 32 ( #2150 ) Upgrade Android NDK to r25 ( #2159 ) BUGFIX: Correctly set os_version and architecture again ( #2174 ) iOS BUGFIX: Correctly set os_version and architecture again ( #2174 ) Python BUGFIX: Correctly handle every string that represents a UUID, including non-hyphenated random 32-character strings ( #2182 )","breadcrumbs":"Changelog » mozilla/glean » v51.2.0 (2022-09-08)","id":"762","title":"v51.2.0 (2022-09-08)"},"763":{"body":"Full changelog General BUGFIX: Handle that Glean might be uninitialized when an upload task is requested ( #2131 ) Updated the glean_parser to version 6.1.2 Kotlin BUGFIX: When setting a local endpoint in testing check for testing mode, not initialization ( #2145 ) Gradle plugin: Remove the version conflict check. Now the consuming module need to ensure it uses a single version across all dependencies ( #2143 )","breadcrumbs":"Changelog » mozilla/glean » v51.1.0 (2022-08-08)","id":"763","title":"v51.1.0 (2022-08-08)"},"764":{"body":"Full changelog General BUGFIX: Set the following client_info fields correctly again: android_sdk_version, device_manufacturer, device_model, locale. These were never set in Glean v50.0.0 to v51.0.0 ( #2131 )","breadcrumbs":"Changelog » mozilla/glean » v51.0.1 (2022-07-26)","id":"764","title":"v51.0.1 (2022-07-26)"},"765":{"body":"Full changelog General Remove testHasValue from all implementations. testGetValue always returns a null value (null, nil, None depending on the language) and does not throw an exception ( #2087 ). BREAKING CHANGE: Dropped ping_name argument from all test_get_num_recorded_errors methods ( #2088 ) Errors default to the metrics ping, so that's what is queried internally. BREAKING: Disable safe-mode everywhere. This causes all clients to migrate from LMDB to safe-mode storage ( #2123 ) Kotlin Fix the Glean Gradle Plugin to work with Android Gradle Plugin v7.2.1 ( #2114 ) Rust Add a method to construct an Event with runtime-known allowed extra keys. ( bug 1767037 )","breadcrumbs":"Changelog » mozilla/glean » v51.0.0 (2022-07-22)","id":"765","title":"v51.0.0 (2022-07-22)"},"766":{"body":"Full changelog General BUGFIX: Handle that Glean might be uninitialized when an upload task is requested ( #2131 )","breadcrumbs":"Changelog » mozilla/glean » v50.1.4 (2022-08-01)","id":"766","title":"v50.1.4 (2022-08-01)"},"767":{"body":"Full changelog General BUGFIX: Set the following client_info fields correctly again: android_sdk_version, device_manufacturer, device_model, locale. These were never set in Glean v50.0.0 to v51.0.0 ( #2131 )","breadcrumbs":"Changelog » mozilla/glean » v50.1.3 (2022-07-26)","id":"767","title":"v50.1.3 (2022-07-26)"},"768":{"body":"Full changelog General Update UniFFI to version 0.19.3 Fix rust-beta-tests linting","breadcrumbs":"Changelog » mozilla/glean » v50.1.2 (2022-07-08)","id":"768","title":"v50.1.2 (2022-07-08)"},"769":{"body":"Full changelog Kotlin Fix bug in Glean Gradle plugin by using correct quoting in embedded Python script ( #2097 ) Fix bug in Glean Gradle plugin by removing references to Linux paths ( #2098 )","breadcrumbs":"Changelog » mozilla/glean » v50.1.1 (2022-06-17)","id":"769","title":"v50.1.1 (2022-06-17)"},"77":{"body":"Think carefully about how long the metric will be needed, and set the expires parameter to disable the metric at the earliest possible time. This is an important component of Mozilla's lean data practices . When the metric passes its expiration date (determined at build time), it will automatically stop collecting data. When a metric's expiration is within in 14 days, emails will be sent from telemetry-alerts@mozilla.com to the notification_emails addresses associated with the metric. At that time, the metric should be removed, which involves removing it from the metrics.yaml file and removing uses of it in the source code. Removing a metric does not affect the availability of data already collected by the pipeline. If the metric is still needed after its expiration date, it should go back for another round of data review to have its expiration date extended. Important: Ensure that telemetry alerts are received and are reviewed in a timely manner. Expired metrics don't record any data, extending or removing a metric should be done in time. Consider adding both a group email address and an individual who is responsible for this metric to the notification_emails list.","breadcrumbs":"Metrics » For how long do you need to collect this data?","id":"77","title":"For how long do you need to collect this data?"},"770":{"body":"Full changelog General Updated to glean_parser v6.1.1 ( #2092 ) Swift Dropped usage of Carthage for internal dependencies ( #2089 ) Implement the text metric ( #2073 ) Kotlin Implement the text metric ( #2073 ) Rust Derive serde::{Deserialize, Serialize} on Lifetime and CommonMetricData ( bug 1772156 )","breadcrumbs":"Changelog » mozilla/glean » v50.1.0 (2022-06-15)","id":"770","title":"v50.1.0 (2022-06-15)"},"771":{"body":"Full changelog General Updated to glean_parser v6.0.1 Python Remove duplicate log initialization and prevent crash ( #2064 )","breadcrumbs":"Changelog » mozilla/glean » v50.0.1 (2022-05-25)","id":"771","title":"v50.0.1 (2022-05-25)"},"772":{"body":"Full changelog This release is a major refactoring of the internals and contains several breaking changes to exposed APIs. Exposed functionality should be unaffected. See below for details. General Switch to UniFFI-defined and -generated APIs for all 3 foreign-language SDKs The task dispatcher has been moved to Rust for all foreign-language SDKs Updated to glean_parser v6.0.0 Swift testGetValue on all metric types now returns nil when no data is recorded instead of throwing an exception. testGetValue on metrics with more complex data now return new objects for inspection. See the respective documentation for details. testHasValue on all metric types is deprecated. It is currently still available as extension methods. Use testGetValue with not-null checks. Kotlin testGetValue on all metric types now returns null when no data is recorded instead of throwing an exception. testGetValue on metrics with more complex data now return new objects for inspection. See the respective documentation for details. testHasValue on all metric types is deprecated. It is currently still available as extension methods and thus require an additional import. Use testGetValue with not-null checks. On TimingDistributionMetric, CustomDistributionMetric, MemoryDistributionMetric the accumulateSamples method now takes a List instead of LongArray. Use listOf instead of longArrayOf or call .toList TimingDistributionMetricType.start now always returns a valid TimerId, TimingDistributionMetricType.stopAndAccumulate always requires a TimerId. Python test_get_value on all metric types now returns None when no data is recorded instead of throwing an exception. test_has_value on all metric types was removed. Use test_get_value with not-null checks.","breadcrumbs":"Changelog » mozilla/glean » v50.0.0 (2022-05-20)","id":"772","title":"v50.0.0 (2022-05-20)"},"773":{"body":"Full changelog General The glean.error.preinit_tasks_overflow metric now reports only the number of overflowing tasks. It is marked as version 1 in the definition now. ( #2026 ) Kotlin (Development only) Allow to override the used glean_parser in the Glean Gradle Plugin ( #2029 ) setSourceTags is now a public API ( #2035 )) iOS setSourceTags is now a public API ( #2035 ) Rust Implemented try_get_num_recorded_errors for Boolean in Rust Language Bindings ( #2049 )","breadcrumbs":"Changelog » mozilla/glean » v44.2.0 (2022-05-16)","id":"773","title":"v44.2.0 (2022-05-16)"},"774":{"body":"Full changelog Rust Raise the global dispatcher queue limit from 100 to 1000 tasks. ( bug 1764549 ) iOS Enable expiry by version in the sdk_generator.sh script ( #2013 )","breadcrumbs":"Changelog » mozilla/glean » v44.1.1 (2022-04-14)","id":"774","title":"v44.1.1 (2022-04-14)"},"775":{"body":"Full changelog Android The glean-native-forUnitTests now ships with separate libraries for macOS x86_64 and macOS aarch64 ( #1967 ) Rust Glean will no longer overwrite the User-Agent header, but instead send that information as X-Telemetry-Agent ( bug 1711928 )","breadcrumbs":"Changelog » mozilla/glean » v44.1.0 (2022-04-06)","id":"775","title":"v44.1.0 (2022-04-06)"},"776":{"body":"General BREAKING CHANGE: Updated glean_parser version to 5.0.1 ( #1852 ). This update drops support for generating C# specific metrics API. Rust Ensure test-only destroy_glean() handles initialize() having started but not completed ( bug 1750235 ) Swift Dropping support of the Carthage-compatible framework archive ( #1943 ). The Swift Package (https://github.com/mozilla/glean-swift) is the recommended way of consuming Glean iOS. Python BUGFIX: Datetime metrics now correctly record the local timezone ( #1953 ). Full changelog","breadcrumbs":"Changelog » mozilla/glean » v44.0.0 (2022-02-09)","id":"776","title":"v44.0.0 (2022-02-09)"},"777":{"body":"Full changelog General Fix artifact publishing properly ( #1930 )","breadcrumbs":"Changelog » mozilla/glean » v43.0.2 (2022-01-17)","id":"777","title":"v43.0.2 (2022-01-17)"},"778":{"body":"Full changelog General Fix artifact publishing ( #1930 )","breadcrumbs":"Changelog » mozilla/glean » v43.0.1 (2022-01-17)","id":"778","title":"v43.0.1 (2022-01-17)"},"779":{"body":"Full changelog General Removed invalid_timezone_offset metric ( #1923 ) Python It is now possible to emit log messages from the networking subprocess by using the new log_level parameter to Glean.initialize. ( #1918 ) Kotlin Automatically pass build date as part of the build info ( #1917 ) iOS BREAKING CHANGE: Pass build info into initialize, which contains the build date ( #1917 ). A suitable instance is generated by glean_parser in GleanMetrics.GleanBuild.info.","breadcrumbs":"Changelog » mozilla/glean » v43.0.0 (2022-01-17)","id":"779","title":"v43.0.0 (2022-01-17)"},"78":{"body":"The lifetime parameter of a metric defines when its value will be cleared. There are three lifetime options available: ping (default) The metric is cleared each time it is submitted in the ping. This is the most common case, and should be used for metrics that are highly dynamic, such as things computed in response to the user's interaction with the application. application The metric is related to an application run, and is cleared after the application restarts and any Glean-owned ping, due at startup, is submitted. This should be used for things that are constant during the run of an application, such as the operating system version. In practice, these metrics are generally set during application startup. A common mistake--- using the ping lifetime for these type of metrics---means that they will only be included in the first ping sent during a particular run of the application. user NOTE: Reach out to the Glean team before using this. The metric is part of the user's profile and will live as long as the profile lives. This is often not the best choice unless the metric records a value that really needs to be persisted for the full lifetime of the user profile, e.g. an identifier like the client_id, the day the product was first executed. It is rare to use this lifetime outside of some metrics that are built in to the Glean SDK. While lifetimes are important to understand for all metric types, they are particularly important for the metric types that record single values and don't aggregate on the client (boolean, string, labeled_string, string_list, datetime and uuid), since these metrics will send the \"last known\" value and missing the earlier values could be a form of unintended data loss.","breadcrumbs":"Metrics » When should the Glean SDK automatically clear the measurement?","id":"78","title":"When should the Glean SDK automatically clear the measurement?"},"780":{"body":"Full changelog Python Reuse existing environment when launching subprocess ( #1908 )","breadcrumbs":"Changelog » mozilla/glean » v42.3.2 (2021-12-15)","id":"780","title":"v42.3.2 (2021-12-15)"},"781":{"body":"Full changelog iOS Fix Carthage archive release ( #1891 )","breadcrumbs":"Changelog » mozilla/glean » v42.3.1 (2021-12-07)","id":"781","title":"v42.3.1 (2021-12-07)"},"782":{"body":"Full changelog Rust BUGFIX: Correct category & name for preinit_tasks_overflow metric. Previously it would have been wrongly recorded as preinit_tasks_overflow.glean.error ( #1887 ) BUGFIX: Fix to name given to the events ping when instantiated ( #1885 ) iOS BUGFIX: Make fields of RecordedEventData publicly accessible ( #1867 ) Skip code generation in indexbuild build ( #1889 ) Python Don't let environment affect subprocess module search path ( #1542 )","breadcrumbs":"Changelog » mozilla/glean » v42.3.0 (2021-12-07)","id":"782","title":"v42.3.0 (2021-12-07)"},"783":{"body":"Full changelog General Updated glean_parser version to 4.3.1 ( #1852 ) Android Automatic detection of tags.yaml files ( #1852 )","breadcrumbs":"Changelog » mozilla/glean » v42.2.0 (2021-11-03)","id":"783","title":"v42.2.0 (2021-11-03)"},"784":{"body":"Full changelog Rust Backwards-compatible API Change: Make experiment test APIs public. ( #1834 )","breadcrumbs":"Changelog » mozilla/glean » v42.1.0 (2021-10-18)","id":"784","title":"v42.1.0 (2021-10-18)"},"785":{"body":"Full changelog General BUGFIX: Avoid a crash when accessing labeled metrics by caching created objects ( #1823 ). Python Glean now officially supports Python 3.10 ( #1818 )","breadcrumbs":"Changelog » mozilla/glean » v42.0.1 (2021-10-11)","id":"785","title":"v42.0.1 (2021-10-11)"},"786":{"body":"Full changelog Android Updated to Gradle 7, Android Gradle Plugin 7 and Rust Android Plugin 0.9 as well as building with Java 11 ( #1801 ) iOS Add support for the URL metric type ( #1791 ) Remove reliance on Operation for uploading and instead use the background capabilities of URLSession ( #1783 ) Glean for iOS is now being built with Xcode 13.0.0 ( #1802 ). Rust BUGFIX: No panic if trying to flush ping-lifetime data after shutdown ( #1800 ) BREAKING CHANGE: glean::persist_ping_lifetime_data is now async ( #1812 )","breadcrumbs":"Changelog » mozilla/glean » v42.0.0 (2021-10-06)","id":"786","title":"v42.0.0 (2021-10-06)"},"787":{"body":"Full changelog Android BUGFIX: Limit logging to Glean crates ( #1808 )","breadcrumbs":"Changelog » mozilla/glean » v41.1.1 (2021-09-29)","id":"787","title":"v41.1.1 (2021-09-29)"},"788":{"body":"Full changelog Rust BUGFIX: Ensure RLB persists ping lifetime data on shutdown ( #1793 ) Expose persist_ping_lifetime_data in the RLB. Consumers can call this to persist data at convenient times, data is also persisted on shutdown ( #1793 )","breadcrumbs":"Changelog » mozilla/glean » v41.1.0 (2021-09-16)","id":"788","title":"v41.1.0 (2021-09-16)"},"789":{"body":"Full changelog General BUGFIX: Only clear specified storage in delayed ping io mode ( #1782 ) Require Rust >= 1.53.0 ( #1782 ) Android Glean.initialize now requires a buildInfo parameter to pass in build time version information. A suitable instance is generated by glean_parser in ${PACKAGE_ROOT}.GleanMetrics.GleanBuildInfo.buildInfo. Support for not passing in a buildInfo object has been removed. ( #1752 )","breadcrumbs":"Changelog » mozilla/glean » v41.0.0 (2021-09-13)","id":"789","title":"v41.0.0 (2021-09-13)"},"79":{"body":"Let's work through an example to see how these lifetimes play out in practice. Let's suppose we have a user preference, \"turbo mode\", which defaults to false, but the user can turn it to true at any time. We want to know when this flag is true so we can measure its affect on other metrics in the same ping. In the following diagram, we look at a time period that sends 4 pings across two separate runs of the application. We assume here, that like the Glean SDK's built-in metrics ping , the developer writing the metric isn't in control of when the ping is submitted. In this diagram, the ping measurement windows are represented as rectangles, but the moment the ping is \"submitted\" is represented by its right edge. The user changes the \"turbo mode\" setting from false to true in the first run, and then toggles it again twice in the second run. Metric lifetime timeline A. Ping lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. It is included in the first ping after being recorded (Ping 2), which causes it to be cleared. B. Ping lifetime, set on init and change : The default value is included in Ping 1, and the changed value is included in Ping 2, which causes it to be cleared. It therefore misses Ping 3, but when the application is started, it is recorded again and it is included in Ping 4. However, this causes it to be cleared again and it is not in Ping 5. C. Application lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. After the value is changed, it is included in Pings 2 and 3, but then due to application restart it is cleared, so it is not included until the value is manually toggled again. D. Application, set on init and change : The default value is included in Ping 1, and the changed value is included in Pings 2 and 3. Even though the application startup causes it to be cleared, it is set again, and all subsequent pings also have the value. E. User, set on change : The default value is missing from Ping 1, but since user lifetime metrics aren't cleared unless the user profile is reset (e.g. on Android, when the product is uninstalled), it is included in all subsequent pings. F. User, set on init and change : Since user lifetime metrics aren't cleared unless the user profile is reset, it is included in all subsequent pings. This would be true even if the \"turbo mode\" preference were never changed again. Note that for all of the metric configurations, the toggle of the preference off and on during Ping 4 is completely missed. If you need to create a ping containing one, and only one, value for this metric, consider using a custom ping to create a ping whose lifetime matches the lifetime of the value.","breadcrumbs":"Metrics » A lifetime example","id":"79","title":"A lifetime example"},"790":{"body":"Full changelog General Updated glean_parser version to 4.0.0 Android Add support for the URL metric type ( #1778 ) Rust Add support for the URL metric type ( #1778 ) Python Add support for the URL metric type ( #1778 )","breadcrumbs":"Changelog » mozilla/glean » v40.2.0 (2021-09-08)","id":"790","title":"v40.2.0 (2021-09-08)"},"791":{"body":"Full changelog iOS Use 'Unknown' value if system data can't be decoded as UTF-8 ( #1769 ) BUGFIX: Add quantity metric type to the build ( #1774 ). Previous builds are unable to use quantity metrics","breadcrumbs":"Changelog » mozilla/glean » v40.1.1 (2021-09-02)","id":"791","title":"v40.1.1 (2021-09-02)"},"792":{"body":"Full changelog Android Updated to Kotlin 1.5, Android Gradle Plugin 4.2.2 and Gradle 6.7.1 ( #1747 ) The glean-gradle-plugin now forces a compile failure when multiple Glean versions are detected in the build ( #1756 ) The glean-gradle-plugin does not enable a glean-native capability on GeckoView anymore. That will be done by GeckoView directly ( #1759 )","breadcrumbs":"Changelog » mozilla/glean » v40.1.0 (2021-08-25)","id":"792","title":"v40.1.0 (2021-08-25)"},"793":{"body":"Full changelog Android Breaking Change : Split the Glean Kotlin SDK into two packages: glean and glean-native ( #1595 ). Consumers will need to switch to org.mozilla.telemetry:glean-native-forUnitTests. Old code in build.gradle: testImplementation \"org.mozilla.telemetry:glean-forUnitTests:${project.ext.glean_version}\" New code in build.gradle: testImplementation \"org.mozilla.telemetry:glean-native-forUnitTests:${project.ext.glean_version}\" The glean-gradle-plugin now automatically excludes the glean-native dependency if geckoview-omni is also part of the build. Glean native functionality will be provided by the geckoview-omni package. Rust The glean-ffi is no longer compiled as a cdylib. Other language SDKs consume glean-bundle instead as a cdylib. This doesn't affect consumers.","breadcrumbs":"Changelog » mozilla/glean » v40.0.0 (2021-07-28)","id":"793","title":"v40.0.0 (2021-07-28)"},"794":{"body":"Full changelog General Updated glean_parser version to 3.6.0 Allow Custom Distribution metric type on all platforms ( #1679 )","breadcrumbs":"Changelog » mozilla/glean » v39.1.0 (2021-07-26)","id":"794","title":"v39.1.0 (2021-07-26)"},"795":{"body":"Full changelog General Extend invalid_timezone_offset metric until the end of the year ( #1697 )","breadcrumbs":"Changelog » mozilla/glean » v39.0.4 (2021-07-26)","id":"795","title":"v39.0.4 (2021-07-26)"},"796":{"body":"Full changelog Android Unbreak Event#record API by accepting null on the deprecated API. The previous 39.0.0 release introduced the new API, but accidentally broke certain callers that just forward arguments. This restores passing null (or nothing) when using the old API. It remains deprecated.","breadcrumbs":"Changelog » mozilla/glean » v39.0.3 (2021-06-09)","id":"796","title":"v39.0.3 (2021-06-09)"},"797":{"body":"Full changelog iOS Fix iOS release build ( #1668 , #1669 )","breadcrumbs":"Changelog » mozilla/glean » v39.0.2 (2021-06-07)","id":"797","title":"v39.0.2 (2021-06-07)"},"798":{"body":"Full changelog iOS Build and release Glean as an xcframework ( #1663 ) This will now also auto-update the Glean package at https://github.com/mozilla/glean-swift.","breadcrumbs":"Changelog » mozilla/glean » v39.0.1 (2021-06-04)","id":"798","title":"v39.0.1 (2021-06-04)"},"799":{"body":"Full changelog General Add new event extras API to all implementations. See below for details ( #1603 ) Updated glean_parser version to 3.4.0 ( #1603 ) Rust Breaking Change : Allow event extras to be passed as an object. This replaces the old HashMap-based API. Values default to string. See the event documentation for details. ( #1603 ) Old code: let mut extra = HashMap::new();\nextra.insert(SomeExtra::Key1, \"1\".into());\nextra.insert(SomeExtra::Key2, \"2\".into());\nmetric.record(extra); New code: let extra = SomeExtra { key1: Some(\"1\".into()), key2: Some(\"2\".into()),\n};\nmetric.record(extra); Android Deprecation : The old event recording API is replaced by a new one, accepting a typed object ( #1603 ). See the event documentation for details. Skip build info generation for libraries ( #1654 ) Python Deprecation : The old event recording API is replaced by a new one, accepting a typed object ( #1603 ). See the event documentation for details. Swift Deprecation : The old event recording API is replaced by a new one, accepting a typed object ( #1603 ). See the event documentation for details.","breadcrumbs":"Changelog » mozilla/glean » v39.0.0 (2021-05-31)","id":"799","title":"v39.0.0 (2021-05-31)"},"8":{"body":"This page describes the steps for adding Glean to a project. This does not include the steps for adding a new metrics or pings to an existing Glean integration. If that is what your are looking for, refer to the Adding new metrics or the Adding new pings guide.","breadcrumbs":"Adding Glean to your project » Adding Glean to your project","id":"8","title":"Adding Glean to your project"},"80":{"body":"If the timing at which the metric is sent in the ping needs to closely match the timing of the metrics value, the best option is to use a custom ping to manually control when pings are sent. This is especially useful when metrics need to be tightly related to one another, for example when you need to measure the distribution of frame paint times when a particular rendering backend is in use. If these metrics were in different pings, with different measurement windows, it is much harder to do that kind of reasoning with much certainty.","breadcrumbs":"Metrics » What if none of these lifetimes are appropriate?","id":"80","title":"What if none of these lifetimes are appropriate?"},"800":{"body":"Full changelog General BUGFIX: Invert the lock order in glean-core's metrics ping scheduler ( #1637 )","breadcrumbs":"Changelog » mozilla/glean » v38.0.1 (2021-05-17)","id":"800","title":"v38.0.1 (2021-05-17)"},"801":{"body":"Full changelog General Update documentation to recommend using Glean Dictionary instead of metrics.md ( #1604 ) Rust Breaking Change : Don't return a result from submit_ping. The boolean return value indicates whether a ping was submitted ( #1613 ) Breaking Change : Glean now schedules \"metrics\" pings, accepting a new Configuration parameter. ( #1599 ) Dispatch setting the source tag to avoid a potential crash ( #1614 ) Testing mode will wait for init & upload tasks to finish ( #1628 ) Android Set required fields for client_info before optional ones ( #1633 ) Provide forward-compatibility with Gradle 6.8 ( #1616 )","breadcrumbs":"Changelog » mozilla/glean » v38.0.0 (2021-05-12)","id":"801","title":"v38.0.0 (2021-05-12)"},"802":{"body":"Full changelog General Breaking Change : \"deletion-request\" pings now include the reason upload was disabled: at_init (Glean detected a change between runs) or set_upload_enabled (Glean was told of a change as it happened). ( #1593 ). Attempt to upload a ping even in the face of IO Errors ( #1576 ). Implement an additional check to avoid crash due to faulty timezone offset ( #1581 ) This now records a new metric glean.time.invalid_timezone_offset, counting how often we failed to get a valid timezone offset. Use proper paths throughout to hopefully handle non-UTF-8 paths more gracefully ( #1596 ) Updated glean_parser version to 3.2.0 ( #1609 ) iOS Code generator: Ensure at least pip 20.3 is available in iOS build ( #1590 )","breadcrumbs":"Changelog » mozilla/glean » v37.0.0 (2021-04-30)","id":"802","title":"v37.0.0 (2021-04-30)"},"803":{"body":"Full changelog RLB Provide an internal-use-only API to pass in raw samples for timing distributions ( #1561 ). Expose Timespan's set_raw to Rust ( #1578 ). Android BUGFIX: TimespanMetricType.measure and TimingDistributionMetricType.measure won't get inlined anymore ( #1560 ). This avoids a potential bug where a return used inside the closure would end up not measuring the time. Use return@measure for early returns. Python The Glean Python bindings now use rkv's safe mode backend. This should avoid intermittent segfaults in the LMDB backend.","breadcrumbs":"Changelog » mozilla/glean » v36.0.1 (2021-04-09)","id":"803","title":"v36.0.1 (2021-04-09)"},"804":{"body":"Full changelog General Introduce a new API Ping#test_before_next_submit to run a callback right before a custom ping is submitted ( #1507 ). The new API exists for all language bindings (Kotlin, Swift, Rust, Python). Updated glean_parser version to 2.5.0 Change the fmt- and lint- make commands for consistency ( #1526 ) The Glean SDK can now produce testing coverage reports for your metrics ( #1482 ). Python Update minimal required version of cffi dependency to 1.13.0 ( #1520 ). Ship wheels for arm64 macOS ( #1534 ). RLB Added rate metric type ( #1516 ). Set internal_metrics::os_version for MacOS, Windows and Linux ( #1538 ) Expose a function get_timestamp_ms to get a timestamp from a monotonic clock on all supported operating systems, to be used for event timestamps ( #1546 ). Expose a function to record events with an externally provided timestamp. iOS Breaking Change : Event timestamps are now correctly recorded in milliseconds ( #1546 ). Since the first release event timestamps were erroneously recorded with nanosecond precision ( #1549 ). This is now fixed and event timestamps are in milliseconds. This is equivalent to how it works in all other language bindings.","breadcrumbs":"Changelog » mozilla/glean » v36.0.0 (2021-03-16)","id":"804","title":"v36.0.0 (2021-03-16)"},"805":{"body":"Full changelog Android Glean.initialize can now take a buildInfo parameter to pass in build time version information, and avoid calling out to the Android package manager at runtime. A suitable instance is generated by glean_parser in ${PACKAGE_ROOT}.GleanMetrics.GleanBuildInfo.buildInfo ( #1495 ). Not passing in a buildInfo object is still supported, but is deprecated. The testGetValue APIs now include a message on the NullPointerException thrown when the value is missing. Breaking change: LEGACY_TAG_PINGS is removed from GleanDebugActivity ( #1510 ) RLB Breaking change: Configuration.data_path is now a std::path::PathBuf( #1493 ).","breadcrumbs":"Changelog » mozilla/glean » v35.0.0 (2021-02-22)","id":"805","title":"v35.0.0 (2021-02-22)"},"806":{"body":"Full changelog General A new metric glean.validation.pings_submitted tracks the number of pings sent. It is included in both the metrics and baseline pings. iOS The metric glean.validation.foreground_count is now sent in the metrics ping ( #1472 ). BUGFIX: baseline pings with reason dirty_startup are no longer sent if Glean did not full initialize in the previous run ( #1476 ). Python Expose the client activity API ( #1481 ). BUGFIX: Publish a macOS wheel again. The previous release failed to build a Python wheel for macOS platforms ( #1471 ). RLB BUGFIX: baseline pings with reason dirty_startup are no longer sent if Glean did shutdown cleanly ( #1483 ).","breadcrumbs":"Changelog » mozilla/glean » v34.1.0 (2021-02-04)","id":"806","title":"v34.1.0 (2021-02-04)"},"807":{"body":"Full changelog General Other bindings detect when RLB is used and try to flush the RLB dispatcher to unblock the Rust API ( #1442 ). This is detected automatically, no changes needed for consuming code. Add support for the client activity API ( #1455 ). This API is either automatically used or exposed by the language bindings. Rename the reason background to inactive for both the baseline and events ping. Rename the reason foreground to active for the baseline ping. RLB When the pre-init task queue overruns, this is now recorded in the metric glean.error.preinit_tasks_overflow ( #1438 ). Expose the client activity API ( #1455 ). Send the baseline ping with reason dirty_startup, if needed, at startup. Expose all required types directly ( #1452 ). Rust consumers will not need to depend on glean-core anymore. Android BUGFIX: Don't crash the ping uploader when throttled due to reading too large wait time values ( #1454 ). Use the client activity API ( #1455 ). Update AndroidX dependencies ( #1441 ). iOS Use the client activity API ( #1465 ). Note: this now introduces a baseline ping with reason active on startup.","breadcrumbs":"Changelog » mozilla/glean » v34.0.0 (2021-01-29)","id":"807","title":"v34.0.0 (2021-01-29)"},"808":{"body":"Full changelog Rust Upgrade rkv to 0.17 ( #1434 )","breadcrumbs":"Changelog » mozilla/glean » v33.10.3 (2021-01-18)","id":"808","title":"v33.10.3 (2021-01-18)"},"809":{"body":"Full changelog General: A new metric glean.error.io has been added, counting the times an IO error happens when writing a pending ping to disk ( #1428 ) Android A new metric glean.validation.foreground_count was added to the metrics ping ( #1418 ). Rust BUGFIX: Fix lock order inversion in RLB Timing Distribution ( #1431 ). Use RLB types instead of glean-core ones for RLB core metrics. ( #1432 ).","breadcrumbs":"Changelog » mozilla/glean » v33.10.2 (2021-01-15)","id":"809","title":"v33.10.2 (2021-01-15)"},"81":{"body":"Metric names have a maximum length of 30 characters.","breadcrumbs":"Metrics » What should this new metric be called?","id":"81","title":"What should this new metric be called?"},"810":{"body":"Full changelog No functional changes. v33.10.0 failed to generated iOS artifacts due to broken tests ( #1421 ).","breadcrumbs":"Changelog » mozilla/glean » v33.10.1 (2021-01-06)","id":"810","title":"v33.10.1 (2021-01-06)"},"811":{"body":"Full changelog General A new metric glean.validation.first_run_hour, analogous to the existing first_run_date but with hour resolution, has been added. Only clients running the app for the first time after this change will report this metric ( #1403 ). Rust BUGFIX: Don't require mutable references in RLB traits ( #1417 ). Python Building the Python package from source now works on musl-based Linux distributions, such as Alpine Linux ( #1416 ).","breadcrumbs":"Changelog » mozilla/glean » v33.10.0 (2021-01-06)","id":"811","title":"v33.10.0 (2021-01-06)"},"812":{"body":"Full changelog Rust BUGFIX: Don't panic on shutdown and avoid running tasks if uninitialized ( #1398 ). BUGFIX: Don't fail on empty database files ( #1398 ). BUGFIX: Support ping registration before Glean initializes ( #1393 ).","breadcrumbs":"Changelog » mozilla/glean » v33.9.1 (2020-12-17)","id":"812","title":"v33.9.1 (2020-12-17)"},"813":{"body":"Full changelog Rust Introduce the String List metric type in the RLB. ( #1380 ). Introduce the Datetime metric type in the RLB ( #1384 ). Introduce the CustomDistribution and TimingDistribution metric type in the RLB ( #1394 ).","breadcrumbs":"Changelog » mozilla/glean » v33.9.0 (2020-12-15)","id":"813","title":"v33.9.0 (2020-12-15)"},"814":{"body":"Full changelog Rust Introduce the Memory Distribution metric type in the RLB. ( #1376 ). Shut down Glean in tests before resetting to make sure they don't mistakenly init Glean twice in parallel ( #1375 ). BUGFIX: Fixing 2 lock-order-inversion bugs found by TSan ( #1378 ). TSan runs on mozilla-central tests, which found two (potential) bugs where 2 different locks were acquired in opposite order in different code paths, which could lead to deadlocks in multi-threaded code. As RLB uses multiple threads (e.g. for init and the dispatcher) by default, this can easily become an actual issue. Python All log messages from the Glean SDK are now on the glean logger, obtainable through logging.getLogger(\"glean\"). (Prior to this, each module had its own logger, for example glean.net.ping_upload_worker).","breadcrumbs":"Changelog » mozilla/glean » v33.8.0 (2020-12-10)","id":"814","title":"v33.8.0 (2020-12-10)"},"815":{"body":"Full changelog Rust Upgrade rkv to 0.16.0 (no functional changes) ( #1355 ). Introduce the Event metric type in the RLB ( #1361 ). Python Python Linux wheels no longer work on Linux distributions released before 2014 (they now use the manylinux2014 ABI) ( #1353 ). Unbreak Python on non-Linux ELF platforms (BSD, Solaris/illumos) ( #1363 ).","breadcrumbs":"Changelog » mozilla/glean » v33.7.0 (2020-12-07)","id":"815","title":"v33.7.0 (2020-12-07)"},"816":{"body":"Full changelog Rust BUGFIX: Negative timespans for the timespan metric now correctly record an InvalidValue error ( #1347 ). Introduce the Timespan metric type in the RLB ( #1347 ). Python BUGFIX: Network slowness or errors will no longer block the main dispatcher thread, leaving work undone on shutdown ( #1350 ). BUGFIX: Lower sleep time on upload waits to avoid being stuck when the main process ends ( #1349 ).","breadcrumbs":"Changelog » mozilla/glean » v33.6.0 (2020-12-02)","id":"816","title":"v33.6.0 (2020-12-02)"},"817":{"body":"Full changelog Rust Introduce the UUID metric type in the RLB. Introduce the Labeled metric type in the RLB ( #1327 ). Introduce the Quantity metric type in the RLB. Introduce the shutdown API. Add Glean debugging APIs. Python BUGFIX: Setting a UUID metric to a value that is not in the expected UUID format will now record an error with the Glean error reporting system.","breadcrumbs":"Changelog » mozilla/glean » v33.5.0 (2020-12-01)","id":"817","title":"v33.5.0 (2020-12-01)"},"818":{"body":"Full changelog General When Rkv's safe mode is enabled (features = [\"rkv-safe-mode\"] on the glean-core crate) LMDB data is migrated at first start ( #1322 ). Rust Introduce the Counter metric type in the RLB. Introduce the String metric type in the RLB. BUGFIX: Track the size of the database directory at startup ( #1304 ). Python BUGFIX: Fix too-long sleep time in uploader due to unit mismatch ( #1325 ). Swift BUGFIX: Fix too-long sleep time in uploader due to unit mismatch ( #1325 ).","breadcrumbs":"Changelog » mozilla/glean » v33.4.0 (2020-11-17)","id":"818","title":"v33.4.0 (2020-11-17)"},"819":{"body":"Full changelog General Do not require default-features on rkv and downgrade bincode ( #1317 ) Do not require default-features on rkv and downgrade bincode ( #1317 ) Rust Implement the experiments API ( #1314 )","breadcrumbs":"Changelog » mozilla/glean » v33.3.0 (2020-11-12)","id":"819","title":"v33.3.0 (2020-11-12)"},"82":{"body":"There's a lot of value using the same name for analogous metrics collected across different products. For example, BigQuery makes it simple to join columns with the same name across multiple tables. Therefore, we encourage you to investigate if a similar metric is already being collected by another product. If it is, there may be an opportunity for code reuse across these products, and if all the projects are using the Glean SDK, it's easy for libraries to send their own metrics. If sharing the code doesn't make sense, at a minimum we recommend using the same metric name for similar actions and concepts whenever possible.","breadcrumbs":"Metrics » Reuse names from other applications","id":"82","title":"Reuse names from other applications"},"820":{"body":"Full changelog Python Fix building of Linux wheels ( #1303 ) Python Linux wheels no longer work on Linux distributions released before 2010. (They now use the manylinux2010 ABI, rather than the manylinux1 ABI.) Rust Introduce the RLB net module ( #1292 )","breadcrumbs":"Changelog » mozilla/glean » v33.2.0 (2020-11-10)","id":"820","title":"v33.2.0 (2020-11-10)"},"821":{"body":"Full changelog No changes. v33.1.1 was tagged incorrectly.","breadcrumbs":"Changelog » mozilla/glean » v33.1.2 (2020-11-04)","id":"821","title":"v33.1.2 (2020-11-04)"},"822":{"body":"Full changelog No changes. v33.1.0 was tagged incorrectly.","breadcrumbs":"Changelog » mozilla/glean » v33.1.1 (2020-11-04)","id":"822","title":"v33.1.1 (2020-11-04)"},"823":{"body":"Full changelog General Standardize throttle backoff time throughout all bindings. ( #1240 ) Update glean_parser to 1.29.0 Generated code now includes a comment next to each metric containing the name of the metric in its original snake_case form. Expose the description of the metric types in glean_core using traits. Rust Add the BooleanMetric type. Add the dispatcher module (copied over from mozilla-central ). Allow consumers to specify a custom uploader. Android Update the JNA dependency from 5.2.0 to 5.6.0 The glean-gradle-plugin now makes sure that only a single Miniconda installation will happen at the same time to avoid a race condition when multiple components within the same project are using Glean.","breadcrumbs":"Changelog » mozilla/glean » v33.1.0 (2020-11-04)","id":"823","title":"v33.1.0 (2020-11-04)"},"824":{"body":"Full changelog Note: Previous 33.0.z releases were broken. This release now includes all changes from 33.0.0 to 33.0.3. General Update glean_parser to 1.28.6 BUGFIX: Ensure Kotlin arguments are deterministically ordered Android Breaking change: Updated to the Android Gradle Plugin v4.0.1 and Gradle 6.5.1. Projects using older versions of these components will need to update in order to use newer versions of the Glean SDK. Update the Kotlin Gradle Plugin to version 1.4.10. Fixed the building of .aar releases on Android so they include the Rust shared objects.","breadcrumbs":"Changelog » mozilla/glean » v33.0.4 (2020-09-28)","id":"824","title":"v33.0.4 (2020-09-28)"},"825":{"body":"Full changelog General v33.0.2 was tagged incorrectly. This release is just to correct that mistake.","breadcrumbs":"Changelog » mozilla/glean » v33.0.3 (2020-09-25)","id":"825","title":"v33.0.3 (2020-09-25)"},"826":{"body":"Full changelog Android Fixed the building of .aar releases on Android so they include the Rust shared objects.","breadcrumbs":"Changelog » mozilla/glean » v33.0.2 (2020-09-25)","id":"826","title":"v33.0.2 (2020-09-25)"},"827":{"body":"Full changelog General Update glean_parser to 1.28.6 BUGFIX: Ensure Kotlin arguments are deterministically ordered Android Update the Kotlin Gradle Plugin to version 1.4.10.","breadcrumbs":"Changelog » mozilla/glean » v33.0.1 (2020-09-24)","id":"827","title":"v33.0.1 (2020-09-24)"},"828":{"body":"Full changelog Android Breaking change: Updated to the Android Gradle Plugin v4.0.1 and Gradle 6.5.1. Projects using older versions of these components will need to update in order to use newer versions of the Glean SDK.","breadcrumbs":"Changelog » mozilla/glean » v33.0.0 (2020-09-22)","id":"828","title":"v33.0.0 (2020-09-22)"},"829":{"body":"Full changelog General Update glean_parser to 1.28.6 BUGFIX: Ensure Kotlin arguments are deterministically ordered BUGFIX: Transform ping directory size from bytes to kilobytes before accumulating to glean.upload.pending_pings_directory_size ( #1236 ).","breadcrumbs":"Changelog » mozilla/glean » v32.4.1 (2020-10-01)","id":"829","title":"v32.4.1 (2020-10-01)"},"83":{"body":"Metric identifiers (the combination of a metric's category and name) must be unique across all metrics that are sent by a single application. This includes not only the metrics defined in the app's metrics.yaml, but the metrics.yaml of any Glean SDK-using library that the application uses, including the Glean SDK itself. Therefore, care should be taken to name things specifically enough so as to avoid namespace collisions. In practice, this generally involves thinking carefully about the category of the metric, more than the name. Note: Duplicate metric identifiers are not currently detected at build time. See bug 1578383 for progress on that. However, the probe_scraper process, which runs nightly, will detect duplicate metrics and e-mail the notification_emails associated with the given metrics.","breadcrumbs":"Metrics » Make names unique within an application","id":"83","title":"Make names unique within an application"},"830":{"body":"Full changelog General Allow using quantity metric type outside of Gecko ( #1198 ) Update glean_parser to 1.28.5 The SUPERFLUOUS_NO_LINT warning has been removed from the glinter. It likely did more harm than good, and makes it hard to make metrics.yaml files that pass across different versions of glean_parser. Expired metrics will now produce a linter warning, EXPIRED_METRIC. Expiry dates that are more than 730 days (~2 years) in the future will produce a linter warning, EXPIRATION_DATE_TOO_FAR. Allow using the Quantity metric type outside of Gecko. New parser configs custom_is_expired and custom_validate_expires added. These are both functions that take the expires value of the metric and return a bool. (See Metric.is_expired and Metric.validate_expires). These will allow FOG to provide custom validation for its version-based expires values. Add a limit of 250 pending ping files. ( #1217 ). Android Don't retry the ping uploader when waiting, sleep instead. This avoids a never-ending increase of the backoff time ( #1217 ).","breadcrumbs":"Changelog » mozilla/glean » v32.4.0 (2020-09-18)","id":"830","title":"v32.4.0 (2020-09-18)"},"831":{"body":"Full changelog General Track the size of the database file at startup ( #1141 ). Submitting a ping with upload disabled no longer shows an error message ( #1201 ). BUGFIX: scan the pending pings directories after dealing with upload status on initialization. This is important, because in case upload is disabled we delete any outstanding non-deletion ping file, and if we scan the pending pings folder before doing that we may end up sending pings that should have been discarded. ( #1205 ) iOS Disabled code coverage in release builds ( #1195 ). Python Glean now ships a source package to pip install on platforms where wheels aren't provided.","breadcrumbs":"Changelog » mozilla/glean » v32.3.2 (2020-09-11)","id":"831","title":"v32.3.2 (2020-09-11)"},"832":{"body":"Full changelog Python Fixed the release process to generate all wheels ( #1193 ).","breadcrumbs":"Changelog » mozilla/glean » v32.3.1 (2020-09-09)","id":"832","title":"v32.3.1 (2020-09-09)"},"833":{"body":"Full changelog Android Handle ping registration off the main thread. This removes a potential blocking call ( #1132 ). iOS Handle ping registration off the main thread. This removes a potential blocking call ( #1132 ). Glean for iOS is now being built with Xcode 12.0.0 (Beta 5) ( #1170 ).","breadcrumbs":"Changelog » mozilla/glean » v32.3.0 (2020-08-27)","id":"833","title":"v32.3.0 (2020-08-27)"},"834":{"body":"Full changelog General Move logic to limit the number of retries on ping uploading \"recoverable failures\" to glean-core. ( #1120 ) The functionality to limit the number of retries in these cases was introduced to the Glean SDK in v31.1.0. The work done now was to move that logic to the glean-core in order to avoid code duplication throughout the language bindings. Update glean_parser to v1.28.3 BUGFIX: Generate valid C# code when using Labeled metric types. BUGFIX: Support HashSet and Dictionary in the C# generated code. Add a 10MB quota to the pending pings storage. ( #1100 ) C# Add support for the String List metric type ( #1108 ). Enable generating the C# APIs using the glean_parser ( #1092 ). Add support for the EventMetricType in C# ( #1129 ). Add support for the TimingDistributionMetricType in C# ( #1131 ). Implement the experiments API in C# ( #1145 ). This is the last release with C# language bindings changes. Reach out to the Glean SDK team if you want to use the C# bindings in a new product and require additional features. Python BUGFIX: Limit the number of retries for 5xx server errors on ping uploads ( #1120 ). This kinds of failures yield a \"recoverable error\", which means the ping gets re-enqueued. That can cause infinite loops on the ping upload worker. For python we were incorrectly only limiting the number of retries for I/O errors, another type of \"recoverable error\". kebab-case ping names are now converted to snake_case so they are available on the object returned by load_pings ( #1122 ). For performance reasons, the glinter is no longer run as part of glean.load_metrics(). We recommend running glinter as part of your project's continuous integration instead ( #1124 ). A measure context manager for conveniently measuring runtimes has been added to TimespanMetricType and TimingDistributionMetricType ( #1126 ). Networking errors have changed from ERROR level to DEBUG level so they aren't displayed by default ( #1166 ). iOS Changed logging to use OSLog rather than a mix of NSLog and print. ( #1133 )","breadcrumbs":"Changelog » mozilla/glean » v32.2.0 (2020-08-25)","id":"834","title":"v32.2.0 (2020-08-25)"},"835":{"body":"Full changelog Android Support installing glean_parser in offline mode ( #1065 ). Fix a startup crash on some Android 8 (SDK=25) devices, due to a bug in the Java compiler ( #1135 ).","breadcrumbs":"Changelog » mozilla/glean » v32.1.1 (2020-08-24)","id":"835","title":"v32.1.1 (2020-08-24)"},"836":{"body":"Full changelog General The upload rate limiter has been changed from 10 pings per minute to 15 pings per minute.","breadcrumbs":"Changelog » mozilla/glean » v32.1.0 (2020-08-17)","id":"836","title":"v32.1.0 (2020-08-17)"},"837":{"body":"Full changelog General Limit ping request body size to 1MB. ( #1098 ) iOS Implement ping tagging (i.e. the X-Source-Tags header) through custom URL ( #1100 ). C# Add support for Labeled Strings and Labeled Booleans. Add support for the Counter metric type and Labeled Counter. Add support for the MemoryDistributionMetricType. Python Breaking change: data_dir must always be passed to Glean.initialize. Prior to this, a missing value would store Glean data in a temporary directory. Logging messages from the Rust core are now sent through Python's standard library logging module. Therefore all logging in a Python application can be controlled through the logging module interface. Android BUGFIX: Require activities executed via GleanDebugView to be exported.","breadcrumbs":"Changelog » mozilla/glean » v32.0.0 (2020-08-03)","id":"837","title":"v32.0.0 (2020-08-03)"},"838":{"body":"Full changelog General Implement JWE metric type ( #1073 , #1062 ). DEPRECATION: getUploadEnabled is deprecated (respectively get_upload_enabled in Python) ( #1046 ) Due to Glean's asynchronous initialization the return value can be incorrect. Applications should not rely on Glean's internal state. Upload enabled status should be tracked by the application and communicated to Glean if it changes. Note: The method was removed from the C# and Python implementation. Update glean_parser to v1.28.1 The glean_parser linting was leading consumers astray by incorrectly suggesting that deletion-request be instead deletion_request when used for send_in_pings. This was causing metrics intended for the deletion-request ping to not be included when it was collected and submitted. Consumers that are sending metrics in the deletion-request ping will need to update the send_in_pings value in their metrics.yaml to correct this. Fixes a bug in doc rendering.","breadcrumbs":"Changelog » mozilla/glean » v31.6.0 (2020-07-24)","id":"838","title":"v31.6.0 (2020-07-24)"},"839":{"body":"Full changelog General Implement ping tagging (i.e. the X-Source-Tags header) ( #1074 ). Note that this is not yet implemented for iOS. String values that are too long now record invalid_overflow rather than invalid_value through the Glean error reporting mechanism. This affects the string, event and string list metrics. metrics.yaml files now support a data_sensitivity field to all metrics for specifying the type of data collected in the field. Python The Python unit tests no longer send telemetry to the production telemetry endpoint. BUGFIX: If an application_version isn't provided to Glean.initialize, the client_info.app_display_version metric is set to \"Unknown\", rather than resulting in invalid pings. Android Allow defining which Activity to run next when using the GleanDebugActivity. iOS BUGFIX: The memory unit is now correctly set on the MemoryDistribution metric type in Swift in generated metrics code. C# Metrics can now be generated from the metrics.yaml files.","breadcrumbs":"Changelog » mozilla/glean » v31.5.0 (2020-07-22)","id":"839","title":"v31.5.0 (2020-07-22)"},"84":{"body":"More broadly, you should choose the names of metrics to be as specific as possible. It is not necessary to put the type of the metric in the category or name, since this information is retained in other ways through the entire end-to-end system. For example, if defining a set of events related to search, put them in a category called search, rather than just events or search_events. The events word here would be redundant.","breadcrumbs":"Metrics » Be as specific as possible","id":"84","title":"Be as specific as possible"},"840":{"body":"Full changelog General BUGFIX: fix int32 to ErrorType mapping. The InvalidOverflow had a value mismatch between glean-core and the bindings. This would only be a problem in unit tests. ( #1063 ) Android Enable propagating options to the main product Activity when using the GleanDebugActivity. BUGFIX: Fix the metrics ping collection for startup pings such as reason=upgrade to occur in the same thread/task as Glean initialize. Otherwise, it gets collected after the application lifetime metrics are cleared such as experiments that should be in the ping. ( #1069 )","breadcrumbs":"Changelog » mozilla/glean » v31.4.1 (2020-07-20)","id":"840","title":"v31.4.1 (2020-07-20)"},"841":{"body":"Full changelog General Enable debugging features through environment variables. ( #1058 )","breadcrumbs":"Changelog » mozilla/glean » v31.4.0 (2020-07-16)","id":"841","title":"v31.4.0 (2020-07-16)"},"842":{"body":"Full changelog General Remove locale from baseline ping. ( 1609968 , #1016 ) Persist X-Debug-ID header on store ping. ( 1605097 , #1042 ) BUGFIX: raise an error if Glean is initialized with an empty string as the application_id ( #1043 ). Python BUGFIX: correctly set the app_build metric to the newly provided application_build_id initialization option ( #1031 ). The Python bindings now report networking errors in the glean.upload.ping_upload_failure metric (like all the other bindings) ( #1039 ). Python default upgraded to Python 3.8 ( #995 ) iOS BUGFIX: Make LabeledMetric subscript public, so consuming applications can actually access it ( #1027 )","breadcrumbs":"Changelog » mozilla/glean » v31.3.0 (2020-07-10)","id":"842","title":"v31.3.0 (2020-07-10)"},"843":{"body":"Full changelog General Move debug view tag management to the Rust core. ( 1640575 , #998 ) BUGFIX: Fix mismatch in events keys and values by using glean_parser version 1.23.0.","breadcrumbs":"Changelog » mozilla/glean » v31.2.3 (2020-06-29)","id":"843","title":"v31.2.3 (2020-06-29)"},"844":{"body":"Full changelog Android BUGFIX: Compile dependencies with NDEBUG to avoid linking unavailable symbols. This fixes a crash due to a missing stderr symbol on older Android ( #1020 )","breadcrumbs":"Changelog » mozilla/glean » v31.2.2 (2020-06-26)","id":"844","title":"v31.2.2 (2020-06-26)"},"845":{"body":"Full changelog Python BUGFIX: Core metrics are now present in every ping, even if submit is called before initialize has a chance to complete. ( #1012 )","breadcrumbs":"Changelog » mozilla/glean » v31.2.1 (2020-06-25)","id":"845","title":"v31.2.1 (2020-06-25)"},"846":{"body":"Full changelog General Add rate limiting capabilities to the upload manager. ( 1543612 , #974 ) Android BUGFIX: baseline pings with reason \"dirty startup\" are no longer sent if Glean did not full initialize in the previous run ( #996 ). Python Support for Python 3.5 was dropped ( #987 ). Python wheels are now shipped with Glean release builds, resulting in much smaller libraries ( #1002 ) The Python bindings now use locale.getdefaultlocale() rather than locale.getlocale() to determine the locale ( #1004 ).","breadcrumbs":"Changelog » mozilla/glean » v31.2.0 (2020-06-24)","id":"846","title":"v31.2.0 (2020-06-24)"},"847":{"body":"Full changelog General BUGFIX: Correctly format the date and time in the Date header ( #993 ). Python BUGFIX: Additional time is taken at shutdown to make sure pings are sent and telemetry is recorded. ( 1646173 , #983 ) BUGFIX: Glean will run on the main thread when running in a multiprocessing subprocess ( #986 ).","breadcrumbs":"Changelog » mozilla/glean » v31.1.2 (2020-06-23)","id":"847","title":"v31.1.2 (2020-06-23)"},"848":{"body":"Full changelog Android Dropping the version requirement for lifecycle extensions down again. Upping the required version caused problems in A-C.","breadcrumbs":"Changelog » mozilla/glean » v31.1.1 (2020-06-12)","id":"848","title":"v31.1.1 (2020-06-12)"},"849":{"body":"Full changelog General: The regex crate is no longer required, making the Glean binary smaller ( #949 ) Record upload failures into a new metric ( #967 ) Log FFI errors as actual errors ( #935 ) Limit the number of upload retries in all implementations ( #953 , #968 ) Python Additional safety guarantees for applications that use Python threading ( #962 )","breadcrumbs":"Changelog » mozilla/glean » v31.1.0 (2020-06-11)","id":"849","title":"v31.1.0 (2020-06-11)"},"85":{"body":"The current set of metrics the Glean SDKs support is based on known common use cases, but new use cases are discovered all the time. Please reach out to us on #glean:mozilla.org . If you think you need a new metric type, we have a process for that .","breadcrumbs":"Metrics » What if none of these metric types is the right fit?","id":"85","title":"What if none of these metric types is the right fit?"},"850":{"body":"Full changelog Rust Fix list of included files in published crates","breadcrumbs":"Changelog » mozilla/glean » v31.0.2 (2020-05-29)","id":"850","title":"v31.0.2 (2020-05-29)"},"851":{"body":"Full changelog Rust Relax version requirement for flate2 for compatibility reasons","breadcrumbs":"Changelog » mozilla/glean » v31.0.1 (2020-05-29)","id":"851","title":"v31.0.1 (2020-05-29)"},"852":{"body":"Full changelog General: The version of glean_parser has been upgraded to v1.22.0 A maximum of 10 extra_keys is now enforced for event metric types. Breaking change : (Swift only) Combine all metrics and pings into a single generated file Metrics.swift. For Swift users this requires to change the list of output files for the sdk_generator.sh script. It now only needs to include the single file Generated/Metrics.swift. Python: BUGFIX: lifetime: application metrics are no longer recorded as lifetime: user. BUGFIX: glean-core is no longer crashing when calling uuid.set with invalid UUIDs. Refactor the ping uploader to use the new upload mechanism and add gzip compression. Most of the work in Glean.initialize happens on a worker thread and no longer blocks the main thread. Rust: Expose Datetime types to Rust consumers.","breadcrumbs":"Changelog » mozilla/glean » v31.0.0 (2020-05-28)","id":"852","title":"v31.0.0 (2020-05-28)"},"853":{"body":"Full changelog Android & iOS Ping payloads are now compressed using gzip. iOS Glean.initialize is now a no-op if called from an embedded extension. This means that Glean will only run in the base application process in order to prevent extensions from behaving like separate applications with different client ids from the base application. Applications are responsible for ensuring that extension metrics are only collected within the base application. Python lifetime: application metrics are now cleared after the Glean-owned pings are sent, after the product starts. Glean Python bindings now build in a native Windows environment. BUGFIX: MemoryDistributionMetric now parses correctly in metrics.yaml files. BUGFIX: Glean will no longer crash if run as part of another library's coverage testing.","breadcrumbs":"Changelog » mozilla/glean » v30.1.0 (2020-05-22)","id":"853","title":"v30.1.0 (2020-05-22)"},"854":{"body":"Full changelog General: We completely replaced how the upload mechanism works. glean-core (the Rust part) now controls all upload and coordinates the platform side with its own internals. All language bindings implement ping uploading around a common API and protocol. There is no change for users of Glean, the language bindings for Android and iOS have been adopted to the new mechanism already. Expose RecordedEvent and DistributionData types to Rust consumers ( #876 ) Log crate version at initialize ( #873 ) Android: Refactor the ping uploader to use the new upload mechanism. iOS: Refactor the ping uploader to use the new upload mechanism.","breadcrumbs":"Changelog » mozilla/glean » v30.0.0 (2020-05-13)","id":"854","title":"v30.0.0 (2020-05-13)"},"855":{"body":"Full changelog This is an iOS release only, built with Xcode 11.7 Otherwise no functional changes. iOS Build with Xcode 11.7 ( #1457 )","breadcrumbs":"Changelog » mozilla/glean » v29.1.2 (2021-01-26)","id":"855","title":"v29.1.2 (2021-01-26)"},"856":{"body":"Full changelog Android BUGFIX: Fix a race condition that leads to a ConcurrentModificationException. Bug 1635865","breadcrumbs":"Changelog » mozilla/glean » v29.1.1 (2020-05-22)","id":"856","title":"v29.1.1 (2020-05-22)"},"857":{"body":"Full changelog General: The version of glean_parser has been upgraded to v1.20.4 BUGFIX: yamllint errors are now reported using the correct file name. The minimum and maximum values of a timing distribution can now be controlled by the time_unit parameter. See bug 1630997 for more details.","breadcrumbs":"Changelog » mozilla/glean » v29.1.0 (2020-05-11)","id":"857","title":"v29.1.0 (2020-05-11)"},"858":{"body":"Full changelog General: The version of glean_parser has been upgraded to v1.20.2 ( #827 ): Breaking change: glinter errors found during code generation will now return an error code. glean_parser now produces a linter warning when user lifetime metrics are set to expire. See bug 1604854 for additional context. Android: The PingType.submit() can now be called without a null by Java consumers ( #853 ). Python: BUGFIX: Fixed a race condition in the atexit handler, that would have resulted in the message \"No database found\" ( #854 ). The Glean FFI header is now parsed at build time rather than runtime. Relevant for packaging in PyInstaller, the wheel no longer includes glean.h and adds _glean_ffi.py ( #852 ). The minimum versions of many secondary dependencies have been lowered to make the Glean SDK compatible with more environments. Dependencies that depend on the version of Python being used are now specified using the Declaring platform specific dependencies syntax in setuptools . This means that more recent versions of dependencies are likely to be installed on Python 3.6 and later, and unnecessary backport libraries won't be installed on more recent Python versions. iOS: Glean for iOS is now being built with Xcode 11.4.1 ( #856 )","breadcrumbs":"Changelog » mozilla/glean » v29.0.0 (2020-05-05)","id":"858","title":"v29.0.0 (2020-05-05)"},"859":{"body":"Full changelog General: The baseline ping is now sent when the application goes to foreground, in addition to background and dirty-startup. Python: BUGFIX: The ping uploader will no longer display a trace back when the upload fails due to a failed DNS lookup, network outage, or related issues that prevent communication with the telemetry endpoint. The dependency on inflection has been removed. The Python bindings now use subprocess rather than multiprocessing to perform ping uploading in a separate process. This should be more compatible on all of the platforms Glean supports.","breadcrumbs":"Changelog » mozilla/glean » v28.0.0 (2020-04-23)","id":"859","title":"v28.0.0 (2020-04-23)"},"86":{"body":"The Glean SDK has rich support for writing unit tests involving metrics. Writing a good unit test is a large topic, but in general, you should write unit tests for all new telemetry that does the following: Performs the operation being measured. Asserts that metrics contain the expected data, using the testGetValue API on the metric. Where applicable, asserts that no errors are recorded, such as when values are out of range, using the testGetNumRecordedErrors API. In addition to unit tests, it is good practice to validate the incoming data for the new metric on a pre-release channel to make sure things are working as expected.","breadcrumbs":"Metrics » How do I make sure my metric is working?","id":"86","title":"How do I make sure my metric is working?"},"860":{"body":"Full changelog General: BUGFIX: baseline pings sent at startup with the dirty_startup reason will now include application lifetime metrics ( #810 ) iOS: Breaking change: Change Glean iOS to use Application Support directory #815 . No migration code is included. This will reset collected data if integrated without migration. Please contact the Glean SDK team if this affects you. Python BUGFIX: Fixed a race condition between uploading pings and deleting the temporary directory on shutdown of the process.","breadcrumbs":"Changelog » mozilla/glean » v27.1.0 (2020-04-09)","id":"860","title":"v27.1.0 (2020-04-09)"},"861":{"body":"Full changelog General Glean will now detect when the upload enabled flag changes outside of the application, for example due to a change in a config file. This means that if upload is disabled while the application wasn't running (e.g. between the runs of a Python command using the Glean SDK), the database is correctly cleared and a deletion request ping is sent. See #791 . The events ping now includes a reason code: startup, background or max_capacity. iOS: BUGFIX: A bug where the metrics ping is sent immediately at startup on the last day of the month has been fixed. Glean for iOS is now being built with Xcode 11.4.0 The measure convenience function on timing distributions and time spans will now cancel the timing if the measured function throws, then rethrow the exception ( #808 ) Broken doc generation has been fixed ( #805 ). Kotlin The measure convenience function on timing distributions and time spans will now cancel the timing if the measured function throws, then rethrow the exception ( #808 ) Python: Glean will now wait at application exit for up to one second to let its worker thread complete. Ping uploading now happens in a separate child process by default. This can be disabled with the allow_multiprocessing configuration option.","breadcrumbs":"Changelog » mozilla/glean » v27.0.0 (2020-04-08)","id":"861","title":"v27.0.0 (2020-04-08)"},"862":{"body":"Full changelog General: The version of glean_parser has been updated to 1.19.0: Breaking change: The regular expression used to validate labels is stricter and more correct. Add more information about pings to markdown documentation: State whether the ping includes client id; Add list of data review links; Add list of related bugs links. glean_parser now makes it easier to write external translation functions for different language targets. BUGFIX: glean_parser now works on 32-bit Windows. Android: gradlew clean will no longer remove the Miniconda installation in ~/.gradle/glean. Therefore clean can be used without reinstalling Miniconda afterward every time. Python: Breaking Change : The glean.util and glean.hardware modules, which were unintentionally public, have been made private. Most Glean work and I/O is now done on its own worker thread. This brings the parallelism Python in line with the other platforms. The timing distribution, memory distribution, string list, labeled boolean and labeled string metric types are now supported in Python ( #762 , #763 , #765 , #766 )","breadcrumbs":"Changelog » mozilla/glean » v26.0.0 (2020-03-27)","id":"862","title":"v26.0.0 (2020-03-27)"},"863":{"body":"Full changelog Python: The Boolean, Datetime and Timespan metric types are now supported in Python ( #731 , #732 , #737 ) Make public, document and test the debugging features ( #733 )","breadcrumbs":"Changelog » mozilla/glean » v25.1.0 (2020-02-26)","id":"863","title":"v25.1.0 (2020-02-26)"},"864":{"body":"Full changelog General: ping_type is not included in the ping_info any more ( #653 ), the pipeline takes the value from the submission URL. The version of glean_parser has been upgraded to 1.18.2: Breaking Change (Java API) Have the metrics names in Java match the names in Kotlin. See Bug 1588060 . The reasons a ping are sent are now included in the generated markdown documentation. Android: The Glean.initialize method runs mostly off the main thread ( #672 ). Labels in labeled metrics now have a correct, and slightly stricter, regular expression. See label format for more information. iOS: The baseline ping will now include reason codes that indicate why it was submitted. If an unclean shutdown is detected (e.g. due to force-close), this ping will be sent at startup with reason: dirty_startup. Per Bug 1614785 , the clearing of application lifetime metrics now occurs after the metrics ping is sent in order to preserve values meant to be included in the startup metrics ping. initialize() now performs most of its work in a background thread. Python: When the pre-init task queue overruns, this is now recorded in the metric glean.error.preinit_tasks_overflow. glinter warnings are printed to stderr when loading metrics.yaml and pings.yaml files.","breadcrumbs":"Changelog » mozilla/glean » v25.0.0 (2020-02-17)","id":"864","title":"v25.0.0 (2020-02-17)"},"865":{"body":"Full changelog General: Add locale to client_info section. Deprecation Warning Since locale is now in the client_info section, the one in the baseline ping ( glean.baseline.locale ) is redundant and will be removed by the end of the quarter. Drop the Glean handle and move state into glean-core ( #664 ) If an experiment includes no extra fields, it will no longer include {\"extra\": null} in the JSON payload. Support for ping reason codes was added. The metrics ping will now include reason codes that indicate why it was submitted. The version of glean_parser has been upgraded to 1.17.3 Android: Collections performed before initialization (preinit tasks) are now dispatched off the main thread during initialization. The baseline ping will now include reason codes that indicate why it was submitted. If an unclean shutdown is detected (e.g. due to force-close), this ping will be sent at startup with reason: dirty_startup. iOS: Collections performed before initialization (preinit tasks) are now dispatched off the main thread and not awaited during initialization. Added recording of glean.error.preinit_tasks_overflow to report when the preinit task queue overruns, leading to data loss. See bug 1609734","breadcrumbs":"Changelog » mozilla/glean » v24.2.0 (2020-02-11)","id":"865","title":"v24.2.0 (2020-02-11)"},"866":{"body":"Full changelog General: Stopping a non started measurement in a timing distribution will now be reported as an invalid_state error. Android: A new metric glean.error.preinit_tasks_overflow was added to report when the preinit task queue overruns, leading to data loss. See bug 1609482","breadcrumbs":"Changelog » mozilla/glean » v24.1.0 (2020-01-16)","id":"866","title":"v24.1.0 (2020-01-16)"},"867":{"body":"Full changelog General: Breaking Change An enableUpload parameter has been added to the initialize() function. This removes the requirement to call setUploadEnabled() prior to calling the initialize() function. Android: The metrics ping scheduler will now only send metrics pings while the application is running. The application will no longer \"wake up\" at 4am using the Work Manager. The code for migrating data from Glean SDK before version 19 was removed. When using the GleanTestLocalServer rule in instrumented tests, pings are immediately flushed by the WorkManager and will reach the test endpoint as soon as possible. Python: The Python bindings now support Python 3.5 - 3.7. The Python bindings are now distributed as a wheel on Linux, macOS and Windows.","breadcrumbs":"Changelog » mozilla/glean » v24.0.0 (2020-01-14)","id":"867","title":"v24.0.0 (2020-01-14)"},"868":{"body":"Full changelog Android: BUGFIX: The Glean Gradle plugin will now work if an app or library doesn't have a metrics.yaml or pings.yaml file. iOS: The released iOS binaries are now built with Xcode 11.3.","breadcrumbs":"Changelog » mozilla/glean » v23.0.1 (2020-01-08)","id":"868","title":"v23.0.1 (2020-01-08)"},"869":{"body":"Full changelog Python bindings: Support for events and UUID metrics was added. Android: The Glean Gradle Plugin correctly triggers docs and API updates when registry files change, without requiring them to be deleted. parseISOTimeString has been made 4x faster. This had an impact on Glean migration and initialization. Metrics with lifetime: application are now cleared when the application is started, after startup Glean SDK pings are generated. All platforms: The public method PingType.send() (in all platforms) have been deprecated and renamed to PingType.submit(). Rename deletion_request ping to deletion-request ping after glean_parser update","breadcrumbs":"Changelog » mozilla/glean » v23.0.0 (2020-01-07)","id":"869","title":"v23.0.0 (2020-01-07)"},"87":{"body":"The metrics.yaml file defines the metrics your application or library will send. They are organized into categories. The overall organization is: # Required to indicate this is a `metrics.yaml` file\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 toolbar: click: type: event description: | Event to record toolbar clicks. metadata: tags: - Interaction notification_emails: - CHANGE-ME@example.com bugs: - https://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review expires: 2019-06-01 # <-- Update to a date in the future double_click: ... Refer to the metrics YAML registry format for a full reference on the metrics.yaml file structure.","breadcrumbs":"Metrics » Adding the metric to the metrics.yaml file","id":"87","title":"Adding the metric to the metrics.yaml file"},"870":{"body":"Full changelog Add InvalidOverflow error to TimingDistributions ( #583 )","breadcrumbs":"Changelog » mozilla/glean » v22.1.0 (2019-12-17)","id":"870","title":"v22.1.0 (2019-12-17)"},"871":{"body":"Full changelog Add option to defer ping lifetime metric persistence ( #530 ) Add a crate for the nice control API ( #542 ) Pending deletion_request pings are resent on start ( #545 )","breadcrumbs":"Changelog » mozilla/glean » v22.0.0 (2019-12-05)","id":"871","title":"v22.0.0 (2019-12-05)"},"872":{"body":"Full changelog Timers are reset when disabled. That avoids recording timespans across disabled/enabled toggling ( #495 ). Add a new flag to pings: send_if_empty ( #528 ) Upgrade glean_parser to v1.12.0 Implement the deletion request ping in Glean ( #526 )","breadcrumbs":"Changelog » mozilla/glean » v21.3.0 (2019-12-03)","id":"872","title":"v21.3.0 (2019-12-03)"},"873":{"body":"Full changelog All platforms The experiments API is no longer ignored before the Glean SDK initialized. Calls are recorded and played back once the Glean SDK is initialized. String list items were being truncated to 20, rather than 50, bytes when using .set() (rather than .add()). This has been corrected, but it may result in changes in the sent data if using string list items longer than 20 bytes.","breadcrumbs":"Changelog » mozilla/glean » v21.2.0 (2019-11-21)","id":"873","title":"v21.2.0 (2019-11-21)"},"874":{"body":"Full changelog Android: Use the LifecycleEventObserver interface, rather than the DefaultLifecycleObserver interface, since the latter isn't compatible with old SDK targets.","breadcrumbs":"Changelog » mozilla/glean » v21.1.1 (2019-11-20)","id":"874","title":"v21.1.1 (2019-11-20)"},"875":{"body":"Full changelog Android: Two new metrics were added to investigate sending of metrics and baseline pings. See bug 1597980 for more information. Glean's two lifecycle observers were refactored to avoid the use of reflection. All platforms: Timespans will now not record an error if stopping after setting upload enabled to false.","breadcrumbs":"Changelog » mozilla/glean » v21.1.0 (2019-11-20)","id":"875","title":"v21.1.0 (2019-11-20)"},"876":{"body":"Full changelog Android: The GleanTimerId can now be accessed in Java and is no longer a typealias. Fixed a bug where the metrics ping was getting scheduled twice on startup. All platforms Bumped glean_parser to version 1.11.0.","breadcrumbs":"Changelog » mozilla/glean » v21.0.0 (2019-11-18)","id":"876","title":"v21.0.0 (2019-11-18)"},"877":{"body":"Full changelog In earlier 20.x.x releases, the version of glean-ffi was incorrectly built against the wrong version of glean-core.","breadcrumbs":"Changelog » mozilla/glean » v20.2.0 (2019-11-11)","id":"877","title":"v20.2.0 (2019-11-11)"},"878":{"body":"Full changelog The version of Glean is included in the Glean Gradle plugin. When constructing a ping, events are now sorted by their timestamp. In practice, it rarely happens that event timestamps are unsorted to begin with, but this guards against a potential race condition and incorrect usage of the lower-level API.","breadcrumbs":"Changelog » mozilla/glean » v20.1.0 (2019-11-11)","id":"878","title":"v20.1.0 (2019-11-11)"},"879":{"body":"Full changelog Glean users should now use a Gradle plugin rather than a Gradle script. (#421) See integrating with the build system docs for more information. In Kotlin, metrics that can record errors now have a new testing method, testGetNumRecordedErrors. (#401)","breadcrumbs":"Changelog » mozilla/glean » v20.0.0 (2019-11-11)","id":"879","title":"v20.0.0 (2019-11-11)"},"88":{"body":"The reference documentation for each metric type goes into detail about using each metric type from your code. Note that all Glean metrics are write-only. Outside of unit tests, it is impossible to retrieve a value from the Glean SDK's database. While this may seem limiting, this is required to: enforce the semantics of certain metric types (e.g. that Counters can only be incremented). ensure the lifetime of the metric (when it is cleared or reset) is correctly handled.","breadcrumbs":"Metrics » Using the metric from your code","id":"88","title":"Using the metric from your code"},"880":{"body":"Full changelog Fixed a crash calling start on a timing distribution metric before Glean is initialized. Timings are always measured, but only recorded when upload is enabled ( #400 ) BUGFIX: When the Debug Activity is used to log pings, each ping is now logged only once ( #407 ) New invalid state error, used in timespan recording ( #230 ) Add an Android crash instrumentation walk-through ( #399 ) Fix crashing bug by avoiding assert-printing in LMDB ( #422 ) Upgrade dependencies, including rkv ( #416 )","breadcrumbs":"Changelog » mozilla/glean » v19.1.0 (2019-10-29)","id":"880","title":"v19.1.0 (2019-10-29)"},"881":{"body":"Full changelog First stable release of Glean in Rust (aka glean-core). This is a major milestone in using a cross-platform implementation of Glean on the Android platform. Fix round-tripping of timezone offsets in dates ( #392 ) Handle dynamic labels in coroutine tasks ( #394 )","breadcrumbs":"Changelog » mozilla/glean » v19.0.0 (2019-10-22)","id":"881","title":"v19.0.0 (2019-10-22)"},"882":{"body":"Full changelog Ignore dynamically stored labels if Glean is not initialized ( #374 ) Make sure ProGuard doesn't remove Glean classes from the app ( #380 ) Keep track of pings in all modes ( #378 ) Add jnaTest dependencies to the forUnitTest JAR ( #382 )","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING6 (2019-10-18)","id":"882","title":"v0.0.1-TESTING6 (2019-10-18)"},"883":{"body":"Full changelog Upgrade to NDK r20 ( #365 )","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING5 (2019-10-10)","id":"883","title":"v0.0.1-TESTING5 (2019-10-10)"},"884":{"body":"Full changelog Take DST into account when converting a calendar into its items ( #359 ) Include a macOS library in the forUnitTests builds ( #358 ) Keep track of all registered pings in test mode ( #363 )","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING4 (2019-10-09)","id":"884","title":"v0.0.1-TESTING4 (2019-10-09)"},"885":{"body":"Full changelog Allow configuration of Glean through the GleanTestRule Bump glean_parser version to 1.9.2","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING3 (2019-10-08)","id":"885","title":"v0.0.1-TESTING3 (2019-10-08)"},"886":{"body":"Full changelog Include a Windows library in the forUnitTests builds","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING2 (2019-10-07)","id":"886","title":"v0.0.1-TESTING2 (2019-10-07)"},"887":{"body":"Full changelog","breadcrumbs":"Changelog » mozilla/glean » v0.0.1-TESTING1 (2019-10-02)","id":"887","title":"v0.0.1-TESTING1 (2019-10-02)"},"888":{"body":"First testing release. Found a bug? Edit this page on GitHub.","breadcrumbs":"Changelog » mozilla/glean » General","id":"888","title":"General"},"889":{"body":"Full changelog","breadcrumbs":"Changelog » mozilla/glean.js » Unreleased changes","id":"889","title":"Unreleased changes"},"89":{"body":"One thing to note is that we try to adhere to the coding conventions of each language wherever possible, so the metric name and category in the metrics.yaml (which is in snake_case) may be changed to some other case convention, such as camelCase, when used from code. Event extras and labels are never capitalized, no matter the target language. Category and metric names in the metrics.yaml are in snake_case, but given the Kotlin coding standards defined by ktlint , these identifiers must be camelCase in Kotlin. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: import org.mozilla.yourApplication.GleanMetrics.Views\nGleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, but given the Swift coding standards defined by swiftlint , these identifiers must be camelCase in Swift. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: GleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, which matches the PEP8 standard, so no translation is needed for Python. Given the Rust coding standards defined by clippy , identifiers should all be snake_case. This includes category names which in the metrics.yaml are dotted.snake_case: compound.category: metric_name: ... In Rust this becomes: use firefox_on_glean::metrics; metrics::compound_category::metric_name... JavaScript identifiers are customarily camelCase. This requires transforming a metric defined in the metrics.yaml as: compound.category: metric_name: ... to a form useful in JS as: import * as compoundCategory from \"./path/to/generated/files/compoundCategory.js\"; compoundCategory.metricName... Firefox Desktop has Coding Style Guidelines for both C++ and JS. This results in, for a metric defined in the metrics.yaml as: compound.category: metric_name: ... an identifier that looks like: C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::compound_category::metric_name... JavaScript Glean.compoundCategory.metricName... Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Capitalization","id":"89","title":"Capitalization"},"890":{"body":"Full changelog #1971 : Bumped glean_parser version to 14.5.0. #1970 : Add window.Glean.debugSession API for automatically opening a link to the Debug Ping Viewer with your current session selected.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.3 (2024-08-02)","id":"890","title":"v5.0.3 (2024-08-02)"},"891":{"body":"Full changelog #1935 : BREAKING CHANGE : Remove migrateFromLegacyStorage capability and configuration option. If your project currently sets the migrateFromLegacyStorage value, this will no longer work. #1942 : Bumped glean_parser version to 14.1.2.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.2 (2024-05-23)","id":"891","title":"v5.0.2 (2024-05-23)"},"892":{"body":"Full changelog #1923 : Bumped glean_parser version to 14.0.1. #1921 : BUGFIX: Fix issue causing glean.client.annotation.experimentation_id metric to not get added in certain pings. #1919 : Add glean.page_id to Glean automatic events.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.1 (2024-04-30)","id":"892","title":"v5.0.1 (2024-04-30)"},"893":{"body":"Full changelog This is the official release based on the v5.0.0-pre.0 release.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.0 (2024-03-25)","id":"893","title":"v5.0.0 (2024-03-25)"},"894":{"body":"Full changelog #1895 : Improve automatic click events for nested elements. #1899 : Bug 1886113 - Add wall-clock timestamps to all events. #1900 : Bug 1886443 - automatic click events in web sample project.","breadcrumbs":"Changelog » mozilla/glean.js » v5.0.0-pre.0 (2024-03-21)","id":"894","title":"v5.0.0-pre.0 (2024-03-21)"},"895":{"body":"Full changelog #1866 : Added a new uploader that falls back to fetch if navigator.sendBeacon fails. #1876 : BREAKING CHANGE : navigator.sendBeacon with fallback to fetch (see #1866) is now the default uploader. This can be changed manually. #1850 : Automatically record basic session information (session_id & session_count) for web properties.","breadcrumbs":"Changelog » mozilla/glean.js » v4.1.0-pre.0 (2024-03-05)","id":"895","title":"v4.1.0-pre.0 (2024-03-05)"},"896":{"body":"Full changelog This is the official release based on the v4.0.0-pre.x releases.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0 (2024-01-24)","id":"896","title":"v4.0.0 (2024-01-24)"},"897":{"body":"Full changelog #1848 : Support for automatically collecting element click events (first version) #1849 : Truncate event extra strings to 500 bytes. This also updates other string-based metrics to truncate based on max bytes rather than a set number of characters.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0-pre.3 (2023-12-22)","id":"897","title":"v4.0.0-pre.3 (2023-12-22)"},"898":{"body":"Full changelog #1835 : Added support for automatic page load instrumentation. #1846 : Add logging messages when using the debugging APIs from the browser console.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0-pre.2 (2023-12-06)","id":"898","title":"v4.0.0-pre.2 (2023-12-06)"},"899":{"body":"Full changelog #1834 : Added support for navigator.sendBeacon. This is not turned on by default and needs to be enabled manually.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0-pre.1 (2023-12-01)","id":"899","title":"v4.0.0-pre.1 (2023-12-01)"},"9":{"body":"The Glean integration checklist can help to ensure your Glean SDK-using product is meeting all of the recommended guidelines. Products (applications or libraries) using a Glean SDK to collect telemetry must : Integrate the Glean SDK into the build system . Since the Glean SDK does some code generation for your metrics at build time, this requires a few more steps than just adding a library. Go through data review process for all newly collected data. Ensure that telemetry coming from automated testing or continuous integration is either not sent to the telemetry server or tagged with the automation tag using the sourceTag feature . At least one week before releasing your product, enable your product's application id and metrics to be ingested by the data platform (and, as a consequence, indexed by the Glean Dictionary ). Important consideration for libraries: For libraries that are adding Glean, you will need to indicate which applications use the library as a dependency so that the library metrics get correctly indexed and added to the products that consume the library. If the library is added to a new product later, then it is necessary to file a new [bug][dataeng-bug] to add it as a dependency to that product in order for the library metrics to be collected along with the data from the new product. Additionally, applications (but not libraries) must : Request a data review to add Glean to your application (since it can send data out of the box). Initialize Glean as early as possible at application startup. Provide a way for users to turn data collection off (e.g. providing settings to control Glean.setUploadEnabled()). The exact method used is application-specific. Looking for an integration guide? Step-by-step tutorials for each supported language/platform, can be found on the specific integration guides: JavaScript Kotlin Python Rust Swift Qt/QML Server Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Glean integration checklist","id":"9","title":"Glean integration checklist"},"90":{"body":"","breadcrumbs":"Metrics » Adding new metrics » Adding new metrics","id":"90","title":"Adding new metrics"},"900":{"body":"Full changelog #1808 : BREAKING CHANGE : Make glean.js fully synchronous. #1835 : Automatic instrumentation of page load events for simple web properties.","breadcrumbs":"Changelog » mozilla/glean.js » v4.0.0-pre.0 (2023-11-27)","id":"900","title":"v4.0.0-pre.0 (2023-11-27)"},"901":{"body":"Full changelog This is the official release based on v3.0.0-pre.1.","breadcrumbs":"Changelog » mozilla/glean.js » v3.0.0 (2023-11-16)","id":"901","title":"v3.0.0 (2023-11-16)"},"902":{"body":"Full changelog #1814 : BREAKING CHANGE : Temporarily drop support for web extensions. This platform will be added again once we complete the Glean.js platform refactoring.","breadcrumbs":"Changelog » mozilla/glean.js » v3.0.0-pre.1 (2023-11-15)","id":"902","title":"v3.0.0-pre.1 (2023-11-15)"},"903":{"body":"Full changelog #1810 : BREAKING CHANGE : Drop support for QT. #1811 : Update glean_parser to v10.0.3.","breadcrumbs":"Changelog » mozilla/glean.js » v3.0.0-pre.0 (2023-11-10)","id":"903","title":"v3.0.0-pre.0 (2023-11-10)"},"904":{"body":"Full changelog #1788 : Fix window is undefined error when setting up browser debugging.","breadcrumbs":"Changelog » mozilla/glean.js » v2.0.5 (2023-10-16)","id":"904","title":"v2.0.5 (2023-10-16)"},"905":{"body":"Full changelog #1772 : Fix bug where window.Glean functions were getting set on non-browser properties. #1784 : Store window.Glean debugging values in sessionStorage. This will set debug options on page init while the current session is still active.","breadcrumbs":"Changelog » mozilla/glean.js » v2.0.4 (2023-10-10)","id":"905","title":"v2.0.4 (2023-10-10)"},"906":{"body":"Full changelog #1770 : Allow debugging in browser console via window.Glean.","breadcrumbs":"Changelog » mozilla/glean.js » v2.0.3 (2023-09-27)","id":"906","title":"v2.0.3 (2023-09-27)"},"907":{"body":"Full changelog #1768 : Add support for GLEAN_PYTHON and GLEAN_PIP environment variables. #1755 : Add sync check to set function for the URL metric. #1766 : Update default maxEvents count to 1. This means an events ping will be sent after each recorded event unless the maxEvents count is explicitly set to a larger number.","breadcrumbs":"Changelog » mozilla/glean.js » v2.0.2 (2023-09-14)","id":"907","title":"v2.0.2 (2023-09-14)"},"908":{"body":"Full changelog #1751 : Add a migration flag to initialize. If not explicitly set in the config object the migration from IndexedDB to LocalStorage will not occur. The only projects that should ever set this flag are those that have used Glean.js in production with a version /uploader entry point. #580 : Limit size of pings database to 250 pings or 10MB. #580 : BUGFIX: Pending pings at startup up are uploaded from oldest to newest. #607 : Record an error when incoherent timestamps are calculated for events after a restart. #630 : Accept booleans and numbers as event extras. #647 : Implement the Text metric type. #658 : Implement rate limiting for ping upload. Only up to 15 ping submissions every 60 seconds are now allowed. #658 : BUGFIX: Unblock ping uploading jobs after the maximum of upload failures are hit for a given uploading window. #661 : Include unminified version of library on Qt/QML builds. #681 : BUGFIX: Fix error in scanning events database upon initialization on Qt/QML. This bug prevents the changes introduced in #526 from working properly in Qt/QML. #692 : BUGFIX: Ensure events database is initialized at a time Glean is already able to record metrics. This bug also prevents the changes introduced in #526 from working properly in all platforms.","breadcrumbs":"Changelog » mozilla/glean.js » v0.19.0 (2021-09-03)","id":"929","title":"v0.19.0 (2021-09-03)"},"93":{"body":"The following is a set of questions to ask about the data being collected to help better determine which metric type to use.","breadcrumbs":"Metrics » Adding new metrics » Choosing a metric type","id":"93","title":"Choosing a metric type"},"930":{"body":"Full changelog #552 : BUGFIX: Do not clear deletion-request ping from upload queue when disabling upload.","breadcrumbs":"Changelog » mozilla/glean.js » v0.18.1 (2021-07-22)","id":"930","title":"v0.18.1 (2021-07-22)"},"931":{"body":"Full changelog #542 : Implement shutdown API.","breadcrumbs":"Changelog » mozilla/glean.js » v0.18.0 (2021-07-20)","id":"931","title":"v0.18.0 (2021-07-20)"},"932":{"body":"Full changelog #529 : Implement the URL metric type. #526 : Implement new events sorting logic, which allows for reliable sorting of events throughout restarts.","breadcrumbs":"Changelog » mozilla/glean.js » v0.17.0 (2021-07-16)","id":"932","title":"v0.17.0 (2021-07-16)"},"933":{"body":"Full changelog #346 : Provide default HTTP client for Qt/QML platform. #399 : Check if there are ping data before attempting to delete it. This change lowers the amount of log messages related to attempting to delete nonexistent data. #411 : Tag all messages logged by Glean with the component they are coming from. #415 , #430 : Gzip ping payload before upload This changes the signature of Uploader.post to accept string | Uint8Array for the body parameter, instead of only string. #431 : BUGFIX: Record the timestamp for events before dispatching to the internal task queue. #462 : Implement persistent storage for Qt/QML platform. #466 : Expose ErrorType enum, for using with the testGetNumRecordedErrors API. #497 : Implement limit of 1MB for ping request payload. Limit is calculated after gzip compression.","breadcrumbs":"Changelog » mozilla/glean.js » v0.16.0 (2021-07-06)","id":"933","title":"v0.16.0 (2021-07-06)"},"934":{"body":"Full changelog #389 : BUGFIX: Make sure to submit a deletion-request ping before clearing data when toggling upload. #375 : Release Glean.js for Qt as a QML module.","breadcrumbs":"Changelog » mozilla/glean.js » v0.15.0 (2021-06-03)","id":"934","title":"v0.15.0 (2021-06-03)"},"935":{"body":"Full changelog #342 : BUGFIX: Fix timespan payload representation to match exactly the payload expected according to the Glean schema. #343 : BUGFIX: Report the correct failure exit code when the Glean command line tool fails.","breadcrumbs":"Changelog » mozilla/glean.js » v0.14.1 (2021-05-21)","id":"935","title":"v0.14.1 (2021-05-21)"},"936":{"body":"Full changelog #313 : Send Glean.js version and platform information on X-Telemetry-Agent header instead of User-Agent header.","breadcrumbs":"Changelog » mozilla/glean.js » v0.14.0 (2021-05-19)","id":"936","title":"v0.14.0 (2021-05-19)"},"937":{"body":"Full changelog #313 : Implement error recording mechanism and error checking testing API. #319 : BUGFIX: Do not allow recording floats with the quantity and counter metric types.","breadcrumbs":"Changelog » mozilla/glean.js » v0.13.0 (2021-05-18)","id":"937","title":"v0.13.0 (2021-05-18)"},"938":{"body":"Full changelog #279 : BUGFIX: Ensure only empty pings triggers logging of \"empty ping\" messages. #288 : Support collecting PlatformInfo from Qt applications. Only OS name and locale are supported. #281 : Add the QuantityMetricType. #303 : Implement setRawNanos API for the TimespanMetricType.","breadcrumbs":"Changelog » mozilla/glean.js » v0.12.0 (2021-05-11)","id":"938","title":"v0.12.0 (2021-05-11)"},"939":{"body":"Full changelog #260 : Set minimum node (>= 12.0.0) and npm (>= 7.0.0) versions. #202 : Add a testing API for the ping type. #253 : Implement the timespan metric type. BUGFIX: Report event timestamps in milliseconds. #261 : Show a spinner while setting up python virtual environment #273 : BUGFIX: Expose the missing LabeledMetricType and TimespanMetricType in Qt.","breadcrumbs":"Changelog » mozilla/glean.js » v0.11.0 (2021-05-03)","id":"939","title":"v0.11.0 (2021-05-03)"},"94":{"body":"If the value is true or false, use a boolean metric . If the value is a string, use a string metric . For example, to record the name of the default search engine. Beware: string metrics are exceedingly general, and you are probably best served by selecting the most specific metric for the job, since you'll get better error checking and richer analysis tools for free. For example, avoid storing a number in a string metric --- you probably want a counter metric instead. If you need to store multiple string values in a metric, use a string list metric . For example, you may want to record the list of other Mozilla products installed on the device. For all of the metric types in this section that measure single values, it is especially important to consider how the lifetime of the value relates to the ping it is being sent in. Since these metrics don't perform any aggregation on the client side, when a ping containing the metric is submitted, it will contain only the \"last known\" value for the metric, potentially resulting in data loss . There is further discussion of metric lifetimes below.","breadcrumbs":"Metrics » Adding new metrics » Is it a single measurement?","id":"94","title":"Is it a single measurement?"},"940":{"body":"Full changelog #256 : BUGFIX: Add the missing js extension to the dispatcher.","breadcrumbs":"Changelog » mozilla/glean.js » v0.10.2 (2021-04-26)","id":"940","title":"v0.10.2 (2021-04-26)"},"941":{"body":"Full changelog #254 : BUGFIX: Allow the usage of the Glean specific metrics API before Glean is initialized.","breadcrumbs":"Changelog » mozilla/glean.js » v0.10.1 (2021-04-26)","id":"941","title":"v0.10.1 (2021-04-26)"},"942":{"body":"Full changelog #228 : Provide a Qt build with every new release. #227 : BUGFIX: Fix a bug that prevented using labeled_string and labeled_boolean. #226 : BUGFIX: Fix Qt build configuration to target ES5.","breadcrumbs":"Changelog » mozilla/glean.js » v0.10.0 (2021-04-20)","id":"942","title":"v0.10.0 (2021-04-20)"},"943":{"body":"Full changelog #220 : Update glean_parser to version 3.1.1.","breadcrumbs":"Changelog » mozilla/glean.js » v0.9.2 (2021-04-19)","id":"943","title":"v0.9.2 (2021-04-19)"},"944":{"body":"Full changelog #219 : BUGFIX: Fix path to ping entry point in package.json.","breadcrumbs":"Changelog » mozilla/glean.js » v0.9.1 (2021-04-19)","id":"944","title":"v0.9.1 (2021-04-19)"},"945":{"body":"Full changelog #201 : BUGFIX: Do not let the platform be changed after Glean is initialized. #215 : Update the glean-parser to version 3.1.0. #214 : Improve error reporting of the Glean command.","breadcrumbs":"Changelog » mozilla/glean.js » v0.9.0 (2021-04-19)","id":"945","title":"v0.9.0 (2021-04-19)"},"946":{"body":"Full changelog #206 : BUGFIX: Fix ping URL path. Application ID was being reporting as undefined.","breadcrumbs":"Changelog » mozilla/glean.js » v0.8.1 (2021-04-14)","id":"946","title":"v0.8.1 (2021-04-14)"},"947":{"body":"Full changelog #173 : Drop Node.js support from webext entry points #155 : Allow to define custom uploaders in the configuration. #184 : Correctly report appBuild and appDisplayVersion if provided by the user. #198 , #192 , #184 , #180 , #174 , #165 : BUGFIX: Remove all circular dependencies.","breadcrumbs":"Changelog » mozilla/glean.js » v0.8.0 (2021-04-13)","id":"947","title":"v0.8.0 (2021-04-13)"},"948":{"body":"Full changelog #143 : Provide a way to initialize and reset Glean.js in tests.","breadcrumbs":"Changelog » mozilla/glean.js » v0.7.0 (2021-03-26)","id":"948","title":"v0.7.0 (2021-03-26)"},"949":{"body":"Full changelog #130 : BUGFIX: Fix destination path of CommonJS' build package.json.","breadcrumbs":"Changelog » mozilla/glean.js » v0.6.1 (2021-03-22)","id":"949","title":"v0.6.1 (2021-03-22)"},"95":{"body":"For tracking user behavior, it is usually meaningful to know the over of events that lead to the use of a feature. Therefore, for user behavior, an event metric is usually the best choice. Be aware, however, that events can be particularly expensive to transmit, store and analyze, so should not be used for higher-frequency measurements - though this is less of a concern in server environments .","breadcrumbs":"Metrics » Adding new metrics » Are you measuring user behavior?","id":"95","title":"Are you measuring user behavior?"},"950":{"body":"Full changelog #123 : BUGFIX: Fix support for ES6 environments. Include .js extensions in all local import statements. ES6' module resolution algorithm does not currently support automatic resolution of file extensions and does not have the ability to import directories that have an index file. The extension and the name of the file being import need to always be specified. See: https://nodejs.org/api/esm.html#esm_customizing_esm_specifier_resolution_algorithm Add a type: module declaration to the main package.json. Without this statement, ES6 support is disabled. See: https://nodejs.org/docs/latest-v13.x/api/esm.html#esm_enabling.: To keep support for CommonJS, in our CommonJS build we include a package.json that overrides the type: module of the main package.json with a type: commonjs.","breadcrumbs":"Changelog » mozilla/glean.js » v0.6.0 (2021-03-22)","id":"950","title":"v0.6.0 (2021-03-22)"},"951":{"body":"Full changelog #96 : Provide a ping encryption plugin. This plugin listens to the afterPingCollection event. It receives the collected payload of a ping and returns an encrypted version of it using a JWK provided upon instantiation. #95 : Add a plugins property to the configuration options and create an event abstraction for triggering internal Glean events. The only internal event triggered at this point is the afterPingCollection event, which is triggered after ping collection and logging, and before ping storing. Plugins are built to listen to a specific Glean event. Each plugin must define an action, which is executed every time the event they are listening to is triggered. #101 : BUGFIX: Only validate Debug View Tag and Source Tags when they are present. #102 : BUGFIX: Include a Glean User-Agent header in all pings. #97 : Add support for labeled metric types (string, boolean and counter). #105 : Introduce and publish the glean command for using the glean-parser in a virtual environment.","breadcrumbs":"Changelog » mozilla/glean.js » v0.5.0 (2021-03-18)","id":"951","title":"v0.5.0 (2021-03-18)"},"952":{"body":"Full changelog #92 : Remove web-ext-types from peerDependencies list. #98 : Add external APIs for setting the Debug View Tag and Source Tags. #99 : BUGFIX: Add a default ping value in the testing APIs.","breadcrumbs":"Changelog » mozilla/glean.js » v0.4.0 (2021-03-10)","id":"952","title":"v0.4.0 (2021-03-10)"},"953":{"body":"Full changelog #90 : Provide exports for CommonJS and browser environments. #90 : BUGFIX: Accept lifetimes as strings when instantiating metric types. #90 : BUGFIX: Fix type declaration paths. #90 : BUGFIX: Make web-ext-types a peer dependency. This is quick fix until Bug 1694701 is fixed.","breadcrumbs":"Changelog » mozilla/glean.js » v0.3.0 (2021-02-24)","id":"953","title":"v0.3.0 (2021-02-24)"},"954":{"body":"#85 : Include type declarations in @mozilla/glean webext package bundle. Full changelog","breadcrumbs":"Changelog » mozilla/glean.js » v0.2.0 (2021-02-23)","id":"954","title":"v0.2.0 (2021-02-23)"},"955":{"body":"Full changelog #77 : Include README.md file in @mozilla/glean package bundle.","breadcrumbs":"Changelog » mozilla/glean.js » v0.1.1 (2021-02-17)","id":"955","title":"v0.1.1 (2021-02-17)"},"956":{"body":"Full changelog #73 : Add this changelog file. #42 : Implement the deletion-request ping. #41 : Implement the logPings debug tool. When logPings is enabled, pings are logged upon collection. #40 : Use the dispatcher in all Glean external API functions. Namely: Metric recording functions; Ping submission; initialize and setUploadEnabled. #36 : Implement the event metric type. #31 : Implement a task Dispatcher to help in executing Promises in a deterministic order. #26 : Implement the setUploadEnabled API. #25 : Implement an adapter that leverages browser APIs to upload pings. #24 : Implement a ping upload manager. #23 : Implement the initialize API and glean internal metrics. #22 : Implement the PingType structure and a ping maker. #20 : Implement the datetime metric type. #17 : Implement the UUID metric type. #14 : Implement the counter metric type. #13 : Implement the string metric type. #11 : Implement the boolean metric type. #9 : Implement a metrics database module. #8 : Implement a web extension version of the underlying storage module. #6 : Implement an abstract underlying storage module. Found a bug? Edit this page on GitHub.","breadcrumbs":"Changelog » mozilla/glean.js » v0.1.0 (2021-02-17)","id":"956","title":"v0.1.0 (2021-02-17)"},"957":{"body":"“This Week in Glean” is a series of blog posts that the Glean Team at Mozilla is using to try to communicate better about our work. They could be release notes, documentation, hopes, dreams, or whatever: so long as it is inspired by Glean.","breadcrumbs":"This Week in Glean » This Week in Glean (TWiG)","id":"957","title":"This Week in Glean (TWiG)"},"958":{"body":"2019-10-17: Glean on Desktop (Project FOG) 2019-10-24: A Release 2019-11-01: A detective story 2019-11-08: Instrumenting Android Crashes with Glean 2019-11-19: GeckoView + Glean = Fenix performance metrics 2019-11-21: What is the Glean logo about? 2019-11-22: Glean in Private 2019-11-29: Differences 2019-12-06: Migrations 2020-01-10: Glossary 2020-02-03: Cargo features - an investigation 2020-02-14: Extending Glean: build re-usable types for new use-cases 2020-02-21: A Distributed Team Echoes Distributed Workflow 2020-02-28: mozregression telemetry (part 1) 2020-03-09: Metric lifetimes 2020-03-13: Adding support for GLAM on Glean 2020-03-25: Comparing Apples to Oranges 2020-04-15: How Much Does That Data Cost 2020-04-27: Glean for Python on Windows 2020-05-04: Bytes in Memory (on Android) 2020-05-08: mozregression telemetry (part 2) 2020-05-26: How does the Glean SDK send gzipped pings 2020-06-03: The Glean SDK and iOS Application Extensions, or a Tale of Two Sandboxes 2020-06-12: Project FOG Update, end of H12020 2020-07-16: Mozilla Telemetry in 2020: From “Just Firefox” to a “Galaxy of Data” 2020-07-24: Automated end-to-end tests for Glean 2020-08-06: Experimental integration Glean with Unity applications 2020-09-01: Leveraging Rust to build cross-platform mobile libraries 2020-09-25: glean-core to Wasm experiment 2020-10-06: FOG Progress report 2020-10-21: Cross-Platform Language Binding Generation with Rust and “uniffi” 2020-11-02: Glean.js 2020-11-19: Fantastic Facts and Where To Find Them 2020-12-01: Glean is Frictionless Data Collection 2020-12-18: Glean in 2021 2021-01-15: Proposals for Asynchronous Design 2021-01-28: The Glean Dictionary 2021-02-24: Boring Monitoring 2021-03-16: Reducing Release Friction 2021-04-07: Publishing Glean.js or “How I configured an npm package that has multiple entry points” 2021-04-16: rustc, iOS and an M1 2021-05-03: Glean Dictionary updates 2021-06-14: ⚠️Danger zone⚠️: handling sensitive data in Glean 2021-06-25: Funday! 2021-07-22: Firefox Telemetry is to Glean as C++ is to Rust 2021-07-26: Shipping Glean with GeckoView 2021-08-05: Building a Mobile Acquisition Dashboard in Looker 2021-08-23: Why choosing the right data type for your metric matters 2021-09-07: Data Reviews are Important, Glean Parser makes them Easy 2021-09-17: Glean & GeckoView 2021-09-30: Glean.js v0.19.0 Supports Node.js 2021-10-18: Designing a telemetry collection with Glean 2021-10-22: The Three Roles of Data Engagements 2021-11-01: Crashes & a buggy Glean 2021-12-14: How Long Must I Wait Before I Can See My Data? 2021-12-17: Looking back at Glean in 2021 2022-01-31: Building and Deploying a Rust library on iOS 2022-02-09: Migrating Legacy Telemetry Collections to Glean 2022-02-16: What If I Want To Collect All The Data? 2022-02-25: Your personal Glean data pipeline 2022-10-27: Page Load Data, Three Ways (Or, How Expensive Are Events?) 2023-05-25: Reading “The Manager’s Path” by Camille Fournier 2024-06-27: Cosmic Rays From Outer Space! (What Comes Next?) Found a bug? Edit this page on GitHub.","breadcrumbs":"This Week in Glean » Blog posts","id":"958","title":"Blog posts"},"959":{"body":"There are two important questions to answer before adding new content to this book: Where to include this content? In which format to present it? This guide aims to provide context for answering both questions.","breadcrumbs":"Contribution Guidelines » Contribution Guidelines","id":"959","title":"Contribution Guidelines"},"96":{"body":"If you want to know how many times something happened, use a counter metric . If you are counting a group of related things, or you don't know what all of the things to count are at build time, use a labeled counter metric . If you need to know how many times something happened relative to the number of times something else happened, use a rate metric . If you need to know when the things being counted happened relative to other things, consider using an event .","breadcrumbs":"Metrics » Adding new metrics » Are you counting things?","id":"96","title":"Are you counting things?"},"960":{"body":"Where to add new content? Overview User Guides API Reference SDK Specific Information Appendix In which format to present content? General guidelines Link to other internal pages and sections whenever that is possible Prefer using headers whenever a new topic is introduced Favor creating new pages, instead of adding unrelated content to an already existing page Custom elements Tabs Tab tooltips Custom block quotes","breadcrumbs":"Contribution Guidelines » Table of contents","id":"960","title":"Table of contents"},"961":{"body":"This book is divided in five different sections. Each section contains pages that are of a specific type. New content will fit in one of these section. Following is an explanation on what kind of content fits in each section.","breadcrumbs":"Contribution Guidelines » Where to add new content?","id":"961","title":"Where to add new content?"},"962":{"body":"Is the content you want to add an essay or high level explanation on some aspect of Glean? The overview section is the place to provide important higher level context for users of Glean. This section may include essays about Glean’s views, principles, data practices, etc. It also contains primers on information such as what are the Glean SDKs","breadcrumbs":"Contribution Guidelines » Overview","id":"962","title":"Overview"},"963":{"body":"Is the content you want to add a general purpose guide on a Glean aspect or feature? This section is the place for Glean SDK user guides. Pages under this section contain prose format guides on how to include Glean in a project, how to add metrics, how to create pings, and so on. Pages on this section may link to the API Reference pages, but should not themselves be API References. Guides can be quite long, thus we should favor having one page per SDK instead of using tabs.","breadcrumbs":"Contribution Guidelines » User Guides","id":"963","title":"User Guides"},"964":{"body":"Is the content you want to add a developer reference on a specific Glean API? This section of the book contains reference for all of Glean’s user APIs. Its pages follow a strict structure. Each API description contains: A title with the name of the API. It’s important to use titles, because they automatically generate links to that API. A brief description of what the API does. Tabs with examples for using that API in each SDK. Even if a certain SDK does not contain a given API, the tab will be included in the tabs bar in the disabled state. The API Reference pages should not contain any guides in prose format, they should all be linked from the User’s Guide when convenient.","breadcrumbs":"Contribution Guidelines » API Reference","id":"964","title":"API Reference"},"965":{"body":"Is the content you want to add a SDK specific guide on a Glean feature? Different SDKs may require some dedicated pages, these section contains these pages. Each SDK has a top level section under this section, specific pages live under these titles.","breadcrumbs":"Contribution Guidelines » SDK Specific Information","id":"965","title":"SDK Specific Information"},"966":{"body":"Is the content you want to add support content for the rest of the content on book? The appendix contains support information related to the Glean SDKs or the content of this book.","breadcrumbs":"Contribution Guidelines » Appendix","id":"966","title":"Appendix"},"967":{"body":"","breadcrumbs":"Contribution Guidelines » In which format to present content?","id":"967","title":"In which format to present content?"},"968":{"body":"Link to other internal pages and sections whenever that is possible Each page of the book should be written as if it were the first page a user is visiting ever. There should be links to other pages of the book wherever there is missing context in the current page. This is important, because documentations are first and foremost reference books, manuals. They should not be expected to be read in order. Prefer using headers whenever a new topic is introduced mdbook (the tool used to build this book) turns all headers into links. Which is useful to refer to specific documentation sections. Favor creating new pages, instead of adding unrelated content to an already existing page This makes it easier to find content through the Summary.","breadcrumbs":"Contribution Guidelines » General guidelines","id":"968","title":"General guidelines"},"969":{"body":"Tabs Tabs are useful for providing small code examples of Glean's APIs for each SDK. A tabs section starts with the tab_header include and ends with the tab_footer include . Each tab is declared in between these include statements. Each tab content is placed inside an html div tag with the data-lang and class=\"tab\" attributes. The data-lang attribute contains the title of the tab. Titles must match for different tabs on the same SDK. Whenever a user clicks in a tab with a specific title, all tabs with that same title will be opened by default, until the user clicks in a tab with a different title. Every tab section should contain tabs for all Glean SDKs, even if an SDK does not provide the API in question. In this case, the tab div should still be there without any inner HTML. When that is the case that tab will be rendered in a disabled state. These are the tabs every tab section is expected to contain, in order: Kotlin Java Swift Python Rust JavaScript Firefox Desktop Finally, here is an example code for a tabs sections: {{#include ../../shared/tab_header.md}}\n Kotlin information...\n\n Java information...\n\n Swift information...\n\n Python information...`\n\n Rust information...\n\n\n\n\n{{#include ../../shared/tab_footer.md}} And this is how those tabs will look like: Kotlin information... Java information... Swift information... Python information...` Rust information... Tab tooltips Tabs in a disabled i.e. tabs that do not have any content, will show a tooltip when hovered. By default, this tooltip will show the message doe not provide this API. The following data-* attributes can be used to modify this message. data-bug This attribute expects a Bugzilla bug number. When this attribute is added a link to the provided bug will be added to the tooltip text. data-info This attribute expects free form text or valid HTML. Be careful when adding long texts here. If a text needs to be too long, consider adding it as an actual section / paragraph to the page instead of as a tooltip. This is how you can use the above attributes. {{#include ../../shared/tab_header.md}}\n... \n\n\n\n\n\n{{#include ../../shared/tab_footer.md}} And this is how each tool tip is rendered. Custom block quotes Sometimes it is necessary to bring attention to a special piece of information, or simply to provide extra context related to the a given text. In order to do that, there are three custom block quote formats available. Info quote An information block quote format, to provide useful extra context for a given text. Warning quote A warning block quote format, to provide useful warning related to a given text. Stop quote A stronger warning block quote format, to provide useful warning related to a given text in a more emphatic format. Use these sparingly. To include such quotes, again you can use mdbook include statements. For the above quotes, this is the corresponding code. {{#include ../../shared/blockquote-info.html}} ##### Info quote > An information blockquote format, to provide useful extra context for a given text. {{#include ../../shared/blockquote-warning.html}} ##### Warning quote > A warning blockquote format, to provide useful warning related to a given text. {{#include ../../shared/blockquote-stop.html}} ##### Stop quote > A stronger warning blockquote format, to provide useful warning related to a given text in a\n> more emphatic format. Use these sparingly. It is possible to use any level header with these special block quotes and also no header at all. Found a bug? Edit this page on GitHub.","breadcrumbs":"Contribution Guidelines » Custom elements","id":"969","title":"Custom elements"},"97":{"body":"If you need to record an absolute time, use a datetime metric . Datetimes are recorded in the user's local time, according to their device's real time clock, along with a timezone offset from UTC. Datetime metrics allow specifying the resolution they are collected at, and to stay lean , they should only be collected at the minimum resolution required to answer your question. If you need to record how long something takes you have a few options. If you need to measure the total time spent doing a particular task, look to the timespan metric . Timespan metrics allow specifying the resolution they are collected at, and to stay lean , they should only be collected at the minimum resolution required to answer your question. Note that this metric should only be used to measure time on a single thread. If multiple overlapping timespans are measured for the same metric, an invalid state error is recorded. If you need to measure the relative occurrences of many timings, use a timing distribution . It builds a histogram of timing measurements, and is safe to record multiple concurrent timespans on different threads. If you need to know the time between multiple distinct actions that aren't a simple \"begin\" and \"end\" pair, consider using an event .","breadcrumbs":"Metrics » Adding new metrics » Are you measuring time?","id":"97","title":"Are you measuring time?"},"98":{"body":"Think carefully about how long the metric will be needed, and set the expires parameter to disable the metric at the earliest possible time. This is an important component of Mozilla's lean data practices . When the metric passes its expiration date (determined at build time), it will automatically stop collecting data. When a metric's expiration is within in 14 days, emails will be sent from telemetry-alerts@mozilla.com to the notification_emails addresses associated with the metric. At that time, the metric should be removed, which involves removing it from the metrics.yaml file and removing uses of it in the source code. Removing a metric does not affect the availability of data already collected by the pipeline. If the metric is still needed after its expiration date, it should go back for another round of data review to have its expiration date extended. Important: Ensure that telemetry alerts are received and are reviewed in a timely manner. Expired metrics don't record any data, extending or removing a metric should be done in time. Consider adding both a group email address and an individual who is responsible for this metric to the notification_emails list.","breadcrumbs":"Metrics » Adding new metrics » For how long do you need to collect this data?","id":"98","title":"For how long do you need to collect this data?"},"99":{"body":"The lifetime parameter of a metric defines when its value will be cleared. There are three lifetime options available: ping (default) The metric is cleared each time it is submitted in the ping. This is the most common case, and should be used for metrics that are highly dynamic, such as things computed in response to the user's interaction with the application. application The metric is related to an application run, and is cleared after the application restarts and any Glean-owned ping, due at startup, is submitted. This should be used for things that are constant during the run of an application, such as the operating system version. In practice, these metrics are generally set during application startup. A common mistake--- using the ping lifetime for these type of metrics---means that they will only be included in the first ping sent during a particular run of the application. user NOTE: Reach out to the Glean team before using this. The metric is part of the user's profile and will live as long as the profile lives. This is often not the best choice unless the metric records a value that really needs to be persisted for the full lifetime of the user profile, e.g. an identifier like the client_id, the day the product was first executed. It is rare to use this lifetime outside of some metrics that are built in to the Glean SDK. While lifetimes are important to understand for all metric types, they are particularly important for the metric types that record single values and don't aggregate on the client (boolean, string, labeled_string, string_list, datetime and uuid), since these metrics will send the \"last known\" value and missing the earlier values could be a form of unintended data loss.","breadcrumbs":"Metrics » Adding new metrics » When should the Glean SDK automatically clear the measurement?","id":"99","title":"When should the Glean SDK automatically clear the measurement?"}},"length":970,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"2":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"6":{".":{"0":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"808":{"tf":1.0}}},"8":{".":{"3":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"768":{"tf":1.0}}},"6":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{".":{"0":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"748":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"2":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{".":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":54,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.4142135623730951},"482":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"664":{"tf":1.0},"677":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"732":{"tf":1.0},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"766":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"817":{"tf":1.0},"829":{"tf":1.0},"855":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"896":{"tf":1.0},"899":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0},"958":{"tf":2.8284271247461903}}},"2":{"df":19,"docs":{"730":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"791":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"816":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":3.0}}},"3":{"df":33,"docs":{"158":{"tf":1.7320508075688772},"164":{"tf":1.0},"171":{"tf":1.7320508075688772},"288":{"tf":1.0},"554":{"tf":2.449489742783178},"728":{"tf":1.0},"729":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.0},"804":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"872":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"909":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.0},"934":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"958":{"tf":2.6457513110645907}},"t":{"1":{"7":{":":{"3":{"0":{":":{"0":{"0":{"df":2,"docs":{"664":{"tf":1.0},"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":{}},"df":0,"docs":{}}},"4":{":":{"0":{"0":{"df":11,"docs":{"158":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"175":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"727":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"760":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"798":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"892":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"958":{"tf":2.23606797749979}}},"5":{":":{"0":{"0":{"df":2,"docs":{"183":{"tf":1.0},"554":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"716":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"871":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.0},"910":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"958":{"tf":2.449489742783178}}},"6":{"df":30,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"720":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"775":{"tf":1.0},"786":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"87":{"tf":1.0},"898":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"958":{"tf":2.8284271247461903}},"t":{"0":{"9":{":":{"5":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"717":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"869":{"tf":1.0},"886":{"tf":1.0},"913":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"958":{"tf":2.449489742783178}}},"8":{"df":22,"docs":{"719":{"tf":1.0},"720":{"tf":1.0},"736":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"766":{"tf":1.0},"768":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":2.23606797749979}}},"9":{"df":31,"docs":{"718":{"tf":1.0},"735":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"796":{"tf":1.0},"803":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"860":{"tf":1.0},"884":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"958":{"tf":2.6457513110645907}}},"df":64,"docs":{"108":{"tf":1.4142135623730951},"127":{"tf":1.0},"138":{"tf":1.4142135623730951},"142":{"tf":2.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"271":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"386":{"tf":2.0},"396":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":2.23606797749979},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":2.23606797749979},"428":{"tf":2.23606797749979},"438":{"tf":2.23606797749979},"449":{"tf":2.0},"464":{"tf":2.8284271247461903},"465":{"tf":1.7320508075688772},"468":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"508":{"tf":2.23606797749979},"520":{"tf":1.0},"532":{"tf":2.23606797749979},"544":{"tf":2.8284271247461903},"551":{"tf":2.449489742783178},"553":{"tf":2.449489742783178},"555":{"tf":2.0},"560":{"tf":1.0},"566":{"tf":2.23606797749979},"575":{"tf":1.0},"578":{"tf":2.0},"589":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":2.0},"609":{"tf":1.0},"612":{"tf":1.4142135623730951},"618":{"tf":1.0},"624":{"tf":2.23606797749979},"635":{"tf":2.23606797749979},"643":{"tf":1.4142135623730951},"664":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"716":{"tf":1.0},"728":{"tf":1.0},"734":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"1":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},",":{"0":{"2":{"4":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{",":{"5":{"7":{"6":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{",":{"7":{"4":{"1":{",":{"8":{"2":{"4":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"0":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"3":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"1":{"1":{".":{"0":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"3":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"2":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"5":{"df":1,"docs":{"830":{"tf":1.0}}},"6":{"df":3,"docs":{"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"0":{"df":2,"docs":{"824":{"tf":1.0},"827":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{".":{"0":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"792":{"tf":1.0}}},"8":{".":{"2":{"1":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"2":{"3":{"df":1,"docs":{"727":{"tf":1.0}}},"4":{"df":1,"docs":{"721":{"tf":1.0}}},"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"8":{".":{"0":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":3,"docs":{"585":{"tf":2.449489742783178},"586":{"tf":2.449489742783178},"590":{"tf":1.0}}},"df":8,"docs":{"142":{"tf":1.7320508075688772},"171":{"tf":1.0},"315":{"tf":1.0},"551":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"774":{"tf":1.0}}},"1":{"df":1,"docs":{"142":{"tf":1.0}}},"2":{"df":1,"docs":{"846":{"tf":1.0}}},"4":{"df":1,"docs":{"846":{"tf":1.0}}},"6":{"df":1,"docs":{"918":{"tf":1.0}}},"df":15,"docs":{"328":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"524":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.4142135623730951},"616":{"tf":1.0},"738":{"tf":1.4142135623730951},"774":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"845":{"tf":1.0}}},"5":{"df":1,"docs":{"919":{"tf":1.0}}},"6":{"df":2,"docs":{"842":{"tf":1.0},"919":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"844":{"tf":1.0}}},"4":{"df":2,"docs":{"505":{"tf":2.8284271247461903},"507":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"842":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"842":{"tf":1.0}}},"9":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"842":{"tf":1.0}}},"3":{"df":1,"docs":{"842":{"tf":1.0}}},"5":{"df":1,"docs":{"917":{"tf":1.0}}},"6":{"df":2,"docs":{"838":{"tf":1.0},"916":{"tf":1.0}}},"8":{"5":{"7":{"6":{".":{"0":{"df":1,"docs":{"517":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"df":1,"docs":{"841":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"838":{"tf":1.0}}},"3":{"df":1,"docs":{"840":{"tf":1.0}}},"5":{"df":2,"docs":{"835":{"tf":1.0},"916":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"918":{"tf":1.0}}},"9":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"916":{"tf":1.0}}},"3":{"df":1,"docs":{"838":{"tf":1.0}}},"4":{"df":1,"docs":{"839":{"tf":1.0}}},"7":{"df":1,"docs":{"917":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"834":{"tf":1.0}}},"8":{"df":1,"docs":{"837":{"tf":1.0}}},"df":0,"docs":{}},":":{"1":{"0":{":":{"1":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"3":{"df":1,"docs":{"757":{"tf":1.0}}},"6":{"df":2,"docs":{"720":{"tf":1.0},"757":{"tf":1.0}}},"df":0,"docs":{}},"df":64,"docs":{"127":{"tf":1.0},"183":{"tf":2.23606797749979},"218":{"tf":1.0},"258":{"tf":1.0},"275":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"717":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"744":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.0},"842":{"tf":1.0},"852":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"917":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"952":{"tf":1.0},"958":{"tf":2.8284271247461903}},"m":{"b":{"df":4,"docs":{"135":{"tf":1.0},"521":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}}},"1":{".":{"3":{"df":1,"docs":{"868":{"tf":1.0}}},"4":{".":{"0":{"df":1,"docs":{"861":{"tf":1.0}}},"1":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"855":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"834":{"tf":1.0},"837":{"tf":1.0}}},"8":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"834":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"834":{"tf":1.0}}},"4":{"df":1,"docs":{"834":{"tf":1.0}}},"6":{"df":1,"docs":{"834":{"tf":1.0}}},"9":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"1":{"df":1,"docs":{"834":{"tf":1.0}}},"2":{"df":2,"docs":{"833":{"tf":1.4142135623730951},"915":{"tf":1.0}}},"3":{"df":1,"docs":{"834":{"tf":1.0}}},"5":{"df":1,"docs":{"835":{"tf":1.0}}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"831":{"tf":1.0}}},"5":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"833":{"tf":1.0},"915":{"tf":1.0}}},"8":{"df":1,"docs":{"915":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"832":{"tf":1.0}}},"5":{"df":1,"docs":{"831":{"tf":1.0}}},"8":{"df":1,"docs":{"830":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"258":{"tf":1.0},"288":{"tf":1.0},"480":{"tf":1.0},"507":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"733":{"tf":1.0},"741":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"831":{"tf":1.0},"849":{"tf":1.0},"857":{"tf":1.0},"865":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"938":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":3.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"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":{".":{"0":{".":{"0":{"df":2,"docs":{"833":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":1,"docs":{"831":{"tf":1.0}}},"5":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"7":{"df":2,"docs":{"830":{"tf":1.4142135623730951},"914":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"3":{"df":1,"docs":{"915":{"tf":1.0}}},"8":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"914":{"tf":1.4142135623730951}}},"4":{"/":{"a":{"df":2,"docs":{"132":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"829":{"tf":1.0}}},"df":1,"docs":{"950":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"820":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"164":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"729":{"tf":1.0},"731":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"801":{"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},"819":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"958":{"tf":2.449489742783178}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"0":{"3":{"df":1,"docs":{"820":{"tf":1.0}}},"4":{"df":1,"docs":{"818":{"tf":1.0}}},"df":1,"docs":{"949":{"tf":1.0}}},"1":{"4":{"df":1,"docs":{"819":{"tf":1.0}}},"7":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"818":{"tf":1.0}}},"5":{"df":1,"docs":{"818":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}},"3":{"5":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"df":1,"docs":{"816":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"816":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"816":{"tf":1.0}}},"3":{"df":1,"docs":{"815":{"tf":1.0}}},"5":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"815":{"tf":1.0}}},"3":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"814":{"tf":1.0}}},"6":{"df":1,"docs":{"814":{"tf":1.0}}},"8":{"df":1,"docs":{"814":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"813":{"tf":1.0}}},"4":{"df":1,"docs":{"813":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"812":{"tf":1.0}}},"4":{"df":1,"docs":{"813":{"tf":1.0}}},"8":{"df":1,"docs":{"812":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":8,"docs":{"151":{"tf":1.0},"288":{"tf":1.0},"752":{"tf":1.0},"789":{"tf":1.0},"854":{"tf":1.0},"947":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0}}},"4":{".":{"0":{".":{"1":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"759":{"tf":1.0}}},"1":{".":{"2":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"738":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"3":{"df":1,"docs":{"811":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"913":{"tf":1.0}}},"6":{"df":1,"docs":{"811":{"tf":1.0}}},"7":{"df":1,"docs":{"811":{"tf":1.0}}},"8":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"810":{"tf":1.0}}},"8":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"809":{"tf":1.0}}},"2":{"df":1,"docs":{"809":{"tf":1.0}}},"4":{"df":1,"docs":{"808":{"tf":1.0}}},"8":{"df":1,"docs":{"807":{"tf":1.0}}},"df":1,"docs":{"948":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"807":{"tf":1.0}}},"2":{"df":1,"docs":{"807":{"tf":1.0}}},"9":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"2":{"df":2,"docs":{"807":{"tf":1.0},"912":{"tf":1.0}}},"4":{"df":1,"docs":{"807":{"tf":1.0}}},"5":{"df":1,"docs":{"807":{"tf":1.7320508075688772}}},"7":{"df":2,"docs":{"855":{"tf":1.0},"912":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"806":{"tf":1.0}}},"2":{"df":1,"docs":{"806":{"tf":1.0}}},"5":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"806":{"tf":1.0}}},"2":{"df":1,"docs":{"804":{"tf":1.0}}},"3":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"805":{"tf":1.0}}},"5":{"df":1,"docs":{"805":{"tf":1.0}}},"9":{"7":{"6":{"1":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"288":{"tf":1.0},"77":{"tf":1.0},"774":{"tf":1.0},"867":{"tf":1.0},"907":{"tf":1.0},"946":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"5":{".":{"1":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"7":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"805":{"tf":1.0}}},"2":{"9":{"3":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"912":{"tf":1.0}}},"4":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":2,"docs":{"804":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"6":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"3":{"4":{"df":1,"docs":{"804":{"tf":1.0}}},"8":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"782":{"tf":1.0}}},"3":{"6":{"1":{"2":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"947":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"803":{"tf":1.0}}},"1":{"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"802":{"tf":1.0}}},"8":{"3":{"8":{"3":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"802":{"tf":1.0}}},"6":{"7":{"6":{"4":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"6":{"0":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"4":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"1":{"9":{"1":{"2":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"802":{"tf":1.0}}},"5":{"df":1,"docs":{"793":{"tf":1.0}}},"6":{"df":1,"docs":{"802":{"tf":1.0}}},"7":{"7":{"6":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"0":{"df":1,"docs":{"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"5":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"135":{"tf":1.0},"315":{"tf":1.0},"733":{"tf":1.0},"743":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"770":{"tf":1.0},"780":{"tf":1.0},"809":{"tf":1.0},"813":{"tf":1.0},"836":{"tf":1.0},"902":{"tf":1.0},"920":{"tf":1.0},"922":{"tf":1.0},"929":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"6":{"0":{"1":{"5":{"5":{"0":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"799":{"tf":2.449489742783178}}},"4":{"8":{"5":{"4":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"801":{"tf":1.0}}},"5":{"0":{"9":{"7":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"8":{"2":{"df":2,"docs":{"127":{"tf":1.0},"866":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"4":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"8":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"801":{"tf":1.0}}},"4":{"7":{"8":{"5":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"801":{"tf":1.0}}},"6":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},"2":{"8":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"9":{"9":{"7":{"df":1,"docs":{"857":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"801":{"tf":1.0}}},"5":{"8":{"6":{"5":{"df":1,"docs":{"856":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"5":{"7":{"5":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"7":{"3":{"df":1,"docs":{"847":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"3":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"799":{"tf":1.0}}},"6":{"5":{"8":{"9":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"4":{"7":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"947":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"798":{"tf":1.0}}},"5":{"0":{"4":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"797":{"tf":1.0}}},"9":{"df":1,"docs":{"797":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"910":{"tf":1.0}}},"2":{"2":{"7":{"3":{"df":1,"docs":{"747":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"910":{"tf":1.0}}},"9":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"8":{"3":{"7":{"0":{"7":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"7":{"0":{"1":{"df":1,"docs":{"953":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"3":{"6":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"909":{"tf":1.0}}},"7":{"df":1,"docs":{"795":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"732":{"tf":1.0},"773":{"tf":1.0},"788":{"tf":1.0},"804":{"tf":1.0},"841":{"tf":1.0},"866":{"tf":1.0},"901":{"tf":1.0},"904":{"tf":1.0},"932":{"tf":1.0},"958":{"tf":2.0}}},"7":{"1":{"1":{"9":{"2":{"8":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{"2":{"5":{"df":2,"docs":{"124":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"8":{"0":{"7":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"909":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"909":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"4":{"3":{"1":{"4":{"0":{"df":1,"docs":{"919":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"5":{"3":{"df":1,"docs":{"626":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"792":{"tf":1.0}}},"8":{"df":1,"docs":{"909":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"5":{"0":{"2":{"3":{"5":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"908":{"tf":1.0}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"5":{"df":1,"docs":{"907":{"tf":1.0}}},"6":{"df":1,"docs":{"792":{"tf":1.0}}},"9":{"df":1,"docs":{"792":{"tf":1.0}}},"df":3,"docs":{"498":{"tf":1.0},"521":{"tf":1.0},"590":{"tf":1.0}}},"6":{"2":{"8":{"5":{"9":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"4":{"9":{"df":1,"docs":{"774":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"907":{"tf":1.0}}},"7":{"0":{"3":{"7":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"907":{"tf":1.0}}},"9":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"906":{"tf":1.0}}},"2":{"1":{"5":{"6":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"905":{"tf":1.0}}},"4":{"df":1,"docs":{"791":{"tf":1.0}}},"5":{"4":{"2":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"790":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"0":{"3":{"7":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"789":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"786":{"tf":1.0}}},"4":{"df":1,"docs":{"905":{"tf":1.0}}},"7":{"2":{"3":{"4":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"904":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"786":{"tf":1.0}}},"3":{"df":1,"docs":{"788":{"tf":1.4142135623730951}}},"6":{"2":{"5":{"8":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"1":{"9":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"0":{"0":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"737":{"tf":1.0},"754":{"tf":1.0},"769":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"800":{"tf":1.0},"812":{"tf":1.0},"818":{"tf":1.0},"836":{"tf":1.0},"864":{"tf":1.0},"870":{"tf":1.0},"914":{"tf":1.0},"928":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"8":{"0":{"0":{"6":{"4":{"6":{"df":1,"docs":{"755":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"1":{"1":{"2":{"8":{"df":1,"docs":{"754":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"2":{"5":{"5":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"3":{"5":{"1":{"3":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{"1":{"5":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":2,"docs":{"787":{"tf":1.0},"900":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"903":{"tf":1.0}}},"1":{"2":{"5":{"3":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"2":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"903":{"tf":1.0}}},"2":{"6":{"7":{"2":{"df":1,"docs":{"749":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"4":{"5":{"9":{"2":{"df":1,"docs":{"127":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"902":{"tf":1.0}}},"5":{"2":{"3":{"3":{"df":1,"docs":{"741":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"0":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"785":{"tf":1.0}}},"9":{"1":{"6":{"1":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"785":{"tf":1.0}}},"8":{"0":{"6":{"6":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"4":{"5":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"9":{"3":{"7":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"2":{"4":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"8":{"1":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"784":{"tf":1.0},"899":{"tf":1.0}}},"5":{"df":2,"docs":{"898":{"tf":1.0},"900":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"5":{"3":{"3":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"898":{"tf":1.0}}},"7":{"9":{"5":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"0":{"1":{"df":2,"docs":{"124":{"tf":1.0},"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}},"9":{"df":1,"docs":{"897":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"895":{"tf":1.0}}},"2":{"df":2,"docs":{"776":{"tf":1.0},"783":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"895":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"782":{"tf":1.0}}},"9":{"4":{"2":{"9":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"2":{"9":{"7":{"df":1,"docs":{"729":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"782":{"tf":1.0}}},"6":{"1":{"1":{"3":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"782":{"tf":1.0}}},"9":{"1":{"1":{"4":{"df":1,"docs":{"727":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"781":{"tf":1.0}}},"2":{"0":{"9":{"7":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"894":{"tf":1.0}}},"8":{"3":{"3":{"6":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"759":{"tf":1.0},"784":{"tf":1.0},"808":{"tf":1.0},"830":{"tf":1.0},"876":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"9":{"0":{"0":{"df":1,"docs":{"894":{"tf":1.0}}},"8":{"df":1,"docs":{"780":{"tf":1.0}}},"9":{"2":{"4":{"4":{"df":1,"docs":{"721":{"tf":1.0}}},"6":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"779":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"9":{"7":{"6":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}}},"3":{"df":2,"docs":{"779":{"tf":1.0},"892":{"tf":1.0}}},"5":{"3":{"4":{"6":{"df":1,"docs":{"716":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"8":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"8":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"947":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"777":{"tf":1.0},"778":{"tf":1.0}}},"5":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"891":{"tf":1.0}}},"3":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"890":{"tf":1.0}}},"1":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"947":{"tf":1.0}}},"df":12,"docs":{"258":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"751":{"tf":1.0},"867":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}}},">":{"&":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"100":{"tf":2.23606797749979},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"127":{"tf":4.0},"146":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.7320508075688772},"264":{"tf":1.0},"266":{"tf":1.0},"289":{"tf":1.4142135623730951},"310":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"404":{"tf":2.6457513110645907},"414":{"tf":2.6457513110645907},"416":{"tf":1.4142135623730951},"465":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"517":{"tf":1.0},"524":{"tf":1.4142135623730951},"537":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":3.0},"624":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"728":{"tf":1.0},"773":{"tf":1.0},"79":{"tf":2.23606797749979},"907":{"tf":1.0},"958":{"tf":1.0}},"m":{"b":{"df":3,"docs":{"135":{"tf":1.0},"837":{"tf":1.0},"933":{"tf":1.0}}},"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"n":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"μ":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}}},"2":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"0":{".":{"2":{"df":1,"docs":{"561":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"3":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"877":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"590":{"tf":1.0}}},"4":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":1,"docs":{"632":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"3":{"df":1,"docs":{"774":{"tf":1.0}}},"4":{"df":1,"docs":{"815":{"tf":1.0}}},"5":{"df":1,"docs":{"927":{"tf":1.0}}},"6":{"df":1,"docs":{"927":{"tf":1.0}}},"9":{"df":30,"docs":{"108":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"87":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"958":{"tf":3.0}}},"df":1,"docs":{"945":{"tf":1.0}}},"2":{"0":{"df":79,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"958":{"tf":5.196152422706632}}},"1":{"df":73,"docs":{"677":{"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"855":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0},"958":{"tf":4.795831523312719}}},"2":{"df":39,"docs":{"664":{"tf":1.0},"684":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.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},"765":{"tf":1.0},"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},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0},"958":{"tf":2.23606797749979}}},"3":{"df":34,"docs":{"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},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"958":{"tf":1.0}}},"4":{"df":27,"docs":{"258":{"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},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.0},"958":{"tf":1.0}}},"6":{"df":1,"docs":{"773":{"tf":1.0}}},"9":{"df":1,"docs":{"773":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"3":{"5":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"9":{"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"771":{"tf":1.0}}},"df":1,"docs":{"946":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"770":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"762":{"tf":1.0}}},"7":{"df":1,"docs":{"765":{"tf":1.0}}},"8":{"df":1,"docs":{"765":{"tf":1.0}}},"9":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"770":{"tf":1.0}}},"7":{"df":1,"docs":{"769":{"tf":1.0}}},"8":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"258":{"tf":1.0},"328":{"tf":1.4142135623730951},"738":{"tf":1.0},"740":{"tf":1.0},"772":{"tf":1.0},"840":{"tf":1.0},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"931":{"tf":1.0},"942":{"tf":1.0},"956":{"tf":1.0}}},"1":{"1":{"4":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":4,"docs":{"763":{"tf":1.0},"764":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}},"6":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"763":{"tf":1.0}}},"5":{"df":1,"docs":{"763":{"tf":1.0}}},"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"404":{"tf":1.0},"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"945":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"762":{"tf":1.0}}},"3":{"df":1,"docs":{"762":{"tf":1.0}}},"5":{"df":1,"docs":{"762":{"tf":1.0}}},"9":{"df":1,"docs":{"762":{"tf":1.0}}},"df":1,"docs":{"945":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"762":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"8":{"2":{"df":1,"docs":{"762":{"tf":1.0}}},"8":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"761":{"tf":1.0}}},"5":{"df":1,"docs":{"761":{"tf":1.0}}},"6":{"df":1,"docs":{"759":{"tf":1.0}}},"9":{"df":1,"docs":{"761":{"tf":1.0}}},"df":1,"docs":{"944":{"tf":1.0}}},"df":7,"docs":{"258":{"tf":1.0},"719":{"tf":1.0},"873":{"tf":1.0},"894":{"tf":1.0},"912":{"tf":1.0},"935":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"760":{"tf":1.0}}},"df":1,"docs":{"943":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"760":{"tf":1.0}}},"9":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"759":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"747":{"tf":1.0}}},"5":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"757":{"tf":1.0}}},"6":{"df":1,"docs":{"756":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"738":{"tf":1.0}}},"4":{"df":1,"docs":{"756":{"tf":1.0}}},"5":{"df":1,"docs":{"756":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"755":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"7":{"0":{"df":1,"docs":{"754":{"tf":1.0}}},"1":{"df":1,"docs":{"752":{"tf":1.0}}},"2":{"df":1,"docs":{"752":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"753":{"tf":1.0}}},"8":{"df":1,"docs":{"753":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"9":{"4":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"727":{"tf":1.0},"765":{"tf":1.0},"805":{"tf":1.0},"828":{"tf":1.0},"839":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.0},"920":{"tf":1.0},"930":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"3":{"0":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":1,"docs":{"880":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"750":{"tf":1.0}}},"3":{"df":1,"docs":{"750":{"tf":1.0}}},"7":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"751":{"tf":1.0}}},"8":{"df":1,"docs":{"748":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"751":{"tf":1.0}}},"5":{"df":1,"docs":{"735":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"747":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"747":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"553":{"tf":1.0},"574":{"tf":1.0},"721":{"tf":1.0},"723":{"tf":1.0},"734":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"859":{"tf":1.0},"891":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"511":{"tf":1.0},"524":{"tf":1.0}}},"1":{"5":{"df":1,"docs":{"743":{"tf":1.0}}},"7":{"df":1,"docs":{"743":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"742":{"tf":1.0}}},"6":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"740":{"tf":1.0}}},"6":{"df":1,"docs":{"734":{"tf":1.0}}},"9":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"739":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"173":{"tf":1.0},"718":{"tf":1.0},"742":{"tf":1.0},"758":{"tf":1.0},"827":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"846":{"tf":1.0},"896":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"5":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{".":{"8":{"9":{"3":{"7":{"3":{"9":{"3":{"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":{}},"0":{"3":{"df":1,"docs":{"737":{"tf":1.0}}},"df":3,"docs":{"135":{"tf":1.0},"830":{"tf":1.0},"929":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"737":{"tf":1.0}}},"3":{"df":1,"docs":{"735":{"tf":1.0}}},"6":{"df":1,"docs":{"735":{"tf":1.0}}},"8":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"2":{"8":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"736":{"tf":1.0}}},"8":{"df":1,"docs":{"736":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"4":{"5":{"df":1,"docs":{"736":{"tf":1.0}}},"df":1,"docs":{"941":{"tf":1.0}}},"5":{"df":2,"docs":{"425":{"tf":1.0},"721":{"tf":1.0}}},"6":{"df":2,"docs":{"701":{"tf":1.0},"940":{"tf":1.0}}},"df":16,"docs":{"551":{"tf":2.0},"553":{"tf":1.7320508075688772},"554":{"tf":2.449489742783178},"669":{"tf":1.0},"753":{"tf":1.0},"757":{"tf":1.0},"771":{"tf":1.0},"792":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"834":{"tf":1.0},"845":{"tf":1.0},"893":{"tf":1.0},"916":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":2.23606797749979}}},"6":{"0":{"df":1,"docs":{"939":{"tf":1.0}}},"1":{"4":{"df":1,"docs":{"735":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"6":{"9":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"9":{"7":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":15,"docs":{"258":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"844":{"tf":1.0},"855":{"tf":1.0},"863":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"948":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"7":{"0":{"9":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"1":{"9":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"731":{"tf":1.0}}},"7":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"731":{"tf":1.0}}},"7":{"df":1,"docs":{"727":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"4":{"5":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"728":{"tf":1.0}}},"7":{"df":1,"docs":{"729":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"728":{"tf":1.0}}},"7":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"727":{"tf":1.0}}},"2":{"df":1,"docs":{"727":{"tf":1.0}}},"6":{"df":1,"docs":{"727":{"tf":1.7320508075688772}}},"df":1,"docs":{"938":{"tf":1.0}}},"df":7,"docs":{"158":{"tf":1.0},"171":{"tf":1.0},"833":{"tf":1.0},"862":{"tf":1.0},"900":{"tf":1.0},"906":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"8":{"1":{"df":1,"docs":{"938":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":3,"docs":{"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0}}},"7":{"df":1,"docs":{"721":{"tf":1.0}}},"8":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"1":{"df":1,"docs":{"721":{"tf":1.0}}},"3":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"721":{"tf":1.0}}},"df":1,"docs":{"938":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"164":{"tf":1.0},"715":{"tf":1.0},"728":{"tf":1.0},"737":{"tf":1.0},"761":{"tf":1.0},"793":{"tf":1.0},"824":{"tf":1.0},"852":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"718":{"tf":1.0}}},"5":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"718":{"tf":1.0}}},"8":{"df":1,"docs":{"718":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"717":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":13,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"730":{"tf":1.0},"787":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"880":{"tf":1.0},"958":{"tf":1.0}},"t":{"0":{"9":{":":{"5":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"3":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"2":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},">":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"1":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":30,"docs":{"100":{"tf":2.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"146":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"259":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"642":{"tf":1.0},"747":{"tf":1.0},"79":{"tf":2.0},"814":{"tf":1.4142135623730951},"830":{"tf":1.0},"958":{"tf":1.0}}},"3":{".":{"1":{".":{"0":{"df":1,"docs":{"945":{"tf":1.0}}},"1":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"785":{"tf":1.0}}},"2":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"799":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"846":{"tf":1.0},"867":{"tf":1.0}}},"6":{".":{"0":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"735":{"tf":1.0},"858":{"tf":1.0}}},"7":{"df":5,"docs":{"40":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0}}},"8":{"df":4,"docs":{"15":{"tf":1.0},"30":{"tf":1.0},"673":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"6":{"df":1,"docs":{"715":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"938":{"tf":1.0}}},"5":{"df":1,"docs":{"258":{"tf":1.0}}},"df":14,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"22":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"802":{"tf":1.0},"81":{"tf":1.0},"892":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"958":{"tf":1.0}}},"1":{".":{"5":{".":{"0":{"df":4,"docs":{"425":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"563":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":2,"docs":{"936":{"tf":1.0},"937":{"tf":1.0}}},"9":{"df":1,"docs":{"937":{"tf":1.0}}},"df":6,"docs":{"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"799":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0}}},"2":{"df":6,"docs":{"258":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"621":{"tf":1.0},"762":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"3":{".":{"0":{".":{"0":{"df":2,"docs":{"11":{"tf":1.0},"824":{"tf":1.0}}},"3":{"df":1,"docs":{"824":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"824":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"756":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"2":{"df":1,"docs":{"935":{"tf":1.0}}},"3":{"df":1,"docs":{"935":{"tf":1.0}}},"6":{"df":1,"docs":{"933":{"tf":1.0}}},"df":2,"docs":{"731":{"tf":1.0},"735":{"tf":1.0}}},"5":{"8":{"df":1,"docs":{"884":{"tf":1.0}}},"9":{"df":1,"docs":{"884":{"tf":1.0}}},"d":{"a":{"b":{"8":{"5":{"2":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"884":{"tf":1.0}}},"5":{"df":1,"docs":{"883":{"tf":1.0}}},"df":2,"docs":{"258":{"tf":1.0},"956":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"882":{"tf":1.0}}},"5":{"df":1,"docs":{"934":{"tf":1.0}}},"8":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"882":{"tf":1.0}}},"2":{"df":1,"docs":{"882":{"tf":1.0}}},"9":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"881":{"tf":1.0}}},"4":{"df":1,"docs":{"881":{"tf":1.0}}},"9":{"df":2,"docs":{"880":{"tf":1.0},"933":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"169":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":1.0},"289":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"416":{"tf":1.4142135623730951},"546":{"tf":1.0},"551":{"tf":2.23606797749979},"553":{"tf":2.0},"632":{"tf":1.0},"65":{"tf":1.0},"772":{"tf":1.0},"79":{"tf":1.7320508075688772},"915":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"318":{"tf":1.0}}},"2":{".":{"2":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"783":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"3":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"880":{"tf":1.0}}},"1":{"df":1,"docs":{"879":{"tf":1.0}}},"7":{"df":1,"docs":{"880":{"tf":1.0}}},"9":{"6":{"df":8,"docs":{"377":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.0},"170":{"tf":1.0},"285":{"tf":1.0},"570":{"tf":1.0},"920":{"tf":1.0},"956":{"tf":1.0}},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"1":{"1":{"df":1,"docs":{"933":{"tf":1.0}}},"5":{"df":1,"docs":{"933":{"tf":1.0}}},"6":{"df":1,"docs":{"880":{"tf":1.0}}},"df":1,"docs":{"956":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"879":{"tf":1.0}}},"2":{"df":1,"docs":{"880":{"tf":1.0}}},"df":2,"docs":{"588":{"tf":1.0},"956":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}}},"3":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"1":{"df":1,"docs":{"933":{"tf":1.0}}},"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":1,"docs":{"553":{"tf":1.0}},"f":{"4":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{"df":1,"docs":{"933":{"tf":1.0}}},"6":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"9":{"5":{"df":1,"docs":{"872":{"tf":1.0}}},"7":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":2.23606797749979},"867":{"tf":1.0}}}},"d":{"2":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"184":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"546":{"tf":1.0},"632":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.7320508075688772}},"k":{"b":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"869":{"tf":1.0}}}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"1":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":11,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"315":{"tf":1.0},"468":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"756":{"tf":1.0},"897":{"tf":1.0}}},"df":6,"docs":{"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"873":{"tf":1.0}}},"1":{".":{"8":{".":{"2":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"df":3,"docs":{"872":{"tf":1.0},"929":{"tf":1.7320508075688772},"932":{"tf":1.0}}},"8":{"df":1,"docs":{"872":{"tf":1.0}}},"9":{"df":1,"docs":{"932":{"tf":1.0}}},"df":1,"docs":{"158":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"871":{"tf":1.0}}},"4":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":2,"docs":{"404":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"871":{"tf":1.0},"931":{"tf":1.0}}},"5":{"df":1,"docs":{"871":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"930":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"929":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"870":{"tf":1.0}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":2.449489742783178},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"642":{"tf":1.0},"652":{"tf":1.4142135623730951},"79":{"tf":1.0},"833":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"6":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"834":{"tf":1.0}}}}},"6":{".":{"1":{".":{"2":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":2,"docs":{"824":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"1":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"801":{"tf":1.0}}},"9":{"4":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"929":{"tf":1.0}}},"df":5,"docs":{"135":{"tf":1.4142135623730951},"315":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"929":{"tf":1.0}}},"1":{"4":{"7":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"df":1,"docs":{"929":{"tf":1.0}}},"df":4,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"864":{"tf":1.0}}},"8":{"df":1,"docs":{"929":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"929":{"tf":1.0}}},"3":{"5":{"5":{"2":{"0":{"0":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"864":{"tf":1.0}}},"df":1,"docs":{"258":{"tf":1.0}}},"8":{"1":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"929":{"tf":1.0}}},"5":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.0},"379":{"tf":1.0},"406":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"956":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{"df":2,"docs":{"30":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"910":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":1,"docs":{"736":{"tf":1.0}}},"1":{"df":16,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"830":{"tf":1.0}}},"1":{"df":1,"docs":{"863":{"tf":1.0}}},"2":{"df":1,"docs":{"863":{"tf":1.0}}},"3":{"df":1,"docs":{"863":{"tf":1.0}}},"7":{"df":1,"docs":{"863":{"tf":1.0}}},"df":1,"docs":{"956":{"tf":1.0}}},"4":{"d":{"b":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"927":{"tf":1.0}}},"5":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"862":{"tf":1.0}}},"3":{"df":1,"docs":{"862":{"tf":1.0}}},"5":{"df":1,"docs":{"862":{"tf":1.0}}},"6":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"927":{"tf":1.0}}},"9":{"df":1,"docs":{"927":{"tf":1.0}}},"df":1,"docs":{"955":{"tf":1.0}}},"8":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"861":{"tf":1.0}}},"6":{"df":1,"docs":{"925":{"tf":1.0}}},"9":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"272":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"786":{"tf":1.4142135623730951}}},"8":{".":{"0":{"df":1,"docs":{"517":{"tf":1.7320508075688772}}},"1":{".":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"df":1,"docs":{"861":{"tf":1.0}}},"8":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}},"df":2,"docs":{"288":{"tf":1.4142135623730951},"303":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"860":{"tf":1.0}}},"1":{"df":1,"docs":{"924":{"tf":1.0}}},"5":{"df":1,"docs":{"860":{"tf":1.0}}},"9":{"2":{"df":1,"docs":{"541":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"924":{"tf":1.0}}},"5":{"df":1,"docs":{"924":{"tf":1.0}}},"7":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"858":{"tf":1.0}}},"3":{"df":1,"docs":{"858":{"tf":1.0}}},"4":{"df":1,"docs":{"858":{"tf":1.0}}},"6":{"df":2,"docs":{"858":{"tf":1.0},"923":{"tf":1.7320508075688772}}},"df":1,"docs":{"954":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}}},"6":{",":{"4":{"0":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":1,"docs":{"554":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"854":{"tf":1.0}}},"6":{"df":1,"docs":{"854":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"8":{"4":{"2":{"1":{"1":{"df":0,"docs":{},"e":{"5":{"4":{"5":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"a":{"a":{"0":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"136":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"273":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"471":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"791":{"tf":1.0},"802":{"tf":1.0},"835":{"tf":1.0},"956":{"tf":1.0}},"k":{"df":2,"docs":{"761":{"tf":1.0},"912":{"tf":1.0}}}},"9":{"0":{"8":{"df":1,"docs":{"923":{"tf":1.0}}},"df":1,"docs":{"953":{"tf":2.0}}},"2":{"4":{"df":1,"docs":{"922":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"3":{"5":{"df":1,"docs":{"849":{"tf":1.0}}},"df":0,"docs":{}},"4":{"9":{"df":1,"docs":{"849":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"922":{"tf":1.0}}},"3":{"df":1,"docs":{"849":{"tf":1.0}}},"df":2,"docs":{"685":{"tf":1.0},"951":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}}},"6":{"2":{"df":1,"docs":{"849":{"tf":1.0}}},"5":{"df":1,"docs":{"921":{"tf":1.0}}},"7":{"df":2,"docs":{"849":{"tf":1.0},"920":{"tf":1.0}}},"8":{"df":2,"docs":{"849":{"tf":1.0},"921":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"7":{"0":{"df":1,"docs":{"921":{"tf":1.0}}},"4":{"df":1,"docs":{"846":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"8":{"1":{"df":1,"docs":{"920":{"tf":1.0}}},"3":{"df":1,"docs":{"847":{"tf":1.0}}},"4":{"df":1,"docs":{"919":{"tf":1.0}}},"6":{"df":1,"docs":{"847":{"tf":1.0}}},"7":{"df":1,"docs":{"846":{"tf":1.0}}},"8":{"df":1,"docs":{"919":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"9":{"3":{"df":1,"docs":{"847":{"tf":1.0}}},"4":{"df":1,"docs":{"919":{"tf":1.0}}},"5":{"df":1,"docs":{"842":{"tf":1.0}}},"6":{"df":1,"docs":{"846":{"tf":1.0}}},"8":{"df":1,"docs":{"843":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"df":9,"docs":{"164":{"tf":1.0},"183":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"274":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"956":{"tf":1.0}}},"_":{"_":{"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":1,"docs":{"473":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"_":{"df":24,"docs":{"377":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.4142135623730951},"414":{"tf":2.0},"419":{"tf":1.4142135623730951},"435":{"tf":2.0},"440":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"858":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":3.4641016151377544}}}},"k":{".":{"a":{"df":2,"docs":{"187":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"1":{"df":0,"docs":{},"i":{"df":3,"docs":{"376":{"tf":1.4142135623730951},"387":{"tf":1.0},"397":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"751":{"tf":1.0},"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"665":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.4142135623730951}},"l":{"df":6,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"741":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"478":{"tf":1.0},"492":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"223":{"tf":1.0},"354":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.4142135623730951},"377":{"tf":1.0},"427":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"711":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"376":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"549":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":18,"docs":{"135":{"tf":1.0},"313":{"tf":1.0},"357":{"tf":1.0},"446":{"tf":1.0},"529":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.4142135623730951},"693":{"tf":1.0},"717":{"tf":1.4142135623730951},"723":{"tf":1.0},"741":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":1.7320508075688772},"801":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"953":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":31,"docs":{"110":{"tf":1.4142135623730951},"177":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"32":{"tf":2.0},"356":{"tf":1.0},"389":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"418":{"tf":1.0},"660":{"tf":2.0},"665":{"tf":1.0},"679":{"tf":1.0},"688":{"tf":2.0},"715":{"tf":1.0},"736":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"842":{"tf":1.0},"876":{"tf":1.0},"89":{"tf":1.4142135623730951},"917":{"tf":1.0},"924":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.7320508075688772}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.4142135623730951}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"396":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"297":{"tf":1.4142135623730951},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"753":{"tf":1.0},"796":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"653":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"680":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"703":{"tf":1.0},"76":{"tf":1.0},"935":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":2.0},"884":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":1,"docs":{"517":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"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":1,"docs":{"517":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"738":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"729":{"tf":1.0},"738":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"729":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"494":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"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":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"475":{"tf":1.0},"493":{"tf":1.0},"574":{"tf":1.0},"585":{"tf":1.0},"772":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"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":{"c":{"!":{"[":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"476":{"tf":1.0},"494":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"586":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"586":{"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":15,"docs":{"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"725":{"tf":1.0},"829":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"456":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"759":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"257":{"tf":1.0},"376":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"590":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"814":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"741":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"340":{"tf":1.0},"376":{"tf":1.0},"560":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"909":{"tf":1.0},"951":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":28,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"195":{"tf":1.0},"224":{"tf":2.6457513110645907},"233":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.4142135623730951},"318":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0},"691":{"tf":1.7320508075688772},"711":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.449489742783178},"837":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"880":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{},"n":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"233":{"tf":1.4142135623730951},"315":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.0},"814":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.0},"956":{"tf":1.0}}}}},"b":{"df":2,"docs":{"224":{"tf":2.0},"227":{"tf":1.7320508075688772}}},"d":{"df":100,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":2.449489742783178},"195":{"tf":1.0},"198":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":2.449489742783178},"24":{"tf":1.0},"254":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"315":{"tf":1.0},"318":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":3.605551275463989},"414":{"tf":3.605551275463989},"419":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"474":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"71":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"728":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.7320508075688772},"752":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"799":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"823":{"tf":1.4142135623730951},"830":{"tf":1.0},"834":{"tf":2.0},"837":{"tf":1.7320508075688772},"846":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"882":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"898":{"tf":1.0},"9":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"927":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"956":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":50,"docs":{"107":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"289":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"568":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"63":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"707":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":1.0},"802":{"tf":1.0},"834":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"120":{"tf":1.0},"136":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.0},"471":{"tf":1.0},"52":{"tf":1.0},"704":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"500":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"134":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"288":{"tf":2.0},"289":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"693":{"tf":1.0},"758":{"tf":1.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}}},"df":91,"docs":{"0":{"tf":2.8284271247461903},"10":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.4142135623730951},"306":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"379":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"563":{"tf":2.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"621":{"tf":2.23606797749979},"649":{"tf":1.0},"665":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"69":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.4142135623730951},"750":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.23606797749979},"804":{"tf":1.0},"809":{"tf":1.4142135623730951},"811":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.0},"902":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"98":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"340":{"tf":1.0},"854":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"693":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"308":{"tf":1.0},"318":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"580":{"tf":1.0},"77":{"tf":1.0},"782":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"_":{"df":1,"docs":{"461":{"tf":1.0}}},"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"951":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"132":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"862":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"100":{"tf":2.449489742783178},"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"757":{"tf":1.0},"762":{"tf":1.7320508075688772},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":2.449489742783178},"806":{"tf":1.0},"848":{"tf":1.0},"902":{"tf":1.0},"919":{"tf":1.0},"969":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"119":{"tf":1.0},"288":{"tf":1.0},"644":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"775":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"951":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"175":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}}}}},"h":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"252":{"tf":1.0},"959":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}},"s":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"288":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":4,"docs":{"471":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"950":{"tf":1.0}}}}}}}}},"i":{"a":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"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":{},"y":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":5,"docs":{"494":{"tf":1.0},"509":{"tf":1.0},"512":{"tf":1.0},"725":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":2,"docs":{"22":{"tf":1.0},"861":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":82,"docs":{"12":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"306":{"tf":1.0},"320":{"tf":1.0},"37":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"510":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"537":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0},"632":{"tf":1.0},"644":{"tf":1.4142135623730951},"658":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"709":{"tf":1.0},"715":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"734":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"750":{"tf":1.0},"76":{"tf":1.4142135623730951},"762":{"tf":1.0},"765":{"tf":1.0},"773":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"823":{"tf":1.0},"830":{"tf":1.7320508075688772},"839":{"tf":1.0},"885":{"tf":1.0},"906":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0},"947":{"tf":1.0},"97":{"tf":1.4142135623730951}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0}},"g":{"df":15,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"330":{"tf":1.0},"541":{"tf":1.0},"677":{"tf":1.4142135623730951},"76":{"tf":1.0},"761":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"df":1,"docs":{"334":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"285":{"tf":1.0},"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"811":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":29,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"456":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"680":{"tf":1.0},"692":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"98":{"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":{"27":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"223":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"653":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":24,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"401":{"tf":1.0},"412":{"tf":1.0},"471":{"tf":1.4142135623730951},"487":{"tf":1.0},"514":{"tf":1.0},"560":{"tf":1.0},"567":{"tf":1.0},"632":{"tf":1.0},"649":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0},"880":{"tf":1.0},"916":{"tf":1.0},"923":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"132":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.0},"404":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"916":{"tf":1.0},"933":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"103":{"tf":1.0},"811":{"tf":1.0},"82":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"261":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":8,"docs":{"288":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}}},"t":{"df":1,"docs":{"703":{"tf":1.0}}},"z":{"df":5,"docs":{"267":{"tf":1.0},"471":{"tf":1.0},"704":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"252":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"'":{"df":1,"docs":{"315":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":102,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":2.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"271":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"349":{"tf":1.0},"431":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"656":{"tf":2.0},"662":{"tf":1.7320508075688772},"663":{"tf":1.0},"669":{"tf":1.0},"671":{"tf":1.4142135623730951},"673":{"tf":1.0},"674":{"tf":2.0},"675":{"tf":2.0},"676":{"tf":1.0},"677":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"732":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"745":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"765":{"tf":1.0},"775":{"tf":1.0},"783":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.4142135623730951},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"826":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"830":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.4142135623730951},"837":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.4142135623730951}},"x":{"df":2,"docs":{"759":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":10,"docs":{"118":{"tf":1.0},"131":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"288":{"tf":1.0},"326":{"tf":2.449489742783178},"328":{"tf":1.7320508075688772},"329":{"tf":1.0},"332":{"tf":1.0},"734":{"tf":1.0}}},"y":{"df":1,"docs":{"923":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"118":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":17,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"61":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"687":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0},"959":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"752":{"tf":1.0},"762":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.0},"919":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"600":{"tf":1.0},"611":{"tf":1.0},"680":{"tf":1.0},"734":{"tf":1.0},"925":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":203,"docs":{"0":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.0},"13":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"26":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.7320508075688772},"306":{"tf":2.0},"307":{"tf":2.23606797749979},"31":{"tf":1.7320508075688772},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":2.0},"320":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":2.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.7320508075688772},"337":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"390":{"tf":1.7320508075688772},"392":{"tf":1.0},"394":{"tf":1.0},"400":{"tf":1.7320508075688772},"403":{"tf":1.0},"405":{"tf":1.0},"411":{"tf":1.7320508075688772},"413":{"tf":1.0},"415":{"tf":1.0},"421":{"tf":1.7320508075688772},"424":{"tf":1.0},"426":{"tf":1.0},"432":{"tf":1.7320508075688772},"434":{"tf":1.0},"436":{"tf":1.0},"442":{"tf":1.7320508075688772},"444":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.7320508075688772},"455":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.0},"470":{"tf":1.7320508075688772},"472":{"tf":1.0},"479":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"495":{"tf":1.0},"502":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"513":{"tf":1.7320508075688772},"516":{"tf":1.0},"518":{"tf":1.0},"523":{"tf":1.0},"525":{"tf":1.0},"527":{"tf":1.0},"530":{"tf":1.0},"536":{"tf":1.7320508075688772},"539":{"tf":1.0},"542":{"tf":1.0},"550":{"tf":1.0},"552":{"tf":1.0},"559":{"tf":1.7320508075688772},"562":{"tf":1.0},"564":{"tf":1.0},"568":{"tf":1.0},"571":{"tf":1.7320508075688772},"572":{"tf":1.0},"573":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"584":{"tf":1.0},"587":{"tf":1.0},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.7320508075688772},"607":{"tf":1.0},"608":{"tf":1.0},"610":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":2.23606797749979},"622":{"tf":1.0},"628":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"650":{"tf":1.0},"652":{"tf":2.6457513110645907},"653":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"678":{"tf":1.0},"686":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.4142135623730951},"729":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"752":{"tf":2.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"784":{"tf":1.4142135623730951},"796":{"tf":2.0},"799":{"tf":2.23606797749979},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.449489742783178},"817":{"tf":1.4142135623730951},"819":{"tf":1.0},"834":{"tf":1.4142135623730951},"854":{"tf":1.0},"86":{"tf":1.4142135623730951},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"878":{"tf":1.0},"890":{"tf":1.0},"898":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.7320508075688772},"919":{"tf":1.7320508075688772},"920":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.7320508075688772},"927":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"952":{"tf":1.4142135623730951},"956":{"tf":2.0},"960":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":3.1622776601683795},"969":{"tf":1.7320508075688772}}},"k":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"p":{"'":{"df":3,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"83":{"tf":1.0}}},"/":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"?":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"&":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"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":{}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"315":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"315":{"tf":1.0},"947":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"947":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"169":{"tf":1.0},"175":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":2.8284271247461903},"234":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"338":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"674":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"811":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"476":{"tf":1.0},"494":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"5":{"tf":1.0},"960":{"tf":1.0},"966":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"958":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":11,"docs":{"137":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":2.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0}}},"(":{"_":{":":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"232":{"tf":1.0},"316":{"tf":1.4142135623730951},"338":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"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":{"136":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"316":{"tf":1.0},"318":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"839":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"0":{".":{"1":{".":{"0":{"df":3,"docs":{"316":{"tf":1.0},"318":{"tf":1.0},"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":{}}}}}}}}},"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":1,"docs":{"315":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"151":{"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"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":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":144,"docs":{"0":{"tf":2.0},"100":{"tf":2.449489742783178},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"132":{"tf":4.358898943540674},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.8284271247461903},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":2.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"173":{"tf":2.0},"175":{"tf":2.6457513110645907},"179":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.23606797749979},"184":{"tf":3.1622776601683795},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.7320508075688772},"22":{"tf":2.23606797749979},"222":{"tf":2.0},"224":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":2.449489742783178},"259":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.6457513110645907},"290":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":3.3166247903554},"316":{"tf":2.6457513110645907},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.4142135623730951},"338":{"tf":1.0},"349":{"tf":2.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"418":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"549":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"59":{"tf":1.0},"632":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":2.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.7320508075688772},"658":{"tf":1.7320508075688772},"66":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.4142135623730951},"668":{"tf":1.0},"671":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"679":{"tf":1.7320508075688772},"680":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"687":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.4142135623730951},"711":{"tf":1.0},"727":{"tf":1.0},"78":{"tf":2.6457513110645907},"79":{"tf":2.449489742783178},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"840":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":2.449489742783178},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.7320508075688772},"864":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":2.6457513110645907},"91":{"tf":1.4142135623730951},"938":{"tf":1.0},"946":{"tf":1.0},"958":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}},"df":26,"docs":{"13":{"tf":1.7320508075688772},"169":{"tf":1.0},"195":{"tf":2.0},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"267":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"529":{"tf":1.0},"663":{"tf":1.0},"672":{"tf":1.0},"741":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"674":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"202":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0}}}}},"v":{"df":1,"docs":{"342":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"145":{"tf":1.0},"258":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"326":{"tf":1.0},"377":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"572":{"tf":1.0},"583":{"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":8,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"762":{"tf":1.4142135623730951},"923":{"tf":1.0},"924":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"776":{"tf":1.0},"781":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"17":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"22":{"tf":1.0},"321":{"tf":1.0},"377":{"tf":1.0},"678":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}},"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":36,"docs":{"318":{"tf":1.7320508075688772},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"565":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"796":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"921":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"268":{"tf":1.0}}}},"m":{"6":{"4":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"184":{"tf":1.0},"227":{"tf":1.0},"259":{"tf":1.0},"50":{"tf":1.0},"653":{"tf":1.0},"854":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"170":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.0},"446":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0},"644":{"tf":1.7320508075688772},"645":{"tf":1.0},"693":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"254":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":6,"docs":{"226":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.4142135623730951},"637":{"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"tf":1.7320508075688772}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"635":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"635":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"635":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":{".":{"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"635":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"634":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"777":{"tf":1.0},"778":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":17,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"188":{"tf":1.0},"205":{"tf":1.0},"233":{"tf":1.4142135623730951},"342":{"tf":1.0},"72":{"tf":1.0},"752":{"tf":1.0},"93":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"962":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"385":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"385":{"tf":1.0},"395":{"tf":1.0},"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"553":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"652":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"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":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"1":{"df":1,"docs":{"507":{"tf":1.4142135623730951}}},"df":5,"docs":{"416":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}},"df":2,"docs":{"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"2":{"df":2,"docs":{"519":{"tf":1.0},"588":{"tf":1.0}}},"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"385":{"tf":1.0},"395":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"553":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"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":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"333":{"tf":1.0},"508":{"tf":1.0},"578":{"tf":1.0},"642":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"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":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"496":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"480":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"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":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"2":{"0":{"1":{"9":{"df":1,"docs":{"554":{"tf":1.0}}},"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":{},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"416":{"tf":1.0}}},"2":{"df":1,"docs":{"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"407":{"tf":1.0},"428":{"tf":1.0},"465":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}},"df":6,"docs":{"416":{"tf":1.0},"465":{"tf":1.0},"519":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.0}}},"df":4,"docs":{"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"2":{"df":3,"docs":{"519":{"tf":1.0},"588":{"tf":1.0},"611":{"tf":1.0}}},"3":{"3":{"df":2,"docs":{"600":{"tf":1.0},"611":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":2,"docs":{"406":{"tf":1.0},"427":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"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":{"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"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":{"565":{"tf":1.0}}}}}},"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":1,"docs":{"531":{"tf":1.0}}}},"df":0,"docs":{}},"(":{"1":{"1":{"df":1,"docs":{"507":{"tf":1.0}}},"df":2,"docs":{"588":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}},"2":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}},"4":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"519":{"tf":1.0},"588":{"tf":1.0}}}}},"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"385":{"tf":1.0},"652":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":27,"docs":{"333":{"tf":1.0},"334":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.4142135623730951},"624":{"tf":1.0},"635":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"!":{"(":{"4":{"0":{"0":{"df":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"\"":{"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":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"427":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"480":{"tf":1.0},"496":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"600":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"553":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"531":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"107":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"497":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"565":{"tf":1.7320508075688772},"566":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"tf":2.0},"86":{"tf":1.4142135623730951},"880":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"\"":{"2":{"0":{"1":{"9":{"df":1,"docs":{"554":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"tf":1.4142135623730951}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"0":{"df":3,"docs":{"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"601":{"tf":1.0}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951}}},"df":2,"docs":{"416":{"tf":1.4142135623730951},"642":{"tf":1.0}},"l":{"df":1,"docs":{"577":{"tf":1.7320508075688772}}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}},"df":1,"docs":{"565":{"tf":1.0}},"l":{"df":2,"docs":{"480":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951}}}},"3":{"df":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.4142135623730951}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"652":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"623":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"333":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"601":{"tf":1.0},"624":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"643":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"272":{"tf":1.0}}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"203":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.0},"297":{"tf":1.4142135623730951},"474":{"tf":1.0},"677":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":16,"docs":{"100":{"tf":1.0},"252":{"tf":1.4142135623730951},"258":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"514":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"675":{"tf":1.0},"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"838":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"342":{"tf":1.0},"786":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"312":{"tf":1.0},"340":{"tf":1.0},"838":{"tf":1.0},"958":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"802":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"858":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"150":{"tf":1.0},"259":{"tf":1.0},"661":{"tf":1.0},"693":{"tf":1.0}}},"k":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"160":{"tf":1.0},"233":{"tf":1.0},"462":{"tf":1.0},"563":{"tf":1.0},"670":{"tf":1.0},"802":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0},"252":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"218":{"tf":1.0}}}}},"o":{"df":14,"docs":{"459":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"565":{"tf":2.23606797749979},"577":{"tf":1.0},"588":{"tf":1.0},"623":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.4142135623730951},"720":{"tf":1.0},"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"798":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":48,"docs":{"12":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"162":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":2.0},"218":{"tf":1.4142135623730951},"288":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"647":{"tf":1.0},"666":{"tf":1.4142135623730951},"67":{"tf":1.0},"671":{"tf":1.0},"686":{"tf":1.4142135623730951},"691":{"tf":1.0},"692":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"783":{"tf":1.0},"793":{"tf":1.0},"807":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"91":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":14,"docs":{"117":{"tf":1.0},"136":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"289":{"tf":1.0},"36":{"tf":1.0},"371":{"tf":1.4142135623730951},"45":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"9":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":73,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"306":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.0},"376":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"568":{"tf":1.0},"572":{"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.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"693":{"tf":1.0},"695":{"tf":1.0},"705":{"tf":1.0},"710":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.4142135623730951},"78":{"tf":1.0},"802":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"969":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":36,"docs":{"104":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"310":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"785":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"844":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"318":{"tf":1.0},"342":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"577":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"652":{"tf":1.0},"865":{"tf":1.0}}}},"r":{"df":3,"docs":{"223":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":4,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":3.1622776601683795}}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"120":{"tf":1.0},"127":{"tf":1.4142135623730951},"135":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"267":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"859":{"tf":1.0},"873":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"125":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"155":{"tf":1.0},"168":{"tf":1.0},"245":{"tf":1.0},"271":{"tf":1.0},"315":{"tf":1.0},"346":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"786":{"tf":1.0},"807":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"823":{"tf":1.0},"830":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"724":{"tf":1.0},"726":{"tf":1.0},"858":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"289":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"640":{"tf":2.0},"645":{"tf":1.4142135623730951}},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"640":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"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":{}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"521":{"tf":1.0},"523":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"226":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0},"964":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":37,"docs":{"106":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":2.0},"275":{"tf":1.0},"276":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"52":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"583":{"tf":1.0},"653":{"tf":1.7320508075688772},"654":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"690":{"tf":1.0},"720":{"tf":1.0},"799":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.7320508075688772},"893":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":30,"docs":{"123":{"tf":1.0},"125":{"tf":2.449489742783178},"127":{"tf":2.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":2.6457513110645907},"210":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"275":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":2.0},"842":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"875":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"747":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"df":6,"docs":{"116":{"tf":1.0},"17":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951}}},"i":{"c":{"df":6,"docs":{"294":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"671":{"tf":1.0},"674":{"tf":1.0},"895":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"561":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"297":{"tf":1.0},"684":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.7320508075688772},"168":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"814":{"tf":1.0},"89":{"tf":1.0}}}}},"df":52,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"461":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"514":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"708":{"tf":1.0},"711":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":1.0},"816":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"858":{"tf":1.4142135623730951},"86":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":71,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"150":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"338":{"tf":2.0},"342":{"tf":1.4142135623730951},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"541":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"630":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"663":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.7320508075688772},"696":{"tf":1.0},"697":{"tf":1.7320508075688772},"698":{"tf":1.0},"701":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"801":{"tf":1.0},"804":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"845":{"tf":1.0},"865":{"tf":1.4142135623730951},"867":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"941":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"184":{"tf":1.4142135623730951},"231":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.4142135623730951},"728":{"tf":1.0},"76":{"tf":1.0},"878":{"tf":1.0},"97":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":7,"docs":{"117":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"758":{"tf":1.0},"853":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":25,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"456":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"693":{"tf":1.0},"70":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"74":{"tf":1.7320508075688772},"91":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"923":{"tf":1.0},"95":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"752":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":29,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"435":{"tf":1.0},"446":{"tf":1.4142135623730951},"46":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"630":{"tf":1.0},"73":{"tf":1.0},"772":{"tf":1.0},"799":{"tf":1.0},"915":{"tf":1.0},"94":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"132":{"tf":1.0},"254":{"tf":1.0},"26":{"tf":1.4142135623730951},"334":{"tf":2.0},"768":{"tf":1.0},"833":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"288":{"tf":1.0},"401":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"126":{"tf":1.4142135623730951},"142":{"tf":2.0},"173":{"tf":1.0},"192":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"626":{"tf":1.0},"720":{"tf":1.0},"76":{"tf":1.0},"802":{"tf":1.0},"840":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"693":{"tf":1.0},"919":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"11":{"tf":1.0},"690":{"tf":1.4142135623730951},"849":{"tf":1.0},"868":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"df":20,"docs":{"26":{"tf":1.0},"654":{"tf":1.7320508075688772},"727":{"tf":1.0},"736":{"tf":1.0},"740":{"tf":1.0},"773":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"834":{"tf":1.7320508075688772},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"846":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"859":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"t":{"df":11,"docs":{"144":{"tf":1.0},"254":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"621":{"tf":1.0},"703":{"tf":1.4142135623730951},"862":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"693":{"tf":1.0}}}},"b":{"df":1,"docs":{"422":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"459":{"tf":1.0},"477":{"tf":1.0},"737":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.4142135623730951},"852":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":2.449489742783178}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"5":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"328":{"tf":3.0},"329":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.449489742783178},"640":{"tf":1.0},"642":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"129":{"tf":1.0},"135":{"tf":1.4142135623730951},"317":{"tf":1.0},"837":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":13,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.7320508075688772},"706":{"tf":1.0},"959":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.4142135623730951},"968":{"tf":2.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":5,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.0},"652":{"tf":1.0},"830":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":35,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"376":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.4142135623730951},"391":{"tf":1.7320508075688772},"393":{"tf":1.4142135623730951},"395":{"tf":2.449489742783178},"396":{"tf":1.0},"397":{"tf":1.0},"439":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":1.7320508075688772},"73":{"tf":1.0},"773":{"tf":1.0},"78":{"tf":1.0},"801":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"823":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}},"t":{"df":2,"docs":{"266":{"tf":1.0},"267":{"tf":1.0}},"h":{"df":22,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"272":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"729":{"tf":1.0},"77":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"830":{"tf":1.0},"89":{"tf":1.0},"959":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"310":{"tf":1.0},"496":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"758":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":13,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":2.449489742783178},"63":{"tf":1.0},"66":{"tf":1.0},"708":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"=":{"\"":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"131":{"tf":2.0},"158":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":2.6457513110645907},"326":{"tf":1.4142135623730951},"328":{"tf":2.8284271247461903},"333":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":39,"docs":{"175":{"tf":1.0},"377":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.4142135623730951},"719":{"tf":1.7320508075688772},"727":{"tf":1.4142135623730951},"730":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"738":{"tf":1.0},"753":{"tf":1.0},"765":{"tf":1.4142135623730951},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"786":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.4142135623730951},"824":{"tf":1.0},"828":{"tf":1.0},"837":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.4142135623730951},"677":{"tf":1.0},"964":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"254":{"tf":1.0},"862":{"tf":1.0},"969":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"796":{"tf":1.0}},"n":{"df":8,"docs":{"191":{"tf":1.0},"224":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"810":{"tf":1.0},"824":{"tf":1.0},"861":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"289":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"342":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"136":{"tf":1.4142135623730951},"190":{"tf":1.0},"233":{"tf":2.449489742783178},"241":{"tf":1.7320508075688772},"245":{"tf":1.0},"31":{"tf":2.449489742783178},"316":{"tf":1.0},"33":{"tf":1.0},"342":{"tf":1.0},"66":{"tf":1.0},"898":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"909":{"tf":1.0},"915":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"112":{"tf":2.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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"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":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"d":{"df":2,"docs":{"19":{"tf":1.0},"815":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"575":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"376":{"tf":1.0},"471":{"tf":2.0},"474":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"503":{"tf":2.0},"507":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"519":{"tf":1.4142135623730951},"572":{"tf":1.0},"577":{"tf":2.0},"580":{"tf":2.449489742783178},"582":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.4142135623730951},"591":{"tf":2.23606797749979},"716":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"718":{"tf":1.0}}}}}},"g":{"=":{"\"":{"0":{"0":{"0":{"0":{"0":{"0":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":201,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":4.242640687119285},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"390":{"tf":1.0},"397":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":2.0},"502":{"tf":1.0},"509":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"567":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"594":{"tf":1.0},"6":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"613":{"tf":1.0},"617":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"628":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"715":{"tf":1.4142135623730951},"716":{"tf":2.23606797749979},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"725":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.7320508075688772},"732":{"tf":1.4142135623730951},"734":{"tf":1.7320508075688772},"736":{"tf":1.0},"738":{"tf":2.23606797749979},"739":{"tf":1.0},"741":{"tf":1.7320508075688772},"745":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":2.23606797749979},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"814":{"tf":1.4142135623730951},"83":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"880":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"905":{"tf":1.0},"913":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.0},"929":{"tf":1.4142135623730951},"942":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":88,"docs":{"742":{"tf":1.0},"743":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"758":{"tf":1.0},"762":{"tf":2.23606797749979},"763":{"tf":1.4142135623730951},"764":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.7320508075688772},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.7320508075688772},"814":{"tf":1.0},"816":{"tf":1.7320508075688772},"817":{"tf":1.0},"818":{"tf":1.7320508075688772},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":1.7320508075688772},"837":{"tf":1.0},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"868":{"tf":1.0},"880":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.7320508075688772},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":2.0},"921":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":2.0},"930":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0},"953":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"958":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":5,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"379":{"tf":1.0},"6":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"793":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"914":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"670":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":94,"docs":{"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":1.4142135623730951},"17":{"tf":2.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"224":{"tf":2.0},"227":{"tf":1.7320508075688772},"254":{"tf":1.0},"26":{"tf":2.6457513110645907},"268":{"tf":2.23606797749979},"27":{"tf":1.0},"280":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"377":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"63":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.4142135623730951},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.4142135623730951},"684":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"735":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"753":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"811":{"tf":1.0},"820":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"83":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"853":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"879":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"9":{"tf":1.4142135623730951},"910":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"942":{"tf":1.4142135623730951},"949":{"tf":1.0},"950":{"tf":1.0},"958":{"tf":2.0},"96":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":37,"docs":{"100":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"647":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"78":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":1.0},"833":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"877":{"tf":1.0},"951":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"208":{"tf":1.0},"312":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"653":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"289":{"tf":1.0},"721":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":14,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"48":{"tf":1.0},"653":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"793":{"tf":1.0},"916":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"379":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"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":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"254":{"tf":2.6457513110645907},"328":{"tf":3.0},"329":{"tf":2.23606797749979},"332":{"tf":2.0},"333":{"tf":3.1622776601683795},"376":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":21,"docs":{"170":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"510":{"tf":2.0},"511":{"tf":1.0},"514":{"tf":1.7320508075688772},"522":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"737":{"tf":1.0},"756":{"tf":1.0},"829":{"tf":1.0},"873":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":3.1622776601683795}}}}}}}},"1":{"d":{"b":{"d":{"6":{"df":0,"docs":{},"e":{"0":{"6":{"1":{"7":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"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":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"234":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"785":{"tf":1.0}}}},"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"127":{"tf":1.0},"142":{"tf":1.7320508075688772},"560":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":7,"docs":{"127":{"tf":2.449489742783178},"175":{"tf":2.8284271247461903},"224":{"tf":1.0},"231":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"884":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"652":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"[":{"0":{"df":1,"docs":{"652":{"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":7,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"804":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"26":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":2.0},"346":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"565":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.4142135623730951},"665":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"710":{"tf":1.0},"772":{"tf":1.0},"788":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":1.0},"833":{"tf":1.4142135623730951},"84":{"tf":1.0},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"867":{"tf":1.4142135623730951},"873":{"tf":1.0},"880":{"tf":1.0},"91":{"tf":1.0},"919":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"340":{"tf":1.0},"649":{"tf":1.0},"796":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":2.0},"563":{"tf":1.0},"89":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"958":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"34":{"tf":1.0},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"461":{"tf":1.0},"538":{"tf":1.0},"762":{"tf":1.0},"791":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"652":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"492":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"492":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"321":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"861":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"738":{"tf":1.0},"786":{"tf":1.0},"792":{"tf":1.0},"846":{"tf":1.0},"891":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"110":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"259":{"tf":1.0},"289":{"tf":1.0},"618":{"tf":1.0},"677":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":21,"docs":{"104":{"tf":1.0},"17":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"83":{"tf":1.0},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"557":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"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":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}},"df":8,"docs":{"114":{"tf":1.0},"19":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"720":{"tf":1.0},"757":{"tf":1.0},"958":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"770":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":48,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"142":{"tf":2.0},"169":{"tf":1.4142135623730951},"175":{"tf":2.0},"184":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"203":{"tf":1.0},"22":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"476":{"tf":1.0},"618":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"710":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"78":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"919":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":26,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":2.23606797749979},"120":{"tf":1.4142135623730951},"127":{"tf":1.0},"142":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"176":{"tf":1.0},"234":{"tf":1.0},"265":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":2.8284271247461903},"289":{"tf":3.3166247903554},"346":{"tf":1.0},"546":{"tf":1.0},"632":{"tf":1.4142135623730951},"677":{"tf":1.0},"679":{"tf":1.0},"782":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"124":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"s":{"df":21,"docs":{"100":{"tf":2.0},"120":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"50":{"tf":1.0},"578":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"679":{"tf":1.0},"760":{"tf":1.0},"765":{"tf":1.0},"79":{"tf":2.0},"834":{"tf":1.0},"838":{"tf":1.0},"848":{"tf":1.0},"892":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"[":{"\"":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{";":{"1":{"\"":{"]":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"(":{"c":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":1,"docs":{"673":{"tf":1.0}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":76,"docs":{"100":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"203":{"tf":3.0},"297":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"834":{"tf":3.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"89":{"tf":1.4142135623730951},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"814":{"tf":1.0},"823":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"109":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"796":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"964":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"316":{"tf":1.0},"342":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"674":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"125":{"tf":1.0},"845":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":122,"docs":{"100":{"tf":3.3166247903554},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"324":{"tf":1.0},"344":{"tf":1.0},"379":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"425":{"tf":2.449489742783178},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"568":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.0},"614":{"tf":1.4142135623730951},"645":{"tf":1.0},"678":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.7320508075688772},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":2.0},"730":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"738":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":2.0},"758":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"784":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":3.3166247903554},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"807":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.4142135623730951},"828":{"tf":1.0},"834":{"tf":1.7320508075688772},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"873":{"tf":1.0},"889":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.4142135623730951},"900":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"909":{"tf":1.0},"916":{"tf":1.4142135623730951},"919":{"tf":1.7320508075688772},"920":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"945":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":244,"docs":{"5":{"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},"746":{"tf":1.0},"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},"755":{"tf":1.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},"765":{"tf":1.0},"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"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.0},"895":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"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.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.4142135623730951}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"107":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"205":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"246":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":42,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"231":{"tf":1.0},"285":{"tf":1.7320508075688772},"286":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"303":{"tf":1.0},"378":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.4142135623730951},"414":{"tf":2.0},"419":{"tf":1.4142135623730951},"435":{"tf":2.0},"440":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"570":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"721":{"tf":1.0},"736":{"tf":1.0},"747":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"81":{"tf":1.0},"897":{"tf":1.0},"912":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":38,"docs":{"10":{"tf":1.0},"112":{"tf":2.449489742783178},"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"18":{"tf":1.0},"218":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"57":{"tf":1.0},"580":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"73":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"772":{"tf":1.7320508075688772},"802":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"579":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"579":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"698":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"22":{"tf":1.0},"861":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"289":{"tf":1.4142135623730951},"401":{"tf":1.0},"677":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"376":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"958":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"128":{"tf":1.0},"28":{"tf":1.0},"460":{"tf":1.0},"677":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"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":{"245":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"915":{"tf":1.0}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"245":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"i":{"df":6,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0},"746":{"tf":1.0},"912":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"912":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"947":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"j":{"df":2,"docs":{"32":{"tf":1.7320508075688772},"700":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"969":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"315":{"tf":1.7320508075688772},"316":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"338":{"tf":1.0},"347":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"563":{"tf":1.0},"679":{"tf":2.0},"882":{"tf":1.0},"929":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"267":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"318":{"tf":1.0},"678":{"tf":1.0},"862":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"806":{"tf":1.0}}}}},"r":{"df":26,"docs":{"100":{"tf":2.6457513110645907},"109":{"tf":1.0},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":2.23606797749979},"321":{"tf":1.0},"427":{"tf":1.0},"531":{"tf":1.0},"567":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"78":{"tf":2.0},"789":{"tf":1.0},"79":{"tf":2.6457513110645907},"840":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"917":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"17":{"tf":1.0},"226":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"289":{"tf":1.0},"87":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"897":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":8,"docs":{"43":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.4142135623730951},"912":{"tf":1.0},"915":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"184":{"tf":1.0},"533":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"330":{"tf":1.0},"533":{"tf":1.0},"78":{"tf":1.0},"909":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"268":{"tf":1.0},"839":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"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":{},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":23,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"338":{"tf":1.0},"342":{"tf":1.4142135623730951},"750":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"801":{"tf":1.0},"865":{"tf":1.4142135623730951}}}}}}},"df":43,"docs":{"0":{"tf":1.0},"111":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.7320508075688772},"17":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.7320508075688772},"258":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"376":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"526":{"tf":1.0},"535":{"tf":1.0},"570":{"tf":1.0},"653":{"tf":1.0},"710":{"tf":1.0},"73":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.0},"811":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"916":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}},"|":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{"730":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"254":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"142":{"tf":1.4142135623730951},"184":{"tf":1.0},"315":{"tf":1.0},"456":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"76":{"tf":1.0},"804":{"tf":1.0},"894":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"224":{"tf":1.0},"241":{"tf":1.0},"379":{"tf":1.0},"80":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"803":{"tf":1.0}}}}},"u":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"m":{"d":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"557":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":2.0},"116":{"tf":1.0}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}},"df":87,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"110":{"tf":2.449489742783178},"111":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"175":{"tf":2.6457513110645907},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"317":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.0},"683":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"71":{"tf":1.0},"737":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.0},"782":{"tf":1.0},"793":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"802":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"823":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.7320508075688772},"839":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.7320508075688772},"867":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.449489742783178},"9":{"tf":1.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"969":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"498":{"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":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"268":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":88,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"175":{"tf":2.8284271247461903},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":2.23606797749979},"297":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"346":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"580":{"tf":1.0},"632":{"tf":1.0},"645":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"652":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.0},"67":{"tf":1.7320508075688772},"674":{"tf":1.0},"677":{"tf":1.0},"680":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"70":{"tf":1.0},"704":{"tf":1.0},"71":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"715":{"tf":1.0},"72":{"tf":1.0},"729":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"853":{"tf":1.0},"860":{"tf":1.0},"865":{"tf":1.4142135623730951},"897":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"938":{"tf":1.0},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":2.0},"97":{"tf":2.0},"98":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"645":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"288":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"289":{"tf":1.7320508075688772},"687":{"tf":1.0},"703":{"tf":1.0},"83":{"tf":1.0},"852":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"117":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"471":{"tf":1.0},"753":{"tf":1.0},"9":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"958":{"tf":1.0}}},"m":{"a":{"df":6,"docs":{"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"353":{"tf":1.0},"370":{"tf":1.4142135623730951}},"n":{"d":{">":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"115":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":2.23606797749979},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":3.7416573867739413},"232":{"tf":1.0},"233":{"tf":3.4641016151377544},"234":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"653":{"tf":1.0},"682":{"tf":1.0},"689":{"tf":1.7320508075688772},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"804":{"tf":1.0},"861":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":2.6457513110645907},"935":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":2,"docs":{"379":{"tf":1.0},"823":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":35,"docs":{"106":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.0},"21":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"34":{"tf":1.0},"38":{"tf":1.0},"387":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"854":{"tf":1.0},"99":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"949":{"tf":1.0},"950":{"tf":1.7320508075688772},"953":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"659":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":8,"docs":{"160":{"tf":1.0},"289":{"tf":1.7320508075688772},"5":{"tf":1.0},"546":{"tf":1.0},"712":{"tf":1.0},"838":{"tf":1.0},"859":{"tf":1.0},"957":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":6,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"52":{"tf":1.0},"958":{"tf":1.0}}},"t":{"df":10,"docs":{"289":{"tf":1.0},"51":{"tf":1.0},"762":{"tf":1.0},"776":{"tf":1.0},"784":{"tf":1.0},"801":{"tf":1.0},"851":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"735":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"835":{"tf":1.0},"844":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":16,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"250":{"tf":1.0},"254":{"tf":1.4142135623730951},"340":{"tf":1.0},"379":{"tf":1.0},"678":{"tf":1.4142135623730951},"737":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"845":{"tf":1.0},"854":{"tf":1.0},"861":{"tf":1.0},"902":{"tf":1.0}}},"x":{"df":3,"docs":{"144":{"tf":1.0},"22":{"tf":1.0},"772":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"538":{"tf":1.0},"697":{"tf":1.0}}}}},"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"11":{"tf":2.0},"13":{"tf":2.0},"193":{"tf":1.0},"316":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"656":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0},"77":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"933":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{".":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"915":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"135":{"tf":1.0},"661":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"913":{"tf":1.0},"933":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"378":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"572":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"169":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"677":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"823":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"878":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":8,"docs":{"203":{"tf":4.123105625617661},"205":{"tf":1.0},"254":{"tf":1.0},"316":{"tf":1.4142135623730951},"830":{"tf":1.0},"861":{"tf":1.0},"908":{"tf":1.0},"912":{"tf":1.0}},"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":{},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"805":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":71,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"168":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":4.358898943540674},"197":{"tf":2.449489742783178},"198":{"tf":3.4641016151377544},"199":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":2.6457513110645907},"203":{"tf":4.358898943540674},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.0},"210":{"tf":1.0},"214":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":4.898979485566356},"258":{"tf":2.0},"261":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"307":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":3.0},"316":{"tf":2.8284271247461903},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"342":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"503":{"tf":1.0},"514":{"tf":1.4142135623730951},"60":{"tf":1.0},"663":{"tf":1.4142135623730951},"676":{"tf":1.0},"682":{"tf":1.4142135623730951},"693":{"tf":1.0},"720":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.4142135623730951},"79":{"tf":1.0},"801":{"tf":1.0},"861":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"732":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"563":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"289":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"592":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":2.23606797749979},"627":{"tf":1.0},"655":{"tf":1.0},"710":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"d":{"df":28,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"190":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"371":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.0},"674":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"258":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.0},"674":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"330":{"tf":1.0},"346":{"tf":1.0},"493":{"tf":1.0},"704":{"tf":1.0},"804":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"898":{"tf":1.0},"906":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":19,"docs":{"32":{"tf":1.7320508075688772},"324":{"tf":1.0},"448":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"490":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"577":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"700":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"175":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"765":{"tf":1.0},"878":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"65":{"tf":1.0},"752":{"tf":1.0}}}},"m":{"df":34,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"230":{"tf":1.0},"276":{"tf":1.4142135623730951},"307":{"tf":1.0},"316":{"tf":1.4142135623730951},"326":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"379":{"tf":1.0},"43":{"tf":1.0},"492":{"tf":1.0},"720":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"788":{"tf":1.0},"793":{"tf":1.7320508075688772},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"838":{"tf":1.4142135623730951},"842":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"858":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"422":{"tf":1.0},"537":{"tf":1.0},"6":{"tf":1.4142135623730951},"860":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":88,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"234":{"tf":1.0},"246":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.7320508075688772},"328":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"423":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"443":{"tf":1.0},"48":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"501":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"538":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"609":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"653":{"tf":1.0},"697":{"tf":1.0},"716":{"tf":1.0},"73":{"tf":1.4142135623730951},"772":{"tf":1.0},"779":{"tf":1.0},"79":{"tf":1.0},"823":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.4142135623730951},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"129":{"tf":1.4142135623730951},"136":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"163":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"186":{"tf":1.0},"188":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"289":{"tf":2.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"422":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"546":{"tf":1.0},"592":{"tf":1.0},"60":{"tf":1.0},"634":{"tf":2.449489742783178},"636":{"tf":1.4142135623730951},"637":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"959":{"tf":1.4142135623730951},"960":{"tf":2.0},"961":{"tf":1.7320508075688772},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":2.0},"967":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{".":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"111":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.7320508075688772},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"834":{"tf":1.0},"858":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"959":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":43,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":2.449489742783178},"191":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.449489742783178},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"471":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"602":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"682":{"tf":1.0},"715":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"837":{"tf":1.0},"854":{"tf":1.0},"857":{"tf":1.0},"871":{"tf":1.0},"9":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"407":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"406":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"459":{"tf":1.0},"477":{"tf":1.0},"788":{"tf":1.0},"834":{"tf":1.0},"861":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"t":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}},"t":{"df":7,"docs":{"115":{"tf":1.0},"377":{"tf":1.4142135623730951},"471":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"834":{"tf":1.0},"884":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"854":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"254":{"tf":2.8284271247461903},"7":{"tf":1.0},"823":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"800":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"130":{"tf":1.0},"322":{"tf":1.4142135623730951},"653":{"tf":2.23606797749979},"654":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"673":{"tf":1.0},"755":{"tf":1.0},"758":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.4142135623730951},"818":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"881":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"11":{"tf":1.0},"117":{"tf":1.0},"17":{"tf":1.0},"315":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"619":{"tf":1.4142135623730951},"673":{"tf":1.0},"769":{"tf":1.0},"782":{"tf":1.0},"825":{"tf":1.0},"838":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"873":{"tf":1.0},"919":{"tf":1.0},"935":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":21,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"315":{"tf":1.0},"67":{"tf":1.0},"731":{"tf":1.0},"762":{"tf":2.23606797749979},"764":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"804":{"tf":1.0},"816":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"847":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"926":{"tf":1.0},"947":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"138":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"741":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"958":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"190":{"tf":1.0},"62":{"tf":1.0},"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":40,"docs":{"124":{"tf":2.0},"125":{"tf":1.7320508075688772},"127":{"tf":2.23606797749979},"347":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"406":{"tf":1.0},"408":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":2.0},"582":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.7320508075688772},"607":{"tf":1.7320508075688772},"618":{"tf":1.4142135623730951},"619":{"tf":2.0},"621":{"tf":1.0},"70":{"tf":1.0},"716":{"tf":1.0},"75":{"tf":2.0},"755":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"907":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":34,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"127":{"tf":2.6457513110645907},"131":{"tf":1.4142135623730951},"288":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":2.0},"402":{"tf":1.7320508075688772},"404":{"tf":3.7416573867739413},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.4142135623730951},"412":{"tf":2.23606797749979},"414":{"tf":3.7416573867739413},"416":{"tf":2.6457513110645907},"417":{"tf":1.0},"418":{"tf":1.0},"456":{"tf":1.0},"544":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"621":{"tf":2.23606797749979},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"734":{"tf":1.0},"75":{"tf":1.4142135623730951},"818":{"tf":1.0},"837":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"421":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"266":{"tf":1.0},"267":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"673":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"804":{"tf":1.0},"831":{"tf":1.0},"853":{"tf":1.0}}}},"df":1,"docs":{"261":{"tf":1.0}}}}},"w":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"752":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"679":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"679":{"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":{"679":{"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":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":31,"docs":{"166":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.7320508075688772},"289":{"tf":1.0},"376":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"646":{"tf":1.4142135623730951},"674":{"tf":2.6457513110645907},"677":{"tf":3.3166247903554},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"736":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"771":{"tf":1.0},"785":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"835":{"tf":1.0},"844":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"880":{"tf":1.7320508075688772},"958":{"tf":1.4142135623730951}},"e":{"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":{"df":1,"docs":{"677":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"26":{"tf":1.4142135623730951},"315":{"tf":1.0},"655":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"754":{"tf":1.0},"787":{"tf":1.0},"818":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"854":{"tf":1.0},"871":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"655":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.7320508075688772},"259":{"tf":1.0},"27":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"710":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"785":{"tf":1.0},"79":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.0},"925":{"tf":1.0},"951":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"538":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"0":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"31":{"tf":1.0},"65":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"701":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"579":{"tf":1.0},"618":{"tf":1.0},"627":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":1,"docs":{"254":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":50,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":2.0},"14":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.0},"283":{"tf":1.0},"293":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"334":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.0},"54":{"tf":1.0},"572":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.0},"691":{"tf":1.0},"694":{"tf":1.0},"711":{"tf":1.0},"715":{"tf":1.4142135623730951},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"950":{"tf":1.0},"968":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":1,"docs":{"551":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"579":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"813":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"594":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":83,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"223":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"259":{"tf":2.23606797749979},"261":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":2.0},"317":{"tf":3.0},"336":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"520":{"tf":1.0},"551":{"tf":2.449489742783178},"560":{"tf":1.0},"572":{"tf":1.7320508075688772},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.7320508075688772},"582":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"647":{"tf":1.0},"649":{"tf":1.7320508075688772},"667":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":3.0},"679":{"tf":1.7320508075688772},"690":{"tf":1.7320508075688772},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"729":{"tf":1.4142135623730951},"734":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.7320508075688772},"79":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"804":{"tf":1.0},"823":{"tf":1.0},"830":{"tf":1.0},"837":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"922":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.4142135623730951},"969":{"tf":1.7320508075688772}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"718":{"tf":1.0},"738":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"145":{"tf":1.0},"173":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"4":{"1":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"837":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"316":{"tf":1.0},"318":{"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":32,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"466":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"636":{"tf":1.0},"839":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":18,"docs":{"109":{"tf":1.0},"127":{"tf":1.0},"264":{"tf":1.4142135623730951},"721":{"tf":1.0},"741":{"tf":1.0},"753":{"tf":1.4142135623730951},"812":{"tf":1.0},"818":{"tf":1.0},"831":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"88":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.4142135623730951},"917":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":203,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":3.872983346207417},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"160":{"tf":2.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"185":{"tf":2.6457513110645907},"187":{"tf":2.6457513110645907},"190":{"tf":2.23606797749979},"191":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.6457513110645907},"218":{"tf":2.23606797749979},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":4.69041575982343},"292":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"33":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"385":{"tf":1.7320508075688772},"389":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"399":{"tf":1.0},"406":{"tf":1.7320508075688772},"410":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.7320508075688772},"452":{"tf":1.0},"464":{"tf":1.7320508075688772},"469":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":2.0},"485":{"tf":1.0},"487":{"tf":3.1622776601683795},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"496":{"tf":2.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":2.23606797749979},"512":{"tf":1.0},"514":{"tf":3.1622776601683795},"517":{"tf":1.4142135623730951},"519":{"tf":2.23606797749979},"522":{"tf":1.4142135623730951},"523":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.7320508075688772},"535":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"54":{"tf":1.4142135623730951},"541":{"tf":1.0},"543":{"tf":1.7320508075688772},"546":{"tf":1.0},"548":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"558":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"569":{"tf":1.0},"57":{"tf":2.0},"577":{"tf":2.23606797749979},"580":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"588":{"tf":2.23606797749979},"59":{"tf":1.0},"591":{"tf":1.4142135623730951},"592":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.7320508075688772},"604":{"tf":1.0},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"611":{"tf":1.7320508075688772},"614":{"tf":1.4142135623730951},"615":{"tf":1.0},"623":{"tf":1.7320508075688772},"627":{"tf":1.0},"63":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"637":{"tf":1.0},"638":{"tf":1.0},"642":{"tf":2.23606797749979},"644":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":3.4641016151377544},"666":{"tf":1.0},"67":{"tf":1.4142135623730951},"674":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"697":{"tf":2.0},"698":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"704":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":2.449489742783178},"772":{"tf":2.23606797749979},"78":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"791":{"tf":1.0},"818":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"86":{"tf":1.4142135623730951},"860":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"873":{"tf":1.0},"9":{"tf":2.6457513110645907},"91":{"tf":1.0},"916":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":3.3166247903554},"962":{"tf":1.0},"969":{"tf":4.358898943540674},"98":{"tf":2.449489742783178},"99":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"315":{"tf":2.23606797749979},"316":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"\"":{"2":{"0":{"2":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"915":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"551":{"tf":1.4142135623730951},"553":{"tf":1.0}}}}}}}},"df":25,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.0},"288":{"tf":2.0},"376":{"tf":1.0},"549":{"tf":1.4142135623730951},"551":{"tf":2.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"556":{"tf":1.0},"664":{"tf":1.4142135623730951},"669":{"tf":1.0},"684":{"tf":2.0},"685":{"tf":1.0},"741":{"tf":1.0},"77":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951},"830":{"tf":1.0},"847":{"tf":1.4142135623730951},"87":{"tf":1.0},"881":{"tf":1.0},"914":{"tf":1.0},"98":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":23,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"376":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"549":{"tf":1.7320508075688772},"551":{"tf":2.8284271247461903},"553":{"tf":1.7320508075688772},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.7320508075688772},"776":{"tf":1.0},"78":{"tf":1.0},"813":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"956":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{".":{"d":{"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":{"(":{"1":{"9":{"9":{"3":{"df":1,"docs":{"553":{"tf":1.0}}},"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":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":27,"docs":{"117":{"tf":1.7320508075688772},"127":{"tf":2.449489742783178},"132":{"tf":1.0},"175":{"tf":2.8284271247461903},"224":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":1.0},"379":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"830":{"tf":1.0},"861":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"814":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"831":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":59,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":2.449489742783178},"2":{"tf":1.0},"215":{"tf":1.7320508075688772},"218":{"tf":2.23606797749979},"221":{"tf":2.6457513110645907},"222":{"tf":2.0},"223":{"tf":1.7320508075688772},"224":{"tf":2.6457513110645907},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.449489742783178},"234":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"239":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":2.0},"315":{"tf":1.0},"348":{"tf":1.7320508075688772},"349":{"tf":2.23606797749979},"350":{"tf":1.0},"352":{"tf":1.4142135623730951},"363":{"tf":2.0},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":2.0},"651":{"tf":1.0},"701":{"tf":1.0},"715":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"817":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"863":{"tf":1.0},"880":{"tf":1.0},"890":{"tf":1.0},"898":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"906":{"tf":1.0},"915":{"tf":1.0},"920":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"379":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"276":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"858":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"965":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":107,"docs":{"100":{"tf":2.0},"116":{"tf":1.0},"131":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":3.3166247903554},"205":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.4142135623730951},"289":{"tf":3.3166247903554},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.4142135623730951},"565":{"tf":1.7320508075688772},"568":{"tf":1.0},"570":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.4142135623730951},"668":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"690":{"tf":1.4142135623730951},"700":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"799":{"tf":1.0},"814":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"842":{"tf":1.0},"861":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"952":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"874":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":12,"docs":{"318":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0},"652":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"871":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":77,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":2.6457513110645907},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"326":{"tf":1.7320508075688772},"336":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"38":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"568":{"tf":1.4142135623730951},"593":{"tf":1.0},"60":{"tf":1.0},"616":{"tf":1.0},"626":{"tf":1.0},"644":{"tf":1.7320508075688772},"647":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.7320508075688772},"686":{"tf":1.0},"690":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.6457513110645907},"947":{"tf":1.0},"951":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":49,"docs":{"190":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"35":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"649":{"tf":1.0},"677":{"tf":1.4142135623730951},"679":{"tf":1.0},"773":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"22":{"tf":1.0},"272":{"tf":1.4142135623730951},"315":{"tf":1.0},"721":{"tf":1.0},"789":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"315":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":33,"docs":{"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"135":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"254":{"tf":1.4142135623730951},"295":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"342":{"tf":1.4142135623730951},"741":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.4142135623730951},"838":{"tf":1.7320508075688772},"860":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.7320508075688772},"917":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"956":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"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":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"838":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0}}}}}}}}}},"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":{"334":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"334":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"621":{"tf":2.23606797749979}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"626":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":4.358898943540674},"623":{"tf":1.7320508075688772},"626":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":45,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.7320508075688772},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"270":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"376":{"tf":1.0},"41":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"665":{"tf":1.7320508075688772},"671":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"744":{"tf":1.0},"750":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"844":{"tf":1.0},"858":{"tf":2.23606797749979},"859":{"tf":1.0},"880":{"tf":1.0},"882":{"tf":1.0},"9":{"tf":1.4142135623730951},"947":{"tf":1.0},"953":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"234":{"tf":1.0},"252":{"tf":1.0},"958":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":16,"docs":{"129":{"tf":1.0},"136":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"380":{"tf":1.4142135623730951},"715":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"805":{"tf":1.0},"838":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"315":{"tf":1.0},"330":{"tf":1.0},"697":{"tf":1.4142135623730951},"770":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":9,"docs":{"136":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":61,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"224":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":2.449489742783178},"292":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"315":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"579":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"823":{"tf":1.0},"87":{"tf":1.0},"964":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"568":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"175":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"462":{"tf":1.0}}},"df":20,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"354":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":2.0}},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"949":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":32,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":2.0},"318":{"tf":1.0},"488":{"tf":1.0},"5":{"tf":1.4142135623730951},"515":{"tf":1.0},"56":{"tf":1.4142135623730951},"662":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"772":{"tf":1.7320508075688772},"799":{"tf":2.23606797749979},"857":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"104":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"22":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"741":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"11":{"tf":1.0},"132":{"tf":1.7320508075688772},"205":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"456":{"tf":1.0},"673":{"tf":1.7320508075688772},"72":{"tf":1.0},"77":{"tf":1.0},"846":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"956":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":13,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"223":{"tf":1.0},"626":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.7320508075688772},"675":{"tf":1.0},"773":{"tf":1.0},"79":{"tf":1.0},"964":{"tf":1.0}}}}}},"i":{"c":{"df":21,"docs":{"132":{"tf":2.449489742783178},"184":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"289":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"431":{"tf":1.0},"50":{"tf":1.4142135623730951},"73":{"tf":1.0},"835":{"tf":1.0},"94":{"tf":1.0}},"e":{"'":{"df":5,"docs":{"231":{"tf":1.0},"351":{"tf":1.0},"549":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"498":{"tf":1.4142135623730951},"500":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"497":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"254":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"640":{"tf":2.0},"642":{"tf":1.4142135623730951},"645":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"5":{"df":1,"docs":{"640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"21":{"tf":1.0},"254":{"tf":2.6457513110645907},"276":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"37":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"60":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"703":{"tf":1.0},"801":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":70,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"121":{"tf":1.0},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.0},"248":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":1.4142135623730951},"340":{"tf":1.0},"348":{"tf":1.4142135623730951},"37":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"488":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"515":{"tf":1.0},"52":{"tf":1.4142135623730951},"522":{"tf":1.0},"524":{"tf":1.0},"583":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"606":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"653":{"tf":1.7320508075688772},"660":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"685":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"705":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"82":{"tf":1.0},"830":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"912":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"402":{"tf":1.0},"619":{"tf":1.0},"673":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"376":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"613":{"tf":1.4142135623730951}}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":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":{"318":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"289":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"665":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"191":{"tf":1.0},"289":{"tf":1.4142135623730951},"33":{"tf":1.0},"652":{"tf":1.0},"792":{"tf":1.0},"807":{"tf":1.0},"916":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"114":{"tf":1.0},"127":{"tf":2.23606797749979},"135":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"338":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"665":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"690":{"tf":1.4142135623730951},"734":{"tf":1.0},"818":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"860":{"tf":1.4142135623730951},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"846":{"tf":1.0},"859":{"tf":1.0}}},"y":{"_":{"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":8,"docs":{"125":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"126":{"tf":1.4142135623730951},"145":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.23606797749979},"195":{"tf":1.0},"203":{"tf":3.1622776601683795},"206":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":2.0},"321":{"tf":1.7320508075688772},"324":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":1.4142135623730951},"649":{"tf":1.4142135623730951},"667":{"tf":1.0},"716":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951},"872":{"tf":1.0},"930":{"tf":1.0},"950":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"872":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"734":{"tf":1.4142135623730951},"927":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"224":{"tf":1.0},"371":{"tf":1.0},"476":{"tf":1.0},"831":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"168":{"tf":1.0},"22":{"tf":1.0},"809":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":19,"docs":{"127":{"tf":1.0},"340":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0},"718":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":1.0},"774":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"865":{"tf":1.4142135623730951},"933":{"tf":1.0},"940":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"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":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"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":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"601":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"600":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":18,"docs":{"226":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"288":{"tf":1.0},"376":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":2.23606797749979},"615":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"119":{"tf":1.0},"184":{"tf":1.4142135623730951},"29":{"tf":1.0},"688":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"660":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":73,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"137":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":2.6457513110645907},"41":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":2.449489742783178},"474":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.7320508075688772},"488":{"tf":2.23606797749979},"491":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":2.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"512":{"tf":1.0},"514":{"tf":1.7320508075688772},"515":{"tf":2.23606797749979},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"572":{"tf":2.6457513110645907},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":2.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.23606797749979},"588":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951},"729":{"tf":2.0},"738":{"tf":1.0},"755":{"tf":1.0},"76":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"880":{"tf":1.0},"911":{"tf":1.7320508075688772},"958":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"673":{"tf":1.0},"728":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"480":{"tf":1.0},"759":{"tf":1.0},"854":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"969":{"tf":4.123105625617661}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"961":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":1,"docs":{"859":{"tf":1.0}}},"o":{"c":{"df":36,"docs":{"134":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.4142135623730951},"315":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":2.0},"335":{"tf":1.7320508075688772},"343":{"tf":1.0},"376":{"tf":1.0},"390":{"tf":1.7320508075688772},"400":{"tf":1.7320508075688772},"411":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"432":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"502":{"tf":1.0},"513":{"tf":1.7320508075688772},"525":{"tf":1.0},"536":{"tf":1.7320508075688772},"559":{"tf":1.7320508075688772},"571":{"tf":1.7320508075688772},"581":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.7320508075688772},"617":{"tf":1.0},"628":{"tf":1.0},"838":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.0},"912":{"tf":1.0},"924":{"tf":1.0}},"s":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"]":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":71,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.6457513110645907},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.7320508075688772},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"37":{"tf":2.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":2.0},"499":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.7320508075688772},"697":{"tf":1.0},"706":{"tf":1.0},"71":{"tf":1.0},"772":{"tf":1.4142135623730951},"799":{"tf":2.0},"801":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}}}}}}}},"df":14,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"342":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"493":{"tf":1.0},"57":{"tf":1.0},"692":{"tf":1.0},"76":{"tf":1.0},"831":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":1,"docs":{"969":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"640":{"tf":1.0},"649":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.4142135623730951},"793":{"tf":1.0},"82":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":2,"docs":{"289":{"tf":1.0},"523":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":31,"docs":{"135":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"480":{"tf":2.449489742783178},"493":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"583":{"tf":1.0},"630":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"753":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"782":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"814":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"338":{"tf":1.0},"621":{"tf":2.23606797749979},"77":{"tf":1.0},"792":{"tf":1.0},"834":{"tf":1.0},"862":{"tf":1.0},"98":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"710":{"tf":1.0}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"346":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"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":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"747":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":16,"docs":{"144":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"339":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"377":{"tf":1.0},"468":{"tf":1.0},"814":{"tf":1.0},"848":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"17":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"661":{"tf":1.0},"673":{"tf":2.0},"675":{"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":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":18,"docs":{"127":{"tf":1.0},"232":{"tf":1.0},"310":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"750":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"947":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"884":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"448":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"425":{"tf":2.449489742783178},"445":{"tf":2.8284271247461903},"446":{"tf":4.0},"448":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"135":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"328":{"tf":1.0},"601":{"tf":1.0},"732":{"tf":1.0},"753":{"tf":1.0},"758":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"818":{"tf":1.4142135623730951},"835":{"tf":1.0},"838":{"tf":1.0},"844":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"921":{"tf":1.0},"99":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"289":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"771":{"tf":1.0},"83":{"tf":1.4142135623730951},"834":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"125":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"271":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"725":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"208":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":2.0},"330":{"tf":1.0},"465":{"tf":1.0},"579":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"737":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"858":{"tf":1.0},"865":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"289":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"529":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"753":{"tf":1.4142135623730951},"78":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":44,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":3.4641016151377544},"136":{"tf":1.7320508075688772},"155":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"54":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"567":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":74,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"221":{"tf":1.0},"258":{"tf":1.4142135623730951},"281":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.23606797749979},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"346":{"tf":1.0},"348":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"456":{"tf":1.0},"476":{"tf":1.4142135623730951},"482":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"560":{"tf":1.0},"568":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"653":{"tf":1.7320508075688772},"661":{"tf":1.0},"665":{"tf":1.0},"710":{"tf":1.0},"78":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"456":{"tf":1.0},"484":{"tf":1.0},"78":{"tf":1.0},"877":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"82":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"62":{"tf":1.0},"728":{"tf":1.0},"862":{"tf":1.0},"968":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"218":{"tf":1.0},"677":{"tf":1.0},"814":{"tf":1.0},"924":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}}},"df":1,"docs":{"701":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"231":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"958":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"927":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"288":{"tf":1.0},"79":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":103,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"571":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772}}}}}}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"191":{"tf":1.0},"242":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":2.0},"332":{"tf":1.7320508075688772},"735":{"tf":1.0},"752":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"?":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{")":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"65":{"tf":1.0},"916":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"549":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"328":{"tf":2.0},"644":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.0}}}}}}},"f":{"df":1,"docs":{"815":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"344":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"132":{"tf":1.0},"17":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"769":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"779":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"446":{"tf":1.0},"743":{"tf":1.0},"812":{"tf":1.0},"842":{"tf":1.0},"938":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":23,"docs":{"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"50":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":86,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"221":{"tf":2.0},"224":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"348":{"tf":1.4142135623730951},"355":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.7320508075688772},"387":{"tf":1.0},"389":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"443":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"669":{"tf":1.0},"685":{"tf":1.0},"715":{"tf":1.4142135623730951},"721":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.7320508075688772},"762":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"818":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"861":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.4142135623730951},"956":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"_":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":11,"docs":{"128":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"541":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"731":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"696":{"tf":1.0},"697":{"tf":3.0},"698":{"tf":2.0},"701":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"1":{"6":{"/":{"1":{"7":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"/":{"0":{"4":{":":{"3":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"1":{"9":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":1.0},"184":{"tf":2.0},"203":{"tf":1.4142135623730951},"329":{"tf":1.0},"711":{"tf":1.0},"76":{"tf":1.0},"795":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.4142135623730951},"865":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.7320508075688772},"969":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"263":{"tf":1.4142135623730951},"31":{"tf":1.0},"763":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"867":{"tf":1.0},"922":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"135":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"289":{"tf":1.4142135623730951},"958":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"140":{"tf":1.4142135623730951},"316":{"tf":1.0},"376":{"tf":1.0},"429":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"452":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"652":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"927":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"183":{"tf":1.0},"83":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"127":{"tf":1.0},"710":{"tf":1.0},"834":{"tf":1.0},"913":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.7320508075688772},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"493":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"63":{"tf":1.0},"673":{"tf":1.0},"736":{"tf":1.0},"753":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"776":{"tf":1.0},"788":{"tf":1.0},"802":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"853":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"929":{"tf":1.0},"938":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"439":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"105":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"526":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":29,"docs":{"138":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"32":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"34":{"tf":1.7320508075688772},"377":{"tf":1.0},"533":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"700":{"tf":1.0},"71":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"958":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"563":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"750":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":49,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"19":{"tf":1.7320508075688772},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"229":{"tf":1.7320508075688772},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"348":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"368":{"tf":1.0},"369":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"653":{"tf":1.0},"660":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":2.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":2.23606797749979},"691":{"tf":2.0},"692":{"tf":1.0},"721":{"tf":1.0},"74":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"841":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"907":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"921":{"tf":1.7320508075688772},"924":{"tf":1.0},"939":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"315":{"tf":1.0},"804":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"750":{"tf":1.0},"804":{"tf":1.0}}},"r":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":145,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":3.1622776601683795},"127":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"231":{"tf":1.0},"273":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"356":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":2.6457513110645907},"435":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"481":{"tf":2.23606797749979},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"517":{"tf":1.0},"520":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"538":{"tf":1.0},"541":{"tf":1.4142135623730951},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"570":{"tf":1.0},"575":{"tf":1.0},"578":{"tf":1.4142135623730951},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.4142135623730951},"609":{"tf":1.0},"612":{"tf":1.0},"618":{"tf":1.4142135623730951},"621":{"tf":1.0},"623":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":2.449489742783178},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"698":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"76":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":2.449489742783178},"839":{"tf":1.0},"842":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"86":{"tf":1.0},"866":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"904":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"917":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":2.0},"929":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"94":{"tf":1.0},"945":{"tf":1.0},"97":{"tf":1.0}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":21,"docs":{"396":{"tf":1.0},"407":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.4142135623730951},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.4142135623730951},"578":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951},"635":{"tf":1.0},"643":{"tf":1.0},"840":{"tf":1.0},"913":{"tf":1.0},"924":{"tf":1.0},"933":{"tf":1.0}},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"396":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"428":{"tf":1.0},"544":{"tf":1.0},"566":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":13,"docs":{"386":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"578":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.4142135623730951},"643":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"396":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"428":{"tf":1.0},"476":{"tf":1.0},"544":{"tf":1.0},"566":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":13,"docs":{"386":{"tf":1.0},"407":{"tf":1.0},"476":{"tf":1.0},"497":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.4142135623730951},"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"5":{"df":1,"docs":{"942":{"tf":1.0}}},"6":{"df":1,"docs":{"950":{"tf":1.7320508075688772}}},"a":{"df":1,"docs":{"224":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"132":{"tf":1.4142135623730951},"224":{"tf":2.23606797749979}},"m":{"df":3,"docs":{"32":{"tf":1.7320508075688772},"700":{"tf":1.0},"912":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"922":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"2":{"tf":1.0},"4":{"tf":1.0},"962":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"261":{"tf":1.0},"289":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"145":{"tf":1.0},"22":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"752":{"tf":1.0},"79":{"tf":1.4142135623730951},"802":{"tf":1.0},"845":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"580":{"tf":1.0},"591":{"tf":1.0}}}},"t":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{">":{".":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":2.449489742783178},"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":124,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":3.4641016151377544},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"137":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":4.242640687119285},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":2.23606797749979},"169":{"tf":1.0},"170":{"tf":2.8284271247461903},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.23606797749979},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":2.6457513110645907},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":4.795831523312719},"259":{"tf":3.3166247903554},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":2.23606797749979},"266":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":2.23606797749979},"324":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":2.6457513110645907},"376":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.0},"560":{"tf":2.8284271247461903},"561":{"tf":1.7320508075688772},"563":{"tf":2.23606797749979},"565":{"tf":2.449489742783178},"566":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":2.23606797749979},"570":{"tf":1.0},"579":{"tf":1.0},"649":{"tf":1.0},"677":{"tf":2.8284271247461903},"679":{"tf":1.0},"693":{"tf":1.0},"718":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.4142135623730951},"734":{"tf":1.0},"735":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":3.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"799":{"tf":3.0},"804":{"tf":2.23606797749979},"807":{"tf":1.0},"815":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.7320508075688772},"843":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.7320508075688772},"897":{"tf":1.4142135623730951},"900":{"tf":1.0},"907":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"929":{"tf":2.6457513110645907},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"939":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":2.6457513110645907},"956":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"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":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"[":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"565":{"tf":1.4142135623730951}}}}}}}},"s":{"df":1,"docs":{"112":{"tf":1.0}}}},"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"261":{"tf":1.0}}}},"[":{"0":{"]":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"?":{"[":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"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":{"565":{"tf":1.0}}}}}}}}},"[":{"0":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"565":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"u":{"df":2,"docs":{"289":{"tf":1.0},"649":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"122":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"289":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"690":{"tf":1.0},"765":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"402":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"5":{"tf":1.0},"935":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":93,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"119":{"tf":1.0},"120":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":3.1622776601683795},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.7320508075688772},"175":{"tf":1.0},"178":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":2.6457513110645907},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"316":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":3.1622776601683795},"377":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"595":{"tf":1.0},"602":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"674":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"690":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"964":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":17,"docs":{"135":{"tf":1.4142135623730951},"168":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"378":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"127":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":3,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"677":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":34,"docs":{"130":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"288":{"tf":1.0},"321":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"677":{"tf":2.23606797749979},"679":{"tf":2.0},"765":{"tf":1.0},"772":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"u":{"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":{"679":{"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"679":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"267":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"203":{"tf":1.0},"318":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":1,"docs":{"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"289":{"tf":1.0},"340":{"tf":1.4142135623730951},"346":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"78":{"tf":1.0},"837":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"379":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"780":{"tf":1.0},"8":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"861":{"tf":1.0},"935":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"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":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":33,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"118":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":2.23606797749979},"416":{"tf":2.449489742783178},"427":{"tf":2.6457513110645907},"437":{"tf":2.449489742783178},"460":{"tf":1.0},"480":{"tf":2.449489742783178},"507":{"tf":2.6457513110645907},"531":{"tf":2.449489742783178},"563":{"tf":1.0},"577":{"tf":2.6457513110645907},"600":{"tf":2.0},"652":{"tf":1.0},"692":{"tf":1.4142135623730951},"701":{"tf":1.0},"817":{"tf":1.0},"86":{"tf":1.4142135623730951},"935":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772}},"e":{"d":{"_":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"553":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":38,"docs":{"129":{"tf":1.0},"131":{"tf":2.6457513110645907},"158":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"203":{"tf":3.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":2.8284271247461903},"306":{"tf":1.0},"307":{"tf":2.0},"315":{"tf":1.0},"326":{"tf":3.0},"328":{"tf":2.0},"329":{"tf":1.7320508075688772},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"784":{"tf":1.0},"819":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"865":{"tf":1.0},"873":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"376":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}},"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"124":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":3.0},"315":{"tf":1.0},"330":{"tf":2.0},"334":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"718":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.4142135623730951},"958":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"328":{"tf":2.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":3.4641016151377544},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"685":{"tf":2.23606797749979},"77":{"tf":2.449489742783178},"830":{"tf":1.7320508075688772},"858":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":2.449489742783178}},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"774":{"tf":1.0},"830":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"251":{"tf":1.0},"266":{"tf":1.0}}}},"n":{"df":4,"docs":{"677":{"tf":1.0},"702":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"137":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"318":{"tf":1.0},"342":{"tf":1.0},"460":{"tf":1.0},"529":{"tf":2.449489742783178},"60":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"471":{"tf":1.0},"503":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"224":{"tf":1.4142135623730951},"317":{"tf":1.0},"34":{"tf":1.0},"690":{"tf":1.4142135623730951},"837":{"tf":1.0},"953":{"tf":1.0}}}},"s":{"df":34,"docs":{"111":{"tf":1.0},"211":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"236":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"317":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"742":{"tf":1.0},"772":{"tf":1.4142135623730951},"788":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"823":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"913":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"862":{"tf":1.0},"864":{"tf":1.0}}}}}}},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"13":{"tf":1.0},"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"670":{"tf":1.4142135623730951},"672":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"663":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"184":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"679":{"tf":1.0},"734":{"tf":1.0},"77":{"tf":1.4142135623730951},"795":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":24,"docs":{"0":{"tf":1.0},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"500":{"tf":1.0},"592":{"tf":1.0},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"848":{"tf":1.0},"853":{"tf":1.7320508075688772},"902":{"tf":1.0},"915":{"tf":1.0},"940":{"tf":1.0},"950":{"tf":1.7320508075688772},"956":{"tf":1.0},"958":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"494":{"tf":1.0},"621":{"tf":3.1622776601683795},"626":{"tf":1.4142135623730951},"672":{"tf":1.0},"721":{"tf":1.0},"743":{"tf":1.0},"804":{"tf":1.0},"862":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.0}}}}},"r":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"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":{"328":{"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{":":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"799":{"tf":1.0}}},"2":{"df":1,"docs":{"799":{"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":7,"docs":{"560":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"852":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"41":{"tf":1.0}}}},"df":52,"docs":{"110":{"tf":1.0},"112":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"224":{"tf":2.0},"259":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":2.8284271247461903},"333":{"tf":1.0},"388":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"510":{"tf":1.0},"522":{"tf":1.0},"534":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"563":{"tf":3.605551275463989},"565":{"tf":1.7320508075688772},"568":{"tf":2.6457513110645907},"570":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"799":{"tf":2.0},"865":{"tf":1.4142135623730951},"89":{"tf":1.0},"897":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"183":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"697":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"802":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"230":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"303":{"tf":1.0},"958":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"162":{"tf":1.0},"19":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"859":{"tf":1.4142135623730951},"895":{"tf":1.0},"935":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"127":{"tf":2.0},"273":{"tf":1.0},"294":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"792":{"tf":1.0},"834":{"tf":1.4142135623730951},"849":{"tf":1.0},"929":{"tf":1.0},"935":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"895":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"203":{"tf":1.0},"289":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0}}},"s":{"df":32,"docs":{"100":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"652":{"tf":2.6457513110645907},"73":{"tf":1.0},"734":{"tf":1.0},"79":{"tf":1.4142135623730951},"875":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":1,"docs":{"923":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"958":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"288":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"183":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"869":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"802":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"715":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0}}}}}},"df":8,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":71,"docs":{"0":{"tf":1.0},"138":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":3.0},"196":{"tf":1.0},"197":{"tf":2.449489742783178},"198":{"tf":2.8284271247461903},"199":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":5.830951894845301},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":2.23606797749979},"209":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"418":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"694":{"tf":1.0},"701":{"tf":1.0},"720":{"tf":1.0},"738":{"tf":1.0},"74":{"tf":1.0},"757":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"841":{"tf":1.0},"863":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0},"963":{"tf":1.0},"965":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"b":{"8":{"/":{"1":{"7":{":":{"0":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.6457513110645907}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"958":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"132":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":2.0},"198":{"tf":1.0},"316":{"tf":1.7320508075688772},"895":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"117":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"793":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"877":{"tf":1.0}}}},"i":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":29,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"644":{"tf":1.0},"677":{"tf":2.0},"697":{"tf":1.0},"734":{"tf":1.0},"750":{"tf":1.0},"755":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"782":{"tf":1.0},"801":{"tf":1.0},"839":{"tf":1.4142135623730951},"865":{"tf":1.0}}},"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":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":119,"docs":{"108":{"tf":2.0},"11":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":2.23606797749979},"116":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":3.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"21":{"tf":2.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":2.0},"282":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.0},"292":{"tf":1.0},"293":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":2.0},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.4142135623730951},"31":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"340":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"38":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"41":{"tf":1.0},"419":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":2.0},"440":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"499":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"533":{"tf":1.0},"55":{"tf":1.0},"563":{"tf":1.0},"59":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"614":{"tf":1.4142135623730951},"661":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":2.8284271247461903},"68":{"tf":1.0},"686":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.4142135623730951},"753":{"tf":1.0},"77":{"tf":1.0},"783":{"tf":1.0},"812":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"850":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.0},"9":{"tf":1.0},"91":{"tf":1.0},"924":{"tf":1.0},"950":{"tf":1.7320508075688772},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"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":2,"docs":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"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":{},"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":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":2,"docs":{"232":{"tf":1.0},"379":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"234":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"315":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"11":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.0},"653":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.4142135623730951},"693":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"d":{"df":10,"docs":{"232":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.7320508075688772},"34":{"tf":1.0},"401":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"376":{"tf":1.0},"467":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"149":{"tf":1.0},"22":{"tf":1.4142135623730951},"318":{"tf":1.0},"339":{"tf":1.0},"652":{"tf":1.0},"747":{"tf":1.0},"801":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":25,"docs":{"110":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"289":{"tf":2.0},"31":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"354":{"tf":1.0},"462":{"tf":1.0},"646":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"?":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":1,"docs":{"565":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"d":{"df":10,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"313":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"811":{"tf":1.0},"909":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"556":{"tf":1.0}}}}}},"df":66,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":3.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"328":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":2.449489742783178},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"65":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"747":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"804":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"881":{"tf":1.0},"888":{"tf":1.0},"897":{"tf":1.0},"968":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"t":{"df":8,"docs":{"106":{"tf":1.0},"22":{"tf":1.0},"630":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"961":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"371":{"tf":1.0},"961":{"tf":1.0}}}},"x":{"df":58,"docs":{"117":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"50":{"tf":1.0},"541":{"tf":1.0},"632":{"tf":1.0},"720":{"tf":1.0},"731":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"797":{"tf":1.0},"804":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.0},"818":{"tf":1.4142135623730951},"820":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.4142135623730951},"843":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"876":{"tf":1.0},"880":{"tf":1.4142135623730951},"881":{"tf":1.0},"892":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"924":{"tf":2.23606797749979},"926":{"tf":1.0},"929":{"tf":1.0},"935":{"tf":1.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"946":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"d":{"(":{"2":{"0":{"1":{"9":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"100":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"355":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"682":{"tf":1.0},"715":{"tf":1.0},"79":{"tf":1.0},"861":{"tf":1.0},"872":{"tf":1.0},"908":{"tf":1.4142135623730951}},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"383":{"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":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"2":{"df":1,"docs":{"851":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"p":{"df":3,"docs":{"342":{"tf":1.0},"666":{"tf":1.0},"741":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"918":{"tf":1.4142135623730951},"937":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"459":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"720":{"tf":1.0},"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"786":{"tf":1.0},"807":{"tf":1.0},"867":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.0}}}},"n":{"df":12,"docs":{"26":{"tf":1.0},"342":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":5,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"830":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"44":{"tf":1.0},"677":{"tf":1.0},"683":{"tf":1.0},"831":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":80,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":2.23606797749979},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"55":{"tf":1.0},"560":{"tf":1.0},"580":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"60":{"tf":1.0},"614":{"tf":1.0},"626":{"tf":1.0},"662":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"697":{"tf":1.0},"72":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0},"919":{"tf":1.0},"93":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"715":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"c":{"df":8,"docs":{"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"354":{"tf":1.0},"679":{"tf":1.0},"792":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.4142135623730951},"224":{"tf":1.0},"231":{"tf":1.0},"807":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"476":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"968":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"268":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":62,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"128":{"tf":1.0},"138":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.7320508075688772},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"285":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"864":{"tf":1.0},"87":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"969":{"tf":3.0}}}},"df":14,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"288":{"tf":1.0},"320":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"823":{"tf":1.0},"89":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"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":6,"docs":{"12":{"tf":1.0},"775":{"tf":1.0},"793":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0}},"s":{":":{"$":{"df":0,"docs":{},"{":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"793":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"288":{"tf":1.0},"796":{"tf":1.0},"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":135,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"548":{"tf":1.0},"553":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"565":{"tf":1.0},"571":{"tf":1.0},"577":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"617":{"tf":1.0},"623":{"tf":1.0},"628":{"tf":1.0},"634":{"tf":1.0},"637":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"814":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"117":{"tf":1.0},"289":{"tf":1.0},"350":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"618":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"63":{"tf":1.0},"711":{"tf":1.0},"80":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"318":{"tf":1.0},"356":{"tf":1.0},"657":{"tf":1.4142135623730951},"776":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"22":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"297":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"752":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"958":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"282":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":281,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"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},"746":{"tf":1.0},"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},"755":{"tf":1.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},"765":{"tf":1.0},"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},"78":{"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"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.0},"895":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"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.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":6,"docs":{"184":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"22":{"tf":1.0},"538":{"tf":1.0},"900":{"tf":1.0}}}}},"n":{"c":{"df":14,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"111":{"tf":1.4142135623730951},"144":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"318":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"338":{"tf":1.7320508075688772},"342":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":2.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"471":{"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},"48":{"tf":1.0},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"514":{"tf":1.0},"652":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"725":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.0},"743":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.0},"772":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.4142135623730951},"810":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.0},"867":{"tf":1.4142135623730951},"905":{"tf":1.0},"907":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"924":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"958":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"315":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"190":{"tf":1.0},"310":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"830":{"tf":1.0},"87":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"613":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"958":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"334":{"tf":2.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"703":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0}}}}}}},"df":1,"docs":{"687":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"580":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"270":{"tf":1.0},"316":{"tf":1.0},"376":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.4142135623730951},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"830":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"792":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"/":{"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":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":186,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"144":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.7320508075688772},"224":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"371":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"51":{"tf":1.0},"514":{"tf":1.7320508075688772},"52":{"tf":1.0},"528":{"tf":2.8284271247461903},"54":{"tf":1.0},"563":{"tf":2.0},"582":{"tf":1.7320508075688772},"65":{"tf":1.0},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.7320508075688772},"671":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":1.7320508075688772},"687":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"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.4142135623730951},"738":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"78":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"888":{"tf":1.0},"9":{"tf":1.0},"914":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"b":{"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":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"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":0,"docs":{},"m":{"df":1,"docs":{"804":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"838":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":53,"docs":{"127":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"360":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"651":{"tf":1.0},"711":{"tf":1.0},"721":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"876":{"tf":1.0},"905":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"838":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"612":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"609":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"612":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"613":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"510":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":1,"docs":{"22":{"tf":1.0}}},"t":{"df":4,"docs":{"132":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"60":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":107,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"571":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"60":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.4142135623730951},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"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":{"17":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"32":{"tf":1.7320508075688772},"44":{"tf":1.0},"660":{"tf":1.7320508075688772},"677":{"tf":1.0},"688":{"tf":1.7320508075688772}},"n":{"df":90,"docs":{"104":{"tf":1.0},"110":{"tf":1.7320508075688772},"130":{"tf":1.0},"140":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"673":{"tf":1.0},"782":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"929":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":2.6457513110645907}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"276":{"tf":1.0},"68":{"tf":2.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"'":{"df":10,"docs":{"2":{"tf":1.0},"22":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.0},"349":{"tf":1.0},"693":{"tf":1.0},"838":{"tf":1.4142135623730951},"875":{"tf":1.0},"969":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"393":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"157":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"865":{"tf":1.0}}}},"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":{},"n":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":2,"docs":{"124":{"tf":1.0},"892":{"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"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":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"22":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"716":{"tf":1.0},"721":{"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":{},"v":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"i":{"d":{"]":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"492":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"493":{"tf":1.0},"494":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"120":{"tf":1.0},"124":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"\"":{"df":0,"docs":{},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"127":{"tf":1.0},"809":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"127":{"tf":1.0},"310":{"tf":1.0},"773":{"tf":1.0},"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"120":{"tf":1.0},"176":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"383":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"2":{"3":{"df":1,"docs":{"574":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"858":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"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":{"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":{"338":{"tf":1.0},"678":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"679":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"238":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.7320508075688772},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"701":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"551":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":28,"docs":{"121":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"222":{"tf":1.0},"240":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"561":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":2.0},"916":{"tf":1.0},"923":{"tf":1.4142135623730951},"934":{"tf":1.0},"936":{"tf":1.0},"948":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"834":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"243":{"tf":1.0}}}}}},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"585":{"tf":1.0},"586":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"585":{"tf":1.0},"586":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"[":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"519":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"df":3,"docs":{"315":{"tf":1.0},"338":{"tf":1.0},"678":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"168":{"tf":1.0},"752":{"tf":1.0},"912":{"tf":1.0},"929":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}},"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"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":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":1,"docs":{"920":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"920":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"920":{"tf":1.0}},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":3,"docs":{"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"342":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"9":{"tf":1.0},"921":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":2,"docs":{"316":{"tf":1.0},"338":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"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":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":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":{"407":{"tf":1.0},"532":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"643":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"333":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"924":{"tf":1.0},"927":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"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":{},"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":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"802":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"135":{"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":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"127":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"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":{},"s":{"df":3,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"829":{"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.0},"842":{"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":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":2,"docs":{"127":{"tf":1.0},"747":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"747":{"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":{},"r":{".":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"l":{"df":1,"docs":{"862":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"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":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"752":{"tf":1.0},"811":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"127":{"tf":1.0},"762":{"tf":1.0},"806":{"tf":1.0},"809":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"806":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"739":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"747":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"/":{"4":{"0":{".":{"0":{".":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"3":{"3":{".":{"0":{".":{"0":{"df":1,"docs":{"11":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"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":{},"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":{"318":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":23,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":3,"docs":{"316":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"338":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"85":{"tf":1.0}}}}}},"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":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"26":{"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":{},"r":{"df":1,"docs":{"823":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":1,"docs":{"369":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":4,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"362":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"362":{"tf":1.7320508075688772}}}}}},"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":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":3,"docs":{"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"505":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"n":{"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":11,"docs":{"497":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"652":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":84,"docs":{"115":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"288":{"tf":1.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"567":{"tf":1.0},"653":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":2.8284271247461903},"678":{"tf":1.0},"689":{"tf":1.4142135623730951},"690":{"tf":1.0},"692":{"tf":2.23606797749979},"715":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"783":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"864":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":2.23606797749979},"943":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"=":{"=":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"8":{".":{"1":{"df":1,"docs":{"673":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}},"df":0,"docs":{}},"df":2,"docs":{"690":{"tf":1.0},"907":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"673":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"673":{"tf":1.4142135623730951},"690":{"tf":1.0},"907":{"tf":1.0}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"375":{"tf":1.4142135623730951}},"s":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}},"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}},"e":{"=":{"$":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"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":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"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":{"728":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"751":{"tf":1.0},"805":{"tf":1.0},"839":{"tf":1.0},"840":{"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":{"837":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":447,"docs":{"0":{"tf":3.7416573867739413},"10":{"tf":2.0},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":2.23606797749979},"111":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.0},"126":{"tf":2.6457513110645907},"127":{"tf":2.0},"128":{"tf":1.0},"13":{"tf":2.8284271247461903},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":3.1622776601683795},"14":{"tf":2.0},"141":{"tf":1.0},"142":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":2.8284271247461903},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"18":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":2.0},"182":{"tf":2.0},"183":{"tf":3.0},"184":{"tf":1.7320508075688772},"185":{"tf":2.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"192":{"tf":1.0},"194":{"tf":2.23606797749979},"195":{"tf":3.1622776601683795},"197":{"tf":2.23606797749979},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"2":{"tf":2.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.449489742783178},"206":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"218":{"tf":2.449489742783178},"22":{"tf":2.449489742783178},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"223":{"tf":2.0},"224":{"tf":2.6457513110645907},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":1.7320508075688772},"231":{"tf":2.449489742783178},"232":{"tf":2.449489742783178},"233":{"tf":2.8284271247461903},"234":{"tf":2.23606797749979},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":3.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":2.449489742783178},"259":{"tf":1.7320508075688772},"26":{"tf":2.23606797749979},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":2.0},"280":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":2.23606797749979},"308":{"tf":1.7320508075688772},"309":{"tf":1.7320508075688772},"31":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":3.3166247903554},"316":{"tf":4.242640687119285},"317":{"tf":1.7320508075688772},"318":{"tf":5.385164807134504},"32":{"tf":3.605551275463989},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.23606797749979},"326":{"tf":1.7320508075688772},"328":{"tf":2.23606797749979},"329":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"330":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":2.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":1.7320508075688772},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":2.0},"371":{"tf":1.4142135623730951},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"39":{"tf":1.7320508075688772},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"419":{"tf":1.4142135623730951},"422":{"tf":1.0},"425":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":2.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.23606797749979},"522":{"tf":1.4142135623730951},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"561":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.4142135623730951},"580":{"tf":1.0},"591":{"tf":1.4142135623730951},"598":{"tf":1.0},"6":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772},"600":{"tf":1.0},"601":{"tf":1.0},"614":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"62":{"tf":2.8284271247461903},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.4142135623730951},"630":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":1.7320508075688772},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"647":{"tf":1.4142135623730951},"649":{"tf":2.0},"65":{"tf":2.23606797749979},"652":{"tf":1.0},"653":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"656":{"tf":1.7320508075688772},"657":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.0},"67":{"tf":1.4142135623730951},"670":{"tf":1.0},"671":{"tf":2.6457513110645907},"673":{"tf":2.449489742783178},"674":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":2.449489742783178},"68":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":2.449489742783178},"688":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"690":{"tf":1.7320508075688772},"691":{"tf":1.4142135623730951},"692":{"tf":2.449489742783178},"693":{"tf":1.7320508075688772},"697":{"tf":1.7320508075688772},"698":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":2.6457513110645907},"704":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.7320508075688772},"708":{"tf":1.4142135623730951},"709":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"710":{"tf":1.0},"712":{"tf":1.7320508075688772},"715":{"tf":1.7320508075688772},"716":{"tf":1.0},"721":{"tf":1.7320508075688772},"732":{"tf":1.4142135623730951},"736":{"tf":1.7320508075688772},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":2.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.4142135623730951},"755":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"78":{"tf":2.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"79":{"tf":1.7320508075688772},"792":{"tf":2.0},"793":{"tf":2.8284271247461903},"798":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":2.0},"817":{"tf":1.4142135623730951},"818":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"828":{"tf":1.0},"83":{"tf":1.4142135623730951},"831":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":2.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":2.0},"854":{"tf":1.4142135623730951},"858":{"tf":1.7320508075688772},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":2.0},"862":{"tf":1.0},"865":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.7320508075688772},"872":{"tf":1.0},"873":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"881":{"tf":1.7320508075688772},"882":{"tf":1.4142135623730951},"885":{"tf":1.0},"892":{"tf":1.0},"9":{"tf":3.1622776601683795},"91":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":2.449489742783178},"916":{"tf":2.23606797749979},"917":{"tf":1.0},"919":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"920":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"945":{"tf":1.7320508075688772},"951":{"tf":2.23606797749979},"956":{"tf":1.4142135623730951},"957":{"tf":2.0},"958":{"tf":5.196152422706632},"962":{"tf":1.7320508075688772},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"347":{"tf":1.4142135623730951}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"[":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"112":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"779":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"649":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"670":{"tf":1.0},"672":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"720":{"tf":1.0},"867":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"885":{"tf":1.0}},"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":{},"p":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{"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":1,"docs":{"318":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"473":{"tf":1.7320508075688772},"876":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"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":1,"docs":{"318":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"’":{"df":3,"docs":{"3":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"830":{"tf":1.0},"834":{"tf":1.4142135623730951},"858":{"tf":1.0},"864":{"tf":1.0}}}}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"22":{"tf":1.0},"239":{"tf":1.0},"318":{"tf":1.0},"774":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"702":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"t":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"136":{"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":{},"t":{"c":{"+":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"445":{"tf":1.0},"446":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"df":3,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"df":22,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"425":{"tf":2.449489742783178},"445":{"tf":2.449489742783178},"446":{"tf":2.449489742783178},"448":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"619":{"tf":1.0},"675":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":5,"docs":{"109":{"tf":1.0},"145":{"tf":1.4142135623730951},"198":{"tf":1.0},"859":{"tf":1.0},"88":{"tf":1.0}}},"o":{"d":{"df":7,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"233":{"tf":1.0},"63":{"tf":1.0},"678":{"tf":1.0},"830":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"448":{"tf":1.0}}}}}},"r":{"a":{"b":{"df":1,"docs":{"665":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"339":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"802":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"l":{"df":32,"docs":{"11":{"tf":1.0},"13":{"tf":2.8284271247461903},"318":{"tf":1.0},"663":{"tf":1.7320508075688772},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.4142135623730951},"675":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"731":{"tf":1.0},"735":{"tf":1.0},"750":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"786":{"tf":1.4142135623730951},"792":{"tf":2.0},"793":{"tf":1.0},"801":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"670":{"tf":1.0},"673":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"673":{"tf":1.4142135623730951},"862":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"467":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"2":{"3":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"578":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"578":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"2":{"3":{"df":1,"docs":{"574":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"578":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"2":{"3":{"df":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"578":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"577":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"577":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"288":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"tf":1.4142135623730951}}}},"p":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"673":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"297":{"tf":1.0},"654":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"142":{"tf":1.0},"342":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"849":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"878":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":25,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"117":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.7320508075688772},"23":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"29":{"tf":1.0},"349":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":2.23606797749979},"964":{"tf":1.4142135623730951},"965":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"110":{"tf":1.0},"5":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"852":{"tf":1.0},"853":{"tf":1.0},"913":{"tf":1.0},"933":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}}},"h":{"1":{"2":{"0":{"2":{"0":{"df":1,"docs":{"958":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"521":{"tf":1.0}}},"3":{"df":1,"docs":{"521":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"65":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"514":{"tf":1.0}},"l":{"df":27,"docs":{"109":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"371":{"tf":1.0},"402":{"tf":1.0},"563":{"tf":2.0},"679":{"tf":1.0},"710":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"833":{"tf":1.4142135623730951},"865":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"679":{"tf":1.0},"858":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"120":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.0},"155":{"tf":1.0},"312":{"tf":1.0},"376":{"tf":1.7320508075688772},"401":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.4142135623730951},"60":{"tf":1.0},"618":{"tf":1.7320508075688772},"697":{"tf":1.0},"701":{"tf":1.0},"710":{"tf":1.0},"75":{"tf":2.0},"802":{"tf":1.0},"809":{"tf":1.0},"823":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"878":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"96":{"tf":2.0}}}},"i":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"r":{"d":{"df":3,"docs":{"22":{"tf":1.0},"461":{"tf":1.0},"830":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"274":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"114":{"tf":1.0}},"m":{"df":2,"docs":{"830":{"tf":1.0},"923":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"328":{"tf":1.0},"799":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"677":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"267":{"tf":1.0},"476":{"tf":1.4142135623730951},"494":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"776":{"tf":1.0},"963":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":21,"docs":{"129":{"tf":1.0},"136":{"tf":2.6457513110645907},"317":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"697":{"tf":1.0},"741":{"tf":1.0},"775":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"847":{"tf":1.0},"858":{"tf":1.0},"913":{"tf":1.0},"936":{"tf":1.4142135623730951},"951":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"747":{"tf":1.0}}}}},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"509":{"tf":1.0},"512":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"606":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":22,"docs":{"117":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"226":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"461":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.7320508075688772}}}}}},"n":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"127":{"tf":1.0},"254":{"tf":2.449489742783178},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"677":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"728":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"117":{"tf":1.0},"145":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"456":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"135":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"289":{"tf":1.4142135623730951},"546":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"289":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":1.0},"632":{"tf":1.0}}}}}}}}},"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}}}},"df":12,"docs":{"376":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"503":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":8,"docs":{"132":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}},"i":{"df":1,"docs":{"289":{"tf":1.7320508075688772}}}}}}},"t":{"df":5,"docs":{"127":{"tf":1.0},"142":{"tf":1.0},"50":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"315":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"df":3,"docs":{"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"198":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"655":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"802":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"142":{"tf":1.0},"173":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"811":{"tf":1.0}}},"s":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"0":{"df":1,"docs":{"521":{"tf":1.0}}},"1":{"df":1,"docs":{"521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"519":{"tf":1.0}}},"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"590":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"590":{"tf":1.0}}},":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"df":2,"docs":{"138":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"87":{"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":1,"docs":{"645":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"626":{"tf":1.0}},"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":2,"docs":{"625":{"tf":1.0},"626":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"626":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"521":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"317":{"tf":1.0}}}}}}}},"df":18,"docs":{"237":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"745":{"tf":1.0},"922":{"tf":1.4142135623730951},"933":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"0":{"0":{"0":{"0":{"0":{"0":{"df":21,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"df":3,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"9":{"3":{"8":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"9":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"8":{"7":{"7":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"6":{"2":{"2":{"df":1,"docs":{"126":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"0":{"0":{"0":{"0":{"0":{"#":{"c":{"3":{"df":22,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"1":{"2":{"9":{"3":{"8":{"#":{"c":{"3":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"0":{"4":{"8":{"#":{"c":{"1":{"3":{"df":1,"docs":{"127":{"tf":1.0}}},"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":{"2":{"4":{"7":{"9":{"df":2,"docs":{"677":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"5":{"#":{"c":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"8":{"7":{"7":{"#":{"c":{"2":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"6":{"2":{"2":{"#":{"c":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"645":{"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"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":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"3":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"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":{},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"705":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"707":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"705":{"tf":1.0},"776":{"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":{}}}}}},"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":{},"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"31":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"11":{"tf":1.0},"13":{"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":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"/":{"2":{".":{"0":{"df":1,"docs":{"7":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"540":{"tf":1.0},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"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":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"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":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"254":{"tf":1.0},"288":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"294":{"tf":1.0},"762":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"693":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"693":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"693":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"i":{".":{"df":10,"docs":{"157":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"338":{"tf":1.0},"371":{"tf":1.0},"563":{"tf":1.0},"654":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"969":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"834":{"tf":1.0},"862":{"tf":1.0}}}},"6":{"8":{"6":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"7":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"232":{"tf":1.7320508075688772}}}}},"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":48,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":2.0},"136":{"tf":1.0},"160":{"tf":2.23606797749979},"163":{"tf":1.0},"17":{"tf":1.0},"205":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"347":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"526":{"tf":1.0},"59":{"tf":1.0},"592":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"728":{"tf":1.0},"734":{"tf":1.0},"842":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"9":{"tf":1.0},"946":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":3,"docs":{"119":{"tf":1.0},"173":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}},"i":{"df":36,"docs":{"104":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"118":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"160":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"289":{"tf":2.449489742783178},"315":{"tf":2.0},"330":{"tf":2.0},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"423":{"tf":1.0},"443":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"538":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"697":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"99":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"142":{"tf":1.0},"17":{"tf":1.0},"231":{"tf":1.4142135623730951},"357":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"664":{"tf":1.0},"684":{"tf":1.0},"734":{"tf":1.0},"873":{"tf":1.0},"882":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"693":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":16,"docs":{"127":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"184":{"tf":1.0},"224":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.0},"354":{"tf":1.0},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"710":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.7320508075688772},"271":{"tf":1.0},"318":{"tf":1.0},"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":51,"docs":{"11":{"tf":1.4142135623730951},"144":{"tf":1.0},"192":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":2.23606797749979},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":2.449489742783178},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"379":{"tf":1.0},"52":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"67":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.4142135623730951},"729":{"tf":1.0},"738":{"tf":1.0},"743":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.4142135623730951},"773":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"819":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"849":{"tf":1.0},"854":{"tf":1.0},"872":{"tf":1.0},"881":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.7320508075688772},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"956":{"tf":4.123105625617661}}}}}}},"i":{"df":1,"docs":{"256":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":151,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":2.8284271247461903},"317":{"tf":1.4142135623730951},"318":{"tf":2.449489742783178},"32":{"tf":2.6457513110645907},"324":{"tf":2.449489742783178},"328":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":2.23606797749979},"34":{"tf":1.7320508075688772},"342":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.7320508075688772},"383":{"tf":2.0},"385":{"tf":2.0},"386":{"tf":1.4142135623730951},"393":{"tf":2.0},"395":{"tf":2.0},"396":{"tf":2.23606797749979},"398":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":2.0},"406":{"tf":2.0},"407":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"414":{"tf":2.0},"416":{"tf":2.0},"417":{"tf":2.23606797749979},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"423":{"tf":1.0},"425":{"tf":2.0},"427":{"tf":2.0},"428":{"tf":2.23606797749979},"435":{"tf":2.0},"437":{"tf":2.0},"438":{"tf":2.23606797749979},"44":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"448":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.7320508075688772},"461":{"tf":2.0},"464":{"tf":2.0},"465":{"tf":2.23606797749979},"468":{"tf":1.0},"473":{"tf":2.6457513110645907},"474":{"tf":2.23606797749979},"475":{"tf":2.0},"476":{"tf":2.0},"477":{"tf":1.7320508075688772},"478":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951},"480":{"tf":2.0},"481":{"tf":2.23606797749979},"499":{"tf":1.0},"505":{"tf":2.23606797749979},"507":{"tf":2.0},"508":{"tf":2.23606797749979},"522":{"tf":1.0},"528":{"tf":2.0},"529":{"tf":2.23606797749979},"531":{"tf":2.0},"532":{"tf":2.449489742783178},"538":{"tf":1.0},"540":{"tf":2.0},"541":{"tf":1.0},"543":{"tf":2.0},"544":{"tf":2.23606797749979},"551":{"tf":2.23606797749979},"553":{"tf":2.23606797749979},"554":{"tf":2.0},"555":{"tf":2.6457513110645907},"563":{"tf":1.7320508075688772},"565":{"tf":2.0},"566":{"tf":2.8284271247461903},"574":{"tf":1.7320508075688772},"575":{"tf":1.7320508075688772},"577":{"tf":1.7320508075688772},"578":{"tf":2.0},"591":{"tf":1.0},"598":{"tf":2.0},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"614":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":2.6457513110645907},"623":{"tf":2.0},"624":{"tf":2.449489742783178},"630":{"tf":1.0},"632":{"tf":2.0},"634":{"tf":2.0},"635":{"tf":2.23606797749979},"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"643":{"tf":1.7320508075688772},"649":{"tf":2.23606797749979},"65":{"tf":1.0},"652":{"tf":2.6457513110645907},"66":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.7320508075688772},"692":{"tf":1.0},"693":{"tf":1.4142135623730951},"700":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"772":{"tf":1.0},"78":{"tf":1.4142135623730951},"831":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"909":{"tf":1.0},"916":{"tf":2.449489742783178},"92":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"958":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"288":{"tf":1.0}},"s":{"df":3,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"894":{"tf":1.0},"945":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":148,"docs":{"100":{"tf":3.4641016151377544},"104":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":2.0},"132":{"tf":1.7320508075688772},"145":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":2.0},"264":{"tf":1.0},"27":{"tf":1.7320508075688772},"288":{"tf":1.0},"289":{"tf":3.3166247903554},"297":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.4142135623730951},"342":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"419":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"614":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":1.0},"697":{"tf":1.4142135623730951},"729":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"762":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":3.4641016151377544},"8":{"tf":1.0},"802":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"826":{"tf":1.0},"83":{"tf":1.4142135623730951},"838":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":2.0},"865":{"tf":2.0},"878":{"tf":1.0},"880":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"912":{"tf":1.0},"929":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":3.4641016151377544},"99":{"tf":1.0}},"e":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"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":{}},"_":{"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":{"d":{"df":5,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}},"m":{"df":6,"docs":{"107":{"tf":1.0},"232":{"tf":1.0},"471":{"tf":1.0},"510":{"tf":1.0},"522":{"tf":1.0},"86":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"191":{"tf":1.0},"838":{"tf":1.0},"878":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"731":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"877":{"tf":1.0},"914":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":11,"docs":{"142":{"tf":2.449489742783178},"258":{"tf":2.449489742783178},"263":{"tf":1.4142135623730951},"289":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.7320508075688772},"756":{"tf":1.7320508075688772},"762":{"tf":1.0},"830":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"621":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"202":{"tf":1.0},"239":{"tf":1.0},"346":{"tf":1.0},"715":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":16,"docs":{"37":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"9":{"tf":1.4142135623730951},"950":{"tf":1.0}},"e":{"d":{"d":{"b":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":21,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"267":{"tf":1.0},"283":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"340":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"801":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":12,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"306":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"494":{"tf":1.0},"560":{"tf":1.0},"621":{"tf":1.0},"708":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"694":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"289":{"tf":1.0},"921":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}}},"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"704":{"tf":1.0},"779":{"tf":1.4142135623730951},"799":{"tf":1.0},"969":{"tf":2.0}},"r":{"df":0,"docs":{},"m":{"df":77,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"177":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"264":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":3.3166247903554},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.0},"4":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.0},"662":{"tf":1.0},"677":{"tf":2.449489742783178},"678":{"tf":1.0},"679":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"703":{"tf":1.0},"775":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"84":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"895":{"tf":1.0},"913":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.4142135623730951},"936":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":3.605551275463989}}}}},"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":3,"docs":{"666":{"tf":1.0},"686":{"tf":1.0},"704":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.7320508075688772},"273":{"tf":1.0},"288":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"666":{"tf":1.0},"686":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"79":{"tf":1.7320508075688772},"801":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.4142135623730951},"864":{"tf":1.0},"905":{"tf":1.0}},"i":{"df":82,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"208":{"tf":1.0},"254":{"tf":1.7320508075688772},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":2.0},"315":{"tf":2.8284271247461903},"316":{"tf":2.23606797749979},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"320":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.7320508075688772},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"500":{"tf":1.0},"678":{"tf":1.7320508075688772},"693":{"tf":1.0},"717":{"tf":1.4142135623730951},"721":{"tf":1.0},"723":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"806":{"tf":1.0},"812":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"854":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":2.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"880":{"tf":1.0},"882":{"tf":1.0},"9":{"tf":1.0},"908":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"941":{"tf":1.0},"945":{"tf":1.0},"948":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"803":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"252":{"tf":1.0},"969":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"115":{"tf":1.0},"17":{"tf":1.0},"233":{"tf":1.4142135623730951},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"111":{"tf":1.0},"254":{"tf":1.0},"48":{"tf":1.0},"665":{"tf":1.0},"677":{"tf":1.0},"691":{"tf":1.0},"803":{"tf":1.0},"912":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"244":{"tf":1.0},"772":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":31,"docs":{"115":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":2.23606797749979},"22":{"tf":1.0},"233":{"tf":1.0},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.4142135623730951},"671":{"tf":1.0},"673":{"tf":2.23606797749979},"675":{"tf":1.4142135623730951},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":2.23606797749979},"725":{"tf":1.0},"73":{"tf":1.0},"752":{"tf":1.0},"823":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.4142135623730951},"862":{"tf":1.0},"915":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"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":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"1":{"9":{"df":1,"docs":{"551":{"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":{},"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":{".":{"d":{"df":1,"docs":{"551":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"551":{"tf":1.0}}}}}},"df":1,"docs":{"551":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"551":{"tf":1.0}}}}}},"df":1,"docs":{"551":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"551":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":1,"docs":{"551":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"555":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"c":{"df":22,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"565":{"tf":1.0},"656":{"tf":1.0},"674":{"tf":1.0},"738":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"336":{"tf":1.0},"701":{"tf":1.0},"782":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":33,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"253":{"tf":1.0},"288":{"tf":1.0},"34":{"tf":1.0},"402":{"tf":1.0},"52":{"tf":1.0},"583":{"tf":1.0},"619":{"tf":1.0},"697":{"tf":1.4142135623730951},"73":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"743":{"tf":1.0},"772":{"tf":2.23606797749979},"775":{"tf":1.0},"786":{"tf":1.0},"793":{"tf":1.0},"801":{"tf":1.0},"809":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"94":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"232":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.0},"356":{"tf":1.0},"54":{"tf":1.0},"652":{"tf":2.449489742783178},"676":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":27,"docs":{"117":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"320":{"tf":1.0},"461":{"tf":1.0},"497":{"tf":1.0},"520":{"tf":1.0},"589":{"tf":1.0},"653":{"tf":1.0},"674":{"tf":2.0},"677":{"tf":1.0},"679":{"tf":1.0},"716":{"tf":1.0},"867":{"tf":1.0},"880":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"958":{"tf":1.0}}}}}}}}}},"t":{"3":{"2":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"505":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":20,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"580":{"tf":1.7320508075688772},"590":{"tf":1.0},"591":{"tf":1.7320508075688772},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"685":{"tf":1.0}},"r":{"df":44,"docs":{"10":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"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},"2":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.0},"23":{"tf":1.7320508075688772},"234":{"tf":1.0},"29":{"tf":2.0},"39":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.4142135623730951},"658":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"8":{"tf":1.0},"834":{"tf":1.0},"860":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":2.449489742783178},"958":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"153":{"tf":1.0},"160":{"tf":1.0},"173":{"tf":1.0},"192":{"tf":1.0},"53":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"184":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"282":{"tf":1.0},"289":{"tf":2.23606797749979},"377":{"tf":1.0},"466":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"254":{"tf":2.0},"289":{"tf":1.0}}}}},"f":{"a":{"c":{"df":8,"docs":{"218":{"tf":1.0},"223":{"tf":1.0},"320":{"tf":1.0},"476":{"tf":1.0},"679":{"tf":1.0},"689":{"tf":1.0},"837":{"tf":1.0},"874":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"804":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":31,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":1.0},"315":{"tf":1.4142135623730951},"318":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"456":{"tf":1.0},"471":{"tf":1.0},"62":{"tf":1.0},"647":{"tf":1.0},"693":{"tf":1.0},"728":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"803":{"tf":1.0},"838":{"tf":1.0},"854":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":1.4142135623730951},"933":{"tf":1.0},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"267":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"50":{"tf":1.0},"673":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"715":{"tf":1.0},"753":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"151":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"67":{"tf":1.0},"747":{"tf":1.4142135623730951},"796":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":2.0},"818":{"tf":1.4142135623730951},"820":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.4142135623730951},"951":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"120":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.4142135623730951},"563":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"839":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"120":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"866":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"779":{"tf":1.0},"795":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"p":{"df":18,"docs":{"120":{"tf":1.0},"383":{"tf":1.0},"393":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"529":{"tf":1.0},"541":{"tf":1.0},"551":{"tf":1.0},"563":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"632":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":26,"docs":{"120":{"tf":1.0},"328":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"462":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.4142135623730951},"517":{"tf":1.0},"529":{"tf":1.0},"541":{"tf":1.0},"551":{"tf":1.0},"563":{"tf":1.4142135623730951},"575":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"640":{"tf":1.0},"734":{"tf":1.0},"839":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":32,"docs":{"120":{"tf":2.0},"124":{"tf":1.4142135623730951},"231":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"393":{"tf":1.0},"396":{"tf":2.23606797749979},"414":{"tf":1.0},"417":{"tf":2.449489742783178},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"551":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0},"642":{"tf":1.0},"747":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"76":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"880":{"tf":1.0},"916":{"tf":1.7320508075688772},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"840":{"tf":1.0},"870":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"750":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"914":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"142":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.0}}},"t":{"df":1,"docs":{"800":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"103":{"tf":1.0},"249":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"82":{"tf":1.0},"875":{"tf":1.0},"958":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":1.7320508075688772},"749":{"tf":1.0},"912":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":1.0},"340":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}}}}}},"o":{"df":76,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"222":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":2.23606797749979},"234":{"tf":1.7320508075688772},"288":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"50":{"tf":2.0},"657":{"tf":1.0},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"685":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"741":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.4142135623730951},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"762":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"789":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.4142135623730951},"798":{"tf":1.0},"802":{"tf":1.7320508075688772},"804":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.4142135623730951},"834":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.4142135623730951},"842":{"tf":1.0},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"p":{"df":1,"docs":{"289":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"_":{"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":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"198":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"377":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.7320508075688772},"839":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}},"o":{"8":{"6":{"0":{"1":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"288":{"tf":1.0},"294":{"tf":1.0},"554":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"19":{"tf":1.0}}}},"p":{"df":1,"docs":{"267":{"tf":2.0}}},"s":{"df":0,"docs":{},"u":{"df":20,"docs":{"22":{"tf":1.0},"234":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.4142135623730951},"6":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"814":{"tf":1.0},"859":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.7320508075688772},"915":{"tf":1.0},"925":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}}}}}}}}}}}}}},"t":{"'":{"df":36,"docs":{"103":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"17":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"232":{"tf":2.449489742783178},"328":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"873":{"tf":1.4142135623730951},"884":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":19,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.4142135623730951},"22":{"tf":1.0},"230":{"tf":1.0},"264":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"692":{"tf":1.0},"708":{"tf":1.0},"83":{"tf":1.0},"916":{"tf":1.0}}}}}},"’":{"df":3,"docs":{"182":{"tf":1.0},"254":{"tf":1.0},"964":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"882":{"tf":1.0}}},"v":{"a":{"df":8,"docs":{"656":{"tf":1.0},"737":{"tf":1.0},"786":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"864":{"tf":1.4142135623730951},"876":{"tf":1.0},"969":{"tf":1.7320508075688772}},"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":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":99,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"174":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"29":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"32":{"tf":2.23606797749979},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0},"35":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"561":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.7320508075688772},"659":{"tf":1.4142135623730951},"660":{"tf":1.7320508075688772},"688":{"tf":1.7320508075688772},"693":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"927":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":3,"docs":{"731":{"tf":1.4142135623730951},"759":{"tf":1.0},"823":{"tf":1.0}},"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":{"12":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"882":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"b":{"df":5,"docs":{"224":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"128":{"tf":1.0},"171":{"tf":1.0},"195":{"tf":1.0},"254":{"tf":2.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0},"642":{"tf":1.0},"644":{"tf":1.0},"697":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"865":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"e":{"df":3,"docs":{"380":{"tf":1.0},"697":{"tf":1.0},"838":{"tf":1.0}}},"k":{"df":2,"docs":{"701":{"tf":1.4142135623730951},"951":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"b":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"915":{"tf":1.0}}}},"df":9,"docs":{"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"190":{"tf":1.0},"261":{"tf":1.0},"41":{"tf":1.0},"692":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"950":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"565":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"799":{"tf":1.0}}},"2":{"df":1,"docs":{"799":{"tf":1.0}}},"df":27,"docs":{"120":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"232":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"560":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.0},"568":{"tf":2.23606797749979},"570":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"697":{"tf":2.23606797749979},"698":{"tf":2.0},"701":{"tf":1.4142135623730951},"732":{"tf":1.0},"765":{"tf":1.0},"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"379":{"tf":1.0}}}},"d":{"df":2,"docs":{"697":{"tf":1.0},"701":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"155":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":6,"docs":{"509":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0},"632":{"tf":1.0},"829":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":8,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"376":{"tf":1.4142135623730951},"441":{"tf":1.0},"66":{"tf":1.0},"80":{"tf":1.0},"834":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"b":{"df":17,"docs":{"168":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"212":{"tf":2.0},"213":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"727":{"tf":1.7320508075688772},"741":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":24,"docs":{"100":{"tf":1.7320508075688772},"169":{"tf":1.0},"17":{"tf":1.0},"254":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":2.6457513110645907},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"252":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":23,"docs":{"106":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"66":{"tf":1.0},"673":{"tf":1.0},"680":{"tf":1.0},"708":{"tf":1.0},"73":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"923":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"p":{"df":1,"docs":{"651":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":68,"docs":{"0":{"tf":1.0},"10":{"tf":1.4142135623730951},"11":{"tf":2.0},"110":{"tf":2.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.0},"338":{"tf":1.0},"354":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.7320508075688772},"662":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.4142135623730951},"678":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"741":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.4142135623730951},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"829":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"879":{"tf":1.0},"89":{"tf":2.0},"9":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"529":{"tf":1.0}}},"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":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},"df":72,"docs":{"110":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":2.23606797749979},"376":{"tf":2.23606797749979},"377":{"tf":4.242640687119285},"378":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"393":{"tf":4.47213595499958},"395":{"tf":1.4142135623730951},"396":{"tf":2.449489742783178},"397":{"tf":1.4142135623730951},"398":{"tf":4.123105625617661},"412":{"tf":1.7320508075688772},"414":{"tf":4.47213595499958},"416":{"tf":1.4142135623730951},"417":{"tf":2.6457513110645907},"418":{"tf":1.4142135623730951},"419":{"tf":4.123105625617661},"433":{"tf":1.7320508075688772},"435":{"tf":4.47213595499958},"437":{"tf":1.4142135623730951},"438":{"tf":2.6457513110645907},"439":{"tf":1.4142135623730951},"440":{"tf":4.123105625617661},"488":{"tf":1.4142135623730951},"490":{"tf":2.449489742783178},"491":{"tf":2.23606797749979},"492":{"tf":2.0},"493":{"tf":2.23606797749979},"494":{"tf":2.23606797749979},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":4.242640687119285},"501":{"tf":3.7416573867739413},"515":{"tf":1.4142135623730951},"517":{"tf":2.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":4.123105625617661},"524":{"tf":3.7416573867739413},"583":{"tf":2.0},"585":{"tf":2.0},"586":{"tf":2.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"590":{"tf":1.4142135623730951},"591":{"tf":4.242640687119285},"593":{"tf":3.7416573867739413},"606":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"609":{"tf":2.23606797749979},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":4.242640687119285},"616":{"tf":3.7416573867739413},"747":{"tf":1.0},"75":{"tf":1.0},"752":{"tf":1.4142135623730951},"785":{"tf":1.0},"817":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.7320508075688772},"862":{"tf":1.7320508075688772},"864":{"tf":1.7320508075688772},"881":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"951":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"942":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"124":{"tf":2.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"418":{"tf":1.0},"734":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"590":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"521":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"613":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"439":{"tf":1.0},"78":{"tf":1.0},"942":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"498":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"400":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"502":{"tf":1.0},"525":{"tf":1.0},"594":{"tf":1.0},"617":{"tf":1.0},"842":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"400":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"442":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"206":{"tf":1.0},"254":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"969":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"969":{"tf":1.7320508075688772}},"u":{"a":{"df":0,"docs":{},"g":{"df":51,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"136":{"tf":1.0},"21":{"tf":1.0},"280":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"299":{"tf":1.0},"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.7320508075688772},"728":{"tf":1.0},"736":{"tf":1.0},"740":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.0},"834":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"862":{"tf":1.0},"89":{"tf":1.4142135623730951},"958":{"tf":1.0}},"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":{"9":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.0},"267":{"tf":1.0},"807":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"224":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.0},"736":{"tf":1.0},"907":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"467":{"tf":1.0},"621":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":2.6457513110645907},"142":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"204":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"861":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"741":{"tf":1.0}},"n":{"c":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":11,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"425":{"tf":2.449489742783178},"456":{"tf":1.0},"473":{"tf":1.0},"484":{"tf":1.0},"673":{"tf":1.0},"858":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"254":{"tf":1.0},"41":{"tf":1.0},"760":{"tf":1.0},"909":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"874":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"191":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":2.23606797749979},"247":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"780":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"d":{"df":8,"docs":{"141":{"tf":1.0},"74":{"tf":1.0},"814":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"467":{"tf":1.0},"720":{"tf":1.0}}},"n":{"df":4,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0}}}},"v":{"df":5,"docs":{"150":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"816":{"tf":1.0},"916":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"328":{"tf":1.0},"653":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"568":{"tf":1.0},"916":{"tf":1.0},"958":{"tf":1.0}}},"y":{"_":{"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":{"d":{"df":2,"docs":{"160":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"805":{"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":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"565":{"tf":1.0},"642":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":23,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"241":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"328":{"tf":2.0},"378":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"471":{"tf":1.0},"541":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.4142135623730951},"757":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"259":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"'":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":1,"docs":{"254":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"294":{"tf":1.0}}}}},"’":{"df":3,"docs":{"203":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":24,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"170":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"258":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"673":{"tf":1.0},"834":{"tf":1.4142135623730951},"878":{"tf":1.0},"962":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"956":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}}}}},"i":{"b":{"df":3,"docs":{"316":{"tf":1.0},"674":{"tf":1.0},"924":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":52,"docs":{"0":{"tf":2.23606797749979},"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"270":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"65":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.0},"665":{"tf":1.7320508075688772},"668":{"tf":1.0},"678":{"tf":1.0},"705":{"tf":1.0},"753":{"tf":1.4142135623730951},"775":{"tf":1.0},"799":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"9":{"tf":3.1622776601683795},"916":{"tf":1.7320508075688772},"929":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"y":{"'":{"df":2,"docs":{"21":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"'":{"df":1,"docs":{"743":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"151":{"tf":1.0},"184":{"tf":1.0},"271":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"848":{"tf":1.0},"875":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"874":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":36,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":1.0},"109":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"289":{"tf":2.449489742783178},"308":{"tf":1.0},"315":{"tf":1.0},"454":{"tf":1.0},"567":{"tf":1.4142135623730951},"632":{"tf":1.0},"636":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"734":{"tf":1.0},"770":{"tf":1.0},"78":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.0},"79":{"tf":3.1622776601683795},"80":{"tf":1.0},"840":{"tf":1.0},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"917":{"tf":1.0},"94":{"tf":1.4142135623730951},"953":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":72,"docs":{"109":{"tf":1.0},"129":{"tf":1.7320508075688772},"13":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":2.449489742783178},"170":{"tf":1.0},"224":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"357":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"456":{"tf":2.0},"476":{"tf":1.4142135623730951},"484":{"tf":1.7320508075688772},"499":{"tf":1.0},"501":{"tf":1.4142135623730951},"511":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"541":{"tf":1.0},"570":{"tf":1.0},"575":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.4142135623730951},"598":{"tf":1.0},"609":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.4142135623730951},"621":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"677":{"tf":1.0},"721":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"761":{"tf":1.0},"774":{"tf":1.0},"787":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"580":{"tf":1.0},"582":{"tf":1.0},"591":{"tf":1.0}}}},"df":18,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":2.0},"234":{"tf":1.0},"27":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"653":{"tf":1.0},"677":{"tf":1.0},"682":{"tf":1.0},"689":{"tf":1.0},"862":{"tf":1.0},"935":{"tf":1.0}}},"k":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"376":{"tf":1.0},"753":{"tf":1.0},"844":{"tf":1.0},"862":{"tf":1.4142135623730951},"890":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":1.4142135623730951}}},"t":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"21":{"tf":1.0},"294":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"768":{"tf":1.0},"804":{"tf":1.0},"838":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"288":{"tf":1.0},"38":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"858":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"132":{"tf":1.0},"19":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"769":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.4142135623730951},"815":{"tf":1.7320508075688772},"820":{"tf":1.7320508075688772},"867":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"772":{"tf":1.0}}}}}}},"df":68,"docs":{"10":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"297":{"tf":2.449489742783178},"315":{"tf":1.0},"318":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":2.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"39":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":2.0},"435":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"443":{"tf":1.7320508075688772},"445":{"tf":1.7320508075688772},"446":{"tf":2.23606797749979},"448":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"499":{"tf":2.0},"501":{"tf":1.0},"522":{"tf":2.0},"524":{"tf":1.0},"538":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"57":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":2.0},"593":{"tf":1.0},"614":{"tf":2.0},"616":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"668":{"tf":1.0},"689":{"tf":1.0},"715":{"tf":1.0},"73":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.4142135623730951},"77":{"tf":1.0},"813":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"862":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"912":{"tf":1.0},"94":{"tf":1.4142135623730951},"952":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"307":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":2.6457513110645907},"731":{"tf":1.0},"951":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"675":{"tf":1.0},"915":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":9,"docs":{"127":{"tf":1.0},"224":{"tf":1.0},"289":{"tf":1.4142135623730951},"371":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"78":{"tf":1.4142135623730951},"965":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"m":{"d":{"b":{"df":5,"docs":{"716":{"tf":1.0},"765":{"tf":1.0},"803":{"tf":1.0},"818":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":68,"docs":{"112":{"tf":1.0},"20":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"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},"480":{"tf":1.0},"481":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":68,"docs":{"112":{"tf":1.0},"20":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"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},"480":{"tf":1.0},"481":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":4,"docs":{"338":{"tf":1.4142135623730951},"649":{"tf":1.0},"652":{"tf":1.0},"834":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"338":{"tf":1.0},"649":{"tf":1.0},"652":{"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":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"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":15,"docs":{"140":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"263":{"tf":1.0},"268":{"tf":1.0},"31":{"tf":1.0},"338":{"tf":1.7320508075688772},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.4142135623730951},"592":{"tf":1.0},"864":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":27,"docs":{"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"316":{"tf":1.0},"710":{"tf":1.4142135623730951},"736":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"842":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"938":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"846":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"846":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"170":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"22":{"tf":1.0},"318":{"tf":1.0},"800":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"_":{"2":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"779":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"580":{"tf":1.0},"591":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":54,"docs":{"120":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":3.3166247903554},"237":{"tf":2.8284271247461903},"238":{"tf":2.0},"239":{"tf":3.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"245":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":2.0},"359":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"514":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"582":{"tf":1.0},"701":{"tf":1.0},"704":{"tf":1.0},"721":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"771":{"tf":1.0},"779":{"tf":1.0},"787":{"tf":1.0},"814":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":2.0},"849":{"tf":1.0},"854":{"tf":1.0},"880":{"tf":1.4142135623730951},"898":{"tf":1.0},"923":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.4142135623730951},"938":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"814":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":5,"docs":{"653":{"tf":1.0},"741":{"tf":1.0},"834":{"tf":1.4142135623730951},"919":{"tf":1.0},"932":{"tf":1.0}}},"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"438":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":10,"docs":{"376":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"441":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.0},"567":{"tf":1.4142135623730951},"569":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"tf":1.7320508075688772}}},"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":{"315":{"tf":1.0}}}}}}},"o":{"df":2,"docs":{"0":{"tf":1.0},"958":{"tf":1.0}}},"p":{"df":4,"docs":{"224":{"tf":2.0},"231":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"772":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":37,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"449":{"tf":1.0},"461":{"tf":1.0},"469":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"592":{"tf":1.0},"62":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"818":{"tf":1.4142135623730951},"839":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"963":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":49,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":1.0},"307":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"541":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"736":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.7320508075688772},"761":{"tf":1.0},"775":{"tf":1.0},"793":{"tf":1.0},"806":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"873":{"tf":1.4142135623730951},"876":{"tf":1.0},"891":{"tf":1.0},"912":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":30,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"203":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"572":{"tf":1.0},"665":{"tf":1.0},"668":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"690":{"tf":1.4142135623730951},"697":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"859":{"tf":1.0}}}}},"p":{"df":1,"docs":{"834":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"747":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"73":{"tf":1.0},"78":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":4,"docs":{"103":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"82":{"tf":1.0}}},"u":{"d":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"376":{"tf":1.0},"629":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"285":{"tf":1.0},"286":{"tf":1.0},"496":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"816":{"tf":1.0},"858":{"tf":1.0},"878":{"tf":1.0},"916":{"tf":1.0},"933":{"tf":1.0}}}}}}},"m":{"1":{"/":{"df":0,"docs":{},"m":{"2":{"/":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"958":{"tf":1.0}}},"a":{"c":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"233":{"tf":1.4142135623730951},"690":{"tf":1.0}},"h":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"289":{"tf":1.0},"697":{"tf":1.0},"910":{"tf":1.0}}}}},"o":{"df":7,"docs":{"19":{"tf":1.0},"673":{"tf":1.0},"775":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"867":{"tf":1.0},"884":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"256":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"862":{"tf":1.0},"869":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"487":{"tf":1.0},"514":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"104":{"tf":1.0},"289":{"tf":1.0},"83":{"tf":1.0}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":21,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.0},"26":{"tf":1.0},"306":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"316":{"tf":2.449489742783178},"34":{"tf":1.0},"342":{"tf":1.0},"646":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"840":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"675":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"308":{"tf":1.0},"62":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.0},"288":{"tf":2.449489742783178},"669":{"tf":1.7320508075688772},"685":{"tf":1.7320508075688772},"772":{"tf":1.0},"881":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":75,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.0},"281":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"318":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.4142135623730951},"443":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"538":{"tf":1.0},"619":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.0},"70":{"tf":1.4142135623730951},"720":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"804":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"842":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.4142135623730951},"862":{"tf":1.0},"863":{"tf":1.0},"882":{"tf":1.0},"900":{"tf":1.0},"91":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"925":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}},"r":{"df":1,"docs":{"956":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"917":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":15,"docs":{"153":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"62":{"tf":1.0},"647":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"867":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"958":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"44":{"tf":1.0},"677":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":21,"docs":{"127":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":2.449489742783178},"618":{"tf":1.4142135623730951},"625":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"858":{"tf":1.0},"915":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":5,"docs":{"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0},"673":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"968":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"820":{"tf":1.0}}},"2":{"0":{"1":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"4":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":9,"docs":{"131":{"tf":1.0},"170":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":2.23606797749979},"717":{"tf":1.4142135623730951},"723":{"tf":1.0},"840":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"328":{"tf":1.0},"679":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":11,"docs":{"21":{"tf":1.7320508075688772},"276":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"37":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"666":{"tf":1.0},"686":{"tf":1.7320508075688772},"862":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"318":{"tf":1.0},"773":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"334":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"640":{"tf":1.4142135623730951},"697":{"tf":1.0},"738":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"864":{"tf":1.0},"89":{"tf":1.0},"935":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"703":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"735":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688772},"656":{"tf":1.0}}}}},"x":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"861":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"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":{"761":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"212":{"tf":1.0},"213":{"tf":1.0},"897":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"315":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"565":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":59,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"170":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"328":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"456":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.0},"501":{"tf":1.7320508075688772},"511":{"tf":1.0},"514":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"541":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"575":{"tf":1.0},"582":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.4142135623730951},"609":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"632":{"tf":1.0},"732":{"tf":1.0},"81":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"929":{"tf":1.0}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"968":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"673":{"tf":1.0},"686":{"tf":1.0}},"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":6,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"645":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"n":{"df":41,"docs":{"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"168":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"487":{"tf":1.4142135623730951},"499":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"677":{"tf":1.0},"703":{"tf":1.0},"710":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":5,"docs":{"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"371":{"tf":1.0},"864":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":63,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"141":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":2.0},"477":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"488":{"tf":1.0},"503":{"tf":1.0},"549":{"tf":1.0},"632":{"tf":1.0},"70":{"tf":2.0},"708":{"tf":1.0},"711":{"tf":2.23606797749979},"721":{"tf":1.0},"73":{"tf":1.4142135623730951},"739":{"tf":1.0},"74":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"834":{"tf":1.4142135623730951},"86":{"tf":1.0},"861":{"tf":2.0},"866":{"tf":1.0},"880":{"tf":1.0},"91":{"tf":2.0},"929":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":2.449489742783178},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"289":{"tf":1.0},"346":{"tf":1.0},"471":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":2.0},"929":{"tf":1.0},"937":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"173":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"510":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":25,"docs":{"289":{"tf":1.4142135623730951},"310":{"tf":1.0},"376":{"tf":1.4142135623730951},"503":{"tf":2.23606797749979},"505":{"tf":1.4142135623730951},"507":{"tf":2.6457513110645907},"508":{"tf":1.4142135623730951},"509":{"tf":1.7320508075688772},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"514":{"tf":2.0},"515":{"tf":2.0},"517":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"718":{"tf":1.0},"814":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"911":{"tf":1.0},"958":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.7320508075688772}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"507":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.7320508075688772},"509":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"514":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"839":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"772":{"tf":1.0},"853":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"525":{"tf":1.0},"837":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"738":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"677":{"tf":1.7320508075688772},"679":{"tf":1.0},"779":{"tf":1.0},"805":{"tf":1.0},"814":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"858":{"tf":1.0},"898":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.4142135623730951},"938":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"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":1,"docs":{"266":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"171":{"tf":1.0}}},"2":{"df":1,"docs":{"171":{"tf":1.0}}},"df":16,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"254":{"tf":1.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"338":{"tf":1.0},"568":{"tf":1.0},"680":{"tf":1.0},"727":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":32,"docs":{"221":{"tf":2.0},"223":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.0},"257":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":2.23606797749979},"317":{"tf":1.0},"338":{"tf":2.0},"462":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"715":{"tf":1.0},"731":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"772":{"tf":1.7320508075688772},"838":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"'":{"df":7,"docs":{"104":{"tf":1.0},"288":{"tf":1.0},"464":{"tf":1.0},"554":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"799":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"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":2,"docs":{"110":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":423,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":2.0},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":2.6457513110645907},"105":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":2.449489742783178},"110":{"tf":2.8284271247461903},"111":{"tf":1.7320508075688772},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"120":{"tf":3.872983346207417},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":3.4641016151377544},"125":{"tf":3.1622776601683795},"126":{"tf":1.4142135623730951},"127":{"tf":3.3166247903554},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"135":{"tf":1.7320508075688772},"137":{"tf":2.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":2.0},"146":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":3.0},"174":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":2.8284271247461903},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":2.0},"190":{"tf":2.0},"191":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":3.0},"197":{"tf":2.449489742783178},"198":{"tf":2.449489742783178},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":2.23606797749979},"208":{"tf":1.0},"21":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":2.449489742783178},"231":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":4.69041575982343},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"277":{"tf":1.0},"28":{"tf":2.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":2.0},"286":{"tf":2.0},"287":{"tf":2.0},"288":{"tf":4.898979485566356},"289":{"tf":4.898979485566356},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"318":{"tf":2.6457513110645907},"321":{"tf":1.7320508075688772},"322":{"tf":2.0},"330":{"tf":1.4142135623730951},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.4142135623730951},"376":{"tf":2.449489742783178},"377":{"tf":3.0},"379":{"tf":2.0},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":2.23606797749979},"388":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"408":{"tf":2.23606797749979},"409":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"425":{"tf":2.8284271247461903},"427":{"tf":2.6457513110645907},"428":{"tf":1.4142135623730951},"429":{"tf":2.23606797749979},"43":{"tf":1.0},"430":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":2.8284271247461903},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":2.23606797749979},"451":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":2.23606797749979},"467":{"tf":1.4142135623730951},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"476":{"tf":1.7320508075688772},"477":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"51":{"tf":1.0},"510":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"52":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"526":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":2.0},"534":{"tf":1.0},"537":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":2.23606797749979},"546":{"tf":1.4142135623730951},"547":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":2.23606797749979},"557":{"tf":1.7320508075688772},"560":{"tf":1.0},"563":{"tf":2.449489742783178},"565":{"tf":1.0},"566":{"tf":1.4142135623730951},"567":{"tf":2.23606797749979},"568":{"tf":2.0},"572":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":2.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.7320508075688772},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.4142135623730951},"591":{"tf":1.7320508075688772},"596":{"tf":1.0},"598":{"tf":1.4142135623730951},"60":{"tf":2.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":2.23606797749979},"603":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"609":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":2.23606797749979},"614":{"tf":1.7320508075688772},"619":{"tf":2.23606797749979},"621":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"624":{"tf":1.0},"625":{"tf":2.23606797749979},"626":{"tf":1.0},"630":{"tf":1.0},"632":{"tf":2.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"636":{"tf":2.23606797749979},"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"643":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"645":{"tf":2.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"671":{"tf":1.0},"677":{"tf":3.4641016151377544},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.449489742783178},"708":{"tf":1.7320508075688772},"709":{"tf":1.0},"71":{"tf":2.0},"710":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"716":{"tf":2.23606797749979},"718":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"73":{"tf":3.605551275463989},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.4142135623730951},"736":{"tf":1.0},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"74":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":2.0},"747":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"752":{"tf":2.449489742783178},"755":{"tf":1.0},"76":{"tf":2.449489742783178},"761":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":3.1622776601683795},"770":{"tf":1.4142135623730951},"772":{"tf":2.8284271247461903},"773":{"tf":1.0},"776":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":3.4641016151377544},"782":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":2.8284271247461903},"790":{"tf":1.7320508075688772},"791":{"tf":1.4142135623730951},"794":{"tf":1.0},"795":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":2.0},"807":{"tf":1.0},"809":{"tf":2.0},"81":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":2.0},"818":{"tf":1.4142135623730951},"82":{"tf":2.0},"823":{"tf":1.7320508075688772},"83":{"tf":2.6457513110645907},"830":{"tf":2.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"839":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.7320508075688772},"852":{"tf":1.7320508075688772},"853":{"tf":1.4142135623730951},"858":{"tf":1.0},"86":{"tf":2.23606797749979},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":2.449489742783178},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"871":{"tf":1.0},"875":{"tf":1.4142135623730951},"876":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":2.449489742783178},"880":{"tf":1.0},"89":{"tf":2.8284271247461903},"892":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.0},"907":{"tf":1.0},"91":{"tf":2.449489742783178},"911":{"tf":1.7320508075688772},"912":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":2.0},"917":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":2.0},"925":{"tf":1.0},"929":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"932":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":3.605551275463989},"941":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":3.0},"958":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"963":{"tf":1.0},"97":{"tf":2.449489742783178},"98":{"tf":3.1622776601683795},"99":{"tf":3.4641016151377544}},"s":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"396":{"tf":1.0}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"635":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"465":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"407":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"d":{"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":{".":{"d":{"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":{"(":{"2":{"0":{"1":{"9":{"df":1,"docs":{"551":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"551":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"553":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"555":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"438":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"d":{"df":3,"docs":{"666":{"tf":1.0},"667":{"tf":1.0},"801":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"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":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"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":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"477":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"481":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"643":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"449":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"544":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"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":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"428":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"417":{"tf":1.0}}}}}}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"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":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"[":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"112":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{"d":{".":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"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":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"4":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"532":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"566":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":63,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"110":{"tf":3.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":2.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"21":{"tf":2.449489742783178},"26":{"tf":1.0},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"377":{"tf":1.4142135623730951},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"665":{"tf":2.0},"668":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"679":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"830":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.4142135623730951},"853":{"tf":1.0},"864":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":3.0},"91":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"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":{},"t":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"20":{"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":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"565":{"tf":1.0},"566":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":3,"docs":{"200":{"tf":1.0},"203":{"tf":2.23606797749979},"254":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"160":{"tf":1.0},"716":{"tf":1.0},"765":{"tf":1.0},"818":{"tf":1.0},"860":{"tf":1.4142135623730951},"867":{"tf":1.0},"869":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"891":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"881":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"258":{"tf":1.0},"310":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"131":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"170":{"tf":1.0},"462":{"tf":1.4142135623730951},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"734":{"tf":1.0},"804":{"tf":1.4142135623730951},"939":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":2,"docs":{"261":{"tf":1.0},"267":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":2,"docs":{"823":{"tf":1.0},"862":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":4,"docs":{"256":{"tf":1.0},"306":{"tf":1.0},"804":{"tf":1.0},"916":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"103":{"tf":1.0},"471":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"582":{"tf":1.0},"591":{"tf":1.4142135623730951},"737":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":11,"docs":{"131":{"tf":1.4142135623730951},"467":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"836":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"19":{"tf":1.0},"818":{"tf":1.4142135623730951},"840":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":15,"docs":{"100":{"tf":1.7320508075688772},"422":{"tf":1.0},"537":{"tf":1.0},"644":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"805":{"tf":1.0},"837":{"tf":1.0},"844":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0},"99":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"21":{"tf":1.0},"289":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0},"825":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"814":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"173":{"tf":1.0},"231":{"tf":1.0},"288":{"tf":1.0},"834":{"tf":1.0}}}},"m":{"df":1,"docs":{"288":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"127":{"tf":1.0},"155":{"tf":1.4142135623730951},"168":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"274":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"742":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}},"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":21,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.0},"237":{"tf":1.0},"318":{"tf":2.6457513110645907},"671":{"tf":1.4142135623730951},"673":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"789":{"tf":1.0},"79":{"tf":1.7320508075688772},"801":{"tf":1.0},"803":{"tf":1.0},"818":{"tf":1.4142135623730951},"835":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951}},"l":{"df":7,"docs":{"132":{"tf":1.4142135623730951},"274":{"tf":1.0},"431":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"762":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"837":{"tf":1.4142135623730951},"862":{"tf":1.0},"923":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"934":{"tf":1.0},"950":{"tf":1.7320508075688772},"956":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"160":{"tf":1.0},"402":{"tf":1.0},"711":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"53":{"tf":1.0},"958":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"142":{"tf":2.0},"289":{"tf":1.0},"456":{"tf":1.0},"493":{"tf":1.0},"804":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"65":{"tf":1.0},"861":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":62,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":2.0},"328":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"772":{"tf":1.4142135623730951},"802":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"84":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.7320508075688772},"859":{"tf":1.0},"862":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"875":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"969":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"864":{"tf":1.0},"925":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"119":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"65":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"834":{"tf":1.4142135623730951},"843":{"tf":1.0},"865":{"tf":1.0},"916":{"tf":1.0}}}},"z":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"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":{"/":{"2":{"df":4,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"677":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"2":{"df":3,"docs":{"138":{"tf":1.0},"292":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"1":{"df":1,"docs":{"301":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"l":{"a":{"'":{"df":6,"docs":{"13":{"tf":1.0},"289":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"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":{".":{"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":{"316":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"473":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.4142135623730951},"373":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"555":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"121":{"tf":1.0},"31":{"tf":1.0},"659":{"tf":1.0},"713":{"tf":1.0}}}},"/":{"<":{"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"316":{"tf":1.0},"317":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"578":{"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":13,"docs":{"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"h":{"df":56,"docs":{"110":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"660":{"tf":1.0},"688":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"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":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"693":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"923":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"342":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"693":{"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":{"34":{"tf":1.0}}}}}}}},"df":10,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"654":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"713":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"393":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"383":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"574":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":1,"docs":{"551":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"553":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"437":{"tf":1.0}},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"507":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"585":{"tf":1.4142135623730951},"586":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"623":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"519":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"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":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"480":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"448":{"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"540":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"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":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"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":{},"s":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"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":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":0,"docs":{},"e":{"d":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"]":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"687":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":18,"docs":{"133":{"tf":1.0},"21":{"tf":1.4142135623730951},"268":{"tf":1.0},"289":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"656":{"tf":1.0},"677":{"tf":1.0},"7":{"tf":1.0},"712":{"tf":1.0},"73":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0}},"’":{"df":1,"docs":{"704":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"958":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"s":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"117":{"tf":1.0},"137":{"tf":1.4142135623730951},"22":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.0},"710":{"tf":1.0},"80":{"tf":1.4142135623730951},"846":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"728":{"tf":1.0},"814":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":38,"docs":{"103":{"tf":1.0},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"192":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"34":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.4142135623730951},"462":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951},"549":{"tf":1.0},"674":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"76":{"tf":1.7320508075688772},"792":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"22":{"tf":2.0},"847":{"tf":1.0},"859":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"811":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"652":{"tf":1.0},"811":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"799":{"tf":1.0}}}},"w":{"1":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772}}},"2":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0}}},"3":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"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":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"701":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"693":{"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":{},"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":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"d":{"df":2,"docs":{"20":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"/":{"a":{"df":6,"docs":{"388":{"tf":1.0},"409":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"534":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":112,"docs":{"102":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":2.23606797749979},"289":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"292":{"tf":1.0},"294":{"tf":2.23606797749979},"295":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"315":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"651":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.0},"687":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"731":{"tf":1.4142135623730951},"736":{"tf":1.0},"782":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"823":{"tf":1.0},"83":{"tf":2.0},"834":{"tf":1.0},"84":{"tf":1.4142135623730951},"857":{"tf":1.0},"864":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"915":{"tf":1.0},"921":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.0},"956":{"tf":1.0},"964":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":5,"docs":{"104":{"tf":1.0},"157":{"tf":1.0},"687":{"tf":2.23606797749979},"697":{"tf":1.0},"83":{"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":{"d":{"/":{"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":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"17":{"tf":1.0}}}}}}},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"456":{"tf":1.4142135623730951},"460":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.7320508075688772},"499":{"tf":1.0},"501":{"tf":1.4142135623730951},"557":{"tf":1.0},"804":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"v":{"df":8,"docs":{"12":{"tf":1.0},"317":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"775":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":2.23606797749979},"853":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"376":{"tf":1.0},"414":{"tf":2.449489742783178},"418":{"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":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"289":{"tf":1.0},"328":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"895":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"844":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"df":5,"docs":{"730":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"883":{"tf":1.0}}}},"df":1,"docs":{"224":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":30,"docs":{"105":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"330":{"tf":1.0},"347":{"tf":1.4142135623730951},"649":{"tf":1.0},"66":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"922":{"tf":1.0},"969":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":91,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":3.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"297":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":2.0},"326":{"tf":1.0},"338":{"tf":1.4142135623730951},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"401":{"tf":1.0},"43":{"tf":1.0},"473":{"tf":1.0},"52":{"tf":1.0},"533":{"tf":1.0},"583":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"621":{"tf":1.0},"647":{"tf":1.0},"652":{"tf":1.0},"662":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"70":{"tf":1.0},"710":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"762":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"80":{"tf":1.7320508075688772},"807":{"tf":1.7320508075688772},"824":{"tf":1.0},"828":{"tf":1.0},"838":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":27,"docs":{"376":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"497":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.0},"517":{"tf":1.0},"520":{"tf":1.0},"575":{"tf":1.4142135623730951},"578":{"tf":2.0},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":2.0},"606":{"tf":1.0},"609":{"tf":1.4142135623730951},"621":{"tf":1.0},"816":{"tf":1.0},"915":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"28":{"tf":1.0},"326":{"tf":1.0},"644":{"tf":1.4142135623730951},"894":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{":":{"5":{".":{"6":{".":{"0":{"@":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"820":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"626":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":2.23606797749979}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"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":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{},"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":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"624":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"(":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"589":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"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":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"623":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"519":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"520":{"tf":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":{"517":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"273":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"590":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"710":{"tf":1.0},"779":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"915":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"127":{"tf":4.123105625617661},"135":{"tf":1.0},"168":{"tf":1.0},"288":{"tf":1.4142135623730951},"401":{"tf":1.0},"412":{"tf":1.0},"645":{"tf":1.0},"752":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":1.0},"830":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0}}}}}}}}}}}},"w":{"df":106,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"117":{"tf":2.0},"12":{"tf":1.0},"132":{"tf":1.4142135623730951},"140":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":2.23606797749979},"26":{"tf":1.0},"288":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"35":{"tf":1.0},"379":{"tf":1.0},"425":{"tf":2.449489742783178},"445":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"528":{"tf":2.6457513110645907},"55":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"563":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"661":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"680":{"tf":1.0},"69":{"tf":1.0},"691":{"tf":1.0},"693":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"701":{"tf":1.0},"71":{"tf":2.0},"711":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"721":{"tf":1.4142135623730951},"725":{"tf":1.0},"727":{"tf":1.7320508075688772},"729":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"779":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":2.23606797749979},"8":{"tf":1.7320508075688772},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"866":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"895":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":2.0},"929":{"tf":1.0},"932":{"tf":1.0},"942":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.7320508075688772},"961":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"274":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"929":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"117":{"tf":1.0},"678":{"tf":1.4142135623730951},"842":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":21,"docs":{"127":{"tf":1.7320508075688772},"13":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.0},"184":{"tf":2.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"318":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"680":{"tf":1.0},"711":{"tf":1.0},"823":{"tf":1.0},"839":{"tf":1.0},"958":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"677":{"tf":1.0},"871":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"254":{"tf":1.0},"60":{"tf":1.0},"83":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"765":{"tf":1.0},"772":{"tf":1.0}}},"m":{"b":{"df":0,"docs":{},"u":{"df":21,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.0},"198":{"tf":2.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"211":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"738":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"34":{"tf":1.7320508075688772},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"947":{"tf":1.0},"958":{"tf":1.0}}}},"df":3,"docs":{"912":{"tf":1.4142135623730951},"913":{"tf":1.0},"939":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}}}}}}}},"df":37,"docs":{"184":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"393":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.4142135623730951},"491":{"tf":1.0},"529":{"tf":1.4142135623730951},"541":{"tf":1.0},"551":{"tf":1.0},"575":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.4142135623730951},"606":{"tf":1.0},"609":{"tf":1.4142135623730951},"621":{"tf":1.0},"632":{"tf":1.0},"741":{"tf":1.4142135623730951},"762":{"tf":1.0},"802":{"tf":1.0},"815":{"tf":1.0},"831":{"tf":1.0},"866":{"tf":1.0},"905":{"tf":1.0}},"e":{"df":45,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"316":{"tf":2.0},"318":{"tf":1.4142135623730951},"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"685":{"tf":1.0},"70":{"tf":1.4142135623730951},"765":{"tf":1.0},"772":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"663":{"tf":1.0},"665":{"tf":1.0},"682":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":86,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"291":{"tf":1.0},"300":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"344":{"tf":1.0},"377":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"514":{"tf":1.0},"546":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.4142135623730951},"568":{"tf":1.0},"572":{"tf":1.0},"580":{"tf":1.0},"664":{"tf":1.0},"667":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.0},"684":{"tf":1.0},"701":{"tf":1.0},"719":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"807":{"tf":1.0},"824":{"tf":1.0},"83":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"927":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"h":{"df":7,"docs":{"204":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"471":{"tf":1.0},"649":{"tf":1.0},"667":{"tf":1.0},"796":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"44":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"198":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":36,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.7320508075688772},"292":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":84,"docs":{"115":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.7320508075688772},"551":{"tf":2.6457513110645907},"652":{"tf":1.0},"677":{"tf":1.0},"719":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.7320508075688772},"731":{"tf":1.0},"732":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"740":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"763":{"tf":1.0},"772":{"tf":2.6457513110645907},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"789":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.7320508075688772},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"839":{"tf":2.0},"842":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":2.23606797749979},"854":{"tf":1.0},"857":{"tf":1.4142135623730951},"858":{"tf":2.449489742783178},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.6457513110645907},"862":{"tf":2.0},"863":{"tf":1.0},"864":{"tf":2.449489742783178},"865":{"tf":2.23606797749979},"866":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"895":{"tf":1.0},"912":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"912":{"tf":1.0},"939":{"tf":1.0},"958":{"tf":1.0}}},"x":{"df":2,"docs":{"689":{"tf":1.0},"690":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":8,"docs":{"406":{"tf":1.0},"427":{"tf":1.0},"448":{"tf":1.4142135623730951},"464":{"tf":1.0},"531":{"tf":1.0},"553":{"tf":1.0},"600":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"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":1,"docs":{"529":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"834":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"459":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"765":{"tf":1.4142135623730951},"772":{"tf":2.0},"796":{"tf":1.4142135623730951},"858":{"tf":1.0},"865":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":100,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"127":{"tf":3.1622776601683795},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"21":{"tf":1.0},"267":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"425":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"517":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"591":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"612":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"773":{"tf":1.0},"806":{"tf":1.0},"834":{"tf":2.0},"849":{"tf":1.0},"897":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"618":{"tf":1.4142135623730951},"619":{"tf":1.0},"621":{"tf":2.0},"623":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":41,"docs":{"131":{"tf":1.0},"170":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"376":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"638":{"tf":1.0},"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"644":{"tf":2.449489742783178},"645":{"tf":1.7320508075688772},"652":{"tf":1.0},"663":{"tf":1.0},"679":{"tf":1.0},"693":{"tf":1.0},"718":{"tf":1.0},"727":{"tf":1.7320508075688772},"730":{"tf":1.0},"732":{"tf":1.0},"772":{"tf":1.4142135623730951},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":2.0},"805":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"834":{"tf":1.0},"908":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"875":{"tf":1.0},"915":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"719":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"814":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"120":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"170":{"tf":1.0},"22":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"454":{"tf":1.0},"840":{"tf":1.0},"864":{"tf":1.0},"908":{"tf":1.0}},"r":{"df":5,"docs":{"376":{"tf":1.0},"560":{"tf":1.0},"76":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"683":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"237":{"tf":1.0},"265":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"234":{"tf":1.0},"673":{"tf":1.0},"785":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"671":{"tf":2.0},"673":{"tf":1.4142135623730951},"835":{"tf":1.0},"915":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"549":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"802":{"tf":1.4142135623730951},"881":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"l":{"d":{"df":6,"docs":{"288":{"tf":1.4142135623730951},"741":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":2.23606797749979},"874":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"224":{"tf":1.0},"274":{"tf":1.0},"731":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"844":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}}}},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"478":{"tf":1.0}}}}}}},"df":1,"docs":{"478":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":21,"docs":{"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"379":{"tf":1.0},"570":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"902":{"tf":1.0},"919":{"tf":1.4142135623730951},"924":{"tf":1.0},"927":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"315":{"tf":1.4142135623730951},"324":{"tf":1.0},"338":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"679":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":82,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"477":{"tf":1.0},"493":{"tf":1.0},"519":{"tf":1.0},"538":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"613":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"678":{"tf":1.0},"691":{"tf":1.0},"693":{"tf":1.0},"697":{"tf":1.0},"741":{"tf":1.0},"751":{"tf":1.0},"79":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"80":{"tf":1.0},"801":{"tf":1.0},"809":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"961":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"_":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"266":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"671":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":2.449489742783178}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"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":1,"docs":{"478":{"tf":1.4142135623730951}}},"df":1,"docs":{"478":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"d":{"(":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"473":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":1,"docs":{"473":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":7,"docs":{"17":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"649":{"tf":1.0},"853":{"tf":1.0},"919":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"151":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":2.23606797749979},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"241":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"569":{"tf":1.0},"890":{"tf":1.0},"969":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":19,"docs":{"107":{"tf":1.0},"132":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.4142135623730951},"340":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"78":{"tf":1.0},"786":{"tf":1.0},"804":{"tf":1.0},"86":{"tf":1.0},"99":{"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":4,"docs":{"103":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"131":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"330":{"tf":1.0},"734":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"565":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":94,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":3.4641016151377544},"13":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.1622776601683795},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":2.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.4142135623730951},"315":{"tf":2.6457513110645907},"326":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":2.6457513110645907},"440":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"644":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":2.0},"67":{"tf":1.0},"682":{"tf":2.0},"728":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"801":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"861":{"tf":1.0},"871":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"951":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"958":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":60,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.0},"346":{"tf":1.7320508075688772},"352":{"tf":1.0},"363":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"48":{"tf":1.4142135623730951},"499":{"tf":1.0},"522":{"tf":1.0},"565":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"689":{"tf":1.0},"692":{"tf":1.0},"800":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"956":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{":":{"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":{"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"656":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"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":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.0},"227":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"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":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"656":{"tf":1.0},"793":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"393":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"632":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"404":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"598":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"574":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951}}}}}}}},"n":{"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":3,"docs":{"621":{"tf":2.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0}}}}}},"df":4,"docs":{"315":{"tf":1.0},"338":{"tf":1.0},"649":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"425":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951},"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":{}}}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{":":{"4":{".":{"3":{".":{"1":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"117":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.0},"823":{"tf":1.0}}}}}}},"s":{"/":{"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":{"271":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"762":{"tf":1.4142135623730951},"923":{"tf":1.0}}}}}}},"df":13,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"923":{"tf":1.4142135623730951},"938":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"834":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"924":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"175":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"367":{"tf":1.0},"572":{"tf":1.0},"840":{"tf":1.0},"855":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"859":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":46,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"26":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"4":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.7320508075688772},"63":{"tf":1.0},"630":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"708":{"tf":1.0},"734":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"923":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}},"g":{"df":0,"docs":{},"o":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}},"n":{"df":2,"docs":{"265":{"tf":1.0},"379":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":2.23606797749979},"17":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"276":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"667":{"tf":1.0},"683":{"tf":1.0},"697":{"tf":1.0},"852":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"289":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"830":{"tf":1.4142135623730951},"861":{"tf":1.0},"88":{"tf":1.0},"922":{"tf":1.0},"927":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"127":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}},"df":19,"docs":{"121":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"289":{"tf":1.0},"456":{"tf":1.0},"476":{"tf":1.0},"517":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"677":{"tf":1.0},"711":{"tf":1.0},"74":{"tf":1.0},"823":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"471":{"tf":1.0},"761":{"tf":1.0},"773":{"tf":1.0},"912":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"190":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"204":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"520":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"315":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"668":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.7320508075688772},"773":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":14,"docs":{"0":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"653":{"tf":1.0},"70":{"tf":1.0},"704":{"tf":1.0},"71":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"775":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"667":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"289":{"tf":1.0},"647":{"tf":1.0},"78":{"tf":1.0},"853":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"288":{"tf":1.0},"297":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"660":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":2.0},"688":{"tf":1.0},"689":{"tf":1.0},"776":{"tf":1.0},"793":{"tf":1.4142135623730951},"798":{"tf":1.0},"805":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"858":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"944":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"789":{"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"590":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":161,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.4142135623730951},"249":{"tf":1.0},"254":{"tf":3.1622776601683795},"264":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.7320508075688772},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"571":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"625":{"tf":1.0},"628":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"652":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.4142135623730951},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"8":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"9":{"tf":1.0},"900":{"tf":1.0},"905":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.4142135623730951},"960":{"tf":1.7320508075688772},"961":{"tf":1.0},"963":{"tf":2.0},"964":{"tf":1.4142135623730951},"965":{"tf":1.7320508075688772},"968":{"tf":2.6457513110645907},"969":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0}}}},"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"477":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"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":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"481":{"tf":1.0},"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"480":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"623":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"623":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"199":{"tf":1.0},"459":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"786":{"tf":1.0},"812":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"969":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"814":{"tf":1.0},"862":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":88,"docs":{"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"190":{"tf":1.4142135623730951},"211":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"409":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.4142135623730951},"521":{"tf":1.0},"522":{"tf":1.7320508075688772},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"560":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.7320508075688772},"590":{"tf":1.0},"591":{"tf":1.7320508075688772},"602":{"tf":1.4142135623730951},"603":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"625":{"tf":1.4142135623730951},"636":{"tf":1.4142135623730951},"644":{"tf":2.23606797749979},"645":{"tf":1.0},"693":{"tf":1.0},"701":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"789":{"tf":1.0},"801":{"tf":1.0},"805":{"tf":1.0},"857":{"tf":1.0},"867":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"933":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"17":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"698":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"869":{"tf":1.0}}}}}}}}}}}},"r":{"df":10,"docs":{"17":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"692":{"tf":1.4142135623730951},"707":{"tf":1.0},"830":{"tf":1.0},"915":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}}}}},"t":{"df":25,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"679":{"tf":1.0},"698":{"tf":1.0},"711":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"793":{"tf":1.0},"834":{"tf":1.4142135623730951},"853":{"tf":1.0},"854":{"tf":1.0},"958":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.4142135623730951},"268":{"tf":1.0},"289":{"tf":1.0},"454":{"tf":1.0},"618":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"74":{"tf":1.0},"78":{"tf":1.0},"923":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"289":{"tf":1.0},"645":{"tf":1.0}}},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"643":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"643":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"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":{"640":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":44,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.7320508075688772},"233":{"tf":1.0},"238":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.7320508075688772},"598":{"tf":1.0},"609":{"tf":1.0},"640":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.4142135623730951},"682":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"796":{"tf":1.0},"799":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"830":{"tf":1.0},"837":{"tf":1.0},"914":{"tf":1.0},"98":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"435":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"289":{"tf":1.4142135623730951},"435":{"tf":2.6457513110645907},"437":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"254":{"tf":2.8284271247461903},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.0}}},"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":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":6,"docs":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"383":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0}}}},"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":{},"j":{"df":3,"docs":{"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"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":0,"docs":{},"j":{"df":3,"docs":{"621":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"652":{"tf":1.0}}}},"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":{},"j":{"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"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":{},"j":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"26":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.7320508075688772},"443":{"tf":1.0},"538":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"686":{"tf":1.7320508075688772},"692":{"tf":1.0},"769":{"tf":1.0},"782":{"tf":1.0},"802":{"tf":1.4142135623730951},"814":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"949":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":23,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"133":{"tf":1.0},"142":{"tf":1.4142135623730951},"217":{"tf":1.0},"254":{"tf":1.4142135623730951},"298":{"tf":1.0},"471":{"tf":1.0},"644":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":2.23606797749979},"709":{"tf":1.0},"710":{"tf":1.4142135623730951},"716":{"tf":1.0},"755":{"tf":1.0},"759":{"tf":1.0},"853":{"tf":1.0},"865":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"951":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":2,"docs":{"652":{"tf":1.4142135623730951},"701":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"953":{"tf":1.0}}}},"n":{"d":{"df":15,"docs":{"127":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"146":{"tf":1.0},"22":{"tf":1.4142135623730951},"313":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"734":{"tf":1.0},"754":{"tf":1.0},"809":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.4142135623730951},"834":{"tf":1.0},"871":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0}}}}},"p":{"8":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":2.0}}}}}}}},"df":28,"docs":{"146":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.0},"258":{"tf":3.0},"262":{"tf":1.0},"264":{"tf":1.0},"315":{"tf":1.4142135623730951},"318":{"tf":1.0},"377":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.4142135623730951},"577":{"tf":1.0},"588":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"836":{"tf":1.4142135623730951},"864":{"tf":1.0},"963":{"tf":1.0}},"f":{"df":1,"docs":{"136":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"915":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":25,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.0},"308":{"tf":1.0},"321":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"456":{"tf":1.7320508075688772},"46":{"tf":1.0},"484":{"tf":1.4142135623730951},"53":{"tf":1.0},"538":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.4142135623730951},"73":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"94":{"tf":1.0},"958":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"100":{"tf":1.0},"175":{"tf":1.0},"288":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"590":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.7320508075688772},"915":{"tf":1.0}}}},"t":{"df":8,"docs":{"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"715":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"130":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"567":{"tf":1.0},"674":{"tf":1.0},"78":{"tf":1.0},"788":{"tf":1.7320508075688772},"842":{"tf":1.0},"871":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":2.23606797749979},"958":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"42":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"671":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"#":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"'":{"df":4,"docs":{"139":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0}}},"(":{"df":1,"docs":{"117":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"275":{"tf":1.0},"298":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":15,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"326":{"tf":1.0},"864":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"765":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"297":{"tf":1.7320508075688772},"727":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"864":{"tf":1.0}}}}}},"df":292,"docs":{"100":{"tf":5.291502622129181},"101":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":2.449489742783178},"125":{"tf":5.0990195135927845},"126":{"tf":3.3166247903554},"127":{"tf":6.855654600401044},"128":{"tf":2.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":2.23606797749979},"131":{"tf":3.3166247903554},"132":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"134":{"tf":2.449489742783178},"135":{"tf":3.7416573867739413},"136":{"tf":3.3166247903554},"137":{"tf":2.6457513110645907},"138":{"tf":2.6457513110645907},"139":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":2.23606797749979},"145":{"tf":3.605551275463989},"146":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":2.449489742783178},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.23606797749979},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.23606797749979},"172":{"tf":1.0},"173":{"tf":2.6457513110645907},"174":{"tf":1.0},"175":{"tf":3.0},"176":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"184":{"tf":4.242640687119285},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":5.0},"231":{"tf":3.605551275463989},"233":{"tf":2.449489742783178},"236":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":2.23606797749979},"243":{"tf":1.4142135623730951},"25":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":3.4641016151377544},"258":{"tf":4.0},"259":{"tf":2.6457513110645907},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"264":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":2.6457513110645907},"276":{"tf":2.449489742783178},"278":{"tf":1.0},"289":{"tf":4.0},"290":{"tf":1.7320508075688772},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":2.6457513110645907},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":4.58257569495584},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"315":{"tf":4.0},"316":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":2.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":2.0},"338":{"tf":2.0},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.7320508075688772},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.4142135623730951},"416":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"468":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"619":{"tf":1.0},"623":{"tf":1.0},"632":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"642":{"tf":1.0},"647":{"tf":2.0},"649":{"tf":2.6457513110645907},"651":{"tf":1.4142135623730951},"652":{"tf":4.898979485566356},"653":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":2.23606797749979},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"674":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":3.4641016151377544},"679":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":2.449489742783178},"698":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"704":{"tf":1.0},"709":{"tf":2.23606797749979},"710":{"tf":2.23606797749979},"711":{"tf":2.449489742783178},"715":{"tf":1.7320508075688772},"716":{"tf":1.0},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"723":{"tf":1.0},"727":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.4142135623730951},"730":{"tf":1.0},"734":{"tf":2.6457513110645907},"736":{"tf":1.0},"738":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":2.449489742783178},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"765":{"tf":1.0},"78":{"tf":2.23606797749979},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":5.291502622129181},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"806":{"tf":2.23606797749979},"807":{"tf":2.23606797749979},"809":{"tf":1.4142135623730951},"812":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":1.4142135623730951},"834":{"tf":2.449489742783178},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.7320508075688772},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"860":{"tf":1.4142135623730951},"861":{"tf":2.0},"862":{"tf":1.4142135623730951},"864":{"tf":2.23606797749979},"865":{"tf":2.23606797749979},"867":{"tf":1.7320508075688772},"869":{"tf":1.7320508075688772},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"875":{"tf":1.0},"876":{"tf":1.0},"878":{"tf":1.0},"880":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"907":{"tf":1.0},"913":{"tf":2.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.7320508075688772},"916":{"tf":2.0},"917":{"tf":1.4142135623730951},"919":{"tf":2.0},"920":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":2.8284271247461903},"930":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":2.23606797749979},"952":{"tf":1.0},"956":{"tf":2.449489742783178},"958":{"tf":1.0},"963":{"tf":1.0},"99":{"tf":2.23606797749979}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"696":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"649":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"652":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":20,"docs":{"131":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":2.449489742783178},"26":{"tf":1.0},"278":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":2.0},"665":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.7320508075688772},"864":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.4142135623730951}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":2,"docs":{"210":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"858":{"tf":1.0},"869":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"316":{"tf":1.0},"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":7,"docs":{"115":{"tf":1.0},"19":{"tf":2.0},"43":{"tf":1.0},"673":{"tf":1.0},"692":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"136":{"tf":1.0},"160":{"tf":1.0},"184":{"tf":1.4142135623730951},"218":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":2.0},"77":{"tf":1.0},"864":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"132":{"tf":1.0},"376":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"595":{"tf":1.0},"602":{"tf":1.4142135623730951},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"20":{"tf":1.0},"338":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"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":{},"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":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"138":{"tf":1.0},"147":{"tf":1.0},"26":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"683":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"969":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"652":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"636":{"tf":1.0}}}}}}}},"n":{"df":7,"docs":{"190":{"tf":1.0},"344":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":4,"docs":{"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"315":{"tf":1.0}}},"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}},"df":68,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":2.0},"136":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"34":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"356":{"tf":1.7320508075688772},"379":{"tf":1.0},"456":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"653":{"tf":1.0},"690":{"tf":1.0},"697":{"tf":1.0},"705":{"tf":1.0},"794":{"tf":1.0},"806":{"tf":1.0},"815":{"tf":1.0},"831":{"tf":1.0},"854":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.4142135623730951},"9":{"tf":1.0},"902":{"tf":1.4142135623730951},"913":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":2.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"936":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":3,"docs":{"923":{"tf":1.0},"928":{"tf":1.0},"938":{"tf":1.0}}}}}}}}}}},"y":{"df":3,"docs":{"100":{"tf":1.0},"79":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":30,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"124":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"422":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"514":{"tf":1.0},"537":{"tf":1.0},"582":{"tf":1.0},"65":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"85":{"tf":1.0},"860":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"136":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":32,"docs":{"13":{"tf":3.7416573867739413},"663":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.4142135623730951},"672":{"tf":1.0},"693":{"tf":2.449489742783178},"694":{"tf":1.4142135623730951},"695":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"721":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"786":{"tf":1.4142135623730951},"792":{"tf":1.7320508075688772},"793":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"924":{"tf":1.0},"951":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"203":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"63":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"700":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"924":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":12,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.6457513110645907},"191":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0}}},"p":{"df":3,"docs":{"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"254":{"tf":1.0},"289":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"401":{"tf":1.0},"412":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.7320508075688772},"223":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"270":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"70":{"tf":1.0},"741":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"867":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"924":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":9,"docs":{"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"150":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"750":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"190":{"tf":1.4142135623730951},"262":{"tf":1.0},"267":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"64":{"tf":1.0},"73":{"tf":1.0},"744":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"814":{"tf":1.0},"833":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"234":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":23,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"878":{"tf":1.0},"962":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{".":{"0":{"df":5,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"903":{"tf":1.0}}},"1":{"df":3,"docs":{"899":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"2":{"df":1,"docs":{"898":{"tf":1.0}}},"3":{"df":1,"docs":{"897":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"896":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"184":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"131":{"tf":2.449489742783178},"132":{"tf":1.0},"289":{"tf":1.0},"734":{"tf":1.4142135623730951},"804":{"tf":1.0}},"e":{"_":{"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":{"734":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"560":{"tf":1.0},"640":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"326":{"tf":1.0},"720":{"tf":1.0},"807":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"259":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":2.0},"317":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.4142135623730951},"596":{"tf":1.0},"607":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.7320508075688772},"960":{"tf":1.0},"968":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"285":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":2,"docs":{"720":{"tf":1.0},"757":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"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":{"782":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"782":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"757":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"912":{"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":1,"docs":{"252":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"130":{"tf":1.0},"136":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"67":{"tf":1.0},"845":{"tf":1.0},"951":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"967":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"667":{"tf":1.0},"864":{"tf":1.0}}}}},"s":{"df":9,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"198":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"17":{"tf":1.0},"203":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"692":{"tf":1.4142135623730951},"720":{"tf":1.0},"742":{"tf":1.0},"771":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"913":{"tf":1.0},"929":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"118":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"478":{"tf":1.0},"492":{"tf":1.0},"65":{"tf":1.0},"711":{"tf":1.4142135623730951},"752":{"tf":1.0},"791":{"tf":1.0},"796":{"tf":1.0},"806":{"tf":1.4142135623730951},"824":{"tf":1.0},"846":{"tf":1.0},"916":{"tf":1.0},"924":{"tf":1.0}},"s":{"df":8,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"254":{"tf":1.0},"654":{"tf":1.0},"782":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"52":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"962":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":17,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"217":{"tf":1.0},"834":{"tf":1.0},"864":{"tf":1.0},"880":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"324":{"tf":1.0},"425":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"563":{"tf":1.0},"671":{"tf":1.0},"814":{"tf":1.0},"837":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"862":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"104":{"tf":1.0},"680":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"276":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"704":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"402":{"tf":1.0},"619":{"tf":1.0}}}},"df":4,"docs":{"254":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.0},"912":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":2,"docs":{"254":{"tf":1.0},"675":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":45,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"125":{"tf":1.0},"155":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"263":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":2.8284271247461903},"316":{"tf":2.6457513110645907},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.7320508075688772},"439":{"tf":1.0},"441":{"tf":1.0},"459":{"tf":1.7320508075688772},"646":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"711":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"816":{"tf":1.0},"83":{"tf":1.0},"832":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"115":{"tf":1.7320508075688772},"330":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"804":{"tf":1.0},"830":{"tf":1.4142135623730951},"858":{"tf":1.0}},"t":{"'":{"df":7,"docs":{"224":{"tf":1.0},"227":{"tf":1.0},"355":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}},"df":54,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"132":{"tf":2.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.4142135623730951},"221":{"tf":1.0},"224":{"tf":1.7320508075688772},"226":{"tf":1.0},"268":{"tf":1.7320508075688772},"276":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"37":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"580":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"647":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"669":{"tf":2.0},"67":{"tf":1.0},"674":{"tf":1.0},"685":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"853":{"tf":1.0},"9":{"tf":2.6457513110645907},"908":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"132":{"tf":1.0},"289":{"tf":2.0},"533":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"252":{"tf":1.0},"653":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"83":{"tf":1.0},"958":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"834":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"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":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":60,"docs":{"0":{"tf":2.23606797749979},"10":{"tf":1.7320508075688772},"103":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"122":{"tf":2.0},"13":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":2.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"43":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.0},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"891":{"tf":1.0},"894":{"tf":1.0},"908":{"tf":1.0},"912":{"tf":1.4142135623730951},"915":{"tf":1.0},"92":{"tf":1.0},"958":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"956":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"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":{"317":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"840":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"223":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"802":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"749":{"tf":1.0},"777":{"tf":1.0},"929":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.4142135623730951},"208":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"568":{"tf":1.4142135623730951},"580":{"tf":1.0},"582":{"tf":1.0},"618":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"905":{"tf":1.0},"951":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"963":{"tf":1.0},"964":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"?":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"231":{"tf":1.0},"232":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"541":{"tf":1.0},"854":{"tf":1.0},"922":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":109,"docs":{"10":{"tf":1.0},"121":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.4142135623730951},"330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"37":{"tf":1.0},"379":{"tf":1.0},"39":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.4142135623730951},"48":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":2.0},"494":{"tf":1.7320508075688772},"505":{"tf":1.0},"514":{"tf":1.0},"517":{"tf":1.0},"57":{"tf":1.0},"574":{"tf":1.0},"585":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"653":{"tf":1.0},"66":{"tf":1.0},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"685":{"tf":1.7320508075688772},"686":{"tf":1.0},"692":{"tf":1.0},"701":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"793":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"9":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.4142135623730951},"953":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":3.3166247903554}}},"df":0,"docs":{},"s":{"df":1,"docs":{"698":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"590":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"697":{"tf":1.4142135623730951},"7":{"tf":1.0},"773":{"tf":1.4142135623730951},"784":{"tf":1.0},"842":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"782":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":12,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":2.0},"777":{"tf":1.0},"778":{"tf":1.0},"806":{"tf":1.0},"850":{"tf":1.0},"913":{"tf":1.0},"926":{"tf":1.4142135623730951},"951":{"tf":1.0},"958":{"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":{"60":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}},"s":{"df":30,"docs":{"124":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"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},"285":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"459":{"tf":1.0},"580":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"924":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"t":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"140":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"924":{"tf":1.0}}}},"w":{"d":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"22":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"658":{"tf":1.0}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"318":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"837":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"690":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"3":{"df":3,"docs":{"21":{"tf":1.7320508075688772},"673":{"tf":1.0},"690":{"tf":1.0}}},"df":119,"docs":{"0":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.7320508075688772},"146":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.7320508075688772},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":2.8284271247461903},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":2.449489742783178},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":2.23606797749979},"30":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":2.23606797749979},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"390":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"470":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.0},"513":{"tf":1.0},"529":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"605":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.0},"658":{"tf":1.7320508075688772},"670":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":2.8284271247461903},"690":{"tf":1.0},"721":{"tf":1.0},"725":{"tf":1.4142135623730951},"727":{"tf":1.0},"729":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"743":{"tf":1.0},"751":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"790":{"tf":1.0},"799":{"tf":1.0},"803":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.7320508075688772},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"820":{"tf":1.4142135623730951},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"842":{"tf":2.0},"845":{"tf":1.0},"846":{"tf":2.0},"847":{"tf":1.0},"849":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.4142135623730951},"858":{"tf":2.0},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":2.0},"869":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.0},"921":{"tf":1.4142135623730951},"939":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}}}},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":11,"docs":{"0":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"48":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.4142135623730951},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.4142135623730951},"934":{"tf":1.0}}}},"r":{"df":1,"docs":{"233":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"0":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"661":{"tf":1.0},"9":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.7320508075688772},"933":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"40":{"tf":1.0},"50":{"tf":2.0},"903":{"tf":1.0},"912":{"tf":1.7320508075688772},"924":{"tf":1.7320508075688772},"926":{"tf":1.0},"927":{"tf":1.4142135623730951},"934":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"194":{"tf":1.0},"197":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":24,"docs":{"132":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.4142135623730951},"600":{"tf":2.449489742783178},"601":{"tf":2.0},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"606":{"tf":1.4142135623730951},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"734":{"tf":1.0},"791":{"tf":1.4142135623730951},"817":{"tf":1.0},"830":{"tf":1.4142135623730951},"937":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"617":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"938":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"865":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"136":{"tf":1.0},"157":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"231":{"tf":2.0},"256":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"765":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":35,"docs":{"188":{"tf":1.0},"205":{"tf":1.0},"376":{"tf":1.0},"389":{"tf":1.0},"399":{"tf":1.0},"410":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":1.0},"535":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"569":{"tf":1.0},"592":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.7320508075688772},"637":{"tf":1.0},"646":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"959":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"u":{"df":2,"docs":{"310":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":14,"docs":{"168":{"tf":1.0},"310":{"tf":1.0},"649":{"tf":1.0},"718":{"tf":1.0},"720":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.4142135623730951},"774":{"tf":1.0},"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"157":{"tf":1.0},"953":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"963":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"135":{"tf":2.0},"834":{"tf":1.0}}},"df":5,"docs":{"761":{"tf":1.0},"769":{"tf":1.0},"912":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":3.7416573867739413}}}}}},"r":{"2":{"0":{"df":1,"docs":{"883":{"tf":1.0}}},"5":{"c":{"df":1,"docs":{"745":{"tf":1.0}}},"df":1,"docs":{"762":{"tf":1.0}}},"6":{"c":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"204":{"tf":1.0},"823":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"878":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"288":{"tf":1.0},"734":{"tf":1.0},"774":{"tf":1.0},"842":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"528":{"tf":1.0}}}}}}},"df":1,"docs":{"376":{"tf":1.0}},"g":{"df":7,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"471":{"tf":1.4142135623730951},"52":{"tf":1.0},"582":{"tf":1.4142135623730951},"65":{"tf":1.0},"86":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"264":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"78":{"tf":1.0},"878":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"623":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}},"df":25,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"376":{"tf":1.4142135623730951},"523":{"tf":1.0},"618":{"tf":1.7320508075688772},"619":{"tf":1.0},"621":{"tf":2.23606797749979},"623":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"626":{"tf":2.23606797749979},"736":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"804":{"tf":1.0},"836":{"tf":1.0},"846":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"929":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"590":{"tf":1.0},"592":{"tf":1.0}},"n":{"df":1,"docs":{"752":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"264":{"tf":1.0},"460":{"tf":1.0},"803":{"tf":1.0}}},"y":{"df":1,"docs":{"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"205":{"tf":1.0},"289":{"tf":1.0},"344":{"tf":1.0},"570":{"tf":1.0},"630":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"85":{"tf":1.0},"867":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"254":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"2":{"tf":1.0},"225":{"tf":1.0},"340":{"tf":1.0},"807":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"tf":1.0}}}},"i":{"df":2,"docs":{"115":{"tf":1.0},"254":{"tf":1.0}}},"m":{"df":1,"docs":{"912":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":13,"docs":{"184":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"248":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.0},"693":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"289":{"tf":1.0},"673":{"tf":1.0},"680":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"752":{"tf":1.0},"840":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.6457513110645907},"184":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":2.6457513110645907},"297":{"tf":1.0},"298":{"tf":2.23606797749979},"649":{"tf":1.0},"652":{"tf":3.3166247903554},"669":{"tf":1.0},"685":{"tf":1.0},"752":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":2.0},"834":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.7320508075688772},"865":{"tf":2.0},"914":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"134":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"523":{"tf":1.0},"578":{"tf":1.7320508075688772},"77":{"tf":1.0},"951":{"tf":1.0},"98":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"858":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"103":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"21":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"265":{"tf":1.0},"454":{"tf":1.0},"64":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"678":{"tf":1.0},"776":{"tf":1.0},"801":{"tf":1.0},"82":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"563":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":250,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":2.449489742783178},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.7320508075688772},"213":{"tf":1.0},"258":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":2.23606797749979},"376":{"tf":4.242640687119285},"377":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":2.23606797749979},"395":{"tf":1.0},"396":{"tf":2.23606797749979},"401":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"412":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":2.23606797749979},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.0},"425":{"tf":3.7416573867739413},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":2.23606797749979},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":2.0},"478":{"tf":1.0},"480":{"tf":2.6457513110645907},"481":{"tf":2.23606797749979},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.7320508075688772},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.7320508075688772},"492":{"tf":1.7320508075688772},"493":{"tf":2.23606797749979},"494":{"tf":2.449489742783178},"496":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":2.23606797749979},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.7320508075688772},"507":{"tf":2.6457513110645907},"508":{"tf":2.449489742783178},"510":{"tf":1.0},"511":{"tf":1.0},"514":{"tf":1.7320508075688772},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":2.0},"519":{"tf":1.0},"520":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.7320508075688772},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":2.6457513110645907},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"537":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.0},"549":{"tf":1.7320508075688772},"550":{"tf":1.0},"551":{"tf":3.605551275463989},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.4142135623730951},"560":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.7320508075688772},"566":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.0},"575":{"tf":1.7320508075688772},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"583":{"tf":1.0},"584":{"tf":1.0},"585":{"tf":2.0},"586":{"tf":2.0},"588":{"tf":1.0},"589":{"tf":1.0},"593":{"tf":1.7320508075688772},"595":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":2.23606797749979},"606":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.7320508075688772},"611":{"tf":1.4142135623730951},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"629":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":2.449489742783178},"677":{"tf":1.4142135623730951},"679":{"tf":2.0},"680":{"tf":1.0},"71":{"tf":1.0},"711":{"tf":1.0},"718":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"761":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.7320508075688772},"776":{"tf":1.0},"78":{"tf":1.4142135623730951},"782":{"tf":1.0},"79":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"802":{"tf":1.0},"804":{"tf":1.7320508075688772},"807":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"87":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.4142135623730951},"895":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"92":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"937":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"956":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"854":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"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":1,"docs":{"834":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"184":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"254":{"tf":1.0},"640":{"tf":1.7320508075688772},"642":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"237":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"752":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.0},"294":{"tf":1.0},"84":{"tf":1.0},"865":{"tf":1.0}}},"df":0,"docs":{}}}},"df":7,"docs":{"17":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"322":{"tf":1.4142135623730951},"762":{"tf":1.0},"834":{"tf":1.0},"958":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"772":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"875":{"tf":1.0},"902":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"437":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":86,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.4142135623730951},"147":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.7320508075688772},"229":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"300":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"376":{"tf":1.0},"387":{"tf":1.7320508075688772},"390":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.7320508075688772},"411":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.7320508075688772},"432":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.7320508075688772},"453":{"tf":1.0},"466":{"tf":1.7320508075688772},"470":{"tf":1.0},"486":{"tf":1.0},"488":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.7320508075688772},"536":{"tf":1.0},"545":{"tf":1.7320508075688772},"556":{"tf":1.7320508075688772},"559":{"tf":1.0},"567":{"tf":1.7320508075688772},"571":{"tf":1.0},"581":{"tf":1.0},"594":{"tf":1.0},"602":{"tf":1.7320508075688772},"605":{"tf":1.0},"613":{"tf":1.7320508075688772},"617":{"tf":1.0},"625":{"tf":1.7320508075688772},"628":{"tf":1.0},"636":{"tf":1.7320508075688772},"645":{"tf":1.7320508075688772},"654":{"tf":1.0},"659":{"tf":1.0},"769":{"tf":1.0},"8":{"tf":1.0},"811":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"924":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":2.0},"968":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"875":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"408":{"tf":1.0},"429":{"tf":1.0},"602":{"tf":1.0}}}}}}}},"df":1,"docs":{"408":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"460":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}},"x":{"df":3,"docs":{"364":{"tf":1.0},"371":{"tf":1.0},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"232":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"651":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"715":{"tf":1.0},"752":{"tf":1.0},"884":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"307":{"tf":1.0}}}}}}}}}}}}},"p":{"df":2,"docs":{"307":{"tf":1.0},"338":{"tf":1.0}}}}},"r":{"df":4,"docs":{"289":{"tf":1.0},"678":{"tf":1.0},"812":{"tf":1.0},"833":{"tf":1.4142135623730951}},"i":{"df":44,"docs":{"108":{"tf":1.0},"138":{"tf":1.4142135623730951},"20":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"387":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"499":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"708":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"750":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"567":{"tf":1.0},"680":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"239":{"tf":1.0},"254":{"tf":1.0},"273":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"391":{"tf":1.0},"412":{"tf":1.0},"488":{"tf":1.0},"515":{"tf":1.0},"583":{"tf":1.0},"606":{"tf":1.0},"709":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":2.23606797749979},"99":{"tf":1.0}}},"x":{"df":3,"docs":{"33":{"tf":1.0},"762":{"tf":1.0},"851":{"tf":1.0}}}},"df":9,"docs":{"142":{"tf":1.0},"170":{"tf":1.0},"376":{"tf":1.4142135623730951},"560":{"tf":1.0},"618":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":66,"docs":{"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"132":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"315":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.0},"781":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"846":{"tf":1.0},"855":{"tf":1.0},"86":{"tf":1.0},"868":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"888":{"tf":1.0},"893":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"9":{"tf":1.0},"901":{"tf":1.0},"912":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":7,"docs":{"259":{"tf":1.0},"288":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"326":{"tf":1.0},"647":{"tf":1.0},"665":{"tf":1.0},"858":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"184":{"tf":1.0},"754":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"142":{"tf":1.4142135623730951},"309":{"tf":1.0},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"838":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"203":{"tf":1.0},"254":{"tf":1.4142135623730951},"330":{"tf":1.0},"796":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":7,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"206":{"tf":1.0},"254":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0}}},"v":{"df":44,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"329":{"tf":1.0},"398":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"499":{"tf":1.7320508075688772},"522":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"614":{"tf":1.7320508075688772},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"744":{"tf":1.0},"752":{"tf":2.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":2.23606797749979},"771":{"tf":1.0},"772":{"tf":1.0},"779":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"830":{"tf":1.0},"833":{"tf":1.4142135623730951},"838":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.4142135623730951},"882":{"tf":1.0},"891":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0},"947":{"tf":1.0},"952":{"tf":1.0},"98":{"tf":2.23606797749979}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"743":{"tf":1.0},"754":{"tf":1.0}},"l":{"@":{"0":{".":{"5":{".":{"3":{"df":1,"docs":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"288":{"tf":1.0},"807":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0},"838":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"254":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"673":{"tf":1.0},"725":{"tf":1.0},"732":{"tf":1.0},"799":{"tf":2.0},"854":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":1,"docs":{"127":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":52,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"127":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"315":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"346":{"tf":1.0},"381":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":2.449489742783178},"440":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"532":{"tf":1.0},"591":{"tf":1.0},"6":{"tf":1.0},"614":{"tf":1.0},"635":{"tf":2.23606797749979},"742":{"tf":1.0},"773":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"857":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.4142135623730951},"918":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"958":{"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":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"590":{"tf":1.0},"621":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"762":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"129":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"212":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"295":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.4142135623730951},"363":{"tf":1.0},"370":{"tf":1.0},"379":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"698":{"tf":1.4142135623730951},"701":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"802":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"861":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"9":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.4142135623730951},"919":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"956":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":130,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.7320508075688772},"264":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"302":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":2.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"340":{"tf":1.0},"385":{"tf":1.0},"39":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.7320508075688772},"600":{"tf":1.0},"603":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.4142135623730951},"62":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":2.449489742783178},"677":{"tf":1.7320508075688772},"678":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"76":{"tf":1.4142135623730951},"761":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"801":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.0},"811":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"837":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"965":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"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":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"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":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"636":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"871":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"224":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.4142135623730951},"371":{"tf":1.0}}}},"t":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"289":{"tf":1.0},"318":{"tf":3.1622776601683795},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"402":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"814":{"tf":1.0},"860":{"tf":1.0},"872":{"tf":1.0},"88":{"tf":1.0},"948":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"456":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"557":{"tf":1.7320508075688772},"76":{"tf":2.0},"811":{"tf":1.0},"950":{"tf":1.4142135623730951},"97":{"tf":2.0}}}},"v":{"df":2,"docs":{"34":{"tf":1.0},"912":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"_":{"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":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"315":{"tf":1.4142135623730951},"567":{"tf":1.0},"655":{"tf":1.0},"772":{"tf":1.4142135623730951},"838":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"127":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"326":{"tf":1.0},"655":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"853":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"100":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":3.0},"289":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"560":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":1.7320508075688772},"932":{"tf":1.0},"99":{"tf":1.0}}}}},"df":4,"docs":{"254":{"tf":1.0},"276":{"tf":1.0},"916":{"tf":1.0},"966":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"796":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"170":{"tf":1.0},"259":{"tf":1.0},"303":{"tf":1.0},"747":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"190":{"tf":1.0},"258":{"tf":1.7320508075688772},"263":{"tf":1.0},"297":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"801":{"tf":1.0},"839":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"919":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":4,"docs":{"203":{"tf":1.0},"233":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"218":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"590":{"tf":1.0},"592":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"162":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":2.0},"849":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":29,"docs":{"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"234":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"88":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":47,"docs":{"134":{"tf":1.0},"149":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"459":{"tf":1.0},"464":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"490":{"tf":1.0},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.7320508075688772},"565":{"tf":1.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"692":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":2.449489742783178},"801":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"858":{"tf":1.0},"919":{"tf":1.0},"951":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":13,"docs":{"103":{"tf":1.4142135623730951},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"670":{"tf":1.0},"70":{"tf":1.0},"780":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.4142135623730951},"743":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"138":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"677":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"862":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"745":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"62":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"79":{"tf":1.0},"804":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"958":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"v":{"'":{"df":2,"docs":{"803":{"tf":1.0},"818":{"tf":1.0}}},"df":9,"docs":{"270":{"tf":1.0},"741":{"tf":1.4142135623730951},"753":{"tf":1.0},"754":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"880":{"tf":1.0}}}},"l":{"b":{"df":16,"docs":{"736":{"tf":1.0},"788":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.7320508075688772},"818":{"tf":1.4142135623730951},"820":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}},"l":{"df":1,"docs":{"190":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":3.872983346207417},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":3.0}}}}}}},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"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":{"667":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"318":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.0},"915":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"13":{"tf":2.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"77":{"tf":1.0},"881":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"16":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.4142135623730951},"720":{"tf":1.0},"867":{"tf":1.0}}}},"n":{"df":83,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"119":{"tf":1.4142135623730951},"126":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"136":{"tf":1.0},"142":{"tf":2.6457513110645907},"149":{"tf":1.0},"17":{"tf":2.6457513110645907},"173":{"tf":1.0},"175":{"tf":2.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":2.449489742783178},"203":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":2.0},"32":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"457":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"60":{"tf":1.0},"652":{"tf":2.6457513110645907},"655":{"tf":1.0},"658":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.0},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"802":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":1.0},"83":{"tf":1.0},"834":{"tf":1.4142135623730951},"839":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.7320508075688772},"915":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":16,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"20":{"tf":1.4142135623730951},"206":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"765":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"858":{"tf":1.0},"921":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"4":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":1,"docs":{"958":{"tf":1.0}}},"df":130,"docs":{"0":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"559":{"tf":1.0},"565":{"tf":1.0},"571":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.0},"617":{"tf":1.0},"623":{"tf":1.0},"628":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"653":{"tf":1.7320508075688772},"654":{"tf":1.4142135623730951},"655":{"tf":1.7320508075688772},"715":{"tf":1.0},"716":{"tf":1.0},"718":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.0},"740":{"tf":1.4142135623730951},"743":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.4142135623730951},"757":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.0},"809":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"837":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"881":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"958":{"tf":2.0},"969":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":13,"docs":{"258":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"716":{"tf":1.4142135623730951},"76":{"tf":1.0},"765":{"tf":1.4142135623730951},"803":{"tf":1.0},"818":{"tf":1.4142135623730951},"920":{"tf":1.0},"97":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"849":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":36,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"454":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":2.0},"626":{"tf":1.0},"668":{"tf":1.0},"678":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"823":{"tf":1.4142135623730951},"840":{"tf":1.0},"916":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":31,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.23606797749979},"254":{"tf":2.23606797749979},"31":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":2.0},"476":{"tf":2.6457513110645907},"493":{"tf":2.449489742783178},"494":{"tf":2.6457513110645907},"496":{"tf":1.0},"505":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"678":{"tf":1.0},"803":{"tf":1.0},"894":{"tf":1.0},"912":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"17":{"tf":1.0},"958":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"621":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"254":{"tf":1.0},"289":{"tf":2.0},"710":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"184":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0}}}},"n":{"df":6,"docs":{"135":{"tf":1.4142135623730951},"233":{"tf":1.0},"734":{"tf":1.0},"831":{"tf":1.4142135623730951},"913":{"tf":1.0},"929":{"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":6,"docs":{"175":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":33,"docs":{"127":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":3.1622776601683795},"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"275":{"tf":2.0},"297":{"tf":2.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"321":{"tf":1.0},"619":{"tf":1.0},"647":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"710":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"723":{"tf":1.0},"727":{"tf":1.0},"755":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"867":{"tf":1.0},"876":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":20,"docs":{"108":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"290":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"63":{"tf":1.0},"644":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"697":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"87":{"tf":1.0},"935":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":7,"docs":{"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772},"541":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"680":{"tf":1.0},"697":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}},"r":{"'":{"df":1,"docs":{"60":{"tf":1.0}}},".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"/":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"@":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"276":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"184":{"tf":1.0},"254":{"tf":1.7320508075688772},"289":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"17":{"tf":2.449489742783178},"20":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":2.23606797749979},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"500":{"tf":1.0},"592":{"tf":1.0},"663":{"tf":1.0},"671":{"tf":1.4142135623730951},"682":{"tf":1.0},"685":{"tf":1.0},"769":{"tf":1.0},"774":{"tf":1.0},"852":{"tf":1.0},"879":{"tf":1.0},"912":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"232":{"tf":1.0},"289":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":8,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"318":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"=":{"2":{"5":{"df":1,"docs":{"835":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"682":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"774":{"tf":1.0},"852":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":175,"docs":{"0":{"tf":2.6457513110645907},"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":2.449489742783178},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"22":{"tf":3.1622776601683795},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"256":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":2.0},"315":{"tf":2.6457513110645907},"316":{"tf":2.6457513110645907},"317":{"tf":1.0},"318":{"tf":3.7416573867739413},"32":{"tf":3.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.7320508075688772},"338":{"tf":1.0},"340":{"tf":2.0},"349":{"tf":2.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"398":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"522":{"tf":1.4142135623730951},"538":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"626":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":2.6457513110645907},"654":{"tf":1.7320508075688772},"655":{"tf":1.0},"656":{"tf":1.4142135623730951},"657":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"660":{"tf":2.23606797749979},"661":{"tf":1.0},"662":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"67":{"tf":1.0},"671":{"tf":1.4142135623730951},"674":{"tf":1.4142135623730951},"675":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":2.449489742783178},"692":{"tf":1.0},"693":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.4142135623730951},"706":{"tf":1.0},"709":{"tf":1.0},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"731":{"tf":1.0},"735":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"804":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"83":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"85":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":2.0},"966":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":4,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"140":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}},"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}},"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":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"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":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"tf":1.0}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"540":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"448":{"tf":1.0}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"544":{"tf":1.4142135623730951}}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"543":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"428":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.0},"138":{"tf":2.23606797749979},"140":{"tf":2.449489742783178},"254":{"tf":2.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"376":{"tf":1.0},"429":{"tf":1.0},"443":{"tf":1.0},"450":{"tf":1.4142135623730951},"452":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"548":{"tf":1.4142135623730951},"652":{"tf":1.7320508075688772},"665":{"tf":1.0},"73":{"tf":1.0},"782":{"tf":1.0},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"858":{"tf":1.0}}}}},"df":25,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"286":{"tf":1.0},"315":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"861":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":45,"docs":{"1":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"138":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"208":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.7320508075688772},"280":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":2.0},"326":{"tf":1.0},"330":{"tf":1.0},"4":{"tf":1.4142135623730951},"427":{"tf":1.0},"5":{"tf":1.4142135623730951},"538":{"tf":1.0},"678":{"tf":1.0},"73":{"tf":1.0},"730":{"tf":1.0},"865":{"tf":1.4142135623730951},"94":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":2.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"965":{"tf":1.7320508075688772},"968":{"tf":1.4142135623730951},"969":{"tf":2.23606797749979}},"’":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":97,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":2.0},"259":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"330":{"tf":1.0},"356":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"501":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"549":{"tf":1.4142135623730951},"56":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"572":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"630":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"672":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"709":{"tf":1.0},"772":{"tf":1.7320508075688772},"79":{"tf":1.0},"799":{"tf":2.23606797749979},"83":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.4142135623730951},"958":{"tf":1.0}},"m":{"df":2,"docs":{"109":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":4,"docs":{"234":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"377":{"tf":1.0}}}},"g":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"157":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":3.3166247903554},"289":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"73":{"tf":1.0},"890":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"473":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"144":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"298":{"tf":1.0},"649":{"tf":1.0},"872":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"_":{"df":0,"docs":{},"p":{"df":31,"docs":{"139":{"tf":1.0},"140":{"tf":2.23606797749979},"160":{"tf":1.4142135623730951},"259":{"tf":1.0},"289":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"642":{"tf":1.0},"677":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":66,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":2.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"145":{"tf":1.0},"160":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"203":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"242":{"tf":1.7320508075688772},"258":{"tf":2.0},"259":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"330":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.0},"560":{"tf":1.0},"6":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"716":{"tf":1.0},"747":{"tf":1.0},"755":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"807":{"tf":1.0},"82":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"867":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":1.0}},"p":{"df":2,"docs":{"224":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":6,"docs":{"103":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"289":{"tf":2.0},"546":{"tf":1.0},"958":{"tf":1.0}}}}},"t":{"df":88,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":2.0},"218":{"tf":1.0},"224":{"tf":2.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"549":{"tf":1.0},"561":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"590":{"tf":1.4142135623730951},"591":{"tf":1.0},"614":{"tf":1.0},"618":{"tf":1.0},"632":{"tf":1.0},"651":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"716":{"tf":1.0},"727":{"tf":1.4142135623730951},"73":{"tf":1.0},"752":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"806":{"tf":2.0},"83":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.7320508075688772},"865":{"tf":1.0},"873":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.0},"231":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.4142135623730951},"653":{"tf":1.0},"692":{"tf":1.0},"775":{"tf":1.0},"79":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"770":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"570":{"tf":1.0},"644":{"tf":1.0},"697":{"tf":1.0},"755":{"tf":1.0},"770":{"tf":1.0}}}},"df":5,"docs":{"34":{"tf":1.0},"376":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0}}},"v":{"df":11,"docs":{"199":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"62":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"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":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":39,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"212":{"tf":2.0},"213":{"tf":1.0},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"66":{"tf":1.0},"674":{"tf":1.0},"727":{"tf":1.7320508075688772},"74":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.4142135623730951},"922":{"tf":1.0},"95":{"tf":1.0}},"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":{"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":8,"docs":{"267":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"54":{"tf":1.0},"687":{"tf":1.0},"704":{"tf":1.4142135623730951},"721":{"tf":1.0},"736":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":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":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"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":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"895":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"241":{"tf":1.0},"289":{"tf":1.0},"454":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"890":{"tf":1.0},"895":{"tf":1.0},"905":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"905":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"803":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"126":{"tf":1.0},"802":{"tf":1.0},"914":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"366":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":145,"docs":{"100":{"tf":2.8284271247461903},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"121":{"tf":1.0},"124":{"tf":1.7320508075688772},"128":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":2.6457513110645907},"136":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"173":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":2.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":2.6457513110645907},"316":{"tf":2.23606797749979},"318":{"tf":1.0},"32":{"tf":1.0},"326":{"tf":1.4142135623730951},"330":{"tf":2.0},"348":{"tf":1.0},"35":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"373":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.0},"377":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"402":{"tf":1.0},"41":{"tf":1.0},"425":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"457":{"tf":1.0},"460":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":3.3166247903554},"540":{"tf":1.4142135623730951},"541":{"tf":1.0},"551":{"tf":1.7320508075688772},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"598":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"619":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"649":{"tf":1.4142135623730951},"651":{"tf":1.0},"653":{"tf":1.4142135623730951},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"665":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"676":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"690":{"tf":1.7320508075688772},"691":{"tf":1.0},"710":{"tf":1.0},"715":{"tf":1.4142135623730951},"72":{"tf":1.0},"720":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.8284271247461903},"801":{"tf":1.4142135623730951},"804":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.4142135623730951},"84":{"tf":1.0},"842":{"tf":1.0},"85":{"tf":1.0},"858":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"921":{"tf":1.0},"923":{"tf":1.4142135623730951},"925":{"tf":1.0},"927":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.0},"328":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.0},"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"727":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"462":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"460":{"tf":1.0},"938":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"373":{"tf":1.0},"773":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"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":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"919":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":9,"docs":{"12":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":2.0},"318":{"tf":1.4142135623730951},"43":{"tf":1.0},"673":{"tf":1.0},"676":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"307":{"tf":1.0},"715":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"858":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"541":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"225":{"tf":1.0},"265":{"tf":1.0},"626":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"772":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"431":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"969":{"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":8,"docs":{"103":{"tf":1.0},"128":{"tf":1.0},"192":{"tf":1.0},"626":{"tf":1.4142135623730951},"738":{"tf":1.0},"82":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"11":{"tf":1.0},"665":{"tf":1.0},"751":{"tf":1.0},"775":{"tf":1.0},"804":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"958":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}}}},"df":2,"docs":{"655":{"tf":1.0},"658":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":13,"docs":{"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"151":{"tf":1.0},"184":{"tf":1.0},"218":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"678":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"939":{"tf":1.0},"969":{"tf":2.449489742783178}},"n":{"df":5,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":24,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"184":{"tf":1.0},"342":{"tf":1.4142135623730951},"715":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.0},"739":{"tf":1.4142135623730951},"743":{"tf":1.0},"747":{"tf":1.4142135623730951},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"806":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.4142135623730951},"931":{"tf":1.0}}}}}},"df":5,"docs":{"184":{"tf":1.0},"22":{"tf":1.0},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"814":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"268":{"tf":1.0},"318":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"854":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"762":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"df":7,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"494":{"tf":1.7320508075688772},"621":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"258":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"734":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"318":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"103":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"381":{"tf":1.0},"674":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"900":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"i":{"df":10,"docs":{"142":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"677":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"503":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"473":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":33,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.4142135623730951},"494":{"tf":1.0},"549":{"tf":1.0},"568":{"tf":1.0},"595":{"tf":1.0},"629":{"tf":1.0},"70":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"78":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"852":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"348":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"129":{"tf":1.0},"135":{"tf":2.8284271247461903},"190":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"326":{"tf":1.0},"376":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"510":{"tf":1.0},"511":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"693":{"tf":1.0},"720":{"tf":1.0},"818":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"916":{"tf":1.4142135623730951},"929":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"232":{"tf":1.0},"306":{"tf":1.0},"782":{"tf":1.0},"799":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"456":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"830":{"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":2,"docs":{"121":{"tf":1.0},"864":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"568":{"tf":1.0},"626":{"tf":1.0},"816":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"145":{"tf":1.0},"289":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"267":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"557":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":2.23606797749979},"823":{"tf":1.0},"834":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"480":{"tf":2.23606797749979},"496":{"tf":1.0},"507":{"tf":2.23606797749979},"577":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"642":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"s":{"df":2,"docs":{"565":{"tf":1.4142135623730951},"642":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"480":{"tf":2.23606797749979},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"577":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"1":{"9":{"df":1,"docs":{"577":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"[":{"0":{"df":1,"docs":{"565":{"tf":2.0}}},"df":0,"docs":{}},"df":8,"docs":{"112":{"tf":2.23606797749979},"13":{"tf":1.0},"480":{"tf":3.3166247903554},"496":{"tf":1.4142135623730951},"507":{"tf":3.4641016151377544},"565":{"tf":2.449489742783178},"577":{"tf":2.449489742783178},"642":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":3.872983346207417}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"289":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"815":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"112":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"1":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"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":{},"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":{},"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"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":{"563":{"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":0,"docs":{},"e":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}},"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":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"799":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"190":{"tf":1.0},"376":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"596":{"tf":1.0},"618":{"tf":1.4142135623730951},"67":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"692":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"915":{"tf":1.0},"969":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"195":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.4142135623730951},"308":{"tf":1.0},"316":{"tf":1.0},"867":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"878":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":28,"docs":{"118":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"373":{"tf":1.0},"493":{"tf":1.0},"567":{"tf":1.0},"7":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"77":{"tf":1.0},"801":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"98":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"563":{"tf":1.7320508075688772},"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"$":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"683":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"686":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"224":{"tf":1.0},"231":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"264":{"tf":1.4142135623730951},"580":{"tf":1.0},"591":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"861":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"538":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":36,"docs":{"120":{"tf":1.0},"140":{"tf":1.0},"224":{"tf":1.4142135623730951},"252":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.7320508075688772},"414":{"tf":2.0},"419":{"tf":1.7320508075688772},"435":{"tf":2.0},"440":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.7320508075688772},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"616":{"tf":1.4142135623730951},"630":{"tf":1.0},"65":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":115,"docs":{"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"367":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.4142135623730951},"406":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"488":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"529":{"tf":1.7320508075688772},"531":{"tf":1.0},"538":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.0},"565":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.4142135623730951},"632":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"690":{"tf":1.0},"693":{"tf":1.4142135623730951},"697":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"776":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"858":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"926":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.0},"951":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.7320508075688772},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":66,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.4142135623730951},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"448":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.7320508075688772},"524":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"670":{"tf":1.0},"76":{"tf":1.4142135623730951},"789":{"tf":1.0},"823":{"tf":1.0},"839":{"tf":1.0},"858":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.4142135623730951},"466":{"tf":1.0},"484":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"793":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"590":{"tf":1.0}},"s":{"_":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"590":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"l":{".":{"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"925":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"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":{},"r":{"df":1,"docs":{"27":{"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":0,"docs":{},"{":{"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":{"17":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"698":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"909":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"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":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"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":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{")":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"417":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"752":{"tf":1.0},"881":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"646":{"tf":1.0},"65":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"376":{"tf":1.0},"439":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}},"r":{"d":{"df":10,"docs":{"110":{"tf":2.0},"231":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"572":{"tf":1.0},"62":{"tf":1.0},"823":{"tf":1.0},"837":{"tf":1.0},"89":{"tf":2.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"179":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"7":{"/":{"1":{"5":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"/":{"0":{"4":{":":{"3":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":55,"docs":{"0":{"tf":2.8284271247461903},"100":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":2.0},"2":{"tf":1.0},"203":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"241":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"269":{"tf":1.0},"285":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.7320508075688772},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"478":{"tf":1.4142135623730951},"490":{"tf":2.0},"492":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.0},"618":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"711":{"tf":1.4142135623730951},"736":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"818":{"tf":1.0},"853":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"880":{"tf":1.0},"969":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":38,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"146":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"678":{"tf":1.0},"752":{"tf":1.4142135623730951},"760":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"807":{"tf":1.4142135623730951},"818":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.0},"876":{"tf":1.0},"9":{"tf":1.0},"929":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"203":{"tf":2.8284271247461903},"32":{"tf":1.0},"324":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"674":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"76":{"tf":1.0},"838":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0},"923":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.0},"678":{"tf":1.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":11,"docs":{"377":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"664":{"tf":1.0},"684":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"585":{"tf":2.449489742783178},"586":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":7,"docs":{"289":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.7320508075688772},"342":{"tf":1.0},"742":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"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":{"_":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"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":{"_":{"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"d":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"0":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"565":{"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":{},"m":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"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":2,"docs":{"844":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":36,"docs":{"10":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"14":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":2.0},"195":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"23":{"tf":2.0},"247":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":2.0},"290":{"tf":1.0},"299":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":2.0},"441":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":2.0},"64":{"tf":1.0},"677":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.0},"701":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"924":{"tf":1.0},"926":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":34,"docs":{"118":{"tf":1.4142135623730951},"127":{"tf":1.0},"136":{"tf":1.0},"19":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"37":{"tf":1.0},"393":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"46":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"694":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.4142135623730951},"805":{"tf":1.0},"905":{"tf":1.0},"912":{"tf":1.0},"923":{"tf":1.4142135623730951},"969":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":17,"docs":{"149":{"tf":1.0},"203":{"tf":1.0},"454":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"459":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.7320508075688772},"716":{"tf":1.0},"77":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"921":{"tf":1.0},"969":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"129":{"tf":1.0},"135":{"tf":2.449489742783178},"17":{"tf":1.0},"264":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"678":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"789":{"tf":1.0},"834":{"tf":1.0},"909":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":52,"docs":{"114":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"464":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"565":{"tf":1.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.0},"74":{"tf":1.0},"752":{"tf":1.0},"837":{"tf":1.0},"842":{"tf":1.0},"882":{"tf":1.0},"905":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"951":{"tf":1.0}}},"i":{"df":2,"docs":{"289":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"340":{"tf":1.0},"674":{"tf":1.0}}}}}}},"df":1,"docs":{"752":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"136":{"tf":1.0},"234":{"tf":1.4142135623730951},"297":{"tf":1.0},"698":{"tf":1.0},"923":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"964":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"862":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":79,"docs":{"120":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":3.605551275463989},"136":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"170":{"tf":1.4142135623730951},"198":{"tf":1.0},"224":{"tf":2.0},"231":{"tf":1.0},"285":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"347":{"tf":2.449489742783178},"376":{"tf":2.8284271247461903},"377":{"tf":1.4142135623730951},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"425":{"tf":2.449489742783178},"427":{"tf":2.6457513110645907},"428":{"tf":2.6457513110645907},"429":{"tf":1.4142135623730951},"433":{"tf":1.7320508075688772},"435":{"tf":2.449489742783178},"437":{"tf":1.4142135623730951},"438":{"tf":1.0},"443":{"tf":2.0},"445":{"tf":2.6457513110645907},"446":{"tf":2.6457513110645907},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":1.0},"529":{"tf":1.4142135623730951},"532":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"554":{"tf":1.7320508075688772},"560":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":2.23606797749979},"580":{"tf":1.4142135623730951},"603":{"tf":1.0},"614":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.4142135623730951},"634":{"tf":1.0},"635":{"tf":2.23606797749979},"644":{"tf":1.0},"645":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"697":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":2.449489742783178},"738":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"78":{"tf":1.0},"799":{"tf":1.0},"813":{"tf":1.0},"818":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.7320508075688772},"842":{"tf":1.0},"862":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"738":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"442":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"301":{"tf":1.0},"340":{"tf":1.0},"376":{"tf":1.0},"638":{"tf":1.0},"640":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"645":{"tf":1.0},"87":{"tf":1.0},"956":{"tf":1.0},"964":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"816":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"226":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"677":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"377":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"135":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"312":{"tf":1.0},"354":{"tf":1.0},"561":{"tf":1.0},"648":{"tf":1.0},"652":{"tf":1.0},"66":{"tf":1.7320508075688772},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"752":{"tf":1.0},"864":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"929":{"tf":1.0},"956":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"184":{"tf":1.0},"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"801":{"tf":1.0}}}},"df":53,"docs":{"100":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"561":{"tf":1.0},"60":{"tf":1.0},"647":{"tf":1.4142135623730951},"649":{"tf":2.449489742783178},"652":{"tf":3.4641016151377544},"710":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"801":{"tf":1.0},"804":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"917":{"tf":1.0},"919":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"22":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"847":{"tf":1.0},"859":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":15,"docs":{"100":{"tf":1.7320508075688772},"142":{"tf":1.0},"224":{"tf":1.0},"243":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"560":{"tf":1.0},"736":{"tf":1.0},"79":{"tf":1.7320508075688772}}}},"t":{"df":8,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0},"715":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"62":{"tf":1.0},"710":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"698":{"tf":1.0},"913":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":40,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":3.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"443":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"63":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"66":{"tf":1.0},"692":{"tf":1.0},"78":{"tf":1.4142135623730951},"811":{"tf":1.0},"840":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"379":{"tf":1.0},"838":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"145":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":1.0},"117":{"tf":1.0},"318":{"tf":1.0}}}},"m":{"df":7,"docs":{"412":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.6457513110645907},"519":{"tf":1.4142135623730951},"577":{"tf":2.23606797749979},"588":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"254":{"tf":1.4142135623730951},"345":{"tf":1.0},"968":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"315":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"830":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"492":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":85,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"34":{"tf":1.4142135623730951},"422":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"572":{"tf":1.0},"62":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"671":{"tf":1.0},"697":{"tf":1.0},"705":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"730":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0},"776":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0},"812":{"tf":1.0},"834":{"tf":2.0},"835":{"tf":1.0},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"846":{"tf":1.0},"85":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"925":{"tf":1.0},"938":{"tf":1.4142135623730951},"947":{"tf":1.0},"950":{"tf":2.0},"951":{"tf":1.0},"958":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"100":{"tf":1.0},"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"288":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.4142135623730951},"443":{"tf":1.0},"538":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"847":{"tf":1.0},"86":{"tf":1.4142135623730951},"882":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"540":{"tf":1.0}}},"df":61,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.7320508075688772},"161":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.0},"223":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"354":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"513":{"tf":1.0},"536":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"605":{"tf":1.0},"653":{"tf":1.0},"657":{"tf":1.4142135623730951},"681":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"738":{"tf":1.4142135623730951},"760":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.7320508075688772},"798":{"tf":1.0},"799":{"tf":1.0},"804":{"tf":1.0},"818":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"969":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"224":{"tf":1.0},"324":{"tf":1.0},"735":{"tf":1.0},"772":{"tf":1.0},"793":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"844":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"289":{"tf":1.0},"692":{"tf":1.0},"907":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"759":{"tf":1.0},"900":{"tf":1.0},"909":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"105":{"tf":1.0},"115":{"tf":1.7320508075688772},"132":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"184":{"tf":1.0},"234":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"735":{"tf":1.0},"78":{"tf":1.0},"791":{"tf":1.0},"804":{"tf":1.0},"817":{"tf":1.0},"84":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"17":{"tf":1.0},"198":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"289":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"960":{"tf":1.4142135623730951},"963":{"tf":1.0},"964":{"tf":1.7320508075688772},"969":{"tf":4.58257569495584}},"l":{"df":7,"docs":{"103":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{},"g":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}}}},"df":47,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":2.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"224":{"tf":3.1622776601683795},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":2.0},"297":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":2.0},"304":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.7320508075688772},"359":{"tf":1.0},"363":{"tf":2.23606797749979},"364":{"tf":1.0},"366":{"tf":2.449489742783178},"367":{"tf":1.7320508075688772},"369":{"tf":2.0},"370":{"tf":2.6457513110645907},"371":{"tf":2.0},"373":{"tf":4.123105625617661},"375":{"tf":2.0},"801":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"837":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"843":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"933":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"969":{"tf":1.0}},"p":{"df":1,"docs":{"224":{"tf":1.0}}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"17":{"tf":1.0},"279":{"tf":1.4142135623730951},"299":{"tf":1.0},"300":{"tf":1.0},"783":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":24,"docs":{"117":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"44":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"592":{"tf":1.0},"644":{"tf":1.4142135623730951},"674":{"tf":1.0},"675":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.0},"805":{"tf":1.0},"830":{"tf":1.0},"864":{"tf":1.0},"884":{"tf":1.0},"97":{"tf":1.0}},"n":{"df":14,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"83":{"tf":1.0},"847":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}},"r":{"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":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"756":{"tf":1.0},"762":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"110":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"34":{"tf":1.0},"342":{"tf":1.4142135623730951},"653":{"tf":1.0},"667":{"tf":1.0},"731":{"tf":1.0},"862":{"tf":1.0},"874":{"tf":1.0},"89":{"tf":1.0},"927":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":31,"docs":{"127":{"tf":1.4142135623730951},"151":{"tf":1.0},"2":{"tf":1.0},"271":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"321":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":2.0},"376":{"tf":1.0},"454":{"tf":1.0},"678":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"736":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"812":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"881":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"97":{"tf":1.0}}}}},"b":{"df":2,"docs":{"505":{"tf":1.0},"517":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"6":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"132":{"tf":1.4142135623730951},"223":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"344":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"537":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"712":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"860":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"160":{"tf":1.0},"223":{"tf":1.0},"289":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"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":38,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.4142135623730951},"145":{"tf":1.0},"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"224":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"288":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"674":{"tf":1.0},"680":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"77":{"tf":1.4142135623730951},"775":{"tf":1.0},"839":{"tf":1.4142135623730951},"847":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.7320508075688772},"936":{"tf":1.0},"958":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951}}},"y":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":3,"docs":{"13":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"744":{"tf":1.0}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"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":{},"t":{"df":1,"docs":{"545":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"318":{"tf":1.4142135623730951},"837":{"tf":1.0},"860":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"289":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"511":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":5,"docs":{"272":{"tf":1.0},"340":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"149":{"tf":1.0},"233":{"tf":1.0},"276":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"s":{"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":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"318":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"765":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"772":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"772":{"tf":1.0}}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":74,"docs":{"107":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":2.6457513110645907},"113":{"tf":1.7320508075688772},"114":{"tf":2.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"318":{"tf":6.4031242374328485},"328":{"tf":2.0},"331":{"tf":1.0},"384":{"tf":1.0},"394":{"tf":1.0},"405":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"463":{"tf":1.0},"479":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"542":{"tf":1.0},"552":{"tf":1.0},"564":{"tf":1.0},"565":{"tf":1.4142135623730951},"576":{"tf":1.0},"587":{"tf":1.0},"599":{"tf":1.0},"610":{"tf":1.0},"622":{"tf":1.0},"633":{"tf":1.0},"641":{"tf":1.0},"650":{"tf":1.0},"652":{"tf":1.0},"720":{"tf":1.4142135623730951},"728":{"tf":1.0},"742":{"tf":1.0},"763":{"tf":1.4142135623730951},"768":{"tf":1.0},"776":{"tf":1.0},"784":{"tf":1.0},"801":{"tf":1.0},"804":{"tf":1.0},"810":{"tf":1.0},"814":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.0},"853":{"tf":1.0},"86":{"tf":2.0},"863":{"tf":1.0},"867":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"888":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"924":{"tf":2.0},"927":{"tf":1.7320508075688772},"937":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"952":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"347":{"tf":2.449489742783178}}}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":27,"docs":{"107":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0},"86":{"tf":1.0},"879":{"tf":1.0},"933":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":28,"docs":{"107":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.4142135623730951},"416":{"tf":1.0},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.7320508075688772},"464":{"tf":1.4142135623730951},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.4142135623730951},"543":{"tf":1.0},"553":{"tf":1.4142135623730951},"565":{"tf":1.7320508075688772},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.4142135623730951},"611":{"tf":1.0},"623":{"tf":1.4142135623730951},"634":{"tf":1.0},"642":{"tf":1.4142135623730951},"765":{"tf":1.0},"772":{"tf":2.449489742783178},"805":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":2,"docs":{"496":{"tf":1.0},"519":{"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"765":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951}}}}}}}}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"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":{},"i":{"d":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"887":{"tf":1.0}}},"2":{"df":1,"docs":{"886":{"tf":1.0}}},"3":{"df":1,"docs":{"885":{"tf":1.0}}},"4":{"df":1,"docs":{"884":{"tf":1.0}}},"5":{"df":1,"docs":{"883":{"tf":1.0}}},"6":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"332":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.7320508075688772},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":15,"docs":{"254":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"632":{"tf":2.449489742783178},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.4142135623730951},"643":{"tf":1.0},"677":{"tf":1.0},"684":{"tf":1.4142135623730951},"740":{"tf":1.0},"770":{"tf":1.4142135623730951},"929":{"tf":1.0},"969":{"tf":3.7416573867739413}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"288":{"tf":1.0},"765":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"153":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"297":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"963":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"103":{"tf":1.0},"318":{"tf":1.0},"519":{"tf":1.0},"588":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.7320508075688772},"468":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"95":{"tf":1.0}}}}},"’":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}},"g":{"df":24,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"289":{"tf":1.4142135623730951},"306":{"tf":1.0},"376":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.0},"75":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}}},"k":{"df":7,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"618":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"184":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":1.0},"297":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"686":{"tf":1.0},"908":{"tf":1.0},"919":{"tf":1.0},"969":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"342":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"679":{"tf":1.0}}}}}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"679":{"tf":1.7320508075688772}}}},"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":1,"docs":{"840":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":24,"docs":{"22":{"tf":3.0},"318":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"454":{"tf":1.0},"471":{"tf":1.0},"679":{"tf":1.0},"718":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"76":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"833":{"tf":1.4142135623730951},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":12,"docs":{"113":{"tf":1.0},"117":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"29":{"tf":1.0},"318":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"78":{"tf":1.0},"958":{"tf":1.4142135623730951},"969":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"258":{"tf":1.0},"570":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"807":{"tf":1.0},"823":{"tf":1.0},"919":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":67,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":2.0},"198":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.7320508075688772},"221":{"tf":2.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"240":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":1.0},"316":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.7320508075688772},"35":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"471":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0},"522":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"621":{"tf":2.23606797749979},"673":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"736":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"9":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"968":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"142":{"tf":1.4142135623730951},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"802":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"448":{"tf":1.4142135623730951},"464":{"tf":1.0},"531":{"tf":1.0},"553":{"tf":1.0},"600":{"tf":1.0},"623":{"tf":1.0},"642":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951},"925":{"tf":1.0}},"n":{"df":2,"docs":{"698":{"tf":1.0},"805":{"tf":1.0}}}}}},"u":{"df":7,"docs":{"142":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"449":{"tf":1.0},"578":{"tf":1.0},"772":{"tf":1.0},"963":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":3,"docs":{"173":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"289":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"n":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":3,"docs":{"456":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"158":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"857":{"tf":1.0}}}}}}},"df":158,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"131":{"tf":2.6457513110645907},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.6457513110645907},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":3.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"258":{"tf":2.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":2.0},"262":{"tf":1.0},"272":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"401":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"454":{"tf":1.7320508075688772},"456":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":3.605551275463989},"473":{"tf":1.0},"474":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"477":{"tf":1.0},"480":{"tf":2.6457513110645907},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":2.6457513110645907},"487":{"tf":2.0},"488":{"tf":2.23606797749979},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":1.7320508075688772},"494":{"tf":1.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.7320508075688772},"507":{"tf":1.0},"549":{"tf":2.0},"551":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"596":{"tf":1.0},"607":{"tf":1.0},"619":{"tf":1.0},"644":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"70":{"tf":1.0},"711":{"tf":2.23606797749979},"718":{"tf":1.4142135623730951},"720":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.7320508075688772},"734":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":3.1622776601683795},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"803":{"tf":1.4142135623730951},"805":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.4142135623730951},"811":{"tf":1.0},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"83":{"tf":1.0},"830":{"tf":1.0},"847":{"tf":1.4142135623730951},"85":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":2.449489742783178},"862":{"tf":1.4142135623730951},"866":{"tf":1.0},"880":{"tf":1.4142135623730951},"9":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"919":{"tf":1.4142135623730951},"929":{"tf":1.0},"951":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":3.1622776601683795},"98":{"tf":2.23606797749979},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"184":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"739":{"tf":1.0}}}}},"r":{"df":12,"docs":{"142":{"tf":1.0},"456":{"tf":1.7320508075688772},"471":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"728":{"tf":1.0},"872":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"473":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"772":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"454":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"803":{"tf":1.0}}},"df":22,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"158":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":2.0},"456":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"483":{"tf":1.0},"549":{"tf":1.4142135623730951},"76":{"tf":2.0},"816":{"tf":1.7320508075688772},"863":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"834":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"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":19,"docs":{"131":{"tf":1.4142135623730951},"142":{"tf":4.898979485566356},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"272":{"tf":1.0},"315":{"tf":1.0},"560":{"tf":1.7320508075688772},"729":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.0},"804":{"tf":2.449489742783178},"878":{"tf":1.4142135623730951},"894":{"tf":1.0},"915":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"929":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":2.6457513110645907},"184":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.4142135623730951},"881":{"tf":1.0},"97":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":2.0},"482":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"725":{"tf":1.0},"813":{"tf":1.0},"870":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"502":{"tf":1.0},"834":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"249":{"tf":1.0},"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"964":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":2.23606797749979}}}}},"l":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"318":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"127":{"tf":1.0},"175":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"246":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"561":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.7320508075688772},"224":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"872":{"tf":1.0},"934":{"tf":1.0}}}}},"l":{"d":{"df":2,"docs":{"126":{"tf":1.0},"802":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"127":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"496":{"tf":1.0}}},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.0},"567":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"498":{"tf":1.0},"500":{"tf":1.0}}}}},"df":30,"docs":{"115":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.0},"299":{"tf":1.0},"34":{"tf":1.0},"348":{"tf":1.0},"43":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"703":{"tf":1.0},"707":{"tf":1.4142135623730951},"73":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.0},"956":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"379":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"960":{"tf":1.0},"969":{"tf":2.23606797749979}}}}}}},"p":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"254":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"965":{"tf":1.0}},"i":{"c":{"df":8,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"86":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"127":{"tf":1.4142135623730951},"376":{"tf":1.0},"396":{"tf":1.0},"412":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"267":{"tf":1.0},"315":{"tf":1.0},"859":{"tf":1.0},"925":{"tf":1.0}}},"k":{"df":20,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"377":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"673":{"tf":1.0},"74":{"tf":1.0},"806":{"tf":1.0},"818":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.0},"206":{"tf":1.7320508075688772},"258":{"tf":1.0},"263":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"912":{"tf":1.0}}},"n":{"df":5,"docs":{"119":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":4,"docs":{"729":{"tf":1.0},"738":{"tf":1.4142135623730951},"811":{"tf":1.0},"823":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"110":{"tf":1.0},"21":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"829":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"21":{"tf":2.0},"276":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"862":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"131":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0}}}},"t":{"df":6,"docs":{"128":{"tf":1.0},"213":{"tf":1.0},"248":{"tf":1.0},"709":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"704":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"166":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"665":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"379":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":29,"docs":{"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"565":{"tf":1.4142135623730951},"600":{"tf":1.0},"63":{"tf":1.0},"642":{"tf":1.0},"652":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"71":{"tf":1.0},"712":{"tf":1.0},"737":{"tf":1.0},"756":{"tf":1.0},"786":{"tf":1.0},"807":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"957":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"144":{"tf":1.4142135623730951},"155":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":2.23606797749979},"231":{"tf":2.0},"233":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"342":{"tf":1.0},"66":{"tf":1.0},"716":{"tf":1.0},"734":{"tf":1.0},"752":{"tf":1.0},"869":{"tf":1.0},"938":{"tf":1.0},"951":{"tf":2.0}}}}}},"m":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"752":{"tf":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":{"752":{"tf":1.0}}},"p":{"df":1,"docs":{"881":{"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":2,"docs":{"218":{"tf":1.0},"49":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":29,"docs":{"100":{"tf":2.0},"13":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":2.6457513110645907},"665":{"tf":1.0},"666":{"tf":1.4142135623730951},"678":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":2.0},"94":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"131":{"tf":1.0},"328":{"tf":2.449489742783178},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"468":{"tf":1.7320508075688772},"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"524":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":2.23606797749979},"761":{"tf":1.0},"873":{"tf":1.0},"897":{"tf":1.4142135623730951},"912":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}}}},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"773":{"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":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.4142135623730951}}}},"df":2,"docs":{"912":{"tf":1.4142135623730951},"913":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"191":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"100":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"258":{"tf":1.7320508075688772},"297":{"tf":1.0},"663":{"tf":1.0},"701":{"tf":1.0},"79":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"968":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"183":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"876":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"712":{"tf":1.0},"957":{"tf":1.0}}}},"o":{"df":21,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.4142135623730951},"173":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.0},"377":{"tf":1.4142135623730951},"44":{"tf":1.0},"613":{"tf":1.0},"677":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"814":{"tf":1.0},"875":{"tf":1.4142135623730951},"958":{"tf":1.0},"959":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"/":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}},"df":144,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"132":{"tf":3.872983346207417},"134":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":2.6457513110645907},"289":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"377":{"tf":1.4142135623730951},"379":{"tf":2.0},"387":{"tf":1.4142135623730951},"397":{"tf":1.0},"408":{"tf":1.4142135623730951},"418":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"466":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"482":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"498":{"tf":1.0},"509":{"tf":1.0},"514":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"529":{"tf":1.0},"533":{"tf":1.4142135623730951},"537":{"tf":1.4142135623730951},"540":{"tf":1.0},"545":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"572":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"596":{"tf":1.0},"602":{"tf":1.4142135623730951},"607":{"tf":1.0},"613":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"626":{"tf":1.7320508075688772},"630":{"tf":1.0},"636":{"tf":1.4142135623730951},"644":{"tf":2.23606797749979},"645":{"tf":2.449489742783178},"67":{"tf":2.23606797749979},"677":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"72":{"tf":1.4142135623730951},"721":{"tf":1.0},"727":{"tf":1.7320508075688772},"73":{"tf":1.0},"730":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"740":{"tf":1.0},"772":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.7320508075688772},"804":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.7320508075688772},"818":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"834":{"tf":1.7320508075688772},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772},"913":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":2.0},"92":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.4142135623730951},"932":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"954":{"tf":1.0},"956":{"tf":2.449489742783178},"958":{"tf":1.4142135623730951},"961":{"tf":1.0},"99":{"tf":1.7320508075688772}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":5,"docs":{"134":{"tf":1.0},"184":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"264":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"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":{},"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":{"553":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":5,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"136":{"tf":1.0}}},"df":2,"docs":{"531":{"tf":1.0},"692":{"tf":1.0}},"i":{"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":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"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":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"151":{"tf":1.0},"316":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"324":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"6":{"4":{"df":2,"docs":{"461":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"933":{"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":{"d":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"184":{"tf":1.0},"239":{"tf":1.0},"791":{"tf":1.0},"917":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"844":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"127":{"tf":1.0},"807":{"tf":1.0},"929":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"310":{"tf":1.0},"697":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"796":{"tf":1.0},"815":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"376":{"tf":1.0},"414":{"tf":2.449489742783178},"418":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"679":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.0}},"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":1,"docs":{"679":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"865":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"904":{"tf":1.0},"923":{"tf":1.0},"946":{"tf":1.0}}}}},"r":{"df":21,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"963":{"tf":1.0},"965":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"252":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"456":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"117":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"173":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"543":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"677":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"376":{"tf":2.0},"422":{"tf":1.0},"433":{"tf":1.0},"443":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"719":{"tf":1.0},"728":{"tf":1.0},"733":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"748":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"768":{"tf":1.0},"772":{"tf":1.0},"958":{"tf":1.0}}}},"i":{"df":1,"docs":{"234":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"310":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"812":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"342":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"862":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":13,"docs":{"104":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"160":{"tf":1.0},"376":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"697":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"t":{"df":37,"docs":{"107":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"143":{"tf":1.0},"318":{"tf":2.449489742783178},"460":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":2.23606797749979},"483":{"tf":1.0},"487":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":2.0},"522":{"tf":1.0},"554":{"tf":1.0},"557":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":1.4142135623730951},"734":{"tf":1.0},"818":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.0},"86":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"958":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"751":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"376":{"tf":1.0},"572":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":13,"docs":{"132":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"674":{"tf":1.0},"791":{"tf":1.0},"839":{"tf":1.0},"923":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"377":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"224":{"tf":1.0},"289":{"tf":1.4142135623730951},"330":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"680":{"tf":1.0},"710":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"907":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"137":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"929":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"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":{"732":{"tf":1.0},"858":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}}}}},"l":{"df":2,"docs":{"960":{"tf":1.0},"968":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"714":{"tf":1.0},"889":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"173":{"tf":1.0},"752":{"tf":1.0}}}},"t":{"df":2,"docs":{"673":{"tf":1.4142135623730951},"686":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"339":{"tf":1.0},"50":{"tf":1.0},"721":{"tf":1.0},"731":{"tf":1.0},"79":{"tf":1.0},"795":{"tf":1.0},"953":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"265":{"tf":1.0},"266":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":76,"docs":{"108":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"289":{"tf":1.0},"32":{"tf":1.0},"626":{"tf":1.0},"719":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"727":{"tf":1.0},"728":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.7320508075688772},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.4142135623730951},"783":{"tf":1.0},"786":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.4142135623730951},"862":{"tf":1.0},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"897":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.4142135623730951},"912":{"tf":2.0},"914":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":42,"docs":{"11":{"tf":1.0},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"184":{"tf":2.0},"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"35":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"747":{"tf":1.0},"757":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"848":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"904":{"tf":1.0},"929":{"tf":1.4142135623730951},"939":{"tf":1.0},"969":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":26,"docs":{"127":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"730":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.4142135623730951},"808":{"tf":1.0},"815":{"tf":1.0},"842":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"872":{"tf":1.0},"880":{"tf":1.0},"883":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"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":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":74,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"135":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"315":{"tf":2.6457513110645907},"316":{"tf":1.7320508075688772},"317":{"tf":3.3166247903554},"318":{"tf":2.0},"320":{"tf":1.7320508075688772},"321":{"tf":2.23606797749979},"322":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"339":{"tf":1.0},"342":{"tf":1.0},"471":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"649":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"710":{"tf":1.4142135623730951},"715":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.7320508075688772},"741":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"766":{"tf":1.0},"786":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"807":{"tf":1.0},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.7320508075688772},"834":{"tf":1.7320508075688772},"836":{"tf":1.0},"838":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"854":{"tf":2.6457513110645907},"859":{"tf":1.7320508075688772},"860":{"tf":1.0},"861":{"tf":1.7320508075688772},"875":{"tf":1.0},"880":{"tf":1.0},"895":{"tf":1.4142135623730951},"913":{"tf":1.0},"919":{"tf":2.23606797749979},"921":{"tf":1.7320508075688772},"922":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":2.449489742783178},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"947":{"tf":1.0},"956":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"917":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"338":{"tf":1.0},"923":{"tf":1.7320508075688772}}},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"715":{"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":{"317":{"tf":1.0},"922":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"317":{"tf":1.0},"922":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"693":{"tf":1.0},"701":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"324":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":1,"docs":{"324":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"217":{"tf":1.0},"254":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"710":{"tf":1.0},"929":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"541":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"540":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":{"912":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{".":{"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"254":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"190":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":30,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"223":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":3.1622776601683795},"232":{"tf":3.872983346207417},"233":{"tf":3.0},"288":{"tf":1.0},"289":{"tf":2.0},"297":{"tf":1.0},"376":{"tf":1.4142135623730951},"537":{"tf":2.0},"538":{"tf":1.4142135623730951},"540":{"tf":2.0},"541":{"tf":2.6457513110645907},"543":{"tf":1.4142135623730951},"545":{"tf":1.7320508075688772},"546":{"tf":1.4142135623730951},"548":{"tf":1.0},"761":{"tf":1.7320508075688772},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"837":{"tf":1.0},"864":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.7320508075688772},"932":{"tf":1.0},"946":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"786":{"tf":1.0}}}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":13,"docs":{"135":{"tf":1.0},"289":{"tf":1.0},"346":{"tf":1.0},"371":{"tf":1.0},"4":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"678":{"tf":1.0},"699":{"tf":1.0},"707":{"tf":1.0},"770":{"tf":1.0},"878":{"tf":1.0},"941":{"tf":1.0}}}},"df":397,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"136":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"203":{"tf":2.6457513110645907},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"221":{"tf":1.4142135623730951},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"224":{"tf":3.1622776601683795},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":3.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":2.0},"26":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":2.449489742783178},"289":{"tf":3.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"299":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"31":{"tf":1.7320508075688772},"315":{"tf":3.0},"316":{"tf":3.0},"318":{"tf":3.0},"32":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"338":{"tf":2.0},"34":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.4142135623730951},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":3.7416573867739413},"377":{"tf":2.23606797749979},"38":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":2.0},"4":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"419":{"tf":2.0},"423":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":2.0},"443":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"456":{"tf":3.0},"457":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":2.23606797749979},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.4142135623730951},"47":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"484":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.4142135623730951},"499":{"tf":2.0},"5":{"tf":2.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"515":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"52":{"tf":1.7320508075688772},"520":{"tf":1.4142135623730951},"522":{"tf":2.0},"526":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"538":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"566":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":2.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"598":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.4142135623730951},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":2.0},"618":{"tf":1.7320508075688772},"619":{"tf":1.4142135623730951},"621":{"tf":2.6457513110645907},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.4142135623730951},"644":{"tf":1.0},"649":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.4142135623730951},"657":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.7320508075688772},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":2.449489742783178},"673":{"tf":2.6457513110645907},"674":{"tf":2.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.4142135623730951},"68":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"684":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"690":{"tf":1.4142135623730951},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"697":{"tf":1.0},"70":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.0},"721":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"74":{"tf":1.4142135623730951},"742":{"tf":1.0},"75":{"tf":2.0},"752":{"tf":1.4142135623730951},"754":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"763":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":2.0},"773":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"786":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.4142135623730951},"796":{"tf":1.0},"80":{"tf":1.7320508075688772},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":2.0},"804":{"tf":1.0},"807":{"tf":2.0},"809":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"82":{"tf":1.7320508075688772},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"834":{"tf":2.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"86":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":1.0},"89":{"tf":1.7320508075688772},"898":{"tf":1.0},"9":{"tf":2.23606797749979},"908":{"tf":1.0},"909":{"tf":1.7320508075688772},"91":{"tf":1.0},"916":{"tf":2.0},"919":{"tf":1.0},"92":{"tf":1.0},"920":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"942":{"tf":1.0},"95":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":2.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":3.605551275463989},"97":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":6,"docs":{"289":{"tf":1.7320508075688772},"697":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}},".":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.7320508075688772}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"529":{"tf":1.4142135623730951}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{".":{"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":{"d":{"(":{")":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{".":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"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":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"532":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"531":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{")":{"[":{"0":{"]":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":84,"docs":{"100":{"tf":3.0},"117":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":2.23606797749979},"151":{"tf":2.0},"160":{"tf":1.7320508075688772},"169":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"233":{"tf":1.0},"242":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":2.449489742783178},"276":{"tf":1.0},"289":{"tf":2.6457513110645907},"3":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":2.449489742783178},"316":{"tf":2.0},"317":{"tf":1.4142135623730951},"320":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"423":{"tf":1.0},"443":{"tf":1.0},"46":{"tf":1.0},"469":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"538":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"63":{"tf":1.0},"637":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0},"694":{"tf":1.0},"70":{"tf":1.0},"710":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":1.7320508075688772},"775":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":3.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"858":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.4142135623730951},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"289":{"tf":1.0},"964":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"663":{"tf":1.0},"673":{"tf":1.0},"682":{"tf":1.0},"697":{"tf":1.0},"74":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}},"df":2,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":11,"docs":{"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.0},"288":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":10,"docs":{"170":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"791":{"tf":1.0},"802":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"234":{"tf":1.0},"51":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":17,"docs":{"132":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"376":{"tf":1.4142135623730951},"526":{"tf":1.4142135623730951},"528":{"tf":3.1622776601683795},"529":{"tf":3.605551275463989},"531":{"tf":2.449489742783178},"532":{"tf":1.0},"533":{"tf":1.0},"762":{"tf":1.0},"78":{"tf":1.0},"817":{"tf":1.7320508075688772},"852":{"tf":1.0},"869":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"0":{".":{"1":{"df":6,"docs":{"882":{"tf":1.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"956":{"tf":1.0}}},"1":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"942":{"tf":1.0}}},"1":{"df":1,"docs":{"941":{"tf":1.0}}},"2":{"df":1,"docs":{"940":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"938":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"136":{"tf":1.0},"937":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"936":{"tf":1.0}}},"1":{"df":1,"docs":{"935":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"931":{"tf":1.0}}},"1":{"df":1,"docs":{"930":{"tf":1.0}}},"2":{"df":1,"docs":{"754":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":2,"docs":{"929":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"954":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"927":{"tf":1.0}}},"1":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"920":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"919":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"918":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"953":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"917":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"950":{"tf":1.0}}},"1":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"947":{"tf":1.0}}},"1":{"df":1,"docs":{"946":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"945":{"tf":1.0}}},"1":{"df":1,"docs":{"944":{"tf":1.0}}},"2":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"2":{"df":1,"docs":{"858":{"tf":1.0}}},"4":{"df":1,"docs":{"857":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"df":1,"docs":{"838":{"tf":1.0}}},"3":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"910":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"3":{"df":1,"docs":{"903":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"950":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{".":{"3":{".":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{".":{"0":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"880":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.0}}},"1":{"df":1,"docs":{"908":{"tf":1.0}}},"2":{"df":2,"docs":{"565":{"tf":1.0},"907":{"tf":1.0}}},"3":{"df":1,"docs":{"906":{"tf":1.0}}},"4":{"df":1,"docs":{"905":{"tf":1.0}}},"5":{"df":1,"docs":{"904":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"878":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"877":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"875":{"tf":1.0}}},"1":{"df":1,"docs":{"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"871":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"870":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"869":{"tf":1.0}}},"1":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"866":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"863":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"861":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"857":{"tf":1.0}}},"1":{"df":1,"docs":{"856":{"tf":1.0}}},"2":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":3,"docs":{"901":{"tf":1.4142135623730951},"902":{"tf":1.0},"903":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"854":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"853":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"852":{"tf":1.0}}},"1":{"df":1,"docs":{"851":{"tf":1.0}}},"2":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"834":{"tf":1.0},"849":{"tf":1.0}}},"1":{"df":1,"docs":{"848":{"tf":1.0}}},"2":{"df":1,"docs":{"847":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"846":{"tf":1.0}}},"1":{"df":1,"docs":{"845":{"tf":1.0}}},"2":{"df":1,"docs":{"844":{"tf":1.0}}},"3":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"841":{"tf":1.0}}},"1":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"839":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"837":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"836":{"tf":1.0}}},"1":{"df":1,"docs":{"835":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"833":{"tf":1.0}}},"1":{"df":1,"docs":{"832":{"tf":1.0}}},"2":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"830":{"tf":1.0}}},"1":{"df":1,"docs":{"829":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"828":{"tf":1.0}}},"1":{"df":1,"docs":{"827":{"tf":1.0}}},"2":{"df":2,"docs":{"825":{"tf":1.0},"826":{"tf":1.0}}},"3":{"df":1,"docs":{"825":{"tf":1.0}}},"4":{"df":1,"docs":{"824":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"822":{"tf":1.0},"823":{"tf":1.0}}},"1":{"df":2,"docs":{"821":{"tf":1.0},"822":{"tf":1.0}}},"2":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":2,"docs":{"810":{"tf":1.0},"811":{"tf":1.0}}},"1":{"df":1,"docs":{"810":{"tf":1.0}}},"2":{"df":1,"docs":{"809":{"tf":1.0}}},"3":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"819":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"818":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"816":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"814":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"813":{"tf":1.0}}},"1":{"df":1,"docs":{"812":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"1":{"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":2,"docs":{"380":{"tf":1.0},"802":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"1":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"752":{"tf":1.0}}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"799":{"tf":1.0}}},"1":{"df":1,"docs":{"798":{"tf":1.0}}},"2":{"df":1,"docs":{"797":{"tf":1.0}}},"3":{"df":1,"docs":{"796":{"tf":1.0}}},"4":{"df":1,"docs":{"795":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"1":{"df":2,"docs":{"824":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"792":{"tf":1.0}}},"1":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"788":{"tf":1.0}}},"1":{"df":1,"docs":{"787":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.0}}},"1":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"783":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"782":{"tf":1.0}}},"1":{"df":1,"docs":{"781":{"tf":1.0}}},"2":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"779":{"tf":1.0}}},"1":{"df":1,"docs":{"778":{"tf":1.0}}},"2":{"df":1,"docs":{"777":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":2,"docs":{"136":{"tf":1.0},"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"775":{"tf":1.0}}},"1":{"df":1,"docs":{"774":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"528":{"tf":1.0}}},"5":{".":{"0":{".":{"0":{"df":2,"docs":{"893":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"1":{"df":1,"docs":{"892":{"tf":1.0}}},"2":{"df":1,"docs":{"891":{"tf":1.0}}},"3":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":3,"docs":{"764":{"tf":1.0},"767":{"tf":1.0},"772":{"tf":1.0}}},"1":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"770":{"tf":1.0}}},"1":{"df":1,"docs":{"769":{"tf":1.0}}},"2":{"df":1,"docs":{"768":{"tf":1.0}}},"3":{"df":1,"docs":{"767":{"tf":1.0}}},"4":{"df":1,"docs":{"766":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":3,"docs":{"764":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0}}},"1":{"df":1,"docs":{"764":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"756":{"tf":1.0}}},"1":{"df":2,"docs":{"753":{"tf":1.0},"755":{"tf":1.0}}},"2":{"df":1,"docs":{"754":{"tf":1.0}}},"3":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"716":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"1":{"df":1,"docs":{"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"750":{"tf":1.0}}},"1":{"df":1,"docs":{"749":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"748":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"746":{"tf":1.0},"747":{"tf":1.0}}},"1":{"df":1,"docs":{"746":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"745":{"tf":1.0}}},"1":{"df":1,"docs":{"744":{"tf":1.0}}},"2":{"df":1,"docs":{"743":{"tf":1.0}}},"3":{"df":1,"docs":{"742":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"735":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"729":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"772":{"tf":1.0}}},"1":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"756":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"727":{"tf":1.0}}},"1":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"725":{"tf":1.0}}},"1":{"df":1,"docs":{"724":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"722":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":2,"docs":{"425":{"tf":1.0},"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"718":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{".":{"0":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"735":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"731":{"tf":1.0}}},"8":{"df":1,"docs":{"721":{"tf":1.0}}},"9":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"347":{"tf":1.4142135623730951},"360":{"tf":1.0},"367":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.0},"507":{"tf":1.4142135623730951},"565":{"tf":2.0},"577":{"tf":1.4142135623730951},"642":{"tf":1.0},"651":{"tf":1.0},"803":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":2.8284271247461903}}}}}}}}},"df":32,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"144":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"618":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":3.872983346207417},"698":{"tf":1.0},"772":{"tf":1.0},"802":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"913":{"tf":1.4142135623730951},"915":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":176,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"202":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"298":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.7320508075688772},"352":{"tf":1.0},"357":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":2.23606797749979},"373":{"tf":1.0},"376":{"tf":3.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"393":{"tf":1.4142135623730951},"395":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"401":{"tf":2.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.7320508075688772},"406":{"tf":1.7320508075688772},"412":{"tf":1.7320508075688772},"414":{"tf":1.7320508075688772},"416":{"tf":3.0},"419":{"tf":1.4142135623730951},"422":{"tf":1.0},"425":{"tf":3.7416573867739413},"427":{"tf":3.3166247903554},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":3.0},"440":{"tf":1.4142135623730951},"443":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.0},"457":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.4142135623730951},"471":{"tf":2.0},"476":{"tf":2.23606797749979},"480":{"tf":3.872983346207417},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":2.23606797749979},"497":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":4.0},"508":{"tf":2.0},"510":{"tf":1.4142135623730951},"514":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"522":{"tf":2.0},"526":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":2.23606797749979},"531":{"tf":3.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"543":{"tf":1.7320508075688772},"549":{"tf":1.0},"551":{"tf":1.7320508075688772},"553":{"tf":2.449489742783178},"554":{"tf":1.4142135623730951},"557":{"tf":1.0},"560":{"tf":1.7320508075688772},"563":{"tf":1.7320508075688772},"565":{"tf":2.0},"568":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"572":{"tf":1.0},"575":{"tf":1.7320508075688772},"577":{"tf":3.1622776601683795},"578":{"tf":2.0},"580":{"tf":1.7320508075688772},"583":{"tf":1.0},"588":{"tf":1.7320508075688772},"589":{"tf":1.0},"591":{"tf":2.0},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.7320508075688772},"600":{"tf":2.8284271247461903},"601":{"tf":2.0},"606":{"tf":1.0},"609":{"tf":1.7320508075688772},"611":{"tf":2.0},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.7320508075688772},"623":{"tf":1.7320508075688772},"632":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"642":{"tf":1.7320508075688772},"644":{"tf":1.0},"652":{"tf":1.4142135623730951},"664":{"tf":1.0},"677":{"tf":1.0},"684":{"tf":1.0},"73":{"tf":2.449489742783178},"756":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":3.4641016151377544},"791":{"tf":1.0},"799":{"tf":1.0},"80":{"tf":1.0},"801":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"82":{"tf":1.0},"830":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"857":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.4142135623730951},"88":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"914":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.0},"94":{"tf":2.449489742783178},"952":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"553":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":6,"docs":{"324":{"tf":1.0},"347":{"tf":2.0},"473":{"tf":1.0},"565":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"203":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"229":{"tf":1.7320508075688772},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"348":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":2.0},"402":{"tf":1.0},"619":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":2.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.0},"841":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"665":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"665":{"tf":1.0}}}}},"df":2,"docs":{"315":{"tf":1.0},"318":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"655":{"tf":1.0},"658":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"184":{"tf":1.0},"234":{"tf":1.0},"246":{"tf":1.0},"704":{"tf":1.0},"924":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"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":{"448":{"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":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"690":{"tf":1.0},"921":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"739":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"117":{"tf":1.0},"173":{"tf":1.0},"674":{"tf":1.0},"693":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"652":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"5":{"df":1,"docs":{"44":{"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":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":103,"docs":{"11":{"tf":2.6457513110645907},"117":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"173":{"tf":1.7320508075688772},"175":{"tf":2.0},"224":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":2.6457513110645907},"289":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":2.23606797749979},"44":{"tf":2.0},"456":{"tf":1.0},"48":{"tf":1.7320508075688772},"484":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"529":{"tf":1.0},"561":{"tf":1.0},"63":{"tf":1.0},"669":{"tf":2.449489742783178},"673":{"tf":2.0},"685":{"tf":2.8284271247461903},"692":{"tf":2.23606797749979},"721":{"tf":1.0},"727":{"tf":1.0},"731":{"tf":1.4142135623730951},"735":{"tf":1.0},"739":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":2.23606797749979},"763":{"tf":1.7320508075688772},"768":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"78":{"tf":1.0},"783":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"843":{"tf":1.0},"848":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":2.23606797749979},"862":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"897":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":1.0},"915":{"tf":1.7320508075688772},"916":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"936":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"a":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}}},"df":13,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"354":{"tf":1.0},"656":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"742":{"tf":1.0},"837":{"tf":1.0},"906":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"1":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"136":{"tf":1.0},"218":{"tf":2.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.7320508075688772},"569":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"890":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"563":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"566":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"566":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"566":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"566":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"565":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"690":{"tf":1.0},"691":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"19":{"tf":1.7320508075688772},"689":{"tf":1.0},"690":{"tf":1.7320508075688772},"691":{"tf":1.4142135623730951},"692":{"tf":1.0},"915":{"tf":1.4142135623730951},"939":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":4,"docs":{"670":{"tf":1.7320508075688772},"672":{"tf":1.4142135623730951},"673":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"41":{"tf":1.0},"968":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}},"d":{"df":9,"docs":{"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"n":{"df":1,"docs":{"738":{"tf":1.0}}}},"s":{"df":1,"docs":{"272":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"744":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"127":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"652":{"tf":1.0},"715":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"801":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"861":{"tf":1.0},"958":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"867":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"203":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"880":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"246":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0}}}}}}}}}},"l":{"df":4,"docs":{"315":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"894":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"834":{"tf":1.0},"915":{"tf":1.0},"94":{"tf":1.4142135623730951},"958":{"tf":1.0},"96":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"315":{"tf":1.0},"328":{"tf":1.0},"356":{"tf":1.0},"830":{"tf":1.7320508075688772},"858":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"969":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"958":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"861":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"50":{"tf":1.0},"669":{"tf":1.4142135623730951},"674":{"tf":1.0},"677":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"776":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"924":{"tf":1.0},"948":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"545":{"tf":1.0},"632":{"tf":1.0},"636":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"df":23,"docs":{"0":{"tf":1.0},"218":{"tf":1.0},"233":{"tf":1.7320508075688772},"243":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"894":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"909":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.7320508075688772},"952":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"342":{"tf":1.0},"912":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"241":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":10,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"218":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"712":{"tf":1.4142135623730951},"9":{"tf":1.0},"957":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"131":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"31":{"tf":1.0},"379":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"679":{"tf":1.0},"786":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"5":{"tf":1.0},"957":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"19":{"tf":1.4142135623730951},"673":{"tf":2.0},"751":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.4142135623730951},"815":{"tf":1.0},"820":{"tf":1.4142135623730951},"831":{"tf":1.0},"832":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"867":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"195":{"tf":1.0},"82":{"tf":1.0},"960":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"110":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"89":{"tf":1.0},"968":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.0},"387":{"tf":1.0},"801":{"tf":1.0},"862":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"233":{"tf":1.0},"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"190":{"tf":1.0},"258":{"tf":1.0},"371":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"79":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"655":{"tf":1.0},"658":{"tf":1.0},"715":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"376":{"tf":1.0},"595":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"289":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"n":{"d":{"df":1,"docs":{"342":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"890":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"241":{"tf":1.4142135623730951},"905":{"tf":1.4142135623730951},"906":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":2.0},"19":{"tf":1.0},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"272":{"tf":1.0},"289":{"tf":1.0},"673":{"tf":1.0},"690":{"tf":1.4142135623730951},"711":{"tf":2.23606797749979},"749":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"804":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"867":{"tf":1.0},"886":{"tf":1.0},"904":{"tf":1.0},"910":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.0},"929":{"tf":1.4142135623730951},"958":{"tf":1.0}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"129":{"tf":1.0},"132":{"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":{}},"s":{"df":0,"docs":{},"h":{"df":30,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"315":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":26,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"117":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"330":{"tf":1.0},"379":{"tf":1.0},"454":{"tf":1.0},"677":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"853":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"118":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"289":{"tf":1.0},"342":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"618":{"tf":1.0},"693":{"tf":1.0},"698":{"tf":1.0},"730":{"tf":1.0},"751":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"915":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"803":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"105":{"tf":1.0},"294":{"tf":1.4142135623730951},"697":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"927":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":47,"docs":{"100":{"tf":1.0},"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"19":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":3.0},"224":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":2.0},"673":{"tf":1.4142135623730951},"680":{"tf":1.0},"70":{"tf":1.0},"712":{"tf":1.0},"725":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"79":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"834":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"86":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.0},"91":{"tf":1.0},"929":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"22":{"tf":2.0},"834":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"113":{"tf":1.0},"118":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"958":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"736":{"tf":1.0},"867":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"d":{"!":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"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":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"710":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":1.0},"652":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.0},"653":{"tf":1.0},"665":{"tf":1.0},"761":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"127":{"tf":1.0},"315":{"tf":1.0},"340":{"tf":1.0},"694":{"tf":1.4142135623730951},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"753":{"tf":1.0},"79":{"tf":1.0},"809":{"tf":1.0},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"570":{"tf":1.0},"968":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"877":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"782":{"tf":1.0}}}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"19":{"tf":1.7320508075688772},"751":{"tf":1.0},"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"132":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"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":{"798":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":18,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"657":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"786":{"tf":1.0},"833":{"tf":1.0},"855":{"tf":1.4142135623730951},"858":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"652":{"tf":1.0}}}}}}}}}},"0":{"df":17,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"416":{"tf":1.0},"642":{"tf":1.0}}},"2":{"df":3,"docs":{"480":{"tf":1.0},"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"333":{"tf":1.0},"334":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":17,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"136":{"tf":2.0},"205":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":2.0},"484":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"701":{"tf":1.0},"775":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"916":{"tf":1.4142135623730951},"936":{"tf":1.0}},"l":{"df":1,"docs":{"132":{"tf":1.0}}},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"701":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":39,"docs":{"108":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"138":{"tf":1.4142135623730951},"20":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"387":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.4142135623730951},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"678":{"tf":1.4142135623730951},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":2.0},"857":{"tf":1.0}}}}}}}}},"df":1,"docs":{"701":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"795":{"tf":1.0},"830":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":3,"docs":{"226":{"tf":1.0},"422":{"tf":1.0},"537":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"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":{},"p":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"402":{"tf":1.0},"493":{"tf":1.0},"619":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"z":{"0":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"a":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"2":{"6":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"6":{".":{"0":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"808":{"tf":1.0}}},"8":{".":{"3":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"768":{"tf":1.0}}},"6":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{".":{"0":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"748":{"tf":1.0}}},"4":{".":{"1":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"2":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{".":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}},"0":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":54,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.4142135623730951},"482":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"664":{"tf":1.0},"677":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"746":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"896":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"958":{"tf":2.8284271247461903}}},"2":{"df":19,"docs":{"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"863":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"958":{"tf":3.0}}},"3":{"df":33,"docs":{"158":{"tf":1.7320508075688772},"164":{"tf":1.0},"171":{"tf":1.7320508075688772},"288":{"tf":1.0},"554":{"tf":2.449489742783178},"728":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"743":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"746":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"958":{"tf":2.6457513110645907}},"t":{"1":{"7":{":":{"3":{"0":{":":{"0":{"0":{"df":2,"docs":{"664":{"tf":1.0},"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":{}},"df":0,"docs":{}}},"4":{":":{"0":{"0":{"df":11,"docs":{"158":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"175":{"tf":2.6457513110645907},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"727":{"tf":1.4142135623730951},"740":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"798":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"947":{"tf":1.4142135623730951},"958":{"tf":2.23606797749979}}},"5":{":":{"0":{"0":{"df":2,"docs":{"183":{"tf":1.0},"554":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"716":{"tf":1.4142135623730951},"722":{"tf":1.4142135623730951},"723":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"858":{"tf":2.0},"871":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"958":{"tf":2.449489742783178}}},"6":{"df":30,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"720":{"tf":1.4142135623730951},"725":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"798":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"847":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"87":{"tf":1.0},"898":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"958":{"tf":2.8284271247461903}},"t":{"0":{"9":{":":{"5":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"3":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"717":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"958":{"tf":2.449489742783178}}},"8":{"df":22,"docs":{"719":{"tf":1.4142135623730951},"720":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":2.0},"766":{"tf":1.4142135623730951},"768":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"958":{"tf":2.23606797749979}}},"9":{"df":31,"docs":{"718":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"826":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"832":{"tf":2.0},"860":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"958":{"tf":2.6457513110645907}}},"df":64,"docs":{"108":{"tf":1.4142135623730951},"127":{"tf":1.0},"138":{"tf":1.4142135623730951},"142":{"tf":2.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"271":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"386":{"tf":2.0},"396":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":2.23606797749979},"412":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":2.23606797749979},"428":{"tf":2.23606797749979},"438":{"tf":2.23606797749979},"449":{"tf":2.0},"464":{"tf":2.8284271247461903},"465":{"tf":1.7320508075688772},"468":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.0},"508":{"tf":2.23606797749979},"520":{"tf":1.0},"532":{"tf":2.23606797749979},"544":{"tf":2.8284271247461903},"551":{"tf":2.449489742783178},"553":{"tf":2.449489742783178},"555":{"tf":2.0},"560":{"tf":1.0},"566":{"tf":2.23606797749979},"575":{"tf":1.0},"578":{"tf":2.0},"589":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":2.0},"609":{"tf":1.0},"612":{"tf":1.4142135623730951},"618":{"tf":1.0},"624":{"tf":2.23606797749979},"635":{"tf":2.23606797749979},"643":{"tf":1.4142135623730951},"664":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"716":{"tf":1.0},"728":{"tf":1.0},"734":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"1":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},",":{"0":{"2":{"4":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{",":{"5":{"7":{"6":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{",":{"7":{"4":{"1":{",":{"8":{"2":{"4":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"0":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"3":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"1":{"1":{".":{"0":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"3":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"2":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"5":{"df":1,"docs":{"830":{"tf":1.0}}},"6":{"df":3,"docs":{"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"1":{"0":{"df":2,"docs":{"824":{"tf":1.0},"827":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{".":{"0":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"792":{"tf":1.0}}},"8":{".":{"2":{"1":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"2":{"3":{"df":1,"docs":{"727":{"tf":1.0}}},"4":{"df":1,"docs":{"721":{"tf":1.0}}},"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"8":{".":{"0":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":3,"docs":{"585":{"tf":2.449489742783178},"586":{"tf":2.449489742783178},"590":{"tf":1.0}}},"df":8,"docs":{"142":{"tf":1.7320508075688772},"171":{"tf":1.0},"315":{"tf":1.0},"551":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"774":{"tf":1.0}}},"1":{"df":1,"docs":{"142":{"tf":1.0}}},"2":{"df":1,"docs":{"846":{"tf":1.0}}},"4":{"df":1,"docs":{"846":{"tf":1.0}}},"6":{"df":1,"docs":{"918":{"tf":1.0}}},"df":15,"docs":{"328":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"524":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.4142135623730951},"616":{"tf":1.0},"738":{"tf":1.4142135623730951},"774":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"845":{"tf":1.0}}},"5":{"df":1,"docs":{"919":{"tf":1.0}}},"6":{"df":2,"docs":{"842":{"tf":1.0},"919":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"844":{"tf":1.0}}},"4":{"df":2,"docs":{"505":{"tf":2.8284271247461903},"507":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"842":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"3":{"1":{"df":1,"docs":{"842":{"tf":1.0}}},"9":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"842":{"tf":1.0}}},"3":{"df":1,"docs":{"842":{"tf":1.0}}},"5":{"df":1,"docs":{"917":{"tf":1.0}}},"6":{"df":2,"docs":{"838":{"tf":1.0},"916":{"tf":1.0}}},"8":{"5":{"7":{"6":{".":{"0":{"df":1,"docs":{"517":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"df":1,"docs":{"841":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"838":{"tf":1.0}}},"3":{"df":1,"docs":{"840":{"tf":1.0}}},"5":{"df":2,"docs":{"835":{"tf":1.0},"916":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"918":{"tf":1.0}}},"9":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"916":{"tf":1.0}}},"3":{"df":1,"docs":{"838":{"tf":1.0}}},"4":{"df":1,"docs":{"839":{"tf":1.0}}},"7":{"df":1,"docs":{"917":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"834":{"tf":1.0}}},"8":{"df":1,"docs":{"837":{"tf":1.0}}},"df":0,"docs":{}},":":{"1":{"0":{":":{"1":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"3":{"df":1,"docs":{"757":{"tf":1.0}}},"6":{"df":2,"docs":{"720":{"tf":1.0},"757":{"tf":1.0}}},"df":0,"docs":{}},"df":64,"docs":{"127":{"tf":1.0},"183":{"tf":2.23606797749979},"218":{"tf":1.0},"258":{"tf":1.0},"275":{"tf":1.4142135623730951},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"717":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"737":{"tf":1.0},"739":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951},"836":{"tf":1.0},"842":{"tf":1.4142135623730951},"852":{"tf":1.0},"880":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":2.0},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"904":{"tf":1.4142135623730951},"905":{"tf":2.0},"910":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"958":{"tf":2.8284271247461903}},"m":{"b":{"df":4,"docs":{"135":{"tf":1.0},"521":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}}},"1":{".":{"3":{"df":1,"docs":{"868":{"tf":1.0}}},"4":{".":{"0":{"df":1,"docs":{"861":{"tf":1.0}}},"1":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"855":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"834":{"tf":1.0},"837":{"tf":1.0}}},"8":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"834":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"834":{"tf":1.0}}},"4":{"df":1,"docs":{"834":{"tf":1.0}}},"6":{"df":1,"docs":{"834":{"tf":1.0}}},"9":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"1":{"df":1,"docs":{"834":{"tf":1.0}}},"2":{"df":2,"docs":{"833":{"tf":1.4142135623730951},"915":{"tf":1.0}}},"3":{"df":1,"docs":{"834":{"tf":1.0}}},"5":{"df":1,"docs":{"835":{"tf":1.0}}},"df":0,"docs":{}},"4":{"1":{"df":1,"docs":{"831":{"tf":1.0}}},"5":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"833":{"tf":1.0},"915":{"tf":1.0}}},"8":{"df":1,"docs":{"915":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"832":{"tf":1.0}}},"5":{"df":1,"docs":{"831":{"tf":1.0}}},"8":{"df":1,"docs":{"830":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"258":{"tf":1.0},"288":{"tf":1.0},"480":{"tf":1.0},"507":{"tf":1.0},"715":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"818":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"877":{"tf":2.0},"878":{"tf":2.0},"879":{"tf":2.0},"900":{"tf":1.4142135623730951},"901":{"tf":1.4142135623730951},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":3.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"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":{".":{"0":{".":{"0":{"df":2,"docs":{"833":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":1,"docs":{"831":{"tf":1.0}}},"5":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"7":{"df":2,"docs":{"830":{"tf":1.4142135623730951},"914":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"3":{"df":1,"docs":{"915":{"tf":1.0}}},"8":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"914":{"tf":1.4142135623730951}}},"4":{"/":{"a":{"df":2,"docs":{"132":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"829":{"tf":1.0}}},"df":1,"docs":{"950":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"820":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"164":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"780":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"958":{"tf":2.449489742783178}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"0":{"3":{"df":1,"docs":{"820":{"tf":1.0}}},"4":{"df":1,"docs":{"818":{"tf":1.0}}},"df":1,"docs":{"949":{"tf":1.0}}},"1":{"4":{"df":1,"docs":{"819":{"tf":1.0}}},"7":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"818":{"tf":1.0}}},"5":{"df":1,"docs":{"818":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}},"3":{"5":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"df":1,"docs":{"816":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"816":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"816":{"tf":1.0}}},"3":{"df":1,"docs":{"815":{"tf":1.0}}},"5":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"815":{"tf":1.0}}},"3":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"814":{"tf":1.0}}},"6":{"df":1,"docs":{"814":{"tf":1.0}}},"8":{"df":1,"docs":{"814":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"813":{"tf":1.0}}},"4":{"df":1,"docs":{"813":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"812":{"tf":1.0}}},"4":{"df":1,"docs":{"813":{"tf":1.0}}},"8":{"df":1,"docs":{"812":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":8,"docs":{"151":{"tf":1.0},"288":{"tf":1.0},"752":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"947":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0}}},"4":{".":{"0":{".":{"1":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"759":{"tf":1.0}}},"1":{".":{"2":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"738":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"3":{"df":1,"docs":{"811":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"913":{"tf":1.0}}},"6":{"df":1,"docs":{"811":{"tf":1.0}}},"7":{"df":1,"docs":{"811":{"tf":1.0}}},"8":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"810":{"tf":1.0}}},"8":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"809":{"tf":1.0}}},"2":{"df":1,"docs":{"809":{"tf":1.0}}},"4":{"df":1,"docs":{"808":{"tf":1.0}}},"8":{"df":1,"docs":{"807":{"tf":1.0}}},"df":1,"docs":{"948":{"tf":1.0}}},"4":{"1":{"df":1,"docs":{"807":{"tf":1.0}}},"2":{"df":1,"docs":{"807":{"tf":1.0}}},"9":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"2":{"df":2,"docs":{"807":{"tf":1.0},"912":{"tf":1.0}}},"4":{"df":1,"docs":{"807":{"tf":1.0}}},"5":{"df":1,"docs":{"807":{"tf":1.7320508075688772}}},"7":{"df":2,"docs":{"855":{"tf":1.0},"912":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"806":{"tf":1.0}}},"2":{"df":1,"docs":{"806":{"tf":1.0}}},"5":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"806":{"tf":1.0}}},"2":{"df":1,"docs":{"804":{"tf":1.0}}},"3":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"805":{"tf":1.0}}},"5":{"df":1,"docs":{"805":{"tf":1.0}}},"9":{"7":{"6":{"1":{"df":1,"docs":{"124":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"288":{"tf":1.0},"77":{"tf":1.0},"774":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"5":{".":{"1":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"7":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"805":{"tf":1.0}}},"2":{"9":{"3":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"912":{"tf":1.0}}},"4":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":2,"docs":{"804":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"6":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"3":{"4":{"df":1,"docs":{"804":{"tf":1.0}}},"8":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"782":{"tf":1.0}}},"3":{"6":{"1":{"2":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"911":{"tf":1.0}}},"6":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"947":{"tf":1.0}}},"6":{"0":{"df":1,"docs":{"803":{"tf":1.0}}},"1":{"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"802":{"tf":1.0}}},"8":{"3":{"8":{"3":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"802":{"tf":1.0}}},"6":{"7":{"6":{"4":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"6":{"0":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"4":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"1":{"9":{"1":{"2":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"802":{"tf":1.0}}},"5":{"df":1,"docs":{"793":{"tf":1.0}}},"6":{"df":1,"docs":{"802":{"tf":1.0}}},"7":{"7":{"6":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"0":{"df":1,"docs":{"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"5":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"135":{"tf":1.0},"315":{"tf":1.0},"733":{"tf":1.0},"743":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.0},"770":{"tf":1.4142135623730951},"780":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"836":{"tf":1.0},"902":{"tf":1.4142135623730951},"920":{"tf":1.0},"922":{"tf":1.4142135623730951},"929":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"6":{"0":{"1":{"5":{"5":{"0":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"799":{"tf":2.449489742783178}}},"4":{"8":{"5":{"4":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"801":{"tf":1.0}}},"5":{"0":{"9":{"7":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"8":{"2":{"df":2,"docs":{"127":{"tf":1.0},"866":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"4":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"6":{"8":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"801":{"tf":1.0}}},"4":{"7":{"8":{"5":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"801":{"tf":1.0}}},"6":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},"2":{"8":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"9":{"9":{"7":{"df":1,"docs":{"857":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"801":{"tf":1.0}}},"5":{"8":{"6":{"5":{"df":1,"docs":{"856":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"5":{"7":{"5":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"7":{"3":{"df":1,"docs":{"847":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"3":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"799":{"tf":1.0}}},"6":{"5":{"8":{"9":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"4":{"7":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"947":{"tf":1.0}}},"6":{"3":{"df":1,"docs":{"798":{"tf":1.0}}},"5":{"0":{"4":{"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"797":{"tf":1.0}}},"9":{"df":1,"docs":{"797":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"910":{"tf":1.0}}},"2":{"2":{"7":{"3":{"df":1,"docs":{"747":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"910":{"tf":1.0}}},"9":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"8":{"3":{"7":{"0":{"7":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"7":{"0":{"1":{"df":1,"docs":{"953":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{"3":{"6":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"909":{"tf":1.0}}},"7":{"df":1,"docs":{"795":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"732":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"901":{"tf":1.4142135623730951},"904":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"958":{"tf":2.0}}},"7":{"1":{"1":{"9":{"2":{"8":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"7":{"2":{"5":{"df":2,"docs":{"124":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"8":{"0":{"7":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"909":{"tf":1.0}}},"df":0,"docs":{}},"3":{"3":{"df":1,"docs":{"909":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"4":{"3":{"1":{"4":{"0":{"df":1,"docs":{"919":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"5":{"3":{"df":1,"docs":{"626":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"792":{"tf":1.0}}},"8":{"df":1,"docs":{"909":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"5":{"0":{"2":{"3":{"5":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"908":{"tf":1.0}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"5":{"df":1,"docs":{"907":{"tf":1.0}}},"6":{"df":1,"docs":{"792":{"tf":1.0}}},"9":{"df":1,"docs":{"792":{"tf":1.0}}},"df":3,"docs":{"498":{"tf":1.0},"521":{"tf":1.0},"590":{"tf":1.0}}},"6":{"2":{"8":{"5":{"9":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"4":{"9":{"df":1,"docs":{"774":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"907":{"tf":1.0}}},"7":{"0":{"3":{"7":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"907":{"tf":1.0}}},"9":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"906":{"tf":1.0}}},"2":{"1":{"5":{"6":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"905":{"tf":1.0}}},"4":{"df":1,"docs":{"791":{"tf":1.0}}},"5":{"4":{"2":{"0":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"790":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"0":{"3":{"7":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"789":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"786":{"tf":1.0}}},"4":{"df":1,"docs":{"905":{"tf":1.0}}},"7":{"2":{"3":{"4":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"904":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"786":{"tf":1.0}}},"3":{"df":1,"docs":{"788":{"tf":1.4142135623730951}}},"6":{"2":{"5":{"8":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"1":{"9":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"0":{"0":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"737":{"tf":1.0},"754":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"818":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"956":{"tf":1.7320508075688772},"958":{"tf":1.7320508075688772}}},"8":{"0":{"0":{"6":{"4":{"6":{"df":1,"docs":{"755":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"1":{"1":{"2":{"8":{"df":1,"docs":{"754":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"2":{"5":{"5":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"3":{"5":{"1":{"3":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"9":{"1":{"5":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":2,"docs":{"787":{"tf":1.0},"900":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"903":{"tf":1.0}}},"1":{"2":{"5":{"3":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"2":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"903":{"tf":1.0}}},"2":{"6":{"7":{"2":{"df":1,"docs":{"749":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"786":{"tf":1.0}}},"4":{"5":{"9":{"2":{"df":1,"docs":{"127":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"902":{"tf":1.0}}},"5":{"2":{"3":{"3":{"df":1,"docs":{"741":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"0":{"0":{"df":1,"docs":{"127":{"tf":1.0}}},"1":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"785":{"tf":1.0}}},"9":{"1":{"6":{"1":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"785":{"tf":1.0}}},"8":{"0":{"6":{"6":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"4":{"5":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"9":{"3":{"7":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"2":{"4":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"3":{"8":{"1":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"784":{"tf":1.0},"899":{"tf":1.0}}},"5":{"df":2,"docs":{"898":{"tf":1.0},"900":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"5":{"3":{"3":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"898":{"tf":1.0}}},"7":{"9":{"5":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"2":{"0":{"1":{"df":2,"docs":{"124":{"tf":1.0},"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}},"9":{"df":1,"docs":{"897":{"tf":1.0}}},"df":1,"docs":{"947":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"895":{"tf":1.0}}},"2":{"df":2,"docs":{"776":{"tf":1.0},"783":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"895":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"782":{"tf":1.0}}},"9":{"4":{"2":{"9":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"2":{"9":{"7":{"df":1,"docs":{"729":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"782":{"tf":1.0}}},"6":{"1":{"1":{"3":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"4":{"3":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":1,"docs":{"782":{"tf":1.0}}},"9":{"1":{"1":{"4":{"df":1,"docs":{"727":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"781":{"tf":1.0}}},"2":{"0":{"9":{"7":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"894":{"tf":1.0}}},"8":{"3":{"3":{"6":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":11,"docs":{"759":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}},"9":{"0":{"0":{"df":1,"docs":{"894":{"tf":1.0}}},"8":{"df":1,"docs":{"780":{"tf":1.0}}},"9":{"2":{"4":{"4":{"df":1,"docs":{"721":{"tf":1.0}}},"6":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"779":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"9":{"7":{"6":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}}},"3":{"df":2,"docs":{"779":{"tf":1.0},"892":{"tf":1.0}}},"5":{"3":{"4":{"6":{"df":1,"docs":{"716":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"8":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"8":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"947":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"777":{"tf":1.0},"778":{"tf":1.0}}},"5":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"891":{"tf":1.0}}},"3":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"890":{"tf":1.0}}},"1":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"947":{"tf":1.0}}},"df":12,"docs":{"258":{"tf":1.0},"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"751":{"tf":1.4142135623730951},"867":{"tf":1.0},"921":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}},">":{"&":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"100":{"tf":2.23606797749979},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"127":{"tf":4.0},"146":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"203":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":2.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"310":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"347":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"404":{"tf":2.6457513110645907},"414":{"tf":2.6457513110645907},"416":{"tf":1.4142135623730951},"465":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"517":{"tf":1.0},"524":{"tf":1.4142135623730951},"537":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":3.0},"624":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"728":{"tf":1.0},"773":{"tf":1.0},"79":{"tf":2.23606797749979},"907":{"tf":1.0},"958":{"tf":1.0}},"m":{"b":{"df":3,"docs":{"135":{"tf":1.0},"837":{"tf":1.0},"933":{"tf":1.0}}},"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"n":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"μ":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}}},"2":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"0":{".":{"2":{"df":1,"docs":{"561":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"3":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"877":{"tf":1.0}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"590":{"tf":1.0}}},"4":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":1,"docs":{"632":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"3":{"df":1,"docs":{"774":{"tf":1.0}}},"4":{"df":1,"docs":{"815":{"tf":1.0}}},"5":{"df":1,"docs":{"927":{"tf":1.0}}},"6":{"df":1,"docs":{"927":{"tf":1.0}}},"9":{"df":30,"docs":{"108":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"87":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"958":{"tf":3.0}}},"df":1,"docs":{"945":{"tf":1.0}}},"2":{"0":{"df":79,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"812":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"818":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"826":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"847":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"863":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"958":{"tf":5.196152422706632}}},"1":{"df":73,"docs":{"677":{"tf":1.0},"780":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"798":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"947":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"958":{"tf":4.795831523312719}}},"2":{"df":39,"docs":{"664":{"tf":1.0},"684":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"958":{"tf":2.23606797749979}}},"3":{"df":34,"docs":{"733":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"743":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"746":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"901":{"tf":1.4142135623730951},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"904":{"tf":1.4142135623730951},"905":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"4":{"df":27,"docs":{"258":{"tf":1.0},"715":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"722":{"tf":1.4142135623730951},"723":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"6":{"df":1,"docs":{"773":{"tf":1.0}}},"9":{"df":1,"docs":{"773":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"3":{"5":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"9":{"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"771":{"tf":1.0}}},"df":1,"docs":{"946":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"770":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"762":{"tf":1.0}}},"7":{"df":1,"docs":{"765":{"tf":1.0}}},"8":{"df":1,"docs":{"765":{"tf":1.0}}},"9":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"770":{"tf":1.0}}},"7":{"df":1,"docs":{"769":{"tf":1.0}}},"8":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"258":{"tf":1.0},"328":{"tf":1.4142135623730951},"738":{"tf":1.0},"740":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"956":{"tf":1.0}}},"1":{"1":{"4":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"2":{"3":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":4,"docs":{"763":{"tf":1.0},"764":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}},"6":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"4":{"3":{"df":1,"docs":{"763":{"tf":1.0}}},"5":{"df":1,"docs":{"763":{"tf":1.0}}},"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"404":{"tf":1.0},"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"945":{"tf":1.0}}},"5":{"0":{"df":1,"docs":{"762":{"tf":1.0}}},"3":{"df":1,"docs":{"762":{"tf":1.0}}},"5":{"df":1,"docs":{"762":{"tf":1.0}}},"9":{"df":1,"docs":{"762":{"tf":1.0}}},"df":1,"docs":{"945":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"762":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"8":{"2":{"df":1,"docs":{"762":{"tf":1.0}}},"8":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"761":{"tf":1.0}}},"5":{"df":1,"docs":{"761":{"tf":1.0}}},"6":{"df":1,"docs":{"759":{"tf":1.0}}},"9":{"df":1,"docs":{"761":{"tf":1.0}}},"df":1,"docs":{"944":{"tf":1.0}}},"df":7,"docs":{"258":{"tf":1.0},"719":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"760":{"tf":1.0}}},"df":1,"docs":{"943":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"760":{"tf":1.0}}},"9":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"759":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"747":{"tf":1.0}}},"5":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"757":{"tf":1.0}}},"6":{"df":1,"docs":{"756":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"738":{"tf":1.0}}},"4":{"df":1,"docs":{"756":{"tf":1.0}}},"5":{"df":1,"docs":{"756":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"755":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"7":{"0":{"df":1,"docs":{"754":{"tf":1.0}}},"1":{"df":1,"docs":{"752":{"tf":1.0}}},"2":{"df":1,"docs":{"752":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"753":{"tf":1.0}}},"8":{"df":1,"docs":{"753":{"tf":1.0}}},"df":1,"docs":{"942":{"tf":1.0}}},"9":{"4":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"727":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"3":{"0":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":1,"docs":{"880":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"750":{"tf":1.0}}},"3":{"df":1,"docs":{"750":{"tf":1.0}}},"7":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"df":1,"docs":{"751":{"tf":1.0}}},"8":{"df":1,"docs":{"748":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"df":1,"docs":{"751":{"tf":1.0}}},"5":{"df":1,"docs":{"735":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"6":{"5":{"df":1,"docs":{"747":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"747":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"553":{"tf":1.0},"574":{"tf":1.0},"721":{"tf":1.4142135623730951},"723":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"847":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"511":{"tf":1.0},"524":{"tf":1.0}}},"1":{"5":{"df":1,"docs":{"743":{"tf":1.0}}},"7":{"df":1,"docs":{"743":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"742":{"tf":1.0}}},"6":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"740":{"tf":1.0}}},"6":{"df":1,"docs":{"734":{"tf":1.0}}},"9":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"739":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"173":{"tf":1.0},"718":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"5":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{".":{"8":{"9":{"3":{"7":{"3":{"9":{"3":{"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":{}},"0":{"3":{"df":1,"docs":{"737":{"tf":1.0}}},"df":3,"docs":{"135":{"tf":1.0},"830":{"tf":1.0},"929":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"737":{"tf":1.0}}},"3":{"df":1,"docs":{"735":{"tf":1.0}}},"6":{"df":1,"docs":{"735":{"tf":1.0}}},"8":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"2":{"8":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"736":{"tf":1.0}}},"8":{"df":1,"docs":{"736":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"4":{"5":{"df":1,"docs":{"736":{"tf":1.0}}},"df":1,"docs":{"941":{"tf":1.0}}},"5":{"df":2,"docs":{"425":{"tf":1.0},"721":{"tf":1.0}}},"6":{"df":2,"docs":{"701":{"tf":1.0},"940":{"tf":1.0}}},"df":16,"docs":{"551":{"tf":2.0},"553":{"tf":1.7320508075688772},"554":{"tf":2.449489742783178},"669":{"tf":1.0},"753":{"tf":1.4142135623730951},"757":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"826":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":2.23606797749979}}},"6":{"0":{"df":1,"docs":{"939":{"tf":1.0}}},"1":{"4":{"df":1,"docs":{"735":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"6":{"9":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"7":{"8":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"8":{"1":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"9":{"7":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":15,"docs":{"258":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"863":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"7":{"0":{"9":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"1":{"9":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"731":{"tf":1.0}}},"7":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"df":1,"docs":{"731":{"tf":1.0}}},"7":{"df":1,"docs":{"727":{"tf":1.0}}},"df":1,"docs":{"939":{"tf":1.0}}},"4":{"5":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"728":{"tf":1.0}}},"7":{"df":1,"docs":{"729":{"tf":1.0}}},"df":0,"docs":{}},"7":{"6":{"df":1,"docs":{"728":{"tf":1.0}}},"7":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"727":{"tf":1.0}}},"2":{"df":1,"docs":{"727":{"tf":1.0}}},"6":{"df":1,"docs":{"727":{"tf":1.7320508075688772}}},"df":1,"docs":{"938":{"tf":1.0}}},"df":7,"docs":{"158":{"tf":1.0},"171":{"tf":1.0},"833":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"8":{"1":{"df":1,"docs":{"938":{"tf":1.0}}},"2":{"0":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"3":{"9":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":3,"docs":{"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0}}},"7":{"df":1,"docs":{"721":{"tf":1.0}}},"8":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"1":{"df":1,"docs":{"721":{"tf":1.0}}},"3":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"721":{"tf":1.0}}},"df":1,"docs":{"938":{"tf":1.0}}},"9":{"1":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"164":{"tf":1.0},"715":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}},"9":{"0":{"9":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"1":{"6":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"718":{"tf":1.0}}},"5":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"4":{"2":{"df":1,"docs":{"718":{"tf":1.0}}},"8":{"df":1,"docs":{"718":{"tf":1.0}}},"df":0,"docs":{}},"6":{"7":{"df":1,"docs":{"717":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":13,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"730":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"958":{"tf":1.0}},"t":{"0":{"9":{":":{"5":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"3":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"2":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},">":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"1":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":2,"docs":{"510":{"tf":1.0},"522":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":30,"docs":{"100":{"tf":2.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"146":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"259":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"289":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"642":{"tf":1.0},"747":{"tf":1.0},"79":{"tf":2.0},"814":{"tf":1.4142135623730951},"830":{"tf":1.0},"958":{"tf":1.0}}},"3":{".":{"1":{".":{"0":{"df":1,"docs":{"945":{"tf":1.0}}},"1":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"785":{"tf":1.0}}},"2":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"799":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"846":{"tf":1.0},"867":{"tf":1.0}}},"6":{".":{"0":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"735":{"tf":1.0},"858":{"tf":1.0}}},"7":{"df":5,"docs":{"40":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0}}},"8":{"df":4,"docs":{"15":{"tf":1.0},"30":{"tf":1.0},"673":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"1":{"df":1,"docs":{"142":{"tf":1.0}}},"6":{"df":1,"docs":{"715":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"df":1,"docs":{"938":{"tf":1.0}}},"5":{"df":1,"docs":{"258":{"tf":1.0}}},"df":14,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"22":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"733":{"tf":1.4142135623730951},"747":{"tf":1.0},"748":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"81":{"tf":1.0},"892":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"1":{".":{"5":{".":{"0":{"df":4,"docs":{"425":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"563":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":2,"docs":{"936":{"tf":1.0},"937":{"tf":1.0}}},"9":{"df":1,"docs":{"937":{"tf":1.0}}},"df":6,"docs":{"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0}}},"2":{"df":6,"docs":{"258":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"621":{"tf":1.0},"762":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"3":{".":{"0":{".":{"0":{"df":2,"docs":{"11":{"tf":1.0},"824":{"tf":1.0}}},"3":{"df":1,"docs":{"824":{"tf":1.0}}},"df":0,"docs":{},"z":{"df":1,"docs":{"824":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"756":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"2":{"df":1,"docs":{"935":{"tf":1.0}}},"3":{"df":1,"docs":{"935":{"tf":1.0}}},"6":{"df":1,"docs":{"933":{"tf":1.0}}},"df":2,"docs":{"731":{"tf":1.0},"735":{"tf":1.0}}},"5":{"8":{"df":1,"docs":{"884":{"tf":1.0}}},"9":{"df":1,"docs":{"884":{"tf":1.0}}},"d":{"a":{"b":{"8":{"5":{"2":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"884":{"tf":1.0}}},"5":{"df":1,"docs":{"883":{"tf":1.0}}},"df":2,"docs":{"258":{"tf":1.0},"956":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"882":{"tf":1.0}}},"5":{"df":1,"docs":{"934":{"tf":1.0}}},"8":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"882":{"tf":1.0}}},"2":{"df":1,"docs":{"882":{"tf":1.0}}},"9":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"881":{"tf":1.0}}},"4":{"df":1,"docs":{"881":{"tf":1.0}}},"9":{"df":2,"docs":{"880":{"tf":1.0},"933":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"169":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"416":{"tf":1.4142135623730951},"546":{"tf":1.0},"551":{"tf":2.23606797749979},"553":{"tf":2.0},"632":{"tf":1.0},"65":{"tf":1.0},"772":{"tf":1.0},"79":{"tf":1.7320508075688772},"915":{"tf":1.0}},"r":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"318":{"tf":1.0}}},"2":{".":{"2":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"df":1,"docs":{"783":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"3":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"880":{"tf":1.0}}},"1":{"df":1,"docs":{"879":{"tf":1.0}}},"7":{"df":1,"docs":{"880":{"tf":1.0}}},"9":{"6":{"df":8,"docs":{"377":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.0},"170":{"tf":1.0},"285":{"tf":1.0},"570":{"tf":1.0},"920":{"tf":1.0},"956":{"tf":1.0}},"x":{"df":1,"docs":{"258":{"tf":1.0}}}},"1":{"1":{"df":1,"docs":{"933":{"tf":1.0}}},"5":{"df":1,"docs":{"933":{"tf":1.0}}},"6":{"df":1,"docs":{"880":{"tf":1.0}}},"df":1,"docs":{"956":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"879":{"tf":1.0}}},"2":{"df":1,"docs":{"880":{"tf":1.0}}},"df":2,"docs":{"588":{"tf":1.0},"956":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"p":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}}},"3":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"1":{"df":1,"docs":{"933":{"tf":1.0}}},"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":1,"docs":{"553":{"tf":1.0}},"f":{"4":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{"df":1,"docs":{"933":{"tf":1.0}}},"6":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"9":{"5":{"df":1,"docs":{"872":{"tf":1.0}}},"7":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"127":{"tf":2.23606797749979},"867":{"tf":1.0}}}},"d":{"2":{"2":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.7320508075688772},"184":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.4142135623730951},"289":{"tf":1.0},"546":{"tf":1.0},"632":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.7320508075688772}},"k":{"b":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"869":{"tf":1.0}}}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"1":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":11,"docs":{"168":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"315":{"tf":1.0},"468":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"756":{"tf":1.0},"897":{"tf":1.0}}},"df":6,"docs":{"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"873":{"tf":1.0}}},"1":{".":{"8":{".":{"2":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"df":3,"docs":{"872":{"tf":1.0},"929":{"tf":1.7320508075688772},"932":{"tf":1.0}}},"8":{"df":1,"docs":{"872":{"tf":1.0}}},"9":{"df":1,"docs":{"932":{"tf":1.0}}},"df":1,"docs":{"158":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"871":{"tf":1.0}}},"4":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":2,"docs":{"404":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"871":{"tf":1.0},"931":{"tf":1.0}}},"5":{"df":1,"docs":{"871":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"930":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"929":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"870":{"tf":1.0}}},"df":0,"docs":{}},"df":15,"docs":{"100":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.4142135623730951},"353":{"tf":1.0},"370":{"tf":1.0},"404":{"tf":2.449489742783178},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"642":{"tf":1.0},"652":{"tf":1.4142135623730951},"79":{"tf":1.0},"833":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"6":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"834":{"tf":1.0}}}}},"6":{".":{"1":{".":{"2":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":2,"docs":{"824":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"1":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"801":{"tf":1.0}}},"9":{"4":{"df":3,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"929":{"tf":1.0}}},"df":5,"docs":{"135":{"tf":1.4142135623730951},"315":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"929":{"tf":1.0}}},"1":{"4":{"7":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"4":{"7":{"df":1,"docs":{"929":{"tf":1.0}}},"df":4,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"864":{"tf":1.0}}},"8":{"df":1,"docs":{"929":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"929":{"tf":1.0}}},"3":{"5":{"5":{"2":{"0":{"0":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"df":1,"docs":{"864":{"tf":1.0}}},"df":1,"docs":{"258":{"tf":1.0}}},"8":{"1":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{"df":1,"docs":{"929":{"tf":1.0}}},"5":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.4142135623730951},"379":{"tf":1.0},"406":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"956":{"tf":1.0}}},"7":{".":{"0":{".":{"0":{"df":2,"docs":{"30":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"910":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":1,"docs":{"736":{"tf":1.0}}},"1":{"df":16,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"830":{"tf":1.0}}},"1":{"df":1,"docs":{"863":{"tf":1.0}}},"2":{"df":1,"docs":{"863":{"tf":1.0}}},"3":{"df":1,"docs":{"863":{"tf":1.0}}},"7":{"df":1,"docs":{"863":{"tf":1.0}}},"df":1,"docs":{"956":{"tf":1.0}}},"4":{"d":{"b":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"df":1,"docs":{"927":{"tf":1.0}}},"5":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"862":{"tf":1.0}}},"3":{"df":1,"docs":{"862":{"tf":1.0}}},"5":{"df":1,"docs":{"862":{"tf":1.0}}},"6":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"7":{"5":{"df":1,"docs":{"927":{"tf":1.0}}},"9":{"df":1,"docs":{"927":{"tf":1.0}}},"df":1,"docs":{"955":{"tf":1.0}}},"8":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"9":{"1":{"df":1,"docs":{"861":{"tf":1.0}}},"6":{"df":1,"docs":{"925":{"tf":1.0}}},"9":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"640":{"tf":1.0},"642":{"tf":1.0},"786":{"tf":1.4142135623730951}}},"8":{".":{"0":{"df":1,"docs":{"517":{"tf":1.7320508075688772}}},"1":{".":{"0":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"5":{"df":1,"docs":{"861":{"tf":1.0}}},"8":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}},"df":2,"docs":{"288":{"tf":1.4142135623730951},"303":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"860":{"tf":1.0}}},"1":{"df":1,"docs":{"924":{"tf":1.0}}},"5":{"df":1,"docs":{"860":{"tf":1.0}}},"9":{"2":{"df":1,"docs":{"541":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"924":{"tf":1.0}}},"5":{"df":1,"docs":{"924":{"tf":1.0}}},"7":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"df":1,"docs":{"858":{"tf":1.0}}},"3":{"df":1,"docs":{"858":{"tf":1.0}}},"4":{"df":1,"docs":{"858":{"tf":1.0}}},"6":{"df":2,"docs":{"858":{"tf":1.0},"923":{"tf":1.7320508075688772}}},"df":1,"docs":{"954":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}}},"6":{",":{"4":{"0":{"0":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":1,"docs":{"554":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"854":{"tf":1.0}}},"6":{"df":1,"docs":{"854":{"tf":1.0}}},"df":0,"docs":{}},"8":{"8":{"8":{"4":{"2":{"1":{"1":{"df":0,"docs":{},"e":{"5":{"4":{"5":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"a":{"a":{"0":{"df":3,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"136":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"471":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"791":{"tf":1.0},"802":{"tf":1.0},"835":{"tf":1.0},"956":{"tf":1.0}},"k":{"df":2,"docs":{"761":{"tf":1.0},"912":{"tf":1.0}}}},"9":{"0":{"8":{"df":1,"docs":{"923":{"tf":1.0}}},"df":1,"docs":{"953":{"tf":2.0}}},"2":{"4":{"df":1,"docs":{"922":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"3":{"5":{"df":1,"docs":{"849":{"tf":1.0}}},"df":0,"docs":{}},"4":{"9":{"df":1,"docs":{"849":{"tf":1.0}}},"df":0,"docs":{}},"5":{"1":{"df":1,"docs":{"922":{"tf":1.0}}},"3":{"df":1,"docs":{"849":{"tf":1.0}}},"df":2,"docs":{"685":{"tf":1.0},"951":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}}},"6":{"2":{"df":1,"docs":{"849":{"tf":1.0}}},"5":{"df":1,"docs":{"921":{"tf":1.0}}},"7":{"df":2,"docs":{"849":{"tf":1.0},"920":{"tf":1.0}}},"8":{"df":2,"docs":{"849":{"tf":1.0},"921":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"7":{"0":{"df":1,"docs":{"921":{"tf":1.0}}},"4":{"df":1,"docs":{"846":{"tf":1.0}}},"df":1,"docs":{"951":{"tf":1.0}}},"8":{"1":{"df":1,"docs":{"920":{"tf":1.0}}},"3":{"df":1,"docs":{"847":{"tf":1.0}}},"4":{"df":1,"docs":{"919":{"tf":1.0}}},"6":{"df":1,"docs":{"847":{"tf":1.0}}},"7":{"df":1,"docs":{"846":{"tf":1.0}}},"8":{"df":1,"docs":{"919":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"9":{"3":{"df":1,"docs":{"847":{"tf":1.0}}},"4":{"df":1,"docs":{"919":{"tf":1.0}}},"5":{"df":1,"docs":{"842":{"tf":1.0}}},"6":{"df":1,"docs":{"846":{"tf":1.0}}},"8":{"df":1,"docs":{"843":{"tf":1.0}}},"df":1,"docs":{"952":{"tf":1.0}}},"df":9,"docs":{"164":{"tf":1.0},"183":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"956":{"tf":1.0}}},"_":{"_":{"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":1,"docs":{"473":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"_":{"df":24,"docs":{"377":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.4142135623730951},"414":{"tf":2.0},"419":{"tf":1.4142135623730951},"435":{"tf":2.0},"440":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"858":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":3.4641016151377544}}}},"k":{".":{"a":{"df":2,"docs":{"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"1":{"df":0,"docs":{},"i":{"df":3,"docs":{"376":{"tf":1.4142135623730951},"387":{"tf":1.0},"397":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"3":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"751":{"tf":1.0},"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"665":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0}}}},"b":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.4142135623730951}},"l":{"df":6,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"741":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"478":{"tf":1.0},"492":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"#":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"223":{"tf":1.0},"354":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.4142135623730951},"377":{"tf":1.0},"427":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"711":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"376":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"549":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":18,"docs":{"135":{"tf":1.0},"313":{"tf":1.0},"357":{"tf":1.0},"446":{"tf":1.0},"529":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.4142135623730951},"693":{"tf":1.0},"717":{"tf":1.4142135623730951},"723":{"tf":1.0},"741":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":1.7320508075688772},"801":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"953":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":31,"docs":{"110":{"tf":1.4142135623730951},"177":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"32":{"tf":2.0},"356":{"tf":1.4142135623730951},"389":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"418":{"tf":1.0},"660":{"tf":2.0},"665":{"tf":1.0},"679":{"tf":1.0},"688":{"tf":2.0},"715":{"tf":1.0},"736":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"842":{"tf":1.0},"876":{"tf":1.0},"89":{"tf":1.4142135623730951},"917":{"tf":1.0},"924":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"396":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.7320508075688772}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.4142135623730951}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"396":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"297":{"tf":1.4142135623730951},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"753":{"tf":1.0},"796":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"653":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"680":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"703":{"tf":1.0},"76":{"tf":1.0},"935":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":2.0},"884":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":1,"docs":{"517":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"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":1,"docs":{"517":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"738":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"729":{"tf":1.0},"738":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"729":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"494":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"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":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"475":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"772":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"[":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"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":{"c":{"!":{"[":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"585":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"476":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}},"e":{"(":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"586":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"586":{"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":15,"docs":{"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.7320508075688772},"517":{"tf":1.7320508075688772},"574":{"tf":1.0},"575":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"725":{"tf":1.0},"829":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"456":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"759":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"257":{"tf":1.4142135623730951},"376":{"tf":1.0}}}}}},"k":{"df":1,"docs":{"590":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"814":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"741":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"340":{"tf":1.0},"376":{"tf":1.0},"560":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"909":{"tf":1.0},"951":{"tf":1.0},"97":{"tf":1.0}}}},"v":{"df":28,"docs":{"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"195":{"tf":1.0},"224":{"tf":2.6457513110645907},"233":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.4142135623730951},"318":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0},"691":{"tf":2.0},"711":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.449489742783178},"837":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"880":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{},"n":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"233":{"tf":1.4142135623730951},"315":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.0},"814":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"65":{"tf":1.4142135623730951},"956":{"tf":1.0}}}}},"b":{"df":2,"docs":{"224":{"tf":2.0},"227":{"tf":1.7320508075688772}}},"d":{"df":100,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":2.449489742783178},"195":{"tf":1.0},"198":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":2.449489742783178},"24":{"tf":1.0},"254":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"315":{"tf":1.0},"318":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":3.7416573867739413},"414":{"tf":3.7416573867739413},"419":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.7320508075688772},"474":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"613":{"tf":1.0},"614":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"728":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.7320508075688772},"752":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"799":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"823":{"tf":1.4142135623730951},"830":{"tf":1.0},"834":{"tf":2.0},"837":{"tf":1.7320508075688772},"846":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"882":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"898":{"tf":1.0},"9":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"927":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"956":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":50,"docs":{"107":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"289":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"568":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"63":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"707":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":1.0},"802":{"tf":1.0},"834":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"120":{"tf":1.0},"136":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"22":{"tf":1.0},"471":{"tf":1.0},"52":{"tf":1.0},"704":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"500":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"<":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"134":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"288":{"tf":2.0},"289":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"693":{"tf":1.0},"758":{"tf":1.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}}}}}}}}},"df":152,"docs":{"0":{"tf":2.8284271247461903},"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.7320508075688772},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"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.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"563":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"621":{"tf":2.23606797749979},"649":{"tf":1.0},"665":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"69":{"tf":1.4142135623730951},"698":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.4142135623730951},"750":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":2.6457513110645907},"804":{"tf":1.0},"809":{"tf":1.4142135623730951},"811":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"875":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"902":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"340":{"tf":1.0},"854":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"188":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"693":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"308":{"tf":1.0},"318":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"580":{"tf":1.0},"77":{"tf":1.0},"782":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"_":{"df":1,"docs":{"461":{"tf":1.0}}},"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"461":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"951":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"132":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"862":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"100":{"tf":2.449489742783178},"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"233":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"757":{"tf":1.0},"762":{"tf":1.7320508075688772},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":2.449489742783178},"806":{"tf":1.0},"848":{"tf":1.0},"902":{"tf":1.0},"919":{"tf":1.0},"969":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"119":{"tf":1.0},"288":{"tf":1.0},"644":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"129":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"775":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"951":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"175":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}}}}},"h":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"252":{"tf":1.0},"959":{"tf":1.0}}}},"k":{"a":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}},"s":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"288":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":4,"docs":{"471":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"950":{"tf":1.0}}}}}}}}},"i":{"a":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"c":{"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":{},"y":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":5,"docs":{"494":{"tf":1.0},"509":{"tf":1.0},"512":{"tf":1.0},"725":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":2,"docs":{"22":{"tf":1.0},"861":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":82,"docs":{"12":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"306":{"tf":1.0},"320":{"tf":1.0},"37":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"510":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"537":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0},"632":{"tf":1.0},"644":{"tf":1.4142135623730951},"658":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"709":{"tf":1.0},"715":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"734":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"750":{"tf":1.0},"76":{"tf":1.4142135623730951},"762":{"tf":1.0},"765":{"tf":1.0},"773":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"823":{"tf":1.0},"830":{"tf":1.7320508075688772},"839":{"tf":1.0},"885":{"tf":1.0},"906":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0},"947":{"tf":1.0},"97":{"tf":1.4142135623730951}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"192":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0}},"g":{"df":15,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"330":{"tf":1.0},"541":{"tf":1.0},"677":{"tf":1.4142135623730951},"76":{"tf":1.0},"761":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"df":1,"docs":{"334":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"285":{"tf":1.0},"286":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"811":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":29,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"456":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"680":{"tf":1.0},"692":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"98":{"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":{"27":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"223":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"653":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":24,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"401":{"tf":1.0},"412":{"tf":1.0},"471":{"tf":1.4142135623730951},"487":{"tf":1.0},"514":{"tf":1.0},"560":{"tf":1.0},"567":{"tf":1.0},"632":{"tf":1.0},"649":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0},"880":{"tf":1.0},"916":{"tf":1.0},"923":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"132":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.0},"404":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"916":{"tf":1.0},"933":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"103":{"tf":1.0},"811":{"tf":1.0},"82":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"261":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}}},"t":{"df":8,"docs":{"288":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}}},"t":{"df":1,"docs":{"703":{"tf":1.0}}},"z":{"df":5,"docs":{"267":{"tf":1.0},"471":{"tf":1.0},"704":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"252":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"'":{"df":1,"docs":{"315":{"tf":1.0}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":113,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":2.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"349":{"tf":1.0},"431":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"656":{"tf":2.0},"662":{"tf":2.23606797749979},"663":{"tf":2.0},"664":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"669":{"tf":1.7320508075688772},"670":{"tf":1.4142135623730951},"671":{"tf":2.23606797749979},"672":{"tf":1.4142135623730951},"673":{"tf":1.7320508075688772},"674":{"tf":2.6457513110645907},"675":{"tf":2.449489742783178},"676":{"tf":1.7320508075688772},"677":{"tf":1.7320508075688772},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"732":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"745":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"765":{"tf":1.0},"775":{"tf":1.0},"783":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.4142135623730951},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"826":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"830":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.4142135623730951},"837":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.4142135623730951}},"x":{"df":2,"docs":{"759":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":16,"docs":{"118":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.0},"288":{"tf":1.0},"326":{"tf":2.6457513110645907},"327":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"734":{"tf":1.0}}},"y":{"df":1,"docs":{"923":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"118":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":17,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"61":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"687":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0},"959":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"752":{"tf":1.0},"762":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.0},"919":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"600":{"tf":1.0},"611":{"tf":1.0},"680":{"tf":1.0},"734":{"tf":1.0},"925":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":218,"docs":{"0":{"tf":1.0},"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.23606797749979},"13":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"26":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":2.0},"306":{"tf":2.449489742783178},"307":{"tf":2.6457513110645907},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.7320508075688772},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"316":{"tf":2.23606797749979},"317":{"tf":1.4142135623730951},"318":{"tf":2.6457513110645907},"319":{"tf":2.23606797749979},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":2.23606797749979},"326":{"tf":2.0},"327":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"334":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":1.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"348":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"392":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"400":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"405":{"tf":1.4142135623730951},"411":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"432":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"442":{"tf":1.7320508075688772},"444":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"453":{"tf":1.7320508075688772},"455":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"472":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"513":{"tf":1.7320508075688772},"516":{"tf":1.4142135623730951},"518":{"tf":1.4142135623730951},"523":{"tf":1.0},"525":{"tf":1.0},"527":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"536":{"tf":1.7320508075688772},"539":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"559":{"tf":1.7320508075688772},"562":{"tf":1.4142135623730951},"564":{"tf":1.4142135623730951},"568":{"tf":1.0},"571":{"tf":1.7320508075688772},"572":{"tf":1.0},"573":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"581":{"tf":1.0},"584":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"605":{"tf":1.7320508075688772},"607":{"tf":1.0},"608":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"617":{"tf":1.0},"620":{"tf":1.4142135623730951},"621":{"tf":2.23606797749979},"622":{"tf":1.4142135623730951},"628":{"tf":1.0},"631":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"639":{"tf":1.4142135623730951},"641":{"tf":1.4142135623730951},"647":{"tf":1.0},"648":{"tf":1.4142135623730951},"650":{"tf":1.4142135623730951},"652":{"tf":2.6457513110645907},"653":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"678":{"tf":1.0},"686":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.4142135623730951},"729":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"752":{"tf":2.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"784":{"tf":1.4142135623730951},"796":{"tf":2.0},"799":{"tf":2.23606797749979},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.449489742783178},"817":{"tf":1.4142135623730951},"819":{"tf":1.0},"834":{"tf":1.4142135623730951},"854":{"tf":1.0},"86":{"tf":1.4142135623730951},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"878":{"tf":1.0},"890":{"tf":1.0},"898":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.7320508075688772},"919":{"tf":1.7320508075688772},"920":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.7320508075688772},"927":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"952":{"tf":1.4142135623730951},"956":{"tf":2.0},"960":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":3.3166247903554},"969":{"tf":1.7320508075688772}}},"k":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}},"p":{"'":{"df":3,"docs":{"104":{"tf":1.0},"138":{"tf":1.0},"83":{"tf":1.0}}},"/":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"?":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"&":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"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":{}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"315":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"315":{"tf":1.0},"947":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"947":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"169":{"tf":1.0},"175":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":2.8284271247461903},"234":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"338":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"674":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.4142135623730951},"811":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"476":{"tf":1.0},"494":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"5":{"tf":1.4142135623730951},"960":{"tf":1.0},"966":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"l":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"958":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":11,"docs":{"137":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":2.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0}}},"(":{"_":{":":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"232":{"tf":1.0},"316":{"tf":1.4142135623730951},"338":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"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":{"136":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"316":{"tf":1.0},"318":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"839":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"0":{".":{"1":{".":{"0":{"df":3,"docs":{"316":{"tf":1.0},"318":{"tf":1.0},"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":{}}}}}}}}},"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":1,"docs":{"315":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"151":{"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"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":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"315":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":144,"docs":{"0":{"tf":2.0},"100":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"132":{"tf":4.358898943540674},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":3.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.4142135623730951},"153":{"tf":1.0},"155":{"tf":2.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"173":{"tf":2.0},"175":{"tf":2.6457513110645907},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"181":{"tf":2.0},"182":{"tf":2.0},"183":{"tf":2.23606797749979},"184":{"tf":3.1622776601683795},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"218":{"tf":1.7320508075688772},"22":{"tf":2.23606797749979},"222":{"tf":2.0},"224":{"tf":2.6457513110645907},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"254":{"tf":2.449489742783178},"259":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.6457513110645907},"290":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":3.3166247903554},"316":{"tf":2.6457513110645907},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.4142135623730951},"338":{"tf":1.0},"349":{"tf":2.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"418":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"549":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"59":{"tf":1.0},"632":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":2.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.7320508075688772},"658":{"tf":1.7320508075688772},"66":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.4142135623730951},"668":{"tf":1.0},"671":{"tf":2.449489742783178},"673":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"679":{"tf":1.7320508075688772},"680":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"687":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.4142135623730951},"711":{"tf":1.0},"727":{"tf":1.0},"78":{"tf":2.6457513110645907},"79":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":2.0},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"840":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":2.449489742783178},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.7320508075688772},"864":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":2.6457513110645907},"91":{"tf":1.4142135623730951},"938":{"tf":1.0},"946":{"tf":1.0},"958":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}},"df":26,"docs":{"13":{"tf":1.7320508075688772},"169":{"tf":1.0},"195":{"tf":2.0},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"267":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"529":{"tf":1.0},"663":{"tf":1.0},"672":{"tf":1.0},"741":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"22":{"tf":1.7320508075688772},"674":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"101":{"tf":1.4142135623730951},"137":{"tf":1.0},"202":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"v":{"df":1,"docs":{"342":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"145":{"tf":1.0},"258":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"326":{"tf":1.0},"377":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"572":{"tf":1.0},"583":{"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":8,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"762":{"tf":1.4142135623730951},"923":{"tf":1.0},"924":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"776":{"tf":1.0},"781":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"17":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"100":{"tf":1.4142135623730951},"22":{"tf":1.0},"321":{"tf":1.0},"377":{"tf":1.0},"678":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}},"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":36,"docs":{"318":{"tf":1.7320508075688772},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"565":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"796":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"921":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"268":{"tf":1.0}}}},"m":{"6":{"4":{"df":1,"docs":{"804":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"132":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"184":{"tf":1.0},"227":{"tf":1.0},"259":{"tf":1.0},"50":{"tf":1.0},"653":{"tf":1.0},"854":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":10,"docs":{"170":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.0},"446":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0},"644":{"tf":1.7320508075688772},"645":{"tf":1.0},"693":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"254":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":6,"docs":{"226":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.4142135623730951},"637":{"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"tf":1.7320508075688772}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"635":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"635":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"635":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":{".":{"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"635":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"634":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"777":{"tf":1.0},"778":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":17,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"188":{"tf":1.0},"205":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"342":{"tf":1.0},"72":{"tf":1.0},"752":{"tf":1.0},"93":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"962":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"!":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"385":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"385":{"tf":1.0},"395":{"tf":1.0},"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"553":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"652":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"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":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"1":{"df":1,"docs":{"507":{"tf":1.4142135623730951}}},"df":5,"docs":{"416":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}},"df":2,"docs":{"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"2":{"df":2,"docs":{"519":{"tf":1.0},"588":{"tf":1.0}}},"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"385":{"tf":1.0},"395":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"553":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"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":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"333":{"tf":1.0},"508":{"tf":1.0},"578":{"tf":1.0},"642":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"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":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"496":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"480":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"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":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"2":{"0":{"1":{"9":{"df":1,"docs":{"554":{"tf":1.0}}},"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":{},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"416":{"tf":1.0}}},"2":{"df":1,"docs":{"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"407":{"tf":1.0},"428":{"tf":1.0},"465":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}},"df":6,"docs":{"416":{"tf":1.0},"465":{"tf":1.0},"519":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.0}}},"df":4,"docs":{"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":1,"docs":{"416":{"tf":1.0}}},"4":{"2":{"df":3,"docs":{"519":{"tf":1.0},"588":{"tf":1.0},"611":{"tf":1.0}}},"3":{"3":{"df":2,"docs":{"600":{"tf":1.0},"611":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":2,"docs":{"406":{"tf":1.0},"427":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"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":{"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"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":{"565":{"tf":1.0}}}}}},"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":1,"docs":{"531":{"tf":1.0}}}},"df":0,"docs":{}},"(":{"1":{"1":{"df":1,"docs":{"507":{"tf":1.0}}},"df":2,"docs":{"588":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}},"2":{"3":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}},"4":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"519":{"tf":1.0},"588":{"tf":1.0}}}}},"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"385":{"tf":1.0},"652":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":27,"docs":{"333":{"tf":1.0},"334":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.4142135623730951},"624":{"tf":1.0},"635":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"!":{"(":{"4":{"0":{"0":{"df":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"\"":{"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":{"437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"427":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"480":{"tf":1.0},"496":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"406":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"600":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"553":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"531":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"107":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"497":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"565":{"tf":1.7320508075688772},"566":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"tf":2.0},"86":{"tf":1.4142135623730951},"880":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"\"":{"2":{"0":{"1":{"9":{"df":1,"docs":{"554":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"tf":1.4142135623730951}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"0":{"df":3,"docs":{"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"601":{"tf":1.0}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951}}},"df":2,"docs":{"416":{"tf":1.4142135623730951},"642":{"tf":1.0}},"l":{"df":1,"docs":{"577":{"tf":1.7320508075688772}}}},"2":{"3":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}},"df":1,"docs":{"565":{"tf":1.0}},"l":{"df":2,"docs":{"480":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951}}}},"3":{"df":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.4142135623730951}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"406":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"652":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"623":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":21,"docs":{"333":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"601":{"tf":1.0},"624":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"643":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"272":{"tf":1.0}}}},"t":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"104":{"tf":1.0},"136":{"tf":1.0},"203":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.0},"297":{"tf":1.4142135623730951},"474":{"tf":1.0},"677":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":16,"docs":{"100":{"tf":1.0},"252":{"tf":1.4142135623730951},"258":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"514":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"675":{"tf":1.0},"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"838":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"342":{"tf":1.0},"786":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"312":{"tf":1.0},"340":{"tf":1.0},"838":{"tf":1.0},"958":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"802":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"858":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"150":{"tf":1.0},"259":{"tf":1.0},"661":{"tf":1.0},"693":{"tf":1.0}}},"k":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"160":{"tf":1.0},"233":{"tf":1.0},"462":{"tf":1.0},"563":{"tf":1.0},"670":{"tf":1.0},"802":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"205":{"tf":1.0},"252":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":1,"docs":{"461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"218":{"tf":1.0}}}}},"o":{"df":14,"docs":{"459":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"565":{"tf":2.23606797749979},"577":{"tf":1.0},"588":{"tf":1.0},"623":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.4142135623730951},"720":{"tf":1.0},"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"798":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":48,"docs":{"12":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"162":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":2.0},"218":{"tf":1.4142135623730951},"288":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"647":{"tf":1.0},"666":{"tf":1.4142135623730951},"67":{"tf":1.0},"671":{"tf":1.0},"686":{"tf":1.4142135623730951},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.4142135623730951},"783":{"tf":1.0},"793":{"tf":1.0},"807":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"91":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":14,"docs":{"117":{"tf":1.0},"136":{"tf":1.0},"191":{"tf":1.0},"21":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"289":{"tf":1.0},"36":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"669":{"tf":1.0},"685":{"tf":1.0},"9":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":73,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"134":{"tf":1.0},"146":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"306":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.0},"376":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"568":{"tf":1.0},"572":{"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.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"693":{"tf":1.0},"695":{"tf":1.4142135623730951},"705":{"tf":1.0},"710":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.4142135623730951},"78":{"tf":1.0},"802":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"969":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":36,"docs":{"104":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"310":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"785":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"844":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"318":{"tf":1.0},"342":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"577":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"652":{"tf":1.0},"865":{"tf":1.0}}}},"r":{"df":3,"docs":{"223":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}},"y":{"df":4,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":3.1622776601683795}}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"120":{"tf":1.0},"127":{"tf":1.4142135623730951},"135":{"tf":1.0},"149":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"267":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"859":{"tf":1.0},"873":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"125":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"168":{"tf":1.0},"245":{"tf":1.0},"271":{"tf":1.0},"315":{"tf":1.0},"346":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"786":{"tf":1.0},"807":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"823":{"tf":1.0},"830":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"724":{"tf":1.0},"726":{"tf":1.0},"858":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"289":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"640":{"tf":2.0},"645":{"tf":1.4142135623730951}},"s":{".":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"640":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"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":{}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"521":{"tf":1.0},"523":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"226":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0},"964":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":37,"docs":{"106":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"245":{"tf":1.4142135623730951},"258":{"tf":2.0},"275":{"tf":1.0},"276":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"52":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"583":{"tf":1.0},"653":{"tf":1.7320508075688772},"654":{"tf":1.7320508075688772},"659":{"tf":1.7320508075688772},"690":{"tf":1.0},"720":{"tf":1.0},"799":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.7320508075688772},"893":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":31,"docs":{"123":{"tf":1.0},"125":{"tf":2.6457513110645907},"127":{"tf":2.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"184":{"tf":2.6457513110645907},"210":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"275":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":2.0},"842":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"875":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"747":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"df":6,"docs":{"116":{"tf":1.0},"17":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951}}},"i":{"c":{"df":6,"docs":{"294":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"671":{"tf":1.0},"674":{"tf":1.0},"895":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.0},"561":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.4142135623730951},"203":{"tf":3.1622776601683795},"297":{"tf":1.0},"684":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"125":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"125":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.7320508075688772},"168":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"814":{"tf":1.0},"89":{"tf":1.0}}}}},"df":52,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"461":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"514":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"708":{"tf":1.0},"711":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":1.0},"816":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"858":{"tf":1.4142135623730951},"86":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":71,"docs":{"117":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"140":{"tf":1.7320508075688772},"150":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"338":{"tf":2.0},"342":{"tf":1.4142135623730951},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"541":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"630":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"663":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"696":{"tf":1.0},"697":{"tf":1.7320508075688772},"698":{"tf":1.0},"701":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"801":{"tf":1.0},"804":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"845":{"tf":1.0},"865":{"tf":1.4142135623730951},"867":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"941":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"184":{"tf":1.4142135623730951},"231":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.4142135623730951},"728":{"tf":1.0},"76":{"tf":1.0},"878":{"tf":1.0},"97":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":7,"docs":{"117":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"758":{"tf":1.0},"853":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":25,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"456":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"693":{"tf":1.0},"70":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"74":{"tf":2.0},"91":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"923":{"tf":1.0},"95":{"tf":2.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"752":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":29,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"435":{"tf":1.0},"446":{"tf":1.4142135623730951},"46":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"630":{"tf":1.0},"73":{"tf":1.0},"772":{"tf":1.0},"799":{"tf":1.0},"915":{"tf":1.0},"94":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"101":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"132":{"tf":1.0},"254":{"tf":1.0},"26":{"tf":1.7320508075688772},"334":{"tf":2.0},"768":{"tf":1.0},"833":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"288":{"tf":1.0},"401":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"126":{"tf":1.4142135623730951},"142":{"tf":2.0},"173":{"tf":1.0},"192":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"626":{"tf":1.0},"720":{"tf":1.0},"76":{"tf":1.0},"802":{"tf":1.0},"840":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"693":{"tf":1.0},"919":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}}}}},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"11":{"tf":1.0},"690":{"tf":1.4142135623730951},"849":{"tf":1.0},"868":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"df":20,"docs":{"26":{"tf":1.0},"654":{"tf":1.7320508075688772},"727":{"tf":1.0},"736":{"tf":1.0},"740":{"tf":1.0},"773":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"834":{"tf":1.7320508075688772},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"846":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"859":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"t":{"df":11,"docs":{"144":{"tf":1.0},"254":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"621":{"tf":1.0},"703":{"tf":1.4142135623730951},"862":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"693":{"tf":1.0}}}},"b":{"df":1,"docs":{"422":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"459":{"tf":1.0},"477":{"tf":1.0},"737":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.4142135623730951},"852":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":2.449489742783178}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"5":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"328":{"tf":3.0},"329":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.449489742783178},"640":{"tf":1.0},"642":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"129":{"tf":1.0},"135":{"tf":1.4142135623730951},"317":{"tf":1.0},"837":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":13,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.7320508075688772},"706":{"tf":1.4142135623730951},"959":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.4142135623730951},"968":{"tf":2.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"l":{"df":5,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.0},"652":{"tf":1.0},"830":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":45,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"376":{"tf":1.4142135623730951},"381":{"tf":2.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":2.23606797749979},"392":{"tf":1.0},"393":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":2.6457513110645907},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"439":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":1.7320508075688772},"73":{"tf":1.0},"773":{"tf":1.0},"78":{"tf":1.0},"801":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"823":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}},"t":{"df":2,"docs":{"266":{"tf":1.0},"267":{"tf":1.0}},"h":{"df":22,"docs":{"110":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"272":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"729":{"tf":1.0},"77":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"830":{"tf":1.0},"89":{"tf":1.0},"959":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"310":{"tf":1.0},"496":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"758":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":13,"docs":{"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"145":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":2.449489742783178},"63":{"tf":1.0},"66":{"tf":1.0},"708":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"=":{"\"":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"131":{"tf":2.0},"158":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":2.6457513110645907},"326":{"tf":1.4142135623730951},"328":{"tf":2.8284271247461903},"333":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":39,"docs":{"175":{"tf":1.0},"377":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.4142135623730951},"719":{"tf":1.7320508075688772},"727":{"tf":1.4142135623730951},"730":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"738":{"tf":1.0},"753":{"tf":1.0},"765":{"tf":1.4142135623730951},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"786":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.4142135623730951},"824":{"tf":1.0},"828":{"tf":1.0},"837":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.4142135623730951},"677":{"tf":1.0},"964":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"254":{"tf":1.0},"862":{"tf":1.0},"969":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"796":{"tf":1.0}},"n":{"df":8,"docs":{"191":{"tf":1.0},"224":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"810":{"tf":1.0},"824":{"tf":1.0},"861":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"289":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"342":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"136":{"tf":1.4142135623730951},"190":{"tf":1.0},"233":{"tf":2.449489742783178},"241":{"tf":2.0},"245":{"tf":1.4142135623730951},"31":{"tf":2.6457513110645907},"316":{"tf":1.0},"33":{"tf":1.4142135623730951},"342":{"tf":1.0},"66":{"tf":1.0},"898":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"909":{"tf":1.0},"915":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"112":{"tf":2.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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"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":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"s":{"d":{"df":2,"docs":{"19":{"tf":1.0},"815":{"tf":1.0}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"575":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"376":{"tf":1.0},"471":{"tf":2.0},"474":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"503":{"tf":2.0},"507":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"519":{"tf":1.4142135623730951},"572":{"tf":1.0},"577":{"tf":2.0},"580":{"tf":2.449489742783178},"582":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.4142135623730951},"591":{"tf":2.23606797749979},"716":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"718":{"tf":1.0}}}}}},"g":{"=":{"\"":{"0":{"0":{"0":{"0":{"0":{"0":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":210,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":4.242640687119285},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.7320508075688772},"254":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"390":{"tf":1.0},"397":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":2.0},"502":{"tf":1.0},"509":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"567":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"594":{"tf":1.0},"6":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"613":{"tf":1.0},"617":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"628":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"715":{"tf":1.4142135623730951},"716":{"tf":2.23606797749979},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"725":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.7320508075688772},"732":{"tf":1.4142135623730951},"734":{"tf":1.7320508075688772},"736":{"tf":1.0},"738":{"tf":2.23606797749979},"739":{"tf":1.0},"741":{"tf":1.7320508075688772},"745":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":2.23606797749979},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"814":{"tf":1.4142135623730951},"83":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"880":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"905":{"tf":1.0},"913":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.0},"929":{"tf":1.4142135623730951},"942":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":88,"docs":{"742":{"tf":1.0},"743":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"758":{"tf":1.0},"762":{"tf":2.23606797749979},"763":{"tf":1.4142135623730951},"764":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.7320508075688772},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.7320508075688772},"814":{"tf":1.0},"816":{"tf":1.7320508075688772},"817":{"tf":1.0},"818":{"tf":1.7320508075688772},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":1.7320508075688772},"837":{"tf":1.0},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"868":{"tf":1.0},"880":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.7320508075688772},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":2.0},"921":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":2.0},"930":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0},"953":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"958":{"tf":1.0}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":5,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"379":{"tf":1.0},"6":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"793":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"26":{"tf":1.0}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"914":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"670":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":101,"docs":{"104":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":1.4142135623730951},"17":{"tf":2.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"224":{"tf":2.0},"227":{"tf":1.7320508075688772},"254":{"tf":1.0},"26":{"tf":2.8284271247461903},"268":{"tf":2.449489742783178},"27":{"tf":1.0},"280":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"377":{"tf":1.7320508075688772},"41":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"63":{"tf":1.4142135623730951},"662":{"tf":1.0},"663":{"tf":2.0},"664":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.7320508075688772},"670":{"tf":1.0},"671":{"tf":2.6457513110645907},"672":{"tf":1.0},"673":{"tf":1.7320508075688772},"676":{"tf":1.4142135623730951},"678":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":2.0},"683":{"tf":1.0},"684":{"tf":2.23606797749979},"685":{"tf":1.7320508075688772},"686":{"tf":1.0},"687":{"tf":1.0},"735":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"753":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"811":{"tf":1.0},"820":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"83":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"853":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"879":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"9":{"tf":1.4142135623730951},"910":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"942":{"tf":1.4142135623730951},"949":{"tf":1.0},"950":{"tf":1.0},"958":{"tf":2.0},"96":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"26":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":4,"docs":{"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":37,"docs":{"100":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"647":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"78":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":1.0},"833":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"877":{"tf":1.0},"951":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"208":{"tf":1.0},"312":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"653":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"289":{"tf":1.0},"721":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":14,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"48":{"tf":1.0},"653":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"793":{"tf":1.0},"916":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"379":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"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":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"254":{"tf":2.6457513110645907},"328":{"tf":3.0},"329":{"tf":2.23606797749979},"332":{"tf":2.0},"333":{"tf":3.1622776601683795},"376":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":21,"docs":{"170":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"510":{"tf":2.0},"511":{"tf":1.0},"514":{"tf":1.7320508075688772},"522":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"737":{"tf":1.0},"756":{"tf":1.0},"829":{"tf":1.0},"873":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":3.1622776601683795}}}}}}}},"1":{"d":{"b":{"d":{"6":{"df":0,"docs":{},"e":{"0":{"6":{"1":{"7":{"1":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"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":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"234":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"785":{"tf":1.0}}}},"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"127":{"tf":1.0},"142":{"tf":1.7320508075688772},"560":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":7,"docs":{"127":{"tf":2.449489742783178},"175":{"tf":2.8284271247461903},"224":{"tf":1.0},"231":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"884":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"652":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"[":{"0":{"df":1,"docs":{"652":{"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":7,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"804":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"26":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":2.0},"346":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.4142135623730951},"44":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"565":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.4142135623730951},"665":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"679":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"710":{"tf":1.0},"772":{"tf":1.0},"788":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"84":{"tf":1.0},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"867":{"tf":1.4142135623730951},"873":{"tf":1.0},"880":{"tf":1.0},"91":{"tf":1.0},"919":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"340":{"tf":1.0},"649":{"tf":1.0},"796":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":2.0},"563":{"tf":1.0},"89":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"958":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"34":{"tf":1.0},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"461":{"tf":1.0},"538":{"tf":1.0},"762":{"tf":1.0},"791":{"tf":1.0}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"652":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"492":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"492":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"321":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.7320508075688772},"459":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"738":{"tf":1.0},"786":{"tf":1.0},"792":{"tf":1.0},"846":{"tf":1.0},"891":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"110":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"259":{"tf":1.0},"289":{"tf":1.0},"618":{"tf":1.0},"677":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":21,"docs":{"104":{"tf":1.0},"17":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"83":{"tf":1.0},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"104":{"tf":1.0},"557":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"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":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.7320508075688772}}}}}}},"df":8,"docs":{"114":{"tf":1.0},"19":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"720":{"tf":1.0},"757":{"tf":1.0},"958":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"770":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":48,"docs":{"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"142":{"tf":2.0},"169":{"tf":1.4142135623730951},"175":{"tf":2.0},"184":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"203":{"tf":1.0},"22":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"476":{"tf":1.0},"618":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"710":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"78":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"919":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":26,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":2.23606797749979},"120":{"tf":1.4142135623730951},"127":{"tf":1.0},"142":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"176":{"tf":1.0},"234":{"tf":1.0},"265":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"285":{"tf":3.0},"289":{"tf":3.3166247903554},"346":{"tf":1.0},"546":{"tf":1.0},"632":{"tf":1.4142135623730951},"677":{"tf":1.0},"679":{"tf":1.0},"782":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"124":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}},"s":{"df":21,"docs":{"100":{"tf":2.0},"120":{"tf":1.0},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"50":{"tf":1.4142135623730951},"578":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"679":{"tf":1.0},"760":{"tf":1.0},"765":{"tf":1.0},"79":{"tf":2.0},"834":{"tf":1.0},"838":{"tf":1.0},"848":{"tf":1.0},"892":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"169":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"c":{"[":{"\"":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{";":{"1":{"\"":{"]":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"(":{"c":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":3,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":1,"docs":{"673":{"tf":1.0}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":76,"docs":{"100":{"tf":1.0},"110":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"203":{"tf":3.0},"297":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"834":{"tf":3.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"89":{"tf":1.4142135623730951},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"814":{"tf":1.0},"823":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"109":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"796":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"964":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":3,"docs":{"195":{"tf":1.4142135623730951},"316":{"tf":1.0},"342":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"674":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"125":{"tf":1.0},"845":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":122,"docs":{"100":{"tf":3.3166247903554},"108":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"282":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"324":{"tf":1.0},"344":{"tf":1.0},"379":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"425":{"tf":2.449489742783178},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"568":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.0},"614":{"tf":1.4142135623730951},"645":{"tf":1.0},"678":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.7320508075688772},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":2.0},"730":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"738":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":2.0},"758":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"784":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":3.3166247903554},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"807":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.4142135623730951},"828":{"tf":1.0},"834":{"tf":1.7320508075688772},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"855":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"873":{"tf":1.0},"889":{"tf":1.4142135623730951},"89":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.4142135623730951},"900":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"909":{"tf":1.0},"916":{"tf":1.4142135623730951},"919":{"tf":1.7320508075688772},"920":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"945":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":245,"docs":{"5":{"tf":1.0},"713":{"tf":1.7320508075688772},"714":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"722":{"tf":1.4142135623730951},"723":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"730":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"743":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"746":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"780":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"798":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"818":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"826":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"847":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"863":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"889":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"901":{"tf":1.4142135623730951},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"904":{"tf":1.4142135623730951},"905":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"917":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"936":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"947":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"956":{"tf":1.7320508075688772}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"107":{"tf":1.0},"119":{"tf":1.7320508075688772},"132":{"tf":1.0},"205":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"6":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"246":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":42,"docs":{"102":{"tf":1.0},"131":{"tf":1.0},"231":{"tf":1.0},"285":{"tf":1.7320508075688772},"286":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"303":{"tf":1.0},"378":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.4142135623730951},"414":{"tf":2.0},"419":{"tf":1.4142135623730951},"435":{"tf":2.0},"440":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"570":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"721":{"tf":1.0},"736":{"tf":1.0},"747":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"81":{"tf":1.0},"897":{"tf":1.0},"912":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":38,"docs":{"10":{"tf":1.0},"112":{"tf":2.449489742783178},"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"18":{"tf":1.0},"218":{"tf":1.0},"23":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"57":{"tf":1.0},"580":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"73":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"772":{"tf":1.7320508075688772},"802":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"579":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"579":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"698":{"tf":1.0},"9":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"22":{"tf":1.0},"861":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"289":{"tf":1.4142135623730951},"401":{"tf":1.0},"677":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":14,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"17":{"tf":1.0},"2":{"tf":1.0},"376":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"84":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"958":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"128":{"tf":1.0},"28":{"tf":1.0},"460":{"tf":1.0},"677":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{"/":{"/":{"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":{"245":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"915":{"tf":1.0}}},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"245":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"i":{"df":6,"docs":{"132":{"tf":1.0},"136":{"tf":1.0},"315":{"tf":1.0},"60":{"tf":1.0},"746":{"tf":1.0},"912":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"912":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"947":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"j":{"df":2,"docs":{"32":{"tf":1.7320508075688772},"700":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"969":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"315":{"tf":1.7320508075688772},"316":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"338":{"tf":1.0},"347":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"563":{"tf":1.0},"679":{"tf":2.0},"882":{"tf":1.0},"929":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"267":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"318":{"tf":1.0},"678":{"tf":1.0},"862":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"806":{"tf":1.0}}}}},"r":{"df":26,"docs":{"100":{"tf":2.6457513110645907},"109":{"tf":1.0},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":2.23606797749979},"321":{"tf":1.0},"427":{"tf":1.0},"531":{"tf":1.0},"567":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"78":{"tf":2.23606797749979},"789":{"tf":1.0},"79":{"tf":2.6457513110645907},"840":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"917":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"99":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"17":{"tf":1.0},"226":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"289":{"tf":1.0},"87":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"897":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":8,"docs":{"43":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.4142135623730951},"912":{"tf":1.0},"915":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"184":{"tf":1.0},"533":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"330":{"tf":1.0},"533":{"tf":1.0},"78":{"tf":1.0},"909":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"268":{"tf":1.0},"839":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"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":{},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":23,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"158":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"338":{"tf":1.0},"342":{"tf":1.4142135623730951},"750":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"801":{"tf":1.0},"865":{"tf":1.4142135623730951}}}}}}},"df":43,"docs":{"0":{"tf":1.0},"111":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.7320508075688772},"17":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.0},"205":{"tf":1.7320508075688772},"258":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"321":{"tf":1.0},"376":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"526":{"tf":1.0},"535":{"tf":1.0},"570":{"tf":1.0},"653":{"tf":1.0},"710":{"tf":1.0},"73":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":2.0},"811":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"916":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}},"|":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{"730":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"p":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"254":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"142":{"tf":1.4142135623730951},"184":{"tf":1.0},"315":{"tf":1.0},"456":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"76":{"tf":1.0},"804":{"tf":1.0},"894":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"268":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":13,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"224":{"tf":1.0},"241":{"tf":1.0},"379":{"tf":1.0},"80":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"803":{"tf":1.0}}}}},"u":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"m":{"d":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"557":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"115":{"tf":2.0},"116":{"tf":1.0}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}},"df":87,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"110":{"tf":2.449489742783178},"111":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":2.0},"175":{"tf":2.6457513110645907},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"317":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"43":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.0},"683":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"71":{"tf":1.0},"737":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.0},"782":{"tf":1.0},"793":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"802":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"823":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.7320508075688772},"839":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.7320508075688772},"867":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.449489742783178},"9":{"tf":1.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"969":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"202":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"498":{"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":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"268":{"tf":1.0},"63":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":93,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"117":{"tf":2.23606797749979},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"175":{"tf":2.8284271247461903},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"199":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":2.23606797749979},"297":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0},"346":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"580":{"tf":1.0},"632":{"tf":1.0},"645":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"652":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.0},"67":{"tf":1.7320508075688772},"674":{"tf":1.0},"677":{"tf":1.0},"680":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"70":{"tf":1.0},"704":{"tf":1.0},"71":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"715":{"tf":1.0},"72":{"tf":1.0},"729":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":2.0},"82":{"tf":1.4142135623730951},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"853":{"tf":1.0},"860":{"tf":1.0},"865":{"tf":1.4142135623730951},"897":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"938":{"tf":1.0},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":2.0},"97":{"tf":2.0},"98":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"645":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":11,"docs":{"103":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"288":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}},"m":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"289":{"tf":1.7320508075688772},"687":{"tf":1.0},"703":{"tf":1.0},"83":{"tf":1.0},"852":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"117":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"471":{"tf":1.0},"753":{"tf":1.0},"9":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"958":{"tf":1.0}}},"m":{"a":{"df":6,"docs":{"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"353":{"tf":1.0},"370":{"tf":1.4142135623730951}},"n":{"d":{">":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":33,"docs":{"115":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":2.23606797749979},"227":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":3.872983346207417},"232":{"tf":1.0},"233":{"tf":3.605551275463989},"234":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"30":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"653":{"tf":1.0},"682":{"tf":1.0},"689":{"tf":2.23606797749979},"690":{"tf":1.0},"691":{"tf":1.7320508075688772},"692":{"tf":1.7320508075688772},"804":{"tf":1.0},"861":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":2.6457513110645907},"935":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"21":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":2,"docs":{"379":{"tf":1.0},"823":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":35,"docs":{"106":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.0},"21":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.0},"387":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"854":{"tf":1.0},"99":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"949":{"tf":1.0},"950":{"tf":1.7320508075688772},"953":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"659":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":8,"docs":{"160":{"tf":1.0},"289":{"tf":1.7320508075688772},"5":{"tf":1.0},"546":{"tf":1.0},"712":{"tf":1.0},"838":{"tf":1.0},"859":{"tf":1.0},"957":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":6,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"52":{"tf":1.0},"958":{"tf":1.0}}},"t":{"df":10,"docs":{"289":{"tf":1.0},"51":{"tf":1.0},"762":{"tf":1.0},"776":{"tf":1.0},"784":{"tf":1.0},"801":{"tf":1.0},"851":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"735":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"835":{"tf":1.0},"844":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":16,"docs":{"100":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"250":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"340":{"tf":1.0},"379":{"tf":1.0},"678":{"tf":1.4142135623730951},"737":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"845":{"tf":1.0},"854":{"tf":1.0},"861":{"tf":1.0},"902":{"tf":1.0}}},"x":{"df":3,"docs":{"144":{"tf":1.0},"22":{"tf":1.0},"772":{"tf":1.4142135623730951}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"538":{"tf":1.0},"697":{"tf":1.0}}}}},"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"11":{"tf":2.0},"13":{"tf":2.0},"193":{"tf":1.0},"316":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"656":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0},"77":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"933":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"d":{".":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"915":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"135":{"tf":1.0},"661":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"913":{"tf":1.0},"933":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"378":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"572":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"169":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"11":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"677":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"204":{"tf":1.0},"823":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"878":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":8,"docs":{"203":{"tf":4.123105625617661},"205":{"tf":1.0},"254":{"tf":1.0},"316":{"tf":1.4142135623730951},"830":{"tf":1.0},"861":{"tf":1.0},"908":{"tf":1.0},"912":{"tf":1.0}},"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":{},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"<":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"805":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":83,"docs":{"100":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"168":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":4.358898943540674},"197":{"tf":2.449489742783178},"198":{"tf":3.4641016151377544},"199":{"tf":2.449489742783178},"200":{"tf":1.7320508075688772},"202":{"tf":2.8284271247461903},"203":{"tf":4.358898943540674},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":2.449489742783178},"210":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":4.898979485566356},"258":{"tf":2.23606797749979},"261":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"307":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":3.0},"316":{"tf":2.8284271247461903},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"342":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"503":{"tf":1.0},"514":{"tf":1.4142135623730951},"60":{"tf":1.0},"663":{"tf":2.0},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.4142135623730951},"682":{"tf":2.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"693":{"tf":1.0},"720":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.4142135623730951},"79":{"tf":1.0},"801":{"tf":1.0},"861":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"732":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"563":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"289":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"592":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":2.23606797749979},"627":{"tf":1.0},"655":{"tf":1.0},"710":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}}},"i":{"d":{"df":28,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"190":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"267":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"371":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.0},"674":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"258":{"tf":1.0},"260":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.4142135623730951},"674":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"330":{"tf":1.0},"346":{"tf":1.0},"493":{"tf":1.0},"704":{"tf":1.0},"804":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"234":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"898":{"tf":1.0},"906":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"df":19,"docs":{"32":{"tf":1.7320508075688772},"324":{"tf":1.0},"448":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"490":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"577":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"700":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"175":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"765":{"tf":1.0},"878":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"65":{"tf":1.0},"752":{"tf":1.0}}}},"m":{"df":34,"docs":{"11":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.4142135623730951},"230":{"tf":1.0},"276":{"tf":1.4142135623730951},"307":{"tf":1.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"379":{"tf":1.0},"43":{"tf":1.4142135623730951},"492":{"tf":1.0},"720":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"788":{"tf":1.0},"793":{"tf":1.7320508075688772},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"838":{"tf":1.4142135623730951},"842":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"858":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"422":{"tf":1.0},"537":{"tf":1.0},"6":{"tf":1.7320508075688772},"860":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":88,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.23606797749979},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"234":{"tf":1.0},"246":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.7320508075688772},"328":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"423":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"443":{"tf":1.0},"48":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"501":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"538":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"609":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"653":{"tf":1.0},"697":{"tf":1.0},"716":{"tf":1.0},"73":{"tf":1.4142135623730951},"772":{"tf":1.0},"779":{"tf":1.0},"79":{"tf":1.0},"823":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.4142135623730951},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"129":{"tf":1.7320508075688772},"136":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"289":{"tf":2.0},"33":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"422":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"546":{"tf":1.0},"592":{"tf":1.0},"60":{"tf":1.0},"634":{"tf":2.449489742783178},"636":{"tf":1.4142135623730951},"637":{"tf":1.0},"70":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":2.23606797749979},"961":{"tf":2.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":2.0},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"t":{".":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"111":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"259":{"tf":1.7320508075688772},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"834":{"tf":1.0},"858":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"113":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"5":{"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":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":63,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.4142135623730951},"185":{"tf":2.6457513110645907},"186":{"tf":1.7320508075688772},"187":{"tf":3.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"206":{"tf":3.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"22":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"471":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"602":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"682":{"tf":1.0},"715":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"837":{"tf":1.0},"854":{"tf":1.0},"857":{"tf":1.0},"871":{"tf":1.0},"9":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"407":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"407":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"406":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"459":{"tf":1.0},"477":{"tf":1.0},"788":{"tf":1.0},"834":{"tf":1.0},"861":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"t":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}},"t":{"df":7,"docs":{"115":{"tf":1.0},"377":{"tf":1.4142135623730951},"471":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"834":{"tf":1.0},"884":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"854":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"254":{"tf":2.8284271247461903},"7":{"tf":1.0},"823":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"800":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":22,"docs":{"130":{"tf":1.0},"322":{"tf":1.4142135623730951},"653":{"tf":2.23606797749979},"654":{"tf":1.7320508075688772},"659":{"tf":1.7320508075688772},"673":{"tf":1.0},"755":{"tf":1.0},"758":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.4142135623730951},"818":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.4142135623730951},"22":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"881":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"11":{"tf":1.0},"117":{"tf":1.0},"17":{"tf":1.0},"315":{"tf":1.0},"42":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"673":{"tf":1.0},"769":{"tf":1.0},"782":{"tf":1.0},"825":{"tf":1.0},"838":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"873":{"tf":1.0},"919":{"tf":1.0},"935":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":21,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"315":{"tf":1.0},"67":{"tf":1.0},"731":{"tf":1.0},"762":{"tf":2.23606797749979},"764":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"804":{"tf":1.0},"816":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"847":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"926":{"tf":1.0},"947":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"138":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.0},"474":{"tf":1.0},"491":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"741":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"958":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"190":{"tf":1.0},"62":{"tf":1.0},"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":40,"docs":{"124":{"tf":2.0},"125":{"tf":1.7320508075688772},"127":{"tf":2.23606797749979},"347":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":2.0},"406":{"tf":1.0},"408":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"462":{"tf":1.0},"474":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":2.0},"582":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":2.0},"607":{"tf":2.0},"618":{"tf":1.4142135623730951},"619":{"tf":2.23606797749979},"621":{"tf":1.0},"70":{"tf":1.0},"716":{"tf":1.0},"75":{"tf":2.23606797749979},"755":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"907":{"tf":1.4142135623730951},"91":{"tf":1.0},"96":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{".":{"a":{"d":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":44,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"127":{"tf":2.6457513110645907},"131":{"tf":1.4142135623730951},"288":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"402":{"tf":2.0},"403":{"tf":1.0},"404":{"tf":3.872983346207417},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"408":{"tf":1.7320508075688772},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":2.6457513110645907},"413":{"tf":1.0},"414":{"tf":3.872983346207417},"415":{"tf":1.0},"416":{"tf":2.8284271247461903},"417":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"456":{"tf":1.0},"544":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"621":{"tf":2.23606797749979},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"734":{"tf":1.0},"75":{"tf":1.4142135623730951},"818":{"tf":1.0},"837":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"421":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"267":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"673":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"111":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.449489742783178},"116":{"tf":1.7320508075688772},"804":{"tf":1.0},"831":{"tf":1.0},"853":{"tf":1.0}}}},"df":1,"docs":{"261":{"tf":1.0}}}}},"w":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"752":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"679":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"679":{"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":{"679":{"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":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":34,"docs":{"166":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.7320508075688772},"289":{"tf":1.0},"376":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"646":{"tf":1.4142135623730951},"674":{"tf":3.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":3.4641016151377544},"678":{"tf":2.0},"679":{"tf":1.7320508075688772},"680":{"tf":1.0},"736":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"771":{"tf":1.0},"785":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"835":{"tf":1.0},"844":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"880":{"tf":1.7320508075688772},"958":{"tf":1.4142135623730951}},"e":{"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":{"df":1,"docs":{"677":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":12,"docs":{"26":{"tf":1.4142135623730951},"315":{"tf":1.0},"655":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"754":{"tf":1.0},"787":{"tf":1.0},"818":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"854":{"tf":1.0},"871":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"24":{"tf":1.0},"655":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"100":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.7320508075688772},"259":{"tf":1.0},"27":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"710":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"785":{"tf":1.0},"79":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.0},"925":{"tf":1.0},"951":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"538":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"0":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"31":{"tf":1.0},"65":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"v":{"df":1,"docs":{"701":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"579":{"tf":1.0},"618":{"tf":1.0},"627":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":1,"docs":{"254":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":50,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":2.0},"14":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.0},"283":{"tf":1.0},"293":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"334":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.0},"54":{"tf":1.0},"572":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.0},"691":{"tf":1.0},"694":{"tf":1.0},"711":{"tf":1.0},"715":{"tf":1.4142135623730951},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"950":{"tf":1.0},"968":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":1,"docs":{"551":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"579":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"813":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"594":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":2.449489742783178},"138":{"tf":2.23606797749979},"139":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"223":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":2.6457513110645907},"233":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"259":{"tf":2.449489742783178},"261":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":2.0},"317":{"tf":3.1622776601683795},"336":{"tf":2.0},"337":{"tf":1.0},"338":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"520":{"tf":1.0},"551":{"tf":2.449489742783178},"560":{"tf":1.0},"572":{"tf":2.23606797749979},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":2.0},"581":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.0},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"590":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"592":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"647":{"tf":1.0},"649":{"tf":1.7320508075688772},"667":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":3.1622776601683795},"679":{"tf":1.7320508075688772},"690":{"tf":2.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"729":{"tf":1.4142135623730951},"734":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.7320508075688772},"79":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"804":{"tf":1.0},"823":{"tf":1.0},"830":{"tf":1.0},"837":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"922":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.4142135623730951},"969":{"tf":2.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"718":{"tf":1.0},"738":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"145":{"tf":1.0},"173":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"4":{"1":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"837":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"316":{"tf":1.0},"318":{"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":32,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"466":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.4142135623730951},"636":{"tf":1.0},"839":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":18,"docs":{"109":{"tf":1.0},"127":{"tf":1.0},"264":{"tf":1.4142135623730951},"721":{"tf":1.0},"741":{"tf":1.0},"753":{"tf":1.4142135623730951},"812":{"tf":1.0},"818":{"tf":1.0},"831":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"88":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.4142135623730951},"917":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":228,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":4.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"160":{"tf":2.0},"170":{"tf":1.0},"173":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"185":{"tf":3.0},"186":{"tf":1.0},"187":{"tf":3.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.449489742783178},"191":{"tf":2.23606797749979},"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},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":3.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":2.23606797749979},"248":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":2.23606797749979},"263":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":4.69041575982343},"292":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"33":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"385":{"tf":1.7320508075688772},"389":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"395":{"tf":1.7320508075688772},"398":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"410":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"437":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"443":{"tf":1.0},"448":{"tf":1.7320508075688772},"452":{"tf":1.4142135623730951},"464":{"tf":1.7320508075688772},"469":{"tf":1.4142135623730951},"471":{"tf":1.0},"480":{"tf":2.0},"485":{"tf":1.4142135623730951},"487":{"tf":3.1622776601683795},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"496":{"tf":2.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"507":{"tf":2.23606797749979},"512":{"tf":1.4142135623730951},"514":{"tf":3.1622776601683795},"517":{"tf":1.4142135623730951},"519":{"tf":2.23606797749979},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"53":{"tf":1.0},"531":{"tf":1.7320508075688772},"535":{"tf":1.4142135623730951},"537":{"tf":1.0},"538":{"tf":1.0},"54":{"tf":1.4142135623730951},"541":{"tf":1.0},"543":{"tf":1.7320508075688772},"546":{"tf":1.0},"548":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"569":{"tf":1.4142135623730951},"57":{"tf":2.6457513110645907},"577":{"tf":2.23606797749979},"58":{"tf":1.0},"580":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"588":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"611":{"tf":1.7320508075688772},"614":{"tf":1.4142135623730951},"615":{"tf":1.4142135623730951},"623":{"tf":1.7320508075688772},"627":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"637":{"tf":1.4142135623730951},"638":{"tf":1.0},"642":{"tf":2.23606797749979},"644":{"tf":1.0},"646":{"tf":1.4142135623730951},"652":{"tf":3.4641016151377544},"666":{"tf":1.0},"67":{"tf":1.4142135623730951},"674":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"680":{"tf":1.0},"686":{"tf":1.0},"697":{"tf":2.0},"698":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"704":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":2.6457513110645907},"772":{"tf":2.23606797749979},"78":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"791":{"tf":1.0},"818":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"86":{"tf":1.4142135623730951},"860":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"873":{"tf":1.0},"9":{"tf":2.6457513110645907},"91":{"tf":1.0},"916":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":3.3166247903554},"962":{"tf":1.0},"969":{"tf":4.358898943540674},"98":{"tf":2.6457513110645907},"99":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"315":{"tf":2.23606797749979},"316":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"(":{"\"":{"2":{"0":{"2":{"0":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"2":{"0":{"1":{"9":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"915":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"551":{"tf":1.4142135623730951},"553":{"tf":1.0}}}}}}}},"df":25,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"183":{"tf":1.4142135623730951},"288":{"tf":2.0},"376":{"tf":1.0},"549":{"tf":1.4142135623730951},"551":{"tf":2.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"556":{"tf":1.0},"664":{"tf":1.4142135623730951},"669":{"tf":1.0},"684":{"tf":2.23606797749979},"685":{"tf":1.0},"741":{"tf":1.0},"77":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951},"830":{"tf":1.0},"847":{"tf":1.4142135623730951},"87":{"tf":1.0},"881":{"tf":1.0},"914":{"tf":1.0},"98":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"376":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"549":{"tf":2.23606797749979},"550":{"tf":1.0},"551":{"tf":3.0},"552":{"tf":1.0},"553":{"tf":2.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":1.7320508075688772},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"559":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.7320508075688772},"776":{"tf":1.0},"78":{"tf":1.0},"813":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"956":{"tf":1.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{".":{"d":{"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":{"(":{"1":{"9":{"9":{"3":{"df":1,"docs":{"553":{"tf":1.0}}},"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":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":27,"docs":{"117":{"tf":1.7320508075688772},"127":{"tf":2.449489742783178},"132":{"tf":1.0},"175":{"tf":2.8284271247461903},"224":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":1.0},"379":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"830":{"tf":1.0},"861":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"814":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"831":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":89,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":2.449489742783178},"2":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.6457513110645907},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":3.0},"222":{"tf":2.23606797749979},"223":{"tf":2.23606797749979},"224":{"tf":3.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"233":{"tf":2.8284271247461903},"234":{"tf":1.7320508075688772},"235":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":2.23606797749979},"241":{"tf":2.449489742783178},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"315":{"tf":1.0},"348":{"tf":2.23606797749979},"349":{"tf":2.449489742783178},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":2.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":2.6457513110645907},"364":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"651":{"tf":1.0},"701":{"tf":1.0},"715":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"817":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"863":{"tf":1.0},"880":{"tf":1.0},"890":{"tf":1.0},"898":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"906":{"tf":1.0},"915":{"tf":1.0},"920":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":2,"docs":{"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"379":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"276":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"858":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"965":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":107,"docs":{"100":{"tf":2.0},"116":{"tf":1.0},"131":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":3.3166247903554},"205":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.4142135623730951},"289":{"tf":3.3166247903554},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.4142135623730951},"565":{"tf":1.7320508075688772},"568":{"tf":1.0},"570":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.4142135623730951},"668":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"690":{"tf":1.4142135623730951},"700":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"799":{"tf":1.0},"814":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"842":{"tf":1.0},"861":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"952":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"874":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":12,"docs":{"318":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0},"652":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"871":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":77,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":2.6457513110645907},"127":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":2.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.0},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"259":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"326":{"tf":1.7320508075688772},"336":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"38":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"568":{"tf":1.4142135623730951},"593":{"tf":1.0},"60":{"tf":1.0},"616":{"tf":1.0},"626":{"tf":1.0},"644":{"tf":1.7320508075688772},"647":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.7320508075688772},"686":{"tf":1.0},"690":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.6457513110645907},"947":{"tf":1.0},"951":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":49,"docs":{"190":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"35":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.4142135623730951},"649":{"tf":1.0},"677":{"tf":1.4142135623730951},"679":{"tf":1.0},"773":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"22":{"tf":1.0},"272":{"tf":1.4142135623730951},"315":{"tf":1.0},"721":{"tf":1.0},"789":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"315":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":33,"docs":{"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":2.449489742783178},"135":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"295":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"342":{"tf":1.4142135623730951},"741":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.4142135623730951},"838":{"tf":1.7320508075688772},"860":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.7320508075688772},"917":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"956":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"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":{"df":4,"docs":{"160":{"tf":1.4142135623730951},"838":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0}}}}}}}}}},"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":{"334":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"334":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"621":{"tf":2.23606797749979}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"626":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":4.358898943540674},"623":{"tf":1.7320508075688772},"626":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":45,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":2.0},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":2.0},"184":{"tf":1.0},"19":{"tf":2.0},"21":{"tf":1.0},"24":{"tf":2.0},"26":{"tf":1.7320508075688772},"270":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"376":{"tf":1.0},"41":{"tf":1.4142135623730951},"484":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"665":{"tf":1.7320508075688772},"671":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"744":{"tf":1.0},"750":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.4142135623730951},"823":{"tf":1.0},"844":{"tf":1.0},"858":{"tf":2.23606797749979},"859":{"tf":1.0},"880":{"tf":1.0},"882":{"tf":1.0},"9":{"tf":1.4142135623730951},"947":{"tf":1.0},"953":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"234":{"tf":1.0},"252":{"tf":1.0},"958":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":16,"docs":{"129":{"tf":1.0},"136":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"380":{"tf":1.7320508075688772},"715":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"805":{"tf":1.0},"838":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"124":{"tf":1.0},"315":{"tf":1.0},"330":{"tf":1.0},"697":{"tf":1.4142135623730951},"770":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":9,"docs":{"136":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"5":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":61,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"153":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"224":{"tf":1.0},"254":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":2.449489742783178},"292":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"315":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"579":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"823":{"tf":1.0},"87":{"tf":1.0},"964":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"22":{"tf":1.0},"568":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}}}},"r":{"df":4,"docs":{"175":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"'":{"df":1,"docs":{"462":{"tf":1.0}}},"df":20,"docs":{"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"193":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"354":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":2.0}},"’":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"949":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":32,"docs":{"109":{"tf":1.0},"120":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":2.0},"318":{"tf":1.0},"488":{"tf":1.0},"5":{"tf":1.4142135623730951},"515":{"tf":1.0},"56":{"tf":1.7320508075688772},"662":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"772":{"tf":1.7320508075688772},"799":{"tf":2.23606797749979},"857":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"104":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"22":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"741":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"11":{"tf":1.0},"132":{"tf":1.7320508075688772},"205":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"456":{"tf":1.0},"673":{"tf":1.7320508075688772},"72":{"tf":1.0},"77":{"tf":1.0},"846":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"956":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":13,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"223":{"tf":1.0},"626":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.7320508075688772},"675":{"tf":1.0},"773":{"tf":1.0},"79":{"tf":1.0},"964":{"tf":1.0}}}}}},"i":{"c":{"df":21,"docs":{"132":{"tf":2.449489742783178},"184":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"289":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"431":{"tf":1.0},"50":{"tf":1.7320508075688772},"73":{"tf":1.0},"835":{"tf":1.0},"94":{"tf":1.0}},"e":{"'":{"df":5,"docs":{"231":{"tf":1.0},"351":{"tf":1.0},"549":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"498":{"tf":1.4142135623730951},"500":{"tf":1.0}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"497":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"233":{"tf":1.7320508075688772},"254":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"640":{"tf":2.0},"642":{"tf":1.4142135623730951},"645":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"5":{"df":1,"docs":{"640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"21":{"tf":1.0},"254":{"tf":2.6457513110645907},"276":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"37":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"60":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"703":{"tf":1.0},"801":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":70,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"121":{"tf":1.4142135623730951},"127":{"tf":1.0},"137":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.0},"248":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.4142135623730951},"275":{"tf":1.0},"289":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":1.4142135623730951},"340":{"tf":1.0},"348":{"tf":1.4142135623730951},"37":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.4142135623730951},"471":{"tf":1.0},"488":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"515":{"tf":1.0},"52":{"tf":1.7320508075688772},"522":{"tf":1.0},"524":{"tf":1.0},"583":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"606":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"653":{"tf":1.7320508075688772},"660":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"685":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"705":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"82":{"tf":1.0},"830":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"912":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"402":{"tf":1.0},"619":{"tf":1.0},"673":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"376":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"613":{"tf":1.4142135623730951}}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":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":{"318":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"224":{"tf":1.0},"289":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"665":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"191":{"tf":1.0},"289":{"tf":1.4142135623730951},"33":{"tf":1.0},"652":{"tf":1.0},"792":{"tf":1.0},"807":{"tf":1.0},"916":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":26,"docs":{"114":{"tf":1.0},"127":{"tf":2.23606797749979},"135":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"338":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0},"665":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"690":{"tf":1.4142135623730951},"734":{"tf":1.0},"818":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"860":{"tf":1.4142135623730951},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"846":{"tf":1.0},"859":{"tf":1.0}}},"y":{"_":{"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":8,"docs":{"125":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":45,"docs":{"126":{"tf":1.4142135623730951},"145":{"tf":1.0},"162":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":2.23606797749979},"195":{"tf":1.0},"203":{"tf":3.1622776601683795},"206":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":2.23606797749979},"321":{"tf":2.0},"324":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":1.4142135623730951},"649":{"tf":1.4142135623730951},"667":{"tf":1.0},"716":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951},"872":{"tf":1.0},"930":{"tf":1.0},"950":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"872":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"734":{"tf":1.4142135623730951},"927":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"224":{"tf":1.0},"371":{"tf":1.0},"476":{"tf":1.0},"831":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"106":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"299":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"168":{"tf":1.0},"22":{"tf":1.0},"809":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":19,"docs":{"127":{"tf":1.0},"340":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0},"718":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":1.0},"774":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"865":{"tf":1.4142135623730951},"933":{"tf":1.0},"940":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"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":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"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":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"601":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"600":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":18,"docs":{"226":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"288":{"tf":1.0},"376":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":2.23606797749979},"615":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"119":{"tf":1.0},"184":{"tf":1.4142135623730951},"29":{"tf":1.0},"688":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"660":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":112,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"137":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":2.6457513110645907},"41":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":2.8284271247461903},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.0},"488":{"tf":2.6457513110645907},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"514":{"tf":2.0},"515":{"tf":2.6457513110645907},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.0},"549":{"tf":1.4142135623730951},"572":{"tf":3.0},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":2.23606797749979},"581":{"tf":1.0},"582":{"tf":2.0},"583":{"tf":2.6457513110645907},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"590":{"tf":1.4142135623730951},"591":{"tf":1.7320508075688772},"592":{"tf":1.7320508075688772},"593":{"tf":1.0},"594":{"tf":1.0},"718":{"tf":1.4142135623730951},"729":{"tf":2.0},"738":{"tf":1.0},"755":{"tf":1.0},"76":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"880":{"tf":1.0},"911":{"tf":1.7320508075688772},"958":{"tf":1.4142135623730951},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"673":{"tf":1.0},"728":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"480":{"tf":1.0},"759":{"tf":1.0},"854":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"v":{"df":1,"docs":{"969":{"tf":4.123105625617661}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"961":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":1,"docs":{"859":{"tf":1.0}}},"o":{"c":{"df":36,"docs":{"134":{"tf":1.0},"147":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.4142135623730951},"315":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":2.0},"335":{"tf":1.7320508075688772},"343":{"tf":1.0},"376":{"tf":1.0},"390":{"tf":1.7320508075688772},"400":{"tf":1.7320508075688772},"411":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"432":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"502":{"tf":1.0},"513":{"tf":1.7320508075688772},"525":{"tf":1.0},"536":{"tf":1.7320508075688772},"559":{"tf":1.7320508075688772},"571":{"tf":1.7320508075688772},"581":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.7320508075688772},"617":{"tf":1.0},"628":{"tf":1.0},"838":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.0},"912":{"tf":1.0},"924":{"tf":1.0}},"s":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"]":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":71,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":2.6457513110645907},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"254":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.7320508075688772},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"37":{"tf":2.23606797749979},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":2.23606797749979},"499":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.7320508075688772},"697":{"tf":1.0},"706":{"tf":1.0},"71":{"tf":1.0},"772":{"tf":1.4142135623730951},"799":{"tf":2.0},"801":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}}}}}}}},"df":14,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"342":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"493":{"tf":1.0},"57":{"tf":1.0},"692":{"tf":1.0},"76":{"tf":1.0},"831":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":1,"docs":{"969":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":20,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"205":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"640":{"tf":1.0},"649":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.4142135623730951},"793":{"tf":1.0},"82":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":3,"docs":{"17":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":2,"docs":{"289":{"tf":1.0},"523":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":31,"docs":{"135":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"19":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"480":{"tf":2.449489742783178},"493":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"583":{"tf":1.0},"630":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"753":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"782":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"814":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"338":{"tf":1.0},"621":{"tf":2.23606797749979},"77":{"tf":1.0},"792":{"tf":1.0},"834":{"tf":1.0},"862":{"tf":1.0},"98":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"710":{"tf":1.0}}}}},"t":{"df":2,"docs":{"184":{"tf":1.0},"346":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"110":{"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":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"747":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":19,"docs":{"144":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.4142135623730951},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"339":{"tf":2.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"377":{"tf":1.0},"468":{"tf":1.0},"814":{"tf":1.0},"848":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"17":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"661":{"tf":1.0},"673":{"tf":2.0},"675":{"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":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":18,"docs":{"127":{"tf":1.0},"232":{"tf":1.0},"310":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"750":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"947":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"884":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"448":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"425":{"tf":2.449489742783178},"445":{"tf":2.8284271247461903},"446":{"tf":4.0},"448":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.0},"135":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"224":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"328":{"tf":1.0},"601":{"tf":1.0},"732":{"tf":1.0},"753":{"tf":1.0},"758":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"818":{"tf":1.4142135623730951},"835":{"tf":1.0},"838":{"tf":1.0},"844":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"921":{"tf":1.0},"99":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"289":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"771":{"tf":1.0},"83":{"tf":1.4142135623730951},"834":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"125":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"271":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.4142135623730951},"725":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"208":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":2.0},"330":{"tf":1.0},"465":{"tf":1.0},"579":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"737":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"858":{"tf":1.0},"865":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"289":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"529":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"753":{"tf":1.4142135623730951},"78":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":44,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":3.4641016151377544},"136":{"tf":1.7320508075688772},"155":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"54":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"567":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":74,"docs":{"0":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"221":{"tf":1.0},"258":{"tf":1.4142135623730951},"281":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.23606797749979},"326":{"tf":1.0},"340":{"tf":1.4142135623730951},"346":{"tf":1.0},"348":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"4":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"456":{"tf":1.0},"476":{"tf":1.4142135623730951},"482":{"tf":1.0},"499":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"560":{"tf":1.0},"568":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"653":{"tf":1.7320508075688772},"661":{"tf":1.0},"665":{"tf":1.0},"710":{"tf":1.0},"78":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"456":{"tf":1.0},"484":{"tf":1.0},"78":{"tf":1.0},"877":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"82":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"62":{"tf":1.0},"728":{"tf":1.0},"862":{"tf":1.0},"968":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"218":{"tf":1.0},"677":{"tf":1.0},"814":{"tf":1.0},"924":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"529":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951}}}},"df":1,"docs":{"701":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"231":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"958":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"927":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":6,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"288":{"tf":1.0},"79":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":103,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"571":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772}}}}}}},"df":8,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"191":{"tf":1.0},"242":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":2.0},"329":{"tf":2.0},"332":{"tf":1.7320508075688772},"735":{"tf":1.0},"752":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"?":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{")":{".":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"333":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"65":{"tf":1.0},"916":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"549":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"328":{"tf":2.0},"644":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}}}},"f":{"df":1,"docs":{"815":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"344":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}},"b":{"df":0,"docs":{},"e":{"d":{"df":7,"docs":{"132":{"tf":1.0},"17":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"769":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"779":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"446":{"tf":1.0},"743":{"tf":1.0},"812":{"tf":1.0},"842":{"tf":1.0},"938":{"tf":1.4142135623730951}}},"y":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":23,"docs":{"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":8,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"50":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":88,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.0},"158":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":1.7320508075688772},"221":{"tf":2.0},"224":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.7320508075688772},"315":{"tf":2.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"322":{"tf":2.0},"324":{"tf":1.0},"348":{"tf":1.4142135623730951},"355":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.7320508075688772},"387":{"tf":1.0},"389":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"443":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"715":{"tf":1.4142135623730951},"721":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.7320508075688772},"762":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"818":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"861":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.4142135623730951},"956":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"208":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"_":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":11,"docs":{"128":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"541":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"731":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"696":{"tf":1.0},"697":{"tf":3.1622776601683795},"698":{"tf":2.449489742783178},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":2.0},"951":{"tf":1.4142135623730951}}}}}}},"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"1":{"6":{"/":{"1":{"7":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"/":{"0":{"4":{":":{"3":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"/":{"1":{"9":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":1.0},"184":{"tf":2.0},"203":{"tf":1.4142135623730951},"329":{"tf":1.0},"711":{"tf":1.0},"76":{"tf":1.0},"795":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.4142135623730951},"865":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.7320508075688772},"969":{"tf":1.0},"97":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"263":{"tf":1.7320508075688772},"31":{"tf":1.0},"763":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"867":{"tf":1.0},"922":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"135":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"289":{"tf":1.4142135623730951},"958":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"140":{"tf":1.4142135623730951},"316":{"tf":1.0},"376":{"tf":1.0},"429":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"452":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"652":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"927":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"104":{"tf":1.0},"118":{"tf":1.0},"142":{"tf":1.0},"183":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":4,"docs":{"127":{"tf":1.0},"710":{"tf":1.0},"834":{"tf":1.0},"913":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"268":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.7320508075688772},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"493":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"63":{"tf":1.0},"673":{"tf":1.0},"736":{"tf":1.0},"753":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"776":{"tf":1.0},"788":{"tf":1.0},"802":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"853":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"929":{"tf":1.0},"938":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"439":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"105":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.4142135623730951},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"526":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":29,"docs":{"138":{"tf":1.0},"140":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"32":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"34":{"tf":1.7320508075688772},"377":{"tf":1.0},"533":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"700":{"tf":1.4142135623730951},"71":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"958":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"563":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"750":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":49,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"19":{"tf":1.7320508075688772},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"229":{"tf":2.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"348":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"653":{"tf":1.0},"660":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":2.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":2.449489742783178},"691":{"tf":2.23606797749979},"692":{"tf":1.0},"721":{"tf":1.0},"74":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"841":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"907":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"921":{"tf":1.7320508075688772},"924":{"tf":1.0},"939":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"315":{"tf":1.0},"804":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"750":{"tf":1.0},"804":{"tf":1.0}}},"r":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":145,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":3.4641016151377544},"127":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"176":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"231":{"tf":1.0},"273":{"tf":2.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"356":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":2.6457513110645907},"435":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"481":{"tf":2.23606797749979},"484":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"517":{"tf":1.0},"520":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"538":{"tf":1.0},"541":{"tf":1.4142135623730951},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"570":{"tf":1.0},"575":{"tf":1.0},"578":{"tf":1.4142135623730951},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.4142135623730951},"609":{"tf":1.0},"612":{"tf":1.0},"618":{"tf":1.4142135623730951},"621":{"tf":1.0},"623":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":2.449489742783178},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"698":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"76":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"831":{"tf":1.0},"834":{"tf":2.449489742783178},"839":{"tf":1.0},"842":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"86":{"tf":1.0},"866":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"904":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"917":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":2.0},"929":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"94":{"tf":1.0},"945":{"tf":1.0},"97":{"tf":1.0}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":21,"docs":{"396":{"tf":1.0},"407":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.4142135623730951},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.4142135623730951},"578":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951},"635":{"tf":1.0},"643":{"tf":1.0},"840":{"tf":1.0},"913":{"tf":1.0},"924":{"tf":1.0},"933":{"tf":1.0}},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"396":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"428":{"tf":1.0},"544":{"tf":1.0},"566":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":13,"docs":{"386":{"tf":1.0},"407":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"578":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.4142135623730951},"643":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"396":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"428":{"tf":1.0},"476":{"tf":1.0},"544":{"tf":1.0},"566":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":13,"docs":{"386":{"tf":1.0},"407":{"tf":1.0},"476":{"tf":1.0},"497":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.4142135623730951},"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"5":{"df":1,"docs":{"942":{"tf":1.0}}},"6":{"df":1,"docs":{"950":{"tf":1.7320508075688772}}},"a":{"df":1,"docs":{"224":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"132":{"tf":1.4142135623730951},"224":{"tf":2.23606797749979}},"m":{"df":3,"docs":{"32":{"tf":1.7320508075688772},"700":{"tf":1.0},"912":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"922":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"2":{"tf":1.0},"4":{"tf":1.0},"962":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":3,"docs":{"261":{"tf":1.0},"289":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":17,"docs":{"100":{"tf":1.4142135623730951},"145":{"tf":1.0},"22":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"752":{"tf":1.0},"79":{"tf":1.4142135623730951},"802":{"tf":1.0},"845":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"580":{"tf":1.0},"591":{"tf":1.0}}}},"t":{"#":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{">":{".":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"142":{"tf":2.449489742783178},"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"213":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":132,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":3.4641016151377544},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"137":{"tf":1.0},"141":{"tf":2.23606797749979},"142":{"tf":4.358898943540674},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":2.23606797749979},"167":{"tf":1.4142135623730951},"168":{"tf":2.449489742783178},"169":{"tf":1.4142135623730951},"170":{"tf":3.0},"171":{"tf":2.0},"173":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":2.23606797749979},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":3.0},"214":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"258":{"tf":5.0},"259":{"tf":3.605551275463989},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":2.23606797749979},"263":{"tf":1.4142135623730951},"264":{"tf":2.449489742783178},"266":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":2.23606797749979},"324":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"346":{"tf":2.8284271247461903},"347":{"tf":1.0},"376":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"560":{"tf":3.1622776601683795},"561":{"tf":2.0},"562":{"tf":1.0},"563":{"tf":2.449489742783178},"564":{"tf":1.0},"565":{"tf":2.6457513110645907},"566":{"tf":1.4142135623730951},"567":{"tf":2.23606797749979},"568":{"tf":2.449489742783178},"569":{"tf":1.0},"570":{"tf":1.4142135623730951},"571":{"tf":1.0},"579":{"tf":1.0},"649":{"tf":1.0},"677":{"tf":2.8284271247461903},"679":{"tf":1.4142135623730951},"693":{"tf":1.0},"718":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.4142135623730951},"734":{"tf":1.0},"735":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":3.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"799":{"tf":3.0},"804":{"tf":2.23606797749979},"807":{"tf":1.0},"815":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.7320508075688772},"843":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.7320508075688772},"897":{"tf":1.4142135623730951},"900":{"tf":1.0},"907":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"929":{"tf":2.6457513110645907},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"939":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":2.6457513110645907},"956":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"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":{"(":{"0":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"[":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"565":{"tf":1.4142135623730951}}}}}}}},"s":{"df":1,"docs":{"112":{"tf":1.0}}}},"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"[":{"0":{"]":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"?":{"[":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"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":{"565":{"tf":1.0}}}}}}}}},"[":{"0":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"565":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"u":{"df":2,"docs":{"289":{"tf":1.0},"649":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"122":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"289":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"690":{"tf":1.0},"765":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"402":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"5":{"tf":1.0},"935":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":94,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":2.0},"115":{"tf":2.23606797749979},"119":{"tf":1.0},"120":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":3.1622776601683795},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"164":{"tf":1.4142135623730951},"171":{"tf":2.0},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":2.6457513110645907},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"316":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.4142135623730951},"376":{"tf":3.1622776601683795},"377":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"595":{"tf":1.0},"602":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.4142135623730951},"649":{"tf":1.0},"665":{"tf":1.0},"674":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"690":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"964":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"e":{"df":17,"docs":{"135":{"tf":1.4142135623730951},"168":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"378":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"127":{"tf":1.0},"135":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"l":{"df":3,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"677":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":34,"docs":{"130":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"288":{"tf":1.0},"321":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"677":{"tf":2.23606797749979},"679":{"tf":2.0},"765":{"tf":1.0},"772":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"u":{"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":{"679":{"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":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"679":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"267":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"203":{"tf":1.0},"318":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":1,"docs":{"17":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"289":{"tf":1.0},"340":{"tf":1.7320508075688772},"346":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"78":{"tf":1.0},"837":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"379":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"780":{"tf":1.0},"8":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"476":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"22":{"tf":1.0},"861":{"tf":1.0},"935":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"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":{"26":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":33,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":2.449489742783178},"118":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":2.23606797749979},"416":{"tf":2.449489742783178},"427":{"tf":2.6457513110645907},"437":{"tf":2.449489742783178},"460":{"tf":1.0},"480":{"tf":2.449489742783178},"507":{"tf":2.6457513110645907},"531":{"tf":2.449489742783178},"563":{"tf":1.0},"577":{"tf":2.6457513110645907},"600":{"tf":2.0},"652":{"tf":1.0},"692":{"tf":1.4142135623730951},"701":{"tf":1.0},"817":{"tf":1.0},"86":{"tf":1.4142135623730951},"935":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772}},"e":{"d":{"_":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"553":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":43,"docs":{"129":{"tf":1.0},"131":{"tf":2.6457513110645907},"158":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"203":{"tf":3.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":3.0},"306":{"tf":1.0},"307":{"tf":2.0},"315":{"tf":1.0},"326":{"tf":3.3166247903554},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"329":{"tf":2.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.0},"784":{"tf":1.0},"819":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"865":{"tf":1.0},"873":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"376":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}},"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":27,"docs":{"124":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.0},"210":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":3.0},"315":{"tf":1.0},"330":{"tf":2.23606797749979},"334":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"718":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.4142135623730951},"958":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"328":{"tf":2.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"65":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":3.4641016151377544},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"685":{"tf":2.449489742783178},"77":{"tf":2.449489742783178},"830":{"tf":1.7320508075688772},"858":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":2.449489742783178}},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"774":{"tf":1.0},"830":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"251":{"tf":1.0},"266":{"tf":1.0}}}},"n":{"df":4,"docs":{"677":{"tf":1.0},"702":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"137":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.0},"318":{"tf":1.0},"342":{"tf":1.0},"460":{"tf":1.0},"529":{"tf":2.449489742783178},"60":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"471":{"tf":1.0},"503":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"12":{"tf":1.0},"224":{"tf":1.4142135623730951},"317":{"tf":1.0},"34":{"tf":1.0},"690":{"tf":1.4142135623730951},"837":{"tf":1.0},"953":{"tf":1.0}}}},"s":{"df":34,"docs":{"111":{"tf":1.0},"211":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"236":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"317":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"742":{"tf":1.0},"772":{"tf":1.4142135623730951},"788":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"823":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"913":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"862":{"tf":1.0},"864":{"tf":1.0}}}}}}},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"13":{"tf":1.0},"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"670":{"tf":1.4142135623730951},"672":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"663":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"184":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"679":{"tf":1.0},"734":{"tf":1.0},"77":{"tf":1.4142135623730951},"795":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":24,"docs":{"0":{"tf":1.0},"17":{"tf":2.449489742783178},"19":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"33":{"tf":2.0},"342":{"tf":1.4142135623730951},"500":{"tf":1.0},"592":{"tf":1.0},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951},"848":{"tf":1.0},"853":{"tf":1.7320508075688772},"902":{"tf":1.0},"915":{"tf":1.0},"940":{"tf":1.0},"950":{"tf":1.7320508075688772},"956":{"tf":1.0},"958":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"494":{"tf":1.0},"621":{"tf":3.1622776601683795},"626":{"tf":1.7320508075688772},"672":{"tf":1.4142135623730951},"721":{"tf":1.0},"743":{"tf":1.0},"804":{"tf":1.0},"862":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.0}}}}},"r":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"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":{"328":{"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{":":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"799":{"tf":1.0}}},"2":{"df":1,"docs":{"799":{"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":7,"docs":{"560":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"852":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"315":{"tf":1.0},"41":{"tf":1.0}}}},"df":52,"docs":{"110":{"tf":1.0},"112":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"131":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"224":{"tf":2.0},"259":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":2.8284271247461903},"333":{"tf":1.0},"388":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"534":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"563":{"tf":3.605551275463989},"565":{"tf":1.7320508075688772},"568":{"tf":2.8284271247461903},"570":{"tf":1.0},"580":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"603":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"677":{"tf":1.0},"679":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"799":{"tf":2.0},"865":{"tf":1.4142135623730951},"89":{"tf":1.0},"897":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"117":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"0":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"697":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"802":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"230":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"303":{"tf":1.0},"958":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"127":{"tf":1.0},"132":{"tf":1.0},"162":{"tf":1.0},"19":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"859":{"tf":1.4142135623730951},"895":{"tf":1.0},"935":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"127":{"tf":2.0},"273":{"tf":1.0},"294":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"792":{"tf":1.0},"834":{"tf":1.4142135623730951},"849":{"tf":1.0},"929":{"tf":1.0},"935":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"895":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"203":{"tf":1.0},"289":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0}}},"s":{"df":32,"docs":{"100":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"652":{"tf":2.6457513110645907},"73":{"tf":1.0},"734":{"tf":1.0},"79":{"tf":1.4142135623730951},"875":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":1,"docs":{"923":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"958":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"288":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"183":{"tf":1.4142135623730951},"248":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"65":{"tf":1.0},"869":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"802":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"715":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0}}}}}},"df":8,"docs":{"100":{"tf":1.0},"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"79":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":71,"docs":{"0":{"tf":1.0},"138":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":2.449489742783178},"195":{"tf":3.0},"196":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"198":{"tf":2.8284271247461903},"199":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":5.830951894845301},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":2.23606797749979},"209":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.4142135623730951},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"397":{"tf":1.4142135623730951},"399":{"tf":1.0},"418":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"694":{"tf":1.0},"701":{"tf":1.0},"720":{"tf":1.0},"738":{"tf":1.0},"74":{"tf":1.0},"757":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"841":{"tf":1.0},"863":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0},"963":{"tf":1.0},"965":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"b":{"8":{"/":{"1":{"7":{":":{"0":{"0":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.6457513110645907}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"958":{"tf":1.0}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"132":{"tf":1.0},"16":{"tf":1.0},"195":{"tf":2.0},"198":{"tf":1.0},"316":{"tf":1.7320508075688772},"895":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":10,"docs":{"117":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"793":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"877":{"tf":1.0}}}},"i":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":29,"docs":{"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"328":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"644":{"tf":1.0},"677":{"tf":2.0},"697":{"tf":1.0},"734":{"tf":1.0},"750":{"tf":1.0},"755":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"782":{"tf":1.0},"801":{"tf":1.0},"839":{"tf":1.4142135623730951},"865":{"tf":1.0}}},"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":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":119,"docs":{"108":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":2.23606797749979},"116":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":3.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":2.23606797749979},"202":{"tf":1.0},"203":{"tf":2.0},"21":{"tf":2.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":2.23606797749979},"282":{"tf":1.4142135623730951},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.23606797749979},"292":{"tf":1.4142135623730951},"293":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":2.23606797749979},"301":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"303":{"tf":1.4142135623730951},"31":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"340":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"38":{"tf":2.0},"398":{"tf":1.4142135623730951},"41":{"tf":1.0},"419":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":2.0},"440":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"499":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"533":{"tf":1.0},"55":{"tf":1.0},"563":{"tf":1.0},"59":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"614":{"tf":1.4142135623730951},"661":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"677":{"tf":2.0},"678":{"tf":2.8284271247461903},"68":{"tf":1.0},"686":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.4142135623730951},"753":{"tf":1.0},"77":{"tf":1.0},"783":{"tf":1.0},"812":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"850":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.23606797749979},"9":{"tf":1.0},"91":{"tf":1.0},"924":{"tf":1.0},"950":{"tf":1.7320508075688772},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"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":2,"docs":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"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":{},"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":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":2,"docs":{"232":{"tf":1.0},"379":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"234":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"315":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"11":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"182":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.0},"653":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.4142135623730951},"693":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"d":{"df":10,"docs":{"232":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.7320508075688772},"34":{"tf":1.0},"401":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"376":{"tf":1.0},"467":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"149":{"tf":1.0},"22":{"tf":1.4142135623730951},"318":{"tf":1.0},"339":{"tf":1.0},"652":{"tf":1.0},"747":{"tf":1.0},"801":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":25,"docs":{"110":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"289":{"tf":2.0},"31":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"354":{"tf":1.0},"462":{"tf":1.0},"646":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"?":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"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":1,"docs":{"565":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"d":{"df":10,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"313":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"811":{"tf":1.0},"909":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"556":{"tf":1.0}}}}}},"df":66,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":3.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"191":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"328":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":2.449489742783178},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"65":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"747":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"804":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"881":{"tf":1.0},"888":{"tf":1.0},"897":{"tf":1.0},"968":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"t":{"df":8,"docs":{"106":{"tf":1.4142135623730951},"22":{"tf":1.0},"630":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0},"961":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"371":{"tf":1.0},"961":{"tf":1.0}}}},"x":{"df":58,"docs":{"117":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"50":{"tf":1.0},"541":{"tf":1.0},"632":{"tf":1.0},"720":{"tf":1.0},"731":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"797":{"tf":1.0},"804":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.0},"818":{"tf":1.4142135623730951},"820":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.4142135623730951},"843":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"876":{"tf":1.0},"880":{"tf":1.4142135623730951},"881":{"tf":1.0},"892":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"924":{"tf":2.23606797749979},"926":{"tf":1.0},"929":{"tf":1.0},"935":{"tf":1.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"946":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.7320508075688772}},"e":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"0":{")":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"d":{"(":{"2":{"0":{"1":{"9":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"100":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"355":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"649":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"682":{"tf":1.0},"715":{"tf":1.0},"79":{"tf":1.0},"861":{"tf":1.0},"872":{"tf":1.0},"908":{"tf":1.4142135623730951}},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"383":{"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":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"2":{"df":1,"docs":{"851":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"239":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"p":{"df":3,"docs":{"342":{"tf":1.0},"666":{"tf":1.0},"741":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"918":{"tf":1.4142135623730951},"937":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"459":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"720":{"tf":1.0},"722":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"786":{"tf":1.0},"807":{"tf":1.0},"867":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.0}}}},"n":{"df":12,"docs":{"26":{"tf":1.0},"342":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":5,"docs":{"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"830":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"44":{"tf":1.0},"677":{"tf":1.0},"683":{"tf":1.0},"831":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":80,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":2.23606797749979},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"55":{"tf":1.0},"560":{"tf":1.0},"580":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"60":{"tf":1.0},"614":{"tf":1.0},"626":{"tf":1.0},"662":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"697":{"tf":1.0},"72":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0},"919":{"tf":1.0},"93":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"715":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"c":{"df":8,"docs":{"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"354":{"tf":1.0},"679":{"tf":1.0},"792":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"155":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.4142135623730951},"224":{"tf":1.0},"231":{"tf":1.0},"807":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"476":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"968":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"268":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":84,"docs":{"108":{"tf":1.0},"115":{"tf":1.4142135623730951},"128":{"tf":1.0},"138":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":2.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":1.7320508075688772},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"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},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.4142135623730951},"387":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"864":{"tf":1.0},"87":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.4142135623730951},"969":{"tf":3.0}}}},"df":14,"docs":{"110":{"tf":1.0},"231":{"tf":1.0},"288":{"tf":1.0},"320":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"823":{"tf":1.0},"89":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"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":6,"docs":{"12":{"tf":1.0},"775":{"tf":1.0},"793":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0}},"s":{":":{"$":{"df":0,"docs":{},"{":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"12":{"tf":1.0},"793":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"288":{"tf":1.0},"796":{"tf":1.0},"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":135,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"34":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"548":{"tf":1.0},"553":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"565":{"tf":1.0},"571":{"tf":1.0},"577":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"617":{"tf":1.0},"623":{"tf":1.0},"628":{"tf":1.0},"634":{"tf":1.0},"637":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"814":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"117":{"tf":1.0},"289":{"tf":1.0},"350":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"618":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"63":{"tf":1.0},"711":{"tf":1.0},"80":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"318":{"tf":1.0},"356":{"tf":1.0},"657":{"tf":1.4142135623730951},"776":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":6,"docs":{"22":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.4142135623730951}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"297":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":4,"docs":{"173":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"752":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"958":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"282":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":281,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"122":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"184":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"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},"746":{"tf":1.0},"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},"755":{"tf":1.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},"765":{"tf":1.0},"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},"78":{"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"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.0},"895":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"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.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":6,"docs":{"184":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"22":{"tf":1.0},"538":{"tf":1.0},"900":{"tf":1.0}}}}},"n":{"c":{"df":14,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"505":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"111":{"tf":1.4142135623730951},"144":{"tf":1.0},"192":{"tf":1.0},"205":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"318":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"338":{"tf":1.7320508075688772},"342":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":2.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"471":{"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},"48":{"tf":1.0},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"514":{"tf":1.0},"652":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"725":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.0},"743":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.0},"772":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.4142135623730951},"810":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.0},"867":{"tf":1.4142135623730951},"905":{"tf":1.0},"907":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"924":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"958":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"315":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"190":{"tf":1.0},"310":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"830":{"tf":1.0},"87":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"613":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"958":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"334":{"tf":2.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"703":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0}}}}}}},"df":1,"docs":{"687":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"580":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"270":{"tf":1.0},"316":{"tf":1.0},"376":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.4142135623730951},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"830":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"792":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"d":{"/":{"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":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":224,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"144":{"tf":1.4142135623730951},"166":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"175":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.7320508075688772},"224":{"tf":1.0},"25":{"tf":1.4142135623730951},"252":{"tf":1.0},"26":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.7320508075688772},"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.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"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},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.4142135623730951},"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},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"371":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"51":{"tf":1.0},"514":{"tf":1.7320508075688772},"52":{"tf":1.0},"528":{"tf":2.8284271247461903},"54":{"tf":1.0},"563":{"tf":2.0},"582":{"tf":1.7320508075688772},"65":{"tf":1.0},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.7320508075688772},"671":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":1.7320508075688772},"687":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"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.4142135623730951},"738":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"78":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"888":{"tf":1.4142135623730951},"9":{"tf":1.0},"914":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"b":{"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":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"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":0,"docs":{},"m":{"df":1,"docs":{"804":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"838":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":53,"docs":{"127":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"360":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"651":{"tf":1.0},"711":{"tf":1.0},"721":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"876":{"tf":1.0},"905":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"838":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"x":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"612":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"609":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"612":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"613":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"510":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":1,"docs":{"22":{"tf":1.0}}},"t":{"df":4,"docs":{"132":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"60":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":107,"docs":{"110":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.0},"571":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"60":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.4142135623730951},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.0},"969":{"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":{"17":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"32":{"tf":1.7320508075688772},"44":{"tf":1.0},"660":{"tf":1.7320508075688772},"677":{"tf":1.0},"688":{"tf":1.7320508075688772}},"n":{"df":90,"docs":{"104":{"tf":1.0},"110":{"tf":1.7320508075688772},"130":{"tf":1.0},"140":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.0},"373":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"673":{"tf":1.0},"782":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772},"929":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":2.6457513110645907}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"276":{"tf":1.0},"68":{"tf":2.23606797749979},"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"'":{"df":10,"docs":{"2":{"tf":1.0},"22":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.0},"349":{"tf":1.0},"693":{"tf":1.0},"838":{"tf":1.4142135623730951},"875":{"tf":1.0},"969":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"393":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"157":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"865":{"tf":1.0}}}},"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":{},"n":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":2,"docs":{"124":{"tf":1.0},"892":{"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"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":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"22":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"127":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"716":{"tf":1.0},"721":{"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":{},"v":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"i":{"d":{"]":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"492":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"493":{"tf":1.0},"494":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"120":{"tf":1.0},"124":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"\"":{"df":0,"docs":{},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"127":{"tf":1.0},"809":{"tf":1.0}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"127":{"tf":1.0},"310":{"tf":1.0},"773":{"tf":1.0},"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"120":{"tf":1.0},"176":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"383":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"2":{"3":{"df":1,"docs":{"574":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"858":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"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":{"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":{"338":{"tf":1.0},"678":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"679":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"238":{"tf":1.4142135623730951},"315":{"tf":2.0},"316":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.7320508075688772},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"701":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"551":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":28,"docs":{"121":{"tf":1.0},"136":{"tf":1.0},"168":{"tf":1.0},"222":{"tf":1.0},"240":{"tf":1.4142135623730951},"31":{"tf":1.0},"315":{"tf":1.0},"34":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"52":{"tf":1.0},"561":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":2.0},"916":{"tf":1.0},"923":{"tf":1.4142135623730951},"934":{"tf":1.0},"936":{"tf":1.0},"948":{"tf":1.0},"958":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"834":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"243":{"tf":1.0}}}}}},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"3":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"[":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"585":{"tf":1.0},"586":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"585":{"tf":1.0},"586":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"[":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"519":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"517":{"tf":1.0}}}}}}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"df":3,"docs":{"315":{"tf":1.0},"338":{"tf":1.0},"678":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"168":{"tf":1.0},"752":{"tf":1.0},"912":{"tf":1.0},"929":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}},"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"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":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":1,"docs":{"920":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"920":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"920":{"tf":1.0}},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":3,"docs":{"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"342":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"9":{"tf":1.0},"921":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":2,"docs":{"316":{"tf":1.0},"338":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"[":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"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":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":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":{"407":{"tf":1.0},"532":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"643":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"333":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"924":{"tf":1.0},"927":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"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":{},"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":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"802":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"135":{"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":{},"s":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"127":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"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":{},"s":{"df":3,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"829":{"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"127":{"tf":1.0},"842":{"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":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"127":{"tf":1.0}},"r":{"df":2,"docs":{"127":{"tf":1.0},"747":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"747":{"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":{},"r":{".":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"l":{"df":1,"docs":{"862":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"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":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"752":{"tf":1.0},"811":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"127":{"tf":1.0},"762":{"tf":1.0},"806":{"tf":1.0},"809":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.0},"127":{"tf":1.0},"806":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"739":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"747":{"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"/":{"4":{"0":{".":{"0":{".":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"3":{"3":{".":{"0":{".":{"0":{"df":1,"docs":{"11":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"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":{},"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":{"318":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":23,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":3,"docs":{"316":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"338":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"329":{"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"\"":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"318":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"85":{"tf":1.0}}}}}},"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":{"11":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"26":{"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":{},"r":{"df":1,"docs":{"823":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":1,"docs":{"369":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":4,"docs":{"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"362":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"362":{"tf":1.7320508075688772}}}}}},"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":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":3,"docs":{"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"505":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"n":{"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":11,"docs":{"497":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":7,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"652":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":84,"docs":{"115":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"288":{"tf":1.0},"290":{"tf":1.4142135623730951},"294":{"tf":1.0},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"567":{"tf":1.0},"653":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":2.8284271247461903},"678":{"tf":1.0},"689":{"tf":1.4142135623730951},"690":{"tf":1.0},"692":{"tf":2.449489742783178},"715":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"783":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"864":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":2.23606797749979},"943":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"21":{"tf":1.0}}},"=":{"=":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"8":{".":{"1":{"df":1,"docs":{"673":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}},"df":0,"docs":{}},"df":2,"docs":{"690":{"tf":1.0},"907":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"673":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"673":{"tf":1.4142135623730951},"690":{"tf":1.0},"907":{"tf":1.0}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"375":{"tf":1.7320508075688772}},"s":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}},"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}},"e":{"=":{"$":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"114":{"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":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"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":{"728":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"315":{"tf":1.0},"316":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"751":{"tf":1.0},"805":{"tf":1.0},"839":{"tf":1.0},"840":{"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":{"837":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":517,"docs":{"0":{"tf":3.872983346207417},"1":{"tf":1.0},"10":{"tf":2.449489742783178},"100":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":2.449489742783178},"111":{"tf":2.23606797749979},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":2.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":2.23606797749979},"126":{"tf":2.8284271247461903},"127":{"tf":2.23606797749979},"128":{"tf":1.0},"13":{"tf":3.0},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":3.1622776601683795},"14":{"tf":2.449489742783178},"141":{"tf":1.0},"142":{"tf":2.6457513110645907},"145":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":2.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.7320508075688772},"17":{"tf":3.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":2.23606797749979},"18":{"tf":2.449489742783178},"180":{"tf":2.23606797749979},"181":{"tf":2.23606797749979},"182":{"tf":2.23606797749979},"183":{"tf":3.1622776601683795},"184":{"tf":2.0},"185":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":3.3166247903554},"196":{"tf":1.0},"197":{"tf":2.449489742783178},"198":{"tf":2.449489742783178},"199":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.7320508075688772},"203":{"tf":2.6457513110645907},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":2.449489742783178},"209":{"tf":1.4142135623730951},"21":{"tf":2.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.6457513110645907},"219":{"tf":1.0},"22":{"tf":2.6457513110645907},"220":{"tf":1.0},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":2.23606797749979},"224":{"tf":3.0},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":2.449489742783178},"230":{"tf":2.0},"231":{"tf":2.6457513110645907},"232":{"tf":2.8284271247461903},"233":{"tf":3.1622776601683795},"234":{"tf":2.6457513110645907},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.0},"239":{"tf":2.0},"24":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":3.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":2.6457513110645907},"259":{"tf":1.7320508075688772},"26":{"tf":2.6457513110645907},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":2.23606797749979},"27":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":2.6457513110645907},"290":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":2.23606797749979},"308":{"tf":1.7320508075688772},"309":{"tf":2.0},"31":{"tf":1.4142135623730951},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":3.3166247903554},"316":{"tf":4.358898943540674},"317":{"tf":1.7320508075688772},"318":{"tf":5.385164807134504},"32":{"tf":3.7416573867739413},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.23606797749979},"326":{"tf":1.7320508075688772},"328":{"tf":2.23606797749979},"329":{"tf":1.4142135623730951},"33":{"tf":2.449489742783178},"330":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.7320508075688772},"340":{"tf":2.23606797749979},"342":{"tf":1.4142135623730951},"344":{"tf":2.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":2.0},"350":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.4142135623730951},"36":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":2.23606797749979},"371":{"tf":1.4142135623730951},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"383":{"tf":1.0},"385":{"tf":1.0},"39":{"tf":2.23606797749979},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"398":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"402":{"tf":2.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"419":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.0},"425":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":2.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":2.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.6457513110645907},"50":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":2.449489742783178},"52":{"tf":2.6457513110645907},"522":{"tf":1.4142135623730951},"528":{"tf":1.0},"529":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"54":{"tf":1.7320508075688772},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"56":{"tf":1.0},"561":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"580":{"tf":1.0},"59":{"tf":1.0},"591":{"tf":1.4142135623730951},"598":{"tf":1.0},"6":{"tf":2.449489742783178},"60":{"tf":2.0},"600":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.0},"614":{"tf":1.4142135623730951},"619":{"tf":1.7320508075688772},"62":{"tf":3.1622776601683795},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.7320508075688772},"630":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":2.23606797749979},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"647":{"tf":1.4142135623730951},"649":{"tf":2.0},"65":{"tf":2.6457513110645907},"652":{"tf":1.0},"653":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"656":{"tf":1.7320508075688772},"657":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.0},"67":{"tf":1.7320508075688772},"670":{"tf":1.0},"671":{"tf":2.8284271247461903},"673":{"tf":2.449489742783178},"674":{"tf":2.0},"675":{"tf":1.0},"676":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"678":{"tf":2.6457513110645907},"679":{"tf":1.0},"68":{"tf":1.7320508075688772},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":2.6457513110645907},"688":{"tf":1.7320508075688772},"689":{"tf":1.4142135623730951},"690":{"tf":1.7320508075688772},"691":{"tf":1.7320508075688772},"692":{"tf":2.449489742783178},"693":{"tf":1.7320508075688772},"697":{"tf":1.7320508075688772},"698":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":2.8284271247461903},"704":{"tf":1.7320508075688772},"705":{"tf":1.7320508075688772},"706":{"tf":1.4142135623730951},"707":{"tf":2.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"710":{"tf":1.0},"712":{"tf":2.0},"715":{"tf":1.7320508075688772},"716":{"tf":1.0},"721":{"tf":1.7320508075688772},"732":{"tf":1.4142135623730951},"736":{"tf":1.7320508075688772},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":2.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.4142135623730951},"755":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"78":{"tf":2.23606797749979},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"79":{"tf":1.7320508075688772},"792":{"tf":2.0},"793":{"tf":2.8284271247461903},"798":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":2.0},"817":{"tf":1.4142135623730951},"818":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"828":{"tf":1.0},"83":{"tf":1.4142135623730951},"831":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":2.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":2.0},"854":{"tf":1.4142135623730951},"858":{"tf":1.7320508075688772},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":2.0},"862":{"tf":1.0},"865":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.7320508075688772},"872":{"tf":1.0},"873":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"881":{"tf":1.7320508075688772},"882":{"tf":1.4142135623730951},"885":{"tf":1.0},"892":{"tf":1.0},"9":{"tf":3.4641016151377544},"91":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":2.449489742783178},"916":{"tf":2.23606797749979},"917":{"tf":1.0},"919":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"920":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"945":{"tf":1.7320508075688772},"951":{"tf":2.23606797749979},"956":{"tf":1.4142135623730951},"957":{"tf":2.449489742783178},"958":{"tf":5.291502622129181},"962":{"tf":1.7320508075688772},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"347":{"tf":1.4142135623730951}}}}}}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.4142135623730951}}}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"666":{"tf":1.4142135623730951},"667":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"[":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"112":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"779":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"649":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"670":{"tf":1.4142135623730951},"672":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"720":{"tf":1.0},"867":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"318":{"tf":1.4142135623730951},"885":{"tf":1.0}},"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":{},"p":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{"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":1,"docs":{"318":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"473":{"tf":1.7320508075688772},"876":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"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":1,"docs":{"318":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"’":{"df":3,"docs":{"3":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"21":{"tf":1.4142135623730951},"38":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"830":{"tf":1.0},"834":{"tf":1.4142135623730951},"858":{"tf":1.0},"864":{"tf":1.0}}}}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"22":{"tf":1.0},"239":{"tf":1.0},"318":{"tf":1.0},"774":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"5":{"tf":1.4142135623730951},"702":{"tf":2.0},"703":{"tf":1.0},"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},"958":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"t":{"+":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"136":{"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":{},"t":{"c":{"+":{"0":{"df":1,"docs":{"136":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"445":{"tf":1.0},"446":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"n":{"df":3,"docs":{"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.4142135623730951}}}},"df":22,"docs":{"122":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"168":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"425":{"tf":2.449489742783178},"445":{"tf":2.449489742783178},"446":{"tf":2.449489742783178},"448":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"619":{"tf":1.0},"675":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":5,"docs":{"109":{"tf":1.0},"145":{"tf":1.4142135623730951},"198":{"tf":1.0},"859":{"tf":1.0},"88":{"tf":1.0}}},"o":{"d":{"df":7,"docs":{"107":{"tf":1.4142135623730951},"114":{"tf":1.0},"233":{"tf":1.0},"63":{"tf":1.0},"678":{"tf":1.0},"830":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"448":{"tf":1.0}}}}}},"r":{"a":{"b":{"df":1,"docs":{"665":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"339":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"802":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"l":{"df":32,"docs":{"11":{"tf":1.0},"13":{"tf":2.8284271247461903},"318":{"tf":1.0},"663":{"tf":1.7320508075688772},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.4142135623730951},"675":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"731":{"tf":1.0},"735":{"tf":1.0},"750":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"786":{"tf":1.4142135623730951},"792":{"tf":2.0},"793":{"tf":1.0},"801":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"670":{"tf":1.0},"673":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":2,"docs":{"673":{"tf":1.4142135623730951},"862":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"376":{"tf":1.0},"467":{"tf":1.0}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"2":{"3":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"578":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"578":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"2":{"3":{"df":1,"docs":{"574":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"578":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"2":{"3":{"df":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"578":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"577":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"577":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"288":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"tf":1.4142135623730951}}}},"p":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"673":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":9,"docs":{"0":{"tf":1.0},"285":{"tf":1.4142135623730951},"288":{"tf":1.0},"297":{"tf":1.0},"654":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"w":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"142":{"tf":1.0},"342":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"849":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"878":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"df":25,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"117":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":2.0},"23":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"29":{"tf":1.0},"349":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":2.449489742783178},"964":{"tf":1.4142135623730951},"965":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"110":{"tf":1.0},"5":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"959":{"tf":1.7320508075688772},"960":{"tf":1.4142135623730951},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"968":{"tf":1.7320508075688772},"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"852":{"tf":1.0},"853":{"tf":1.0},"913":{"tf":1.0},"933":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}}},"h":{"1":{"2":{"0":{"2":{"0":{"df":1,"docs":{"958":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"521":{"tf":1.0}}},"3":{"df":1,"docs":{"521":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"65":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"514":{"tf":1.0}},"l":{"df":27,"docs":{"109":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"371":{"tf":1.0},"402":{"tf":1.0},"563":{"tf":2.0},"679":{"tf":1.0},"710":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"833":{"tf":1.4142135623730951},"865":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"958":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"169":{"tf":1.0}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"679":{"tf":1.0},"858":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"120":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.0},"155":{"tf":1.0},"312":{"tf":1.0},"376":{"tf":1.7320508075688772},"401":{"tf":1.0},"457":{"tf":1.0},"50":{"tf":1.4142135623730951},"60":{"tf":1.0},"618":{"tf":1.7320508075688772},"697":{"tf":1.0},"701":{"tf":1.0},"710":{"tf":1.0},"75":{"tf":2.0},"802":{"tf":1.0},"809":{"tf":1.0},"823":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"878":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"96":{"tf":2.0}}}},"i":{"df":2,"docs":{"254":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}},"r":{"d":{"df":3,"docs":{"22":{"tf":1.0},"461":{"tf":1.0},"830":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"274":{"tf":2.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"114":{"tf":1.0}},"m":{"df":2,"docs":{"830":{"tf":1.0},"923":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"132":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"328":{"tf":1.0},"799":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"677":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"267":{"tf":1.0},"476":{"tf":1.4142135623730951},"494":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"776":{"tf":1.0},"963":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":21,"docs":{"129":{"tf":1.0},"136":{"tf":2.8284271247461903},"317":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"697":{"tf":1.0},"741":{"tf":1.0},"775":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"847":{"tf":1.0},"858":{"tf":1.0},"913":{"tf":1.0},"936":{"tf":1.4142135623730951},"951":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"747":{"tf":1.0}}}}},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"509":{"tf":1.0},"512":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"606":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":22,"docs":{"117":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.4142135623730951},"226":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"461":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.7320508075688772}}}}}},"n":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"127":{"tf":1.0},"254":{"tf":2.449489742783178},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"677":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"728":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"397":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"117":{"tf":1.0},"145":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"456":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"135":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"289":{"tf":1.4142135623730951},"546":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"289":{"tf":1.0}}}}}},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":1.0},"632":{"tf":1.0}}}}}}}}},"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}}}},"df":12,"docs":{"376":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"503":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":8,"docs":{"132":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}},"i":{"df":1,"docs":{"289":{"tf":1.7320508075688772}}}}}}},"t":{"df":5,"docs":{"127":{"tf":1.0},"142":{"tf":1.0},"50":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"315":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"df":3,"docs":{"149":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"198":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"655":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"802":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"142":{"tf":1.0},"173":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"811":{"tf":1.0}}},"s":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{"/":{"1":{".":{"0":{"df":1,"docs":{"521":{"tf":1.0}}},"1":{"df":1,"docs":{"521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"519":{"tf":1.0}}},"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"590":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"590":{"tf":1.0}}},":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"df":2,"docs":{"138":{"tf":1.0},"292":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"87":{"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":1,"docs":{"645":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"626":{"tf":1.0}},"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":2,"docs":{"625":{"tf":1.0},"626":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"626":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"521":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"317":{"tf":1.0}}}}}}}},"df":18,"docs":{"237":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"340":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"745":{"tf":1.0},"922":{"tf":1.4142135623730951},"933":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"0":{"0":{"0":{"0":{"0":{"0":{"df":21,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"4":{"5":{"6":{"7":{"8":{"9":{"df":3,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"1":{"2":{"9":{"3":{"8":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"0":{"9":{"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"8":{"7":{"7":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"6":{"2":{"2":{"df":1,"docs":{"126":{"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":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"0":{"0":{"0":{"0":{"0":{"#":{"c":{"3":{"df":22,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"466":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"1":{"2":{"9":{"3":{"8":{"#":{"c":{"3":{"df":2,"docs":{"125":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"0":{"4":{"8":{"#":{"c":{"1":{"3":{"df":1,"docs":{"127":{"tf":1.0}}},"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":{"2":{"4":{"7":{"9":{"df":2,"docs":{"677":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"9":{"5":{"#":{"c":{"6":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"8":{"7":{"7":{"#":{"c":{"2":{"5":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"2":{"6":{"2":{"2":{"#":{"c":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"645":{"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"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":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{".":{"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"3":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"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":{},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"705":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"707":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"16":{"tf":1.0},"26":{"tf":1.0},"705":{"tf":1.0},"776":{"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":{}}}}}},"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":{},"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"31":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"2":{"df":2,"docs":{"11":{"tf":1.0},"13":{"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":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"/":{"2":{".":{"0":{"df":1,"docs":{"7":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"540":{"tf":1.0},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"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":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"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":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"316":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"254":{"tf":1.0},"288":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"294":{"tf":1.0},"762":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"693":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"693":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"693":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"i":{".":{"df":10,"docs":{"157":{"tf":1.0},"20":{"tf":1.0},"224":{"tf":1.0},"338":{"tf":1.0},"371":{"tf":1.0},"563":{"tf":1.0},"654":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"969":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":3,"docs":{"22":{"tf":1.4142135623730951},"834":{"tf":1.0},"862":{"tf":1.0}}}},"6":{"8":{"6":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{"7":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"17":{"tf":1.0},"232":{"tf":1.7320508075688772}}}}},"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":48,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":2.0},"134":{"tf":2.0},"136":{"tf":1.0},"160":{"tf":2.23606797749979},"163":{"tf":1.0},"17":{"tf":1.0},"205":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"268":{"tf":1.7320508075688772},"289":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"338":{"tf":1.0},"347":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"526":{"tf":1.0},"59":{"tf":1.0},"592":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"728":{"tf":1.0},"734":{"tf":1.0},"842":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"9":{"tf":1.0},"946":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":3,"docs":{"119":{"tf":1.0},"173":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}},"i":{"df":36,"docs":{"104":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"118":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"160":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"289":{"tf":2.449489742783178},"315":{"tf":2.0},"330":{"tf":2.23606797749979},"346":{"tf":1.4142135623730951},"352":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"423":{"tf":1.0},"443":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"538":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"697":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"99":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"142":{"tf":1.0},"17":{"tf":1.0},"231":{"tf":1.4142135623730951},"357":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"664":{"tf":1.0},"684":{"tf":1.0},"734":{"tf":1.0},"873":{"tf":1.0},"882":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.4142135623730951},"195":{"tf":1.0},"203":{"tf":1.0},"693":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":16,"docs":{"127":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"184":{"tf":1.0},"224":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.4142135623730951},"261":{"tf":1.0},"354":{"tf":1.0},"561":{"tf":1.7320508075688772},"570":{"tf":1.0},"710":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.7320508075688772},"271":{"tf":1.0},"318":{"tf":1.0},"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":51,"docs":{"11":{"tf":1.4142135623730951},"144":{"tf":1.0},"192":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":2.23606797749979},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":2.449489742783178},"318":{"tf":1.4142135623730951},"32":{"tf":1.0},"379":{"tf":1.0},"52":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"67":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.4142135623730951},"729":{"tf":1.0},"738":{"tf":1.0},"743":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.4142135623730951},"773":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"819":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"849":{"tf":1.0},"854":{"tf":1.0},"872":{"tf":1.0},"881":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.7320508075688772},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"956":{"tf":4.123105625617661}}}}}}},"i":{"df":1,"docs":{"256":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":151,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":2.8284271247461903},"317":{"tf":1.4142135623730951},"318":{"tf":2.449489742783178},"32":{"tf":2.6457513110645907},"324":{"tf":2.449489742783178},"328":{"tf":1.0},"329":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":2.23606797749979},"34":{"tf":2.0},"342":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"373":{"tf":1.7320508075688772},"383":{"tf":2.0},"385":{"tf":2.0},"386":{"tf":1.4142135623730951},"393":{"tf":2.0},"395":{"tf":2.0},"396":{"tf":2.23606797749979},"398":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":2.0},"406":{"tf":2.0},"407":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"414":{"tf":2.0},"416":{"tf":2.0},"417":{"tf":2.23606797749979},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"425":{"tf":2.0},"427":{"tf":2.0},"428":{"tf":2.23606797749979},"435":{"tf":2.0},"437":{"tf":2.0},"438":{"tf":2.23606797749979},"44":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"448":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"456":{"tf":2.0},"457":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.7320508075688772},"461":{"tf":2.0},"464":{"tf":2.0},"465":{"tf":2.23606797749979},"468":{"tf":1.0},"473":{"tf":2.6457513110645907},"474":{"tf":2.23606797749979},"475":{"tf":2.0},"476":{"tf":2.0},"477":{"tf":1.7320508075688772},"478":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951},"480":{"tf":2.0},"481":{"tf":2.23606797749979},"499":{"tf":1.0},"505":{"tf":2.23606797749979},"507":{"tf":2.0},"508":{"tf":2.23606797749979},"522":{"tf":1.0},"528":{"tf":2.0},"529":{"tf":2.23606797749979},"531":{"tf":2.0},"532":{"tf":2.449489742783178},"538":{"tf":1.4142135623730951},"540":{"tf":2.0},"541":{"tf":1.0},"543":{"tf":2.0},"544":{"tf":2.23606797749979},"551":{"tf":2.23606797749979},"553":{"tf":2.23606797749979},"554":{"tf":2.0},"555":{"tf":2.6457513110645907},"563":{"tf":1.7320508075688772},"565":{"tf":2.0},"566":{"tf":2.8284271247461903},"574":{"tf":1.7320508075688772},"575":{"tf":1.7320508075688772},"577":{"tf":1.7320508075688772},"578":{"tf":2.0},"591":{"tf":1.0},"598":{"tf":2.0},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"614":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":2.6457513110645907},"623":{"tf":2.0},"624":{"tf":2.449489742783178},"630":{"tf":1.4142135623730951},"632":{"tf":2.0},"634":{"tf":2.0},"635":{"tf":2.23606797749979},"640":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"643":{"tf":1.7320508075688772},"649":{"tf":2.23606797749979},"65":{"tf":1.0},"652":{"tf":2.6457513110645907},"66":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.7320508075688772},"692":{"tf":1.0},"693":{"tf":1.4142135623730951},"700":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.4142135623730951},"772":{"tf":1.0},"78":{"tf":1.4142135623730951},"831":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"909":{"tf":1.0},"916":{"tf":2.449489742783178},"92":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"958":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"288":{"tf":1.0}},"s":{"df":3,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"894":{"tf":1.0},"945":{"tf":1.0}}}}}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"125":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"175":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":148,"docs":{"100":{"tf":3.4641016151377544},"104":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":2.0},"132":{"tf":1.7320508075688772},"145":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":2.0},"264":{"tf":1.0},"27":{"tf":2.0},"288":{"tf":1.0},"289":{"tf":3.3166247903554},"297":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.4142135623730951},"342":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"419":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"614":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":1.0},"697":{"tf":1.4142135623730951},"729":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"762":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":3.4641016151377544},"8":{"tf":1.0},"802":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"826":{"tf":1.0},"83":{"tf":1.4142135623730951},"838":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":2.0},"865":{"tf":2.0},"878":{"tf":1.0},"880":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"912":{"tf":1.0},"929":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951},"951":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":3.4641016151377544},"99":{"tf":1.0}},"e":{"!":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"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":{}},"_":{"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":{"d":{"df":5,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}},"m":{"df":6,"docs":{"107":{"tf":1.0},"232":{"tf":1.0},"471":{"tf":1.0},"510":{"tf":1.0},"522":{"tf":1.0},"86":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"191":{"tf":1.0},"838":{"tf":1.0},"878":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"731":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"877":{"tf":1.0},"914":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":11,"docs":{"142":{"tf":2.449489742783178},"258":{"tf":2.449489742783178},"263":{"tf":1.4142135623730951},"289":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.7320508075688772},"756":{"tf":1.7320508075688772},"762":{"tf":1.0},"830":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"109":{"tf":1.0},"120":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"621":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"202":{"tf":1.0},"239":{"tf":1.0},"346":{"tf":1.0},"715":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":16,"docs":{"37":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"9":{"tf":1.4142135623730951},"950":{"tf":1.0}},"e":{"d":{"d":{"b":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":21,"docs":{"108":{"tf":1.0},"132":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"267":{"tf":1.0},"283":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"340":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"801":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":12,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"306":{"tf":1.0},"338":{"tf":1.0},"376":{"tf":1.0},"494":{"tf":1.0},"560":{"tf":1.0},"621":{"tf":1.0},"708":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"694":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"289":{"tf":1.0},"921":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}}}},"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"704":{"tf":1.0},"779":{"tf":1.4142135623730951},"799":{"tf":1.0},"969":{"tf":2.0}},"r":{"df":0,"docs":{},"m":{"df":77,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"177":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":1.0},"264":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":3.3166247903554},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"349":{"tf":1.4142135623730951},"356":{"tf":1.0},"376":{"tf":1.0},"4":{"tf":2.0},"467":{"tf":1.4142135623730951},"5":{"tf":1.0},"63":{"tf":1.0},"662":{"tf":1.4142135623730951},"677":{"tf":2.449489742783178},"678":{"tf":1.0},"679":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.4142135623730951},"703":{"tf":1.0},"775":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"84":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"895":{"tf":1.0},"913":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.4142135623730951},"936":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"965":{"tf":1.4142135623730951},"966":{"tf":1.0},"969":{"tf":3.605551275463989}}}}},"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":3,"docs":{"666":{"tf":1.0},"686":{"tf":1.0},"704":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":23,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":2.0},"273":{"tf":1.0},"288":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"79":{"tf":1.7320508075688772},"801":{"tf":1.0},"807":{"tf":1.0},"814":{"tf":1.4142135623730951},"864":{"tf":1.0},"905":{"tf":1.0}},"i":{"df":84,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"208":{"tf":1.0},"254":{"tf":1.7320508075688772},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":2.23606797749979},"309":{"tf":2.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.4142135623730951},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"315":{"tf":3.0},"316":{"tf":2.449489742783178},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.7320508075688772},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"500":{"tf":1.0},"678":{"tf":1.7320508075688772},"693":{"tf":1.0},"717":{"tf":1.4142135623730951},"721":{"tf":1.0},"723":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"806":{"tf":1.0},"812":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"854":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":2.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"880":{"tf":1.0},"882":{"tf":1.0},"9":{"tf":1.0},"908":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"941":{"tf":1.0},"945":{"tf":1.0},"948":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"803":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"252":{"tf":1.0},"969":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"115":{"tf":1.0},"17":{"tf":1.0},"233":{"tf":1.4142135623730951},"377":{"tf":1.0},"423":{"tf":1.0},"443":{"tf":1.0},"538":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"111":{"tf":1.0},"254":{"tf":1.0},"48":{"tf":1.0},"665":{"tf":1.0},"677":{"tf":1.0},"691":{"tf":1.4142135623730951},"803":{"tf":1.0},"912":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"244":{"tf":1.0},"772":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"5":{"tf":1.0},"957":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":31,"docs":{"115":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"19":{"tf":2.23606797749979},"22":{"tf":1.0},"233":{"tf":1.0},"32":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.4142135623730951},"671":{"tf":1.0},"673":{"tf":2.23606797749979},"675":{"tf":1.4142135623730951},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":2.449489742783178},"725":{"tf":1.0},"73":{"tf":1.0},"752":{"tf":1.0},"823":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.4142135623730951},"862":{"tf":1.0},"915":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"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":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"1":{"9":{"df":1,"docs":{"551":{"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":{},"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":{".":{"d":{"df":1,"docs":{"551":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"551":{"tf":1.0}}}}}},"df":1,"docs":{"551":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"551":{"tf":1.0}}}}}},"df":1,"docs":{"551":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"555":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"551":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":1,"docs":{"551":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"555":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"c":{"df":22,"docs":{"157":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"565":{"tf":1.0},"656":{"tf":1.0},"674":{"tf":1.0},"738":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"336":{"tf":1.0},"701":{"tf":1.4142135623730951},"782":{"tf":1.0},"951":{"tf":1.0},"953":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":33,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"253":{"tf":1.0},"288":{"tf":1.0},"34":{"tf":1.0},"402":{"tf":1.0},"52":{"tf":1.0},"583":{"tf":1.0},"619":{"tf":1.0},"697":{"tf":1.4142135623730951},"73":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"743":{"tf":1.0},"772":{"tf":2.23606797749979},"775":{"tf":1.0},"786":{"tf":1.0},"793":{"tf":1.0},"801":{"tf":1.0},"809":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"94":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"232":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.0},"356":{"tf":1.0},"54":{"tf":1.0},"652":{"tf":2.449489742783178},"676":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"117":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"320":{"tf":1.0},"461":{"tf":1.0},"497":{"tf":1.0},"520":{"tf":1.0},"589":{"tf":1.0},"653":{"tf":1.0},"674":{"tf":2.449489742783178},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.7320508075688772},"680":{"tf":1.0},"716":{"tf":1.0},"867":{"tf":1.0},"880":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"958":{"tf":1.0}}}}}}}}}},"t":{"3":{"2":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"505":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":20,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"580":{"tf":1.7320508075688772},"590":{"tf":1.0},"591":{"tf":1.7320508075688772},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"685":{"tf":1.4142135623730951}},"r":{"df":47,"docs":{"10":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"2":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":2.0},"23":{"tf":1.7320508075688772},"234":{"tf":1.0},"29":{"tf":2.0},"39":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.4142135623730951},"658":{"tf":1.0},"66":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"681":{"tf":1.0},"688":{"tf":1.0},"8":{"tf":1.0},"834":{"tf":1.0},"860":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":2.6457513110645907},"958":{"tf":1.0}}}},"n":{"d":{"df":6,"docs":{"153":{"tf":1.0},"160":{"tf":1.0},"173":{"tf":1.0},"192":{"tf":1.0},"53":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"251":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"108":{"tf":1.0},"160":{"tf":1.0},"184":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"282":{"tf":1.0},"289":{"tf":2.23606797749979},"377":{"tf":1.0},"466":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"254":{"tf":2.0},"289":{"tf":1.0}}}}},"f":{"a":{"c":{"df":11,"docs":{"218":{"tf":1.0},"223":{"tf":1.0},"320":{"tf":1.0},"476":{"tf":1.0},"679":{"tf":1.0},"689":{"tf":1.7320508075688772},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"837":{"tf":1.0},"874":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"804":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":31,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"285":{"tf":1.0},"315":{"tf":1.4142135623730951},"318":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"456":{"tf":1.0},"471":{"tf":1.0},"62":{"tf":1.0},"647":{"tf":1.0},"693":{"tf":1.0},"728":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"803":{"tf":1.0},"838":{"tf":1.0},"854":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":1.4142135623730951},"933":{"tf":1.0},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"224":{"tf":1.0},"267":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"22":{"tf":1.7320508075688772},"50":{"tf":1.0},"673":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"715":{"tf":1.0},"753":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"315":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"145":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":21,"docs":{"151":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"67":{"tf":1.0},"747":{"tf":1.4142135623730951},"796":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":2.0},"818":{"tf":1.4142135623730951},"820":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.4142135623730951},"951":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":13,"docs":{"120":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"120":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.4142135623730951},"563":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"839":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"120":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"866":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"779":{"tf":1.0},"795":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"y":{"df":0,"docs":{},"p":{"df":18,"docs":{"120":{"tf":1.0},"383":{"tf":1.0},"393":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"529":{"tf":1.0},"541":{"tf":1.0},"551":{"tf":1.0},"563":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"632":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":26,"docs":{"120":{"tf":1.0},"328":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"462":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.4142135623730951},"517":{"tf":1.0},"529":{"tf":1.0},"541":{"tf":1.0},"551":{"tf":1.0},"563":{"tf":1.4142135623730951},"575":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"640":{"tf":1.0},"734":{"tf":1.0},"839":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":32,"docs":{"120":{"tf":2.0},"124":{"tf":1.4142135623730951},"231":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.4142135623730951},"393":{"tf":1.0},"396":{"tf":2.23606797749979},"414":{"tf":1.0},"417":{"tf":2.449489742783178},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"517":{"tf":1.0},"551":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.0},"642":{"tf":1.0},"747":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"76":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"880":{"tf":1.0},"916":{"tf":1.7320508075688772},"97":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"840":{"tf":1.0},"870":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"750":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"914":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"142":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.0}}},"t":{"df":1,"docs":{"800":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{"df":16,"docs":{"103":{"tf":1.0},"249":{"tf":1.7320508075688772},"265":{"tf":2.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"82":{"tf":1.0},"875":{"tf":1.0},"958":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"224":{"tf":1.0},"233":{"tf":2.0},"749":{"tf":1.0},"912":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":16,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"263":{"tf":1.0},"29":{"tf":1.0},"340":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}}}}}},"o":{"df":81,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"222":{"tf":1.0},"228":{"tf":1.7320508075688772},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":2.6457513110645907},"234":{"tf":2.0},"288":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"456":{"tf":1.0},"484":{"tf":1.0},"50":{"tf":2.23606797749979},"657":{"tf":1.0},"681":{"tf":2.23606797749979},"682":{"tf":2.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"685":{"tf":1.7320508075688772},"686":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"727":{"tf":1.0},"732":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"741":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.4142135623730951},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"762":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"789":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.4142135623730951},"798":{"tf":1.0},"802":{"tf":1.7320508075688772},"804":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.4142135623730951},"834":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.4142135623730951},"842":{"tf":1.0},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"855":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"958":{"tf":1.7320508075688772}}},"p":{"df":1,"docs":{"289":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"_":{"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":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"198":{"tf":1.0},"205":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"377":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.7320508075688772},"839":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}},"o":{"8":{"6":{"0":{"1":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"288":{"tf":1.0},"294":{"tf":1.0},"554":{"tf":1.4142135623730951}},"l":{"df":1,"docs":{"19":{"tf":1.0}}}},"p":{"df":1,"docs":{"267":{"tf":2.23606797749979}}},"s":{"df":0,"docs":{},"u":{"df":20,"docs":{"22":{"tf":1.0},"234":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.4142135623730951},"6":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"814":{"tf":1.0},"859":{"tf":1.0},"892":{"tf":1.0},"912":{"tf":1.7320508075688772},"915":{"tf":1.0},"925":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}}}}}}}}}}}}}},"t":{"'":{"df":36,"docs":{"103":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"17":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"326":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"232":{"tf":2.449489742783178},"328":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"873":{"tf":1.4142135623730951},"884":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":19,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.4142135623730951},"22":{"tf":1.0},"230":{"tf":1.0},"264":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"665":{"tf":1.0},"692":{"tf":1.0},"708":{"tf":1.0},"83":{"tf":1.0},"916":{"tf":1.0}}}}}},"’":{"df":3,"docs":{"182":{"tf":1.4142135623730951},"254":{"tf":1.0},"964":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"882":{"tf":1.0}}},"v":{"a":{"df":8,"docs":{"656":{"tf":1.0},"737":{"tf":1.0},"786":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"864":{"tf":1.4142135623730951},"876":{"tf":1.0},"969":{"tf":1.7320508075688772}},"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":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":122,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"135":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"174":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"32":{"tf":2.449489742783178},"325":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"561":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.7320508075688772},"659":{"tf":1.7320508075688772},"660":{"tf":2.0},"688":{"tf":2.23606797749979},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.4142135623730951},"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.0},"701":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"927":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":3,"docs":{"731":{"tf":1.4142135623730951},"759":{"tf":1.0},"823":{"tf":1.0}},"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":{"12":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"882":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"b":{"df":5,"docs":{"224":{"tf":1.0},"60":{"tf":1.4142135623730951},"73":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"110":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"128":{"tf":1.0},"171":{"tf":1.4142135623730951},"195":{"tf":1.0},"254":{"tf":2.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0},"642":{"tf":1.0},"644":{"tf":1.0},"697":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"865":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"e":{"df":3,"docs":{"380":{"tf":1.0},"697":{"tf":1.0},"838":{"tf":1.0}}},"k":{"df":2,"docs":{"701":{"tf":1.4142135623730951},"951":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"b":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"915":{"tf":1.0}}}},"df":9,"docs":{"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"190":{"tf":1.0},"261":{"tf":1.0},"41":{"tf":1.0},"692":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"950":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"565":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"799":{"tf":1.0}}},"2":{"df":1,"docs":{"799":{"tf":1.0}}},"df":27,"docs":{"120":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"232":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"560":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.0},"568":{"tf":2.23606797749979},"570":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"697":{"tf":2.23606797749979},"698":{"tf":2.23606797749979},"701":{"tf":1.4142135623730951},"732":{"tf":1.0},"765":{"tf":1.0},"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"379":{"tf":1.0}}}},"d":{"df":2,"docs":{"697":{"tf":1.0},"701":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"155":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":6,"docs":{"509":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"522":{"tf":1.0},"632":{"tf":1.0},"829":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":8,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"376":{"tf":1.4142135623730951},"441":{"tf":1.0},"66":{"tf":1.0},"80":{"tf":1.0},"834":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"b":{"df":41,"docs":{"168":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":2.23606797749979},"212":{"tf":2.449489742783178},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"258":{"tf":1.0},"727":{"tf":1.7320508075688772},"741":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":24,"docs":{"100":{"tf":1.7320508075688772},"169":{"tf":1.0},"17":{"tf":1.0},"254":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":2.6457513110645907},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"252":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":23,"docs":{"106":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"66":{"tf":1.0},"673":{"tf":1.0},"680":{"tf":1.0},"708":{"tf":1.0},"73":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"923":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"p":{"df":1,"docs":{"651":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":69,"docs":{"0":{"tf":1.0},"10":{"tf":2.0},"11":{"tf":2.23606797749979},"110":{"tf":2.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.0},"338":{"tf":1.0},"354":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":2.0},"662":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.4142135623730951},"678":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"741":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.4142135623730951},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"829":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"879":{"tf":1.0},"89":{"tf":2.0},"9":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"529":{"tf":1.0}}},"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":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},"df":100,"docs":{"110":{"tf":1.0},"120":{"tf":1.7320508075688772},"124":{"tf":2.23606797749979},"376":{"tf":2.23606797749979},"377":{"tf":4.358898943540674},"378":{"tf":1.7320508075688772},"391":{"tf":2.0},"392":{"tf":1.0},"393":{"tf":4.58257569495584},"394":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":2.6457513110645907},"397":{"tf":1.7320508075688772},"398":{"tf":4.242640687119285},"399":{"tf":1.0},"400":{"tf":1.0},"412":{"tf":2.23606797749979},"413":{"tf":1.0},"414":{"tf":4.58257569495584},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":2.8284271247461903},"418":{"tf":1.7320508075688772},"419":{"tf":4.242640687119285},"420":{"tf":1.0},"421":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":4.58257569495584},"436":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":2.8284271247461903},"439":{"tf":1.7320508075688772},"440":{"tf":4.242640687119285},"441":{"tf":1.0},"442":{"tf":1.0},"488":{"tf":2.0},"489":{"tf":1.0},"490":{"tf":2.6457513110645907},"491":{"tf":2.449489742783178},"492":{"tf":2.23606797749979},"493":{"tf":2.449489742783178},"494":{"tf":2.449489742783178},"495":{"tf":1.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.4142135623730951},"498":{"tf":1.7320508075688772},"499":{"tf":4.358898943540674},"500":{"tf":1.0},"501":{"tf":3.872983346207417},"502":{"tf":1.0},"515":{"tf":2.0},"516":{"tf":1.0},"517":{"tf":2.23606797749979},"518":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"522":{"tf":4.242640687119285},"523":{"tf":1.0},"524":{"tf":3.872983346207417},"525":{"tf":1.0},"583":{"tf":2.449489742783178},"584":{"tf":1.0},"585":{"tf":2.23606797749979},"586":{"tf":2.23606797749979},"587":{"tf":1.0},"588":{"tf":1.7320508075688772},"589":{"tf":1.4142135623730951},"590":{"tf":1.7320508075688772},"591":{"tf":4.358898943540674},"592":{"tf":1.0},"593":{"tf":3.872983346207417},"594":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":2.0},"608":{"tf":1.0},"609":{"tf":2.449489742783178},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"612":{"tf":1.7320508075688772},"613":{"tf":1.4142135623730951},"614":{"tf":4.358898943540674},"615":{"tf":1.0},"616":{"tf":3.872983346207417},"617":{"tf":1.0},"747":{"tf":1.0},"75":{"tf":1.0},"752":{"tf":1.4142135623730951},"785":{"tf":1.0},"817":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.7320508075688772},"862":{"tf":1.7320508075688772},"864":{"tf":1.7320508075688772},"881":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"951":{"tf":1.0},"96":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"942":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"124":{"tf":2.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"418":{"tf":1.0},"734":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"590":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"521":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"613":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"439":{"tf":1.0},"78":{"tf":1.0},"942":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"498":{"tf":1.0},"721":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"400":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"421":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"400":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"502":{"tf":1.0},"525":{"tf":1.0},"594":{"tf":1.0},"617":{"tf":1.0},"842":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"400":{"tf":1.0},"421":{"tf":1.0},"442":{"tf":1.0},"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"442":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"206":{"tf":1.0},"254":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"969":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"969":{"tf":1.7320508075688772}},"u":{"a":{"df":0,"docs":{},"g":{"df":51,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"120":{"tf":1.0},"136":{"tf":1.0},"21":{"tf":1.0},"280":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"299":{"tf":1.0},"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.7320508075688772},"728":{"tf":1.0},"736":{"tf":1.0},"740":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"793":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.0},"834":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"862":{"tf":1.0},"89":{"tf":1.4142135623730951},"958":{"tf":1.0}},"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":{"9":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.0},"267":{"tf":1.0},"807":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"224":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.0},"736":{"tf":1.0},"907":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"467":{"tf":1.0},"621":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":2.6457513110645907},"142":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"204":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"861":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"741":{"tf":1.0}},"n":{"c":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":11,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"425":{"tf":2.449489742783178},"456":{"tf":1.0},"473":{"tf":1.0},"484":{"tf":1.0},"673":{"tf":1.0},"858":{"tf":1.0},"9":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"254":{"tf":1.0},"41":{"tf":1.0},"760":{"tf":1.0},"909":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"874":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"191":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":2.23606797749979},"247":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"780":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{"d":{"df":8,"docs":{"141":{"tf":1.0},"74":{"tf":1.0},"814":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"467":{"tf":1.0},"720":{"tf":1.0}}},"n":{"df":4,"docs":{"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"315":{"tf":1.0}}}},"v":{"df":5,"docs":{"150":{"tf":1.0},"254":{"tf":1.4142135623730951},"26":{"tf":1.0},"816":{"tf":1.0},"916":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"328":{"tf":1.0},"653":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"160":{"tf":1.7320508075688772},"568":{"tf":1.0},"916":{"tf":1.0},"958":{"tf":1.0}}},"y":{"_":{"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":{"d":{"df":2,"docs":{"160":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"805":{"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":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"565":{"tf":1.0},"642":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":23,"docs":{"102":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"241":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"328":{"tf":2.0},"378":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"471":{"tf":1.0},"541":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.4142135623730951},"757":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"259":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}},"t":{"'":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":1,"docs":{"254":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"294":{"tf":1.0}}}}},"’":{"df":3,"docs":{"203":{"tf":2.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":24,"docs":{"11":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"170":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"258":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"673":{"tf":1.0},"834":{"tf":1.4142135623730951},"878":{"tf":1.0},"962":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"956":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}}}}},"i":{"b":{"df":3,"docs":{"316":{"tf":1.0},"674":{"tf":1.0},"924":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":52,"docs":{"0":{"tf":2.23606797749979},"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"270":{"tf":1.7320508075688772},"280":{"tf":1.0},"290":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.7320508075688772},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"338":{"tf":1.0},"39":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"61":{"tf":2.0},"65":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.0},"665":{"tf":1.7320508075688772},"668":{"tf":1.0},"678":{"tf":1.0},"705":{"tf":1.0},"753":{"tf":1.4142135623730951},"775":{"tf":1.0},"799":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"9":{"tf":3.1622776601683795},"916":{"tf":1.7320508075688772},"929":{"tf":1.0},"958":{"tf":1.4142135623730951}}},"y":{"'":{"df":2,"docs":{"21":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"'":{"df":1,"docs":{"743":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"151":{"tf":1.0},"184":{"tf":1.0},"271":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"848":{"tf":1.0},"875":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"874":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":36,"docs":{"100":{"tf":3.3166247903554},"101":{"tf":1.4142135623730951},"109":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"289":{"tf":2.449489742783178},"308":{"tf":1.0},"315":{"tf":1.0},"454":{"tf":1.0},"567":{"tf":1.4142135623730951},"632":{"tf":1.0},"636":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"734":{"tf":1.0},"770":{"tf":1.0},"78":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.0},"79":{"tf":3.3166247903554},"80":{"tf":1.4142135623730951},"840":{"tf":1.0},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951},"917":{"tf":1.0},"94":{"tf":1.4142135623730951},"953":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":2.449489742783178}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":72,"docs":{"109":{"tf":1.0},"129":{"tf":1.7320508075688772},"13":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":2.6457513110645907},"170":{"tf":1.0},"224":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"376":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.0},"425":{"tf":1.4142135623730951},"427":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"456":{"tf":2.0},"476":{"tf":1.4142135623730951},"484":{"tf":2.0},"499":{"tf":1.0},"501":{"tf":1.7320508075688772},"511":{"tf":1.4142135623730951},"522":{"tf":1.0},"524":{"tf":1.7320508075688772},"541":{"tf":1.0},"570":{"tf":1.4142135623730951},"575":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.7320508075688772},"598":{"tf":1.0},"609":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.7320508075688772},"621":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"677":{"tf":1.0},"721":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"761":{"tf":1.0},"774":{"tf":1.0},"787":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"580":{"tf":1.0},"582":{"tf":1.0},"591":{"tf":1.0}}}},"df":21,"docs":{"12":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"233":{"tf":2.0},"234":{"tf":1.0},"27":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"653":{"tf":1.0},"677":{"tf":1.0},"682":{"tf":1.0},"689":{"tf":1.7320508075688772},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"862":{"tf":1.0},"935":{"tf":1.0}}},"k":{"df":14,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"254":{"tf":1.0},"288":{"tf":1.0},"376":{"tf":1.0},"753":{"tf":1.0},"844":{"tf":1.0},"862":{"tf":1.4142135623730951},"890":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":1.4142135623730951}}},"t":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":7,"docs":{"21":{"tf":1.0},"294":{"tf":1.0},"38":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"768":{"tf":1.0},"804":{"tf":1.0},"838":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"21":{"tf":1.0},"288":{"tf":1.0},"38":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"858":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"132":{"tf":1.0},"19":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"769":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.4142135623730951},"815":{"tf":1.7320508075688772},"820":{"tf":1.7320508075688772},"867":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"772":{"tf":1.0}}}}}}},"df":73,"docs":{"10":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"18":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"288":{"tf":2.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"297":{"tf":2.449489742783178},"315":{"tf":1.0},"318":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":2.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"39":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":2.0},"435":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"443":{"tf":2.23606797749979},"444":{"tf":1.0},"445":{"tf":2.0},"446":{"tf":2.449489742783178},"447":{"tf":1.0},"448":{"tf":2.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"499":{"tf":2.0},"501":{"tf":1.0},"522":{"tf":2.0},"524":{"tf":1.0},"538":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"57":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":2.0},"593":{"tf":1.0},"614":{"tf":2.0},"616":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"668":{"tf":1.0},"689":{"tf":1.0},"715":{"tf":1.0},"73":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.4142135623730951},"77":{"tf":1.0},"813":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"862":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"912":{"tf":1.0},"94":{"tf":1.4142135623730951},"952":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"307":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"347":{"tf":2.8284271247461903},"731":{"tf":1.0},"951":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{".":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"675":{"tf":1.0},"915":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":9,"docs":{"127":{"tf":1.0},"224":{"tf":1.0},"289":{"tf":1.4142135623730951},"371":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"78":{"tf":1.4142135623730951},"965":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"m":{"d":{"b":{"df":5,"docs":{"716":{"tf":1.0},"765":{"tf":1.0},"803":{"tf":1.0},"818":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":68,"docs":{"112":{"tf":1.0},"20":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"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},"480":{"tf":1.0},"481":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":68,"docs":{"112":{"tf":1.0},"20":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"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},"480":{"tf":1.0},"481":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"652":{"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":4,"docs":{"338":{"tf":1.4142135623730951},"649":{"tf":1.0},"652":{"tf":1.0},"834":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"338":{"tf":1.0},"649":{"tf":1.0},"652":{"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":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"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":15,"docs":{"140":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"263":{"tf":1.0},"268":{"tf":1.0},"31":{"tf":1.0},"338":{"tf":1.7320508075688772},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.4142135623730951},"592":{"tf":1.0},"864":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":27,"docs":{"117":{"tf":1.0},"12":{"tf":1.7320508075688772},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"316":{"tf":1.0},"710":{"tf":1.4142135623730951},"736":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"842":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"938":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"846":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"846":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"170":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":5,"docs":{"22":{"tf":1.0},"318":{"tf":1.0},"800":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"_":{"2":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"779":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":2,"docs":{"580":{"tf":1.0},"591":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":57,"docs":{"120":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":3.4641016151377544},"237":{"tf":3.0},"238":{"tf":2.23606797749979},"239":{"tf":3.1622776601683795},"243":{"tf":2.0},"244":{"tf":1.0},"245":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"355":{"tf":2.0},"356":{"tf":2.449489742783178},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"466":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"514":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"582":{"tf":1.0},"701":{"tf":1.0},"704":{"tf":1.0},"721":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"771":{"tf":1.0},"779":{"tf":1.0},"787":{"tf":1.0},"814":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":2.0},"849":{"tf":1.0},"854":{"tf":1.0},"880":{"tf":1.4142135623730951},"898":{"tf":1.0},"923":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.4142135623730951},"938":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"814":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":5,"docs":{"653":{"tf":1.0},"741":{"tf":1.0},"834":{"tf":1.4142135623730951},"919":{"tf":1.0},"932":{"tf":1.0}}},"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"438":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"466":{"tf":1.0}}}}}},"df":10,"docs":{"376":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"441":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.0},"567":{"tf":1.4142135623730951},"569":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"tf":1.7320508075688772}}},"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":{"315":{"tf":1.0}}}}}}},"o":{"df":2,"docs":{"0":{"tf":1.0},"958":{"tf":1.0}}},"p":{"df":4,"docs":{"224":{"tf":2.0},"231":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"772":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":37,"docs":{"120":{"tf":1.0},"175":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"449":{"tf":1.0},"461":{"tf":1.0},"469":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"592":{"tf":1.0},"62":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"818":{"tf":1.4142135623730951},"839":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"963":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":49,"docs":{"149":{"tf":1.0},"151":{"tf":1.0},"203":{"tf":1.7320508075688772},"254":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":1.0},"307":{"tf":1.0},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"476":{"tf":1.4142135623730951},"484":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"541":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"736":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.7320508075688772},"761":{"tf":1.0},"775":{"tf":1.0},"793":{"tf":1.0},"806":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"873":{"tf":1.4142135623730951},"876":{"tf":1.0},"891":{"tf":1.0},"912":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":30,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"160":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"203":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"572":{"tf":1.0},"665":{"tf":1.0},"668":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"690":{"tf":1.4142135623730951},"697":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"859":{"tf":1.0}}}}},"p":{"df":1,"docs":{"834":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"747":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"73":{"tf":1.0},"78":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":4,"docs":{"103":{"tf":1.0},"190":{"tf":1.0},"5":{"tf":1.0},"82":{"tf":1.0}}},"u":{"d":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"376":{"tf":1.0},"629":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"285":{"tf":1.0},"286":{"tf":1.0},"496":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.7320508075688772},"588":{"tf":1.0},"816":{"tf":1.0},"858":{"tf":1.0},"878":{"tf":1.0},"916":{"tf":1.0},"933":{"tf":1.0}}}}}}},"m":{"1":{"/":{"df":0,"docs":{},"m":{"2":{"/":{"df":0,"docs":{},"m":{"3":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"958":{"tf":1.0}}},"a":{"c":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}}},"df":2,"docs":{"233":{"tf":1.4142135623730951},"690":{"tf":1.0}},"h":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"289":{"tf":1.0},"697":{"tf":1.0},"910":{"tf":1.0}}}}},"o":{"df":7,"docs":{"19":{"tf":1.0},"673":{"tf":1.0},"775":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"867":{"tf":1.0},"884":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"256":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"862":{"tf":1.0},"869":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"487":{"tf":1.0},"514":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"104":{"tf":1.0},"289":{"tf":1.0},"83":{"tf":1.0}}},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":21,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.0},"26":{"tf":1.0},"306":{"tf":1.4142135623730951},"315":{"tf":2.449489742783178},"316":{"tf":2.449489742783178},"34":{"tf":1.0},"342":{"tf":1.0},"646":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"840":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"950":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"675":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"308":{"tf":1.0},"62":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.0},"288":{"tf":2.449489742783178},"669":{"tf":1.7320508075688772},"685":{"tf":1.7320508075688772},"772":{"tf":1.0},"881":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":75,"docs":{"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.0},"281":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"318":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.7320508075688772},"443":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"538":{"tf":1.0},"619":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.0},"70":{"tf":1.4142135623730951},"720":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"804":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"842":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"882":{"tf":1.0},"900":{"tf":1.0},"91":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"925":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}},"r":{"df":1,"docs":{"956":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"917":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"153":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"647":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"867":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"’":{"df":1,"docs":{"958":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"44":{"tf":1.0},"677":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":21,"docs":{"127":{"tf":1.4142135623730951},"142":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.0},"262":{"tf":1.0},"289":{"tf":1.0},"420":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":2.449489742783178},"618":{"tf":1.4142135623730951},"625":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"858":{"tf":1.0},"915":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":5,"docs":{"192":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"227":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0},"673":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"968":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"820":{"tf":1.0}}},"2":{"0":{"1":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"4":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"p":{"df":9,"docs":{"131":{"tf":1.0},"170":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":2.23606797749979},"717":{"tf":1.4142135623730951},"723":{"tf":1.0},"840":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"328":{"tf":1.0},"679":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":11,"docs":{"21":{"tf":1.7320508075688772},"276":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"37":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"666":{"tf":1.0},"686":{"tf":2.0},"862":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"318":{"tf":1.0},"773":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"110":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"268":{"tf":1.0},"334":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"640":{"tf":1.4142135623730951},"697":{"tf":1.0},"738":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"864":{"tf":1.0},"89":{"tf":1.0},"935":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"703":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"110":{"tf":1.0},"89":{"tf":1.0},"958":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"735":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.7320508075688772},"656":{"tf":1.0}}}}},"x":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"861":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"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":{"761":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"897":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"315":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"565":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":59,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"127":{"tf":1.0},"170":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"328":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.0},"393":{"tf":1.4142135623730951},"398":{"tf":1.0},"414":{"tf":1.4142135623730951},"419":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.7320508075688772},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"456":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.0},"501":{"tf":1.7320508075688772},"511":{"tf":1.0},"514":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"541":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"575":{"tf":1.0},"582":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.4142135623730951},"609":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"632":{"tf":1.0},"732":{"tf":1.0},"81":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"929":{"tf":1.0}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"968":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":4,"docs":{"19":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"673":{"tf":1.0},"686":{"tf":1.4142135623730951}},"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":6,"docs":{"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"645":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":22,"docs":{"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"n":{"df":41,"docs":{"122":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"168":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"487":{"tf":1.4142135623730951},"499":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"677":{"tf":1.0},"703":{"tf":1.0},"710":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"74":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":5,"docs":{"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"371":{"tf":1.0},"864":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":63,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"107":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"137":{"tf":1.7320508075688772},"141":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":2.0},"477":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"488":{"tf":1.0},"503":{"tf":1.0},"549":{"tf":1.0},"632":{"tf":1.0},"70":{"tf":2.0},"708":{"tf":1.0},"711":{"tf":2.449489742783178},"721":{"tf":1.0},"73":{"tf":1.7320508075688772},"739":{"tf":1.0},"74":{"tf":1.7320508075688772},"747":{"tf":1.4142135623730951},"76":{"tf":2.6457513110645907},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"834":{"tf":1.4142135623730951},"86":{"tf":1.0},"861":{"tf":2.0},"866":{"tf":1.0},"880":{"tf":1.0},"91":{"tf":2.0},"929":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"97":{"tf":2.6457513110645907},"99":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"289":{"tf":1.0},"346":{"tf":1.0},"471":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":2.0},"929":{"tf":1.0},"937":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"173":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"510":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":34,"docs":{"289":{"tf":1.4142135623730951},"310":{"tf":1.0},"376":{"tf":1.4142135623730951},"503":{"tf":2.6457513110645907},"504":{"tf":1.0},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":2.8284271247461903},"508":{"tf":1.7320508075688772},"509":{"tf":2.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.4142135623730951},"512":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":2.23606797749979},"515":{"tf":2.449489742783178},"516":{"tf":1.0},"517":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"523":{"tf":1.0},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"718":{"tf":1.0},"814":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"911":{"tf":1.0},"958":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"tf":1.7320508075688772}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"507":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.7320508075688772},"509":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"514":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.7320508075688772}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"839":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"772":{"tf":1.0},"853":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"525":{"tf":1.0},"837":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"g":{"df":6,"docs":{"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"738":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"677":{"tf":1.7320508075688772},"679":{"tf":1.0},"779":{"tf":1.0},"805":{"tf":1.0},"814":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"858":{"tf":1.0},"898":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.4142135623730951},"938":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"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":1,"docs":{"266":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"171":{"tf":1.0}}},"2":{"df":1,"docs":{"171":{"tf":1.0}}},"df":16,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"254":{"tf":1.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"338":{"tf":1.0},"568":{"tf":1.0},"680":{"tf":1.0},"727":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":32,"docs":{"221":{"tf":2.23606797749979},"223":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.4142135623730951},"248":{"tf":1.0},"257":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":2.23606797749979},"317":{"tf":1.0},"338":{"tf":2.0},"462":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"715":{"tf":1.0},"731":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"772":{"tf":1.7320508075688772},"838":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"'":{"df":7,"docs":{"104":{"tf":1.0},"288":{"tf":1.0},"464":{"tf":1.0},"554":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"799":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"830":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"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":2,"docs":{"110":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":553,"docs":{"100":{"tf":3.1622776601683795},"101":{"tf":2.449489742783178},"102":{"tf":2.23606797749979},"103":{"tf":2.449489742783178},"104":{"tf":3.0},"105":{"tf":2.0},"106":{"tf":2.449489742783178},"107":{"tf":2.8284271247461903},"108":{"tf":2.449489742783178},"109":{"tf":3.0},"110":{"tf":3.1622776601683795},"111":{"tf":2.449489742783178},"112":{"tf":3.1622776601683795},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":2.23606797749979},"118":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951},"120":{"tf":4.0},"121":{"tf":2.23606797749979},"122":{"tf":2.449489742783178},"123":{"tf":1.7320508075688772},"124":{"tf":3.7416573867739413},"125":{"tf":3.4641016151377544},"126":{"tf":2.0},"127":{"tf":3.7416573867739413},"128":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":2.6457513110645907},"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"135":{"tf":1.7320508075688772},"137":{"tf":2.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":2.0},"146":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":3.1622776601683795},"174":{"tf":1.4142135623730951},"175":{"tf":2.449489742783178},"176":{"tf":2.6457513110645907},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.23606797749979},"184":{"tf":2.8284271247461903},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"191":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":3.1622776601683795},"196":{"tf":1.0},"197":{"tf":2.6457513110645907},"198":{"tf":2.6457513110645907},"199":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":2.23606797749979},"203":{"tf":2.449489742783178},"204":{"tf":2.23606797749979},"205":{"tf":1.7320508075688772},"206":{"tf":2.23606797749979},"208":{"tf":1.0},"21":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":2.449489742783178},"231":{"tf":1.0},"25":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":4.69041575982343},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":2.449489742783178},"277":{"tf":1.0},"28":{"tf":2.23606797749979},"280":{"tf":2.23606797749979},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":2.23606797749979},"286":{"tf":2.23606797749979},"287":{"tf":2.449489742783178},"288":{"tf":5.0},"289":{"tf":5.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"318":{"tf":2.6457513110645907},"321":{"tf":1.7320508075688772},"322":{"tf":2.0},"330":{"tf":1.4142135623730951},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.7320508075688772},"376":{"tf":2.8284271247461903},"377":{"tf":3.3166247903554},"378":{"tf":1.0},"379":{"tf":2.449489742783178},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"387":{"tf":2.6457513110645907},"388":{"tf":1.7320508075688772},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.7320508075688772},"397":{"tf":2.0},"398":{"tf":2.23606797749979},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":2.23606797749979},"403":{"tf":1.0},"404":{"tf":1.4142135623730951},"405":{"tf":1.0},"406":{"tf":1.7320508075688772},"407":{"tf":1.7320508075688772},"408":{"tf":2.6457513110645907},"409":{"tf":1.7320508075688772},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":1.7320508075688772},"418":{"tf":2.0},"419":{"tf":2.23606797749979},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":3.0},"426":{"tf":1.0},"427":{"tf":2.8284271247461903},"428":{"tf":1.7320508075688772},"429":{"tf":2.6457513110645907},"43":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.7320508075688772},"436":{"tf":1.0},"437":{"tf":3.0},"438":{"tf":1.7320508075688772},"439":{"tf":2.0},"440":{"tf":2.23606797749979},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.7320508075688772},"450":{"tf":2.6457513110645907},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.7320508075688772},"457":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"466":{"tf":2.6457513110645907},"467":{"tf":2.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.7320508075688772},"475":{"tf":2.0},"476":{"tf":2.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"480":{"tf":1.7320508075688772},"481":{"tf":1.7320508075688772},"482":{"tf":2.0},"483":{"tf":1.7320508075688772},"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.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.7320508075688772},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":2.0},"499":{"tf":2.23606797749979},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.7320508075688772},"508":{"tf":1.7320508075688772},"509":{"tf":2.0},"51":{"tf":1.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":2.0},"522":{"tf":2.23606797749979},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"527":{"tf":1.0},"528":{"tf":1.7320508075688772},"529":{"tf":1.7320508075688772},"53":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.7320508075688772},"532":{"tf":1.7320508075688772},"533":{"tf":2.449489742783178},"534":{"tf":1.7320508075688772},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"538":{"tf":1.0},"539":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.7320508075688772},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"543":{"tf":1.7320508075688772},"544":{"tf":1.7320508075688772},"545":{"tf":2.6457513110645907},"546":{"tf":2.0},"547":{"tf":1.7320508075688772},"548":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.7320508075688772},"552":{"tf":1.0},"553":{"tf":1.7320508075688772},"554":{"tf":1.7320508075688772},"555":{"tf":1.7320508075688772},"556":{"tf":2.6457513110645907},"557":{"tf":2.23606797749979},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.6457513110645907},"564":{"tf":1.0},"565":{"tf":1.4142135623730951},"566":{"tf":1.7320508075688772},"567":{"tf":2.6457513110645907},"568":{"tf":2.449489742783178},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.4142135623730951},"573":{"tf":1.0},"574":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":2.23606797749979},"579":{"tf":2.0},"580":{"tf":2.23606797749979},"581":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"584":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"590":{"tf":2.0},"591":{"tf":2.23606797749979},"592":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"598":{"tf":1.7320508075688772},"599":{"tf":1.0},"60":{"tf":2.23606797749979},"600":{"tf":1.7320508075688772},"601":{"tf":1.7320508075688772},"602":{"tf":2.6457513110645907},"603":{"tf":1.7320508075688772},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.4142135623730951},"607":{"tf":2.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":2.6457513110645907},"614":{"tf":2.23606797749979},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":2.6457513110645907},"620":{"tf":1.0},"621":{"tf":1.7320508075688772},"622":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":1.4142135623730951},"625":{"tf":2.6457513110645907},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"632":{"tf":2.23606797749979},"633":{"tf":1.0},"634":{"tf":1.7320508075688772},"635":{"tf":1.7320508075688772},"636":{"tf":2.6457513110645907},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.7320508075688772},"641":{"tf":1.0},"642":{"tf":1.7320508075688772},"643":{"tf":1.7320508075688772},"644":{"tf":2.23606797749979},"645":{"tf":2.449489742783178},"646":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"671":{"tf":1.0},"677":{"tf":3.605551275463989},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":2.6457513110645907},"708":{"tf":2.0},"709":{"tf":1.0},"71":{"tf":2.23606797749979},"710":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"716":{"tf":2.23606797749979},"718":{"tf":1.4142135623730951},"72":{"tf":2.0},"721":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"73":{"tf":3.7416573867739413},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.4142135623730951},"736":{"tf":1.0},"738":{"tf":1.7320508075688772},"739":{"tf":1.0},"74":{"tf":1.4142135623730951},"740":{"tf":1.0},"741":{"tf":2.0},"747":{"tf":1.4142135623730951},"75":{"tf":2.0},"752":{"tf":2.449489742783178},"755":{"tf":1.0},"76":{"tf":2.6457513110645907},"761":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":3.3166247903554},"770":{"tf":1.4142135623730951},"772":{"tf":2.8284271247461903},"773":{"tf":1.0},"776":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":3.605551275463989},"782":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"79":{"tf":3.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.4142135623730951},"794":{"tf":1.0},"795":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":2.0},"807":{"tf":1.0},"809":{"tf":2.0},"81":{"tf":2.0},"811":{"tf":1.4142135623730951},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":2.0},"818":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"823":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"830":{"tf":2.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"839":{"tf":2.449489742783178},"84":{"tf":1.7320508075688772},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":2.23606797749979},"852":{"tf":1.7320508075688772},"853":{"tf":1.4142135623730951},"858":{"tf":1.0},"86":{"tf":2.6457513110645907},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":2.449489742783178},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"871":{"tf":1.0},"875":{"tf":1.4142135623730951},"876":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":2.8284271247461903},"880":{"tf":1.0},"89":{"tf":3.0},"892":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":2.0},"907":{"tf":1.0},"91":{"tf":2.8284271247461903},"911":{"tf":1.7320508075688772},"912":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":2.0},"917":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":2.449489742783178},"925":{"tf":1.0},"929":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"932":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":3.872983346207417},"941":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":3.0},"958":{"tf":1.7320508075688772},"96":{"tf":2.23606797749979},"963":{"tf":1.0},"97":{"tf":2.8284271247461903},"98":{"tf":3.4641016151377544},"99":{"tf":3.7416573867739413}},"s":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"396":{"tf":1.0}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"393":{"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"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":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"632":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"635":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"634":{"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":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"465":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"404":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"404":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"407":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"386":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"d":{"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":{".":{"d":{"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":{"(":{"2":{"0":{"1":{"9":{"df":1,"docs":{"551":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"551":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"553":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"553":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"555":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"438":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"d":{"df":3,"docs":{"666":{"tf":1.0},"667":{"tf":1.0},"801":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"507":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"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":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"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":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"477":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"481":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"643":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"449":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"544":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"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":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"428":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"417":{"tf":1.0}}}}}}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"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":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"[":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"o":{"df":1,"docs":{"157":{"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":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"[":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"112":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"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":{"d":{".":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"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":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"4":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"532":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"566":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":63,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"110":{"tf":3.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":2.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"21":{"tf":2.449489742783178},"26":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"377":{"tf":1.4142135623730951},"393":{"tf":1.0},"398":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"501":{"tf":1.0},"522":{"tf":1.4142135623730951},"524":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"665":{"tf":2.0},"668":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":2.23606797749979},"678":{"tf":1.0},"679":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951},"830":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.4142135623730951},"853":{"tf":1.0},"864":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":2.23606797749979},"89":{"tf":3.0},"91":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"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":{},"t":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"20":{"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":{}}}}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"565":{"tf":1.0},"566":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":3,"docs":{"200":{"tf":1.0},"203":{"tf":2.23606797749979},"254":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"160":{"tf":1.0},"716":{"tf":1.0},"765":{"tf":1.0},"818":{"tf":1.0},"860":{"tf":1.4142135623730951},"867":{"tf":1.0},"869":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"891":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"881":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"258":{"tf":1.0},"310":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":19,"docs":{"131":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"170":{"tf":1.0},"462":{"tf":1.4142135623730951},"466":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"734":{"tf":1.0},"804":{"tf":1.4142135623730951},"939":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":2,"docs":{"261":{"tf":1.0},"267":{"tf":1.0}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":2,"docs":{"823":{"tf":1.0},"862":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":4,"docs":{"256":{"tf":1.0},"306":{"tf":1.0},"804":{"tf":1.0},"916":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":12,"docs":{"103":{"tf":1.0},"471":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"582":{"tf":1.0},"591":{"tf":1.4142135623730951},"737":{"tf":1.0},"76":{"tf":1.4142135623730951},"82":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"u":{"df":1,"docs":{"42":{"tf":1.0}},"t":{"df":11,"docs":{"131":{"tf":1.4142135623730951},"467":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"836":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"19":{"tf":1.0},"818":{"tf":1.4142135623730951},"840":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":15,"docs":{"100":{"tf":1.7320508075688772},"422":{"tf":1.0},"537":{"tf":1.0},"644":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"805":{"tf":1.0},"837":{"tf":1.0},"844":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0},"99":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"21":{"tf":1.0},"289":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0},"825":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"814":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"x":{"df":4,"docs":{"173":{"tf":1.0},"231":{"tf":1.0},"288":{"tf":1.0},"834":{"tf":1.0}}}},"m":{"df":1,"docs":{"288":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"127":{"tf":1.0},"155":{"tf":1.4142135623730951},"168":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"274":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"742":{"tf":1.0},"958":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}},"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":21,"docs":{"100":{"tf":1.7320508075688772},"112":{"tf":1.0},"237":{"tf":1.0},"318":{"tf":2.6457513110645907},"671":{"tf":1.4142135623730951},"673":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"789":{"tf":1.0},"79":{"tf":1.7320508075688772},"801":{"tf":1.0},"803":{"tf":1.0},"818":{"tf":1.4142135623730951},"835":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951}},"l":{"df":7,"docs":{"132":{"tf":1.4142135623730951},"274":{"tf":1.0},"431":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"11":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"762":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"837":{"tf":1.4142135623730951},"862":{"tf":1.0},"923":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"934":{"tf":1.0},"950":{"tf":1.7320508075688772},"956":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"160":{"tf":1.0},"402":{"tf":1.0},"711":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"136":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":1.0},"53":{"tf":1.0},"958":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"142":{"tf":2.0},"289":{"tf":1.0},"456":{"tf":1.0},"493":{"tf":1.0},"804":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"65":{"tf":1.0},"861":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":62,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"267":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"315":{"tf":2.0},"328":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"4":{"tf":1.0},"56":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"772":{"tf":1.4142135623730951},"802":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"84":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.7320508075688772},"859":{"tf":1.0},"862":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"875":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"969":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"864":{"tf":1.0},"925":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"119":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"65":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"834":{"tf":1.4142135623730951},"843":{"tf":1.0},"865":{"tf":1.0},"916":{"tf":1.0}}}},"z":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"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":{"/":{"2":{"df":4,"docs":{"108":{"tf":1.0},"282":{"tf":1.0},"677":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"2":{"df":3,"docs":{"138":{"tf":1.0},"292":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"/":{"1":{"df":1,"docs":{"301":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"l":{"a":{"'":{"df":6,"docs":{"13":{"tf":1.0},"289":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"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":{".":{"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":{"316":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"473":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.4142135623730951},"373":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"555":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":72,"docs":{"121":{"tf":1.0},"31":{"tf":1.0},"659":{"tf":1.0},"713":{"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.0},"895":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"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.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0}}}},"/":{"<":{"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":8,"docs":{"316":{"tf":1.0},"317":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"578":{"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":13,"docs":{"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"465":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"h":{"df":56,"docs":{"110":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"32":{"tf":1.4142135623730951},"660":{"tf":1.0},"688":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"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":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"693":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"318":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":5,"docs":{"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"923":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"342":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"693":{"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":{"34":{"tf":1.0}}}}}}}},"df":185,"docs":{"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"654":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"689":{"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},"746":{"tf":1.0},"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},"755":{"tf":1.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},"765":{"tf":1.0},"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"888":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{":":{":":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"393":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"393":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"456":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"457":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"110":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"404":{"tf":1.0}}},"5":{"df":1,"docs":{"404":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"406":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"598":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"383":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"574":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"2":{"3":{"df":1,"docs":{"575":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"577":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":1,"docs":{"551":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"553":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"437":{"tf":1.0}},"s":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"435":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"505":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"507":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"585":{"tf":1.4142135623730951},"586":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"623":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"519":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"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":{"(":{"a":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"476":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"480":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"448":{"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"540":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"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":{"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":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{")":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"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":{},"s":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"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":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":0,"docs":{},"e":{"d":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"[":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"]":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"687":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":18,"docs":{"133":{"tf":1.0},"21":{"tf":1.4142135623730951},"268":{"tf":1.0},"289":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"656":{"tf":1.0},"677":{"tf":1.0},"7":{"tf":1.0},"712":{"tf":1.0},"73":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0}},"’":{"df":1,"docs":{"704":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"958":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"s":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"u":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"101":{"tf":1.4142135623730951},"117":{"tf":1.0},"137":{"tf":1.4142135623730951},"22":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.0},"710":{"tf":1.0},"80":{"tf":1.4142135623730951},"846":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"728":{"tf":1.0},"814":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":38,"docs":{"103":{"tf":1.0},"119":{"tf":1.7320508075688772},"132":{"tf":1.0},"192":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"34":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.4142135623730951},"462":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.4142135623730951},"549":{"tf":1.0},"674":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"76":{"tf":1.7320508075688772},"792":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"94":{"tf":1.0},"958":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"22":{"tf":2.0},"847":{"tf":1.0},"859":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"811":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"652":{"tf":1.0},"811":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"799":{"tf":1.0}}}},"w":{"1":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772}}},"2":{"df":5,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0}}},"3":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{".":{"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":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"701":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"693":{"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":{},"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":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"317":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"d":{"df":2,"docs":{"20":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"/":{"a":{"df":6,"docs":{"388":{"tf":1.0},"409":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"534":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":112,"docs":{"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"114":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":2.8284271247461903},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"286":{"tf":2.449489742783178},"289":{"tf":1.4142135623730951},"291":{"tf":1.7320508075688772},"292":{"tf":1.0},"294":{"tf":2.449489742783178},"295":{"tf":2.0},"297":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"303":{"tf":2.0},"315":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"443":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"651":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.0},"687":{"tf":2.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"731":{"tf":1.4142135623730951},"736":{"tf":1.0},"782":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"823":{"tf":1.0},"83":{"tf":2.23606797749979},"834":{"tf":1.0},"84":{"tf":1.4142135623730951},"857":{"tf":1.0},"864":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"915":{"tf":1.0},"921":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.0},"956":{"tf":1.0},"964":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":5,"docs":{"104":{"tf":1.0},"157":{"tf":1.0},"687":{"tf":2.449489742783178},"697":{"tf":1.0},"83":{"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":{"d":{"/":{"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":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"17":{"tf":1.0}}}}}}},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"456":{"tf":1.4142135623730951},"460":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.7320508075688772},"499":{"tf":1.0},"501":{"tf":1.4142135623730951},"557":{"tf":1.0},"804":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"v":{"df":8,"docs":{"12":{"tf":1.0},"317":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"775":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":2.23606797749979},"853":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"376":{"tf":1.0},"414":{"tf":2.449489742783178},"418":{"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":{},"r":{"df":5,"docs":{"142":{"tf":1.0},"289":{"tf":1.0},"328":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"895":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"844":{"tf":1.0}}}}},"df":0,"docs":{}},"k":{"df":5,"docs":{"730":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"883":{"tf":1.0}}}},"df":1,"docs":{"224":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":30,"docs":{"105":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"232":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"330":{"tf":1.0},"347":{"tf":1.4142135623730951},"649":{"tf":1.0},"66":{"tf":1.0},"666":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"922":{"tf":1.0},"969":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":91,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"12":{"tf":1.0},"127":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":3.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"297":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":2.0},"326":{"tf":1.0},"338":{"tf":1.4142135623730951},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"401":{"tf":1.0},"43":{"tf":1.0},"473":{"tf":1.0},"52":{"tf":1.0},"533":{"tf":1.0},"583":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"621":{"tf":1.0},"647":{"tf":1.0},"652":{"tf":1.0},"662":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"70":{"tf":1.0},"710":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"762":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"80":{"tf":1.7320508075688772},"807":{"tf":1.7320508075688772},"824":{"tf":1.0},"828":{"tf":1.0},"838":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":2.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":27,"docs":{"376":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"497":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.0},"517":{"tf":1.0},"520":{"tf":1.0},"575":{"tf":1.4142135623730951},"578":{"tf":2.0},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":2.0},"606":{"tf":1.0},"609":{"tf":1.4142135623730951},"621":{"tf":1.0},"816":{"tf":1.0},"915":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"28":{"tf":1.0},"326":{"tf":1.0},"644":{"tf":1.4142135623730951},"894":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"a":{":":{"5":{".":{"6":{".":{"0":{"@":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"820":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"626":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"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":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":2.23606797749979}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"s":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"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":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{},"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":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.4142135623730951}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"624":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"623":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"(":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"589":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"585":{"tf":1.4142135623730951},"586":{"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"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":{".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"621":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"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":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"623":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"d":{"d":{"(":{"1":{"df":1,"docs":{"621":{"tf":1.0}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"a":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"519":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"2":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"520":{"tf":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":{"517":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":26,"docs":{"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"273":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"590":{"tf":1.0},"621":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"710":{"tf":1.0},"779":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"915":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"127":{"tf":4.123105625617661},"135":{"tf":1.0},"168":{"tf":1.0},"288":{"tf":1.4142135623730951},"401":{"tf":1.0},"412":{"tf":1.0},"645":{"tf":1.0},"752":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"79":{"tf":1.0},"830":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0}}}}}}}}}}}},"w":{"df":126,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":2.0},"12":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":2.23606797749979},"26":{"tf":1.0},"288":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"35":{"tf":1.0},"379":{"tf":1.0},"425":{"tf":2.449489742783178},"445":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"528":{"tf":2.6457513110645907},"55":{"tf":1.4142135623730951},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"563":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"661":{"tf":1.0},"67":{"tf":1.4142135623730951},"675":{"tf":1.0},"677":{"tf":1.4142135623730951},"680":{"tf":1.0},"69":{"tf":1.4142135623730951},"691":{"tf":1.0},"693":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"701":{"tf":1.0},"71":{"tf":2.0},"711":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"721":{"tf":1.4142135623730951},"725":{"tf":1.0},"727":{"tf":1.7320508075688772},"729":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"752":{"tf":1.0},"772":{"tf":1.4142135623730951},"779":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":2.23606797749979},"8":{"tf":1.7320508075688772},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"806":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"811":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"866":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"895":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"916":{"tf":1.0},"92":{"tf":2.23606797749979},"929":{"tf":1.0},"93":{"tf":1.0},"932":{"tf":1.0},"94":{"tf":1.0},"942":{"tf":1.0},"95":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.7320508075688772},"961":{"tf":1.7320508075688772},"968":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"274":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"929":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"117":{"tf":1.0},"678":{"tf":1.4142135623730951},"842":{"tf":1.0},"9":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":21,"docs":{"127":{"tf":1.7320508075688772},"13":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.0},"184":{"tf":2.0},"224":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"318":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"680":{"tf":1.4142135623730951},"711":{"tf":1.0},"823":{"tf":1.0},"839":{"tf":1.0},"958":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"677":{"tf":1.0},"871":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"254":{"tf":1.0},"60":{"tf":1.0},"83":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"765":{"tf":1.0},"772":{"tf":1.0}}},"m":{"b":{"df":0,"docs":{},"u":{"df":21,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.0},"198":{"tf":2.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"211":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"738":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"0":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":2.0},"34":{"tf":1.7320508075688772},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"947":{"tf":1.0},"958":{"tf":1.0}}}},"df":3,"docs":{"912":{"tf":1.4142135623730951},"913":{"tf":1.0},"939":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}}}}}}}},"df":37,"docs":{"184":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"393":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"476":{"tf":1.4142135623730951},"491":{"tf":1.0},"529":{"tf":1.4142135623730951},"541":{"tf":1.0},"551":{"tf":1.0},"575":{"tf":1.0},"593":{"tf":1.0},"595":{"tf":1.0},"598":{"tf":1.4142135623730951},"606":{"tf":1.0},"609":{"tf":1.4142135623730951},"621":{"tf":1.0},"632":{"tf":1.0},"741":{"tf":1.4142135623730951},"762":{"tf":1.0},"802":{"tf":1.0},"815":{"tf":1.0},"831":{"tf":1.0},"866":{"tf":1.0},"905":{"tf":1.0}},"e":{"df":45,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"316":{"tf":2.0},"318":{"tf":1.4142135623730951},"367":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"642":{"tf":1.0},"685":{"tf":1.0},"70":{"tf":1.4142135623730951},"765":{"tf":1.0},"772":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"190":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"663":{"tf":1.0},"665":{"tf":1.0},"682":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":86,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"281":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"307":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"344":{"tf":1.0},"377":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"514":{"tf":1.0},"546":{"tf":1.4142135623730951},"560":{"tf":1.0},"563":{"tf":2.0},"565":{"tf":1.4142135623730951},"568":{"tf":1.0},"572":{"tf":1.0},"580":{"tf":1.0},"664":{"tf":1.0},"667":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.0},"684":{"tf":1.0},"701":{"tf":1.0},"719":{"tf":1.0},"730":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"807":{"tf":1.0},"824":{"tf":1.0},"83":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"927":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"h":{"df":7,"docs":{"204":{"tf":1.0},"218":{"tf":1.0},"232":{"tf":1.0},"471":{"tf":1.0},"649":{"tf":1.0},"667":{"tf":1.0},"796":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"44":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":4,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"198":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":36,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"138":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.7320508075688772},"292":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0},"397":{"tf":1.0},"408":{"tf":1.0},"418":{"tf":1.0},"429":{"tf":1.0},"439":{"tf":1.0},"450":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":1.0},"498":{"tf":1.0},"509":{"tf":1.0},"521":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"590":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"77":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"345":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"df":84,"docs":{"115":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.7320508075688772},"551":{"tf":2.6457513110645907},"652":{"tf":1.0},"677":{"tf":1.0},"719":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.7320508075688772},"731":{"tf":1.0},"732":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"740":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"763":{"tf":1.0},"772":{"tf":2.6457513110645907},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"789":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.7320508075688772},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.0},"839":{"tf":2.0},"842":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":2.23606797749979},"854":{"tf":1.0},"857":{"tf":1.4142135623730951},"858":{"tf":2.449489742783178},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.6457513110645907},"862":{"tf":2.0},"863":{"tf":1.0},"864":{"tf":2.449489742783178},"865":{"tf":2.23606797749979},"866":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"895":{"tf":1.0},"912":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"912":{"tf":1.0},"939":{"tf":1.0},"958":{"tf":1.0}}},"x":{"df":2,"docs":{"689":{"tf":1.0},"690":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":8,"docs":{"406":{"tf":1.0},"427":{"tf":1.0},"448":{"tf":1.4142135623730951},"464":{"tf":1.0},"531":{"tf":1.0},"553":{"tf":1.0},"600":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"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":1,"docs":{"529":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"834":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"459":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"765":{"tf":1.4142135623730951},"772":{"tf":2.0},"796":{"tf":1.4142135623730951},"858":{"tf":1.0},"865":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":100,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"127":{"tf":3.1622776601683795},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"21":{"tf":1.0},"267":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.7320508075688772},"328":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.0},"407":{"tf":1.0},"414":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"425":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"517":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"589":{"tf":1.0},"591":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"612":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"773":{"tf":1.0},"806":{"tf":1.0},"834":{"tf":2.0},"849":{"tf":1.0},"897":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":4,"docs":{"618":{"tf":1.4142135623730951},"619":{"tf":1.0},"621":{"tf":2.0},"623":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":45,"docs":{"131":{"tf":1.0},"170":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"376":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"638":{"tf":1.7320508075688772},"639":{"tf":1.0},"640":{"tf":1.7320508075688772},"641":{"tf":1.0},"642":{"tf":1.7320508075688772},"643":{"tf":1.0},"644":{"tf":2.6457513110645907},"645":{"tf":2.23606797749979},"646":{"tf":1.0},"652":{"tf":1.0},"663":{"tf":1.0},"679":{"tf":1.0},"693":{"tf":1.0},"718":{"tf":1.0},"727":{"tf":1.7320508075688772},"730":{"tf":1.0},"732":{"tf":1.0},"772":{"tf":1.4142135623730951},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":2.0},"805":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"834":{"tf":1.0},"908":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"875":{"tf":1.0},"915":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"719":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"7":{"tf":1.0},"814":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"120":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"170":{"tf":1.0},"22":{"tf":1.0},"259":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"454":{"tf":1.0},"840":{"tf":1.0},"864":{"tf":1.0},"908":{"tf":1.0}},"r":{"df":5,"docs":{"376":{"tf":1.0},"560":{"tf":1.0},"76":{"tf":1.0},"915":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":7,"docs":{"115":{"tf":1.4142135623730951},"21":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"683":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"22":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"237":{"tf":1.0},"265":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"234":{"tf":1.0},"673":{"tf":1.0},"785":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"671":{"tf":2.449489742783178},"672":{"tf":1.0},"673":{"tf":1.7320508075688772},"835":{"tf":1.0},"915":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"549":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"802":{"tf":1.4142135623730951},"881":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"l":{"d":{"df":6,"docs":{"288":{"tf":1.4142135623730951},"741":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"799":{"tf":2.23606797749979},"874":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"224":{"tf":1.0},"274":{"tf":1.0},"731":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"844":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}}}},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"478":{"tf":1.0}}}}}}},"df":1,"docs":{"478":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"473":{"tf":1.0}}}}}}},"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"n":{"df":1,"docs":{"461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":21,"docs":{"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"379":{"tf":1.0},"570":{"tf":1.0},"873":{"tf":1.0},"880":{"tf":1.0},"902":{"tf":1.0},"919":{"tf":1.4142135623730951},"924":{"tf":1.0},"927":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"315":{"tf":1.4142135623730951},"324":{"tf":1.0},"338":{"tf":1.4142135623730951},"678":{"tf":1.4142135623730951},"679":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":82,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"477":{"tf":1.0},"493":{"tf":1.0},"519":{"tf":1.0},"538":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"613":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"678":{"tf":1.0},"691":{"tf":1.0},"693":{"tf":1.0},"697":{"tf":1.0},"741":{"tf":1.0},"751":{"tf":1.0},"79":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"80":{"tf":1.0},"801":{"tf":1.0},"809":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"961":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"_":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"266":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"671":{"tf":1.0}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"458":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":2.449489742783178}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"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":1,"docs":{"478":{"tf":1.4142135623730951}}},"df":1,"docs":{"478":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"d":{"(":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"473":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":1,"docs":{"473":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":7,"docs":{"17":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"324":{"tf":1.4142135623730951},"649":{"tf":1.0},"853":{"tf":1.0},"919":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"151":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":2.0},"183":{"tf":2.23606797749979},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"241":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"498":{"tf":1.4142135623730951},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"569":{"tf":1.0},"890":{"tf":1.0},"969":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"r":{"df":19,"docs":{"107":{"tf":1.0},"132":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.4142135623730951},"340":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"78":{"tf":1.0},"786":{"tf":1.0},"804":{"tf":1.0},"86":{"tf":1.0},"99":{"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":4,"docs":{"103":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"131":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"330":{"tf":1.0},"734":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"565":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":106,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":3.4641016151377544},"13":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.1622776601683795},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.0},"197":{"tf":1.4142135623730951},"198":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":2.0},"232":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"276":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.4142135623730951},"298":{"tf":1.7320508075688772},"315":{"tf":2.6457513110645907},"326":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":2.6457513110645907},"440":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.4142135623730951},"507":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"644":{"tf":1.0},"65":{"tf":1.4142135623730951},"655":{"tf":1.0},"66":{"tf":1.4142135623730951},"663":{"tf":2.449489742783178},"664":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"67":{"tf":1.4142135623730951},"670":{"tf":1.0},"682":{"tf":2.449489742783178},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"728":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"801":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"861":{"tf":1.0},"871":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"951":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"958":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":60,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"213":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.0},"346":{"tf":1.7320508075688772},"352":{"tf":1.0},"363":{"tf":1.0},"398":{"tf":1.0},"41":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"48":{"tf":1.4142135623730951},"499":{"tf":1.0},"522":{"tf":1.0},"565":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"689":{"tf":1.0},"692":{"tf":1.0},"800":{"tf":1.0},"809":{"tf":1.0},"814":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"956":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{":":{"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":{"316":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"656":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"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":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.0},"227":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"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":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"656":{"tf":1.0},"793":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"393":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"632":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"404":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"598":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"574":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951}}}}}}}},"n":{"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":3,"docs":{"621":{"tf":2.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951}}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"640":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0}}}}}},"df":4,"docs":{"315":{"tf":1.0},"338":{"tf":1.0},"649":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"425":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"417":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"110":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951},"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":{}}}}}}},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{":":{"4":{".":{"3":{".":{"1":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"117":{"tf":1.0},"157":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.0},"823":{"tf":1.0}}}}}}},"s":{"/":{"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":{"271":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":7,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"762":{"tf":1.4142135623730951},"923":{"tf":1.0}}}}}}},"df":13,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"289":{"tf":1.0},"376":{"tf":1.0},"923":{"tf":1.4142135623730951},"938":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"834":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"924":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"175":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"367":{"tf":1.0},"572":{"tf":1.0},"840":{"tf":1.0},"855":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"859":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"289":{"tf":1.0}}}}},"df":46,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"26":{"tf":1.0},"289":{"tf":1.0},"3":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"4":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"580":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.7320508075688772},"63":{"tf":1.0},"630":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"708":{"tf":1.0},"734":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"923":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"958":{"tf":1.0}}}},"g":{"df":0,"docs":{},"o":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}},"n":{"df":2,"docs":{"265":{"tf":1.0},"379":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":2.23606797749979},"17":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"231":{"tf":1.0},"234":{"tf":1.0},"276":{"tf":1.0},"37":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"667":{"tf":1.0},"683":{"tf":1.4142135623730951},"697":{"tf":1.0},"852":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"289":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"830":{"tf":1.4142135623730951},"861":{"tf":1.0},"88":{"tf":1.0},"922":{"tf":1.0},"927":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}}},"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"127":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0}}}},"df":19,"docs":{"121":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"289":{"tf":1.0},"456":{"tf":1.0},"476":{"tf":1.0},"517":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"677":{"tf":1.0},"711":{"tf":1.0},"74":{"tf":1.0},"823":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.4142135623730951},"471":{"tf":1.0},"761":{"tf":1.0},"773":{"tf":1.0},"912":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"190":{"tf":1.0},"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"204":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"520":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"208":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"315":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"668":{"tf":1.0},"673":{"tf":1.4142135623730951},"678":{"tf":1.0},"679":{"tf":1.7320508075688772},"773":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":22,"docs":{"0":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.7320508075688772},"653":{"tf":1.7320508075688772},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"70":{"tf":1.0},"704":{"tf":1.0},"71":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"960":{"tf":1.0},"962":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"224":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"775":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"667":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"289":{"tf":1.0},"647":{"tf":1.0},"78":{"tf":1.0},"853":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"132":{"tf":1.4142135623730951},"288":{"tf":1.0},"297":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"660":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":2.0},"688":{"tf":1.0},"689":{"tf":1.0},"776":{"tf":1.0},"793":{"tf":1.4142135623730951},"798":{"tf":1.0},"805":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"858":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"944":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"789":{"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"590":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":161,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.4142135623730951},"249":{"tf":1.0},"254":{"tf":3.1622776601683795},"264":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"429":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.7320508075688772},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"487":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.0},"514":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"56":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"571":{"tf":1.0},"582":{"tf":1.0},"594":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"625":{"tf":1.0},"628":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"652":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.4142135623730951},"662":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"701":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"8":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"9":{"tf":1.0},"900":{"tf":1.0},"905":{"tf":1.0},"956":{"tf":1.0},"958":{"tf":1.4142135623730951},"960":{"tf":1.7320508075688772},"961":{"tf":1.0},"963":{"tf":2.0},"964":{"tf":1.4142135623730951},"965":{"tf":1.7320508075688772},"968":{"tf":2.6457513110645907},"969":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0}}}},"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":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"477":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"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":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"481":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"480":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"475":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"476":{"tf":1.0}}}}}},"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":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"478":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"473":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"474":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"481":{"tf":1.0},"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"480":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"623":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"623":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"199":{"tf":1.0},"459":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"786":{"tf":1.0},"812":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"969":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"22":{"tf":2.0},"814":{"tf":1.0},"862":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":88,"docs":{"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"190":{"tf":1.4142135623730951},"211":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"292":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.0},"387":{"tf":1.7320508075688772},"388":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"408":{"tf":1.7320508075688772},"409":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"450":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"462":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"483":{"tf":1.7320508075688772},"484":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":2.0},"501":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772},"521":{"tf":1.4142135623730951},"522":{"tf":2.0},"533":{"tf":1.7320508075688772},"534":{"tf":1.4142135623730951},"545":{"tf":1.7320508075688772},"547":{"tf":1.4142135623730951},"556":{"tf":1.7320508075688772},"557":{"tf":1.7320508075688772},"560":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":2.0},"590":{"tf":1.4142135623730951},"591":{"tf":2.0},"602":{"tf":1.7320508075688772},"603":{"tf":1.7320508075688772},"613":{"tf":1.7320508075688772},"614":{"tf":2.0},"625":{"tf":1.7320508075688772},"636":{"tf":1.7320508075688772},"644":{"tf":2.449489742783178},"645":{"tf":1.0},"693":{"tf":1.0},"701":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"789":{"tf":1.0},"801":{"tf":1.0},"805":{"tf":1.0},"857":{"tf":1.0},"867":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"933":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"17":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"698":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"869":{"tf":1.0}}}}}}}}}}}},"r":{"df":10,"docs":{"17":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"692":{"tf":1.4142135623730951},"707":{"tf":1.0},"830":{"tf":1.0},"915":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}}}}},"t":{"df":25,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.0},"317":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"679":{"tf":1.0},"698":{"tf":1.0},"711":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"793":{"tf":1.0},"834":{"tf":1.4142135623730951},"853":{"tf":1.0},"854":{"tf":1.0},"958":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"190":{"tf":1.0},"204":{"tf":1.4142135623730951},"268":{"tf":1.0},"289":{"tf":1.0},"454":{"tf":1.0},"618":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"74":{"tf":1.0},"78":{"tf":1.0},"923":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"289":{"tf":1.0},"645":{"tf":1.0}}},"y":{".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"640":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"643":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"643":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"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":{"640":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":44,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"17":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.7320508075688772},"233":{"tf":1.0},"238":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"44":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.7320508075688772},"598":{"tf":1.0},"609":{"tf":1.0},"640":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.4142135623730951},"682":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"796":{"tf":1.0},"799":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"830":{"tf":1.0},"837":{"tf":1.0},"914":{"tf":1.0},"98":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"435":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"289":{"tf":1.4142135623730951},"435":{"tf":2.6457513110645907},"437":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"254":{"tf":2.8284271247461903},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.0}}},"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":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":6,"docs":{"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"598":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"383":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0}}}},"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":{},"j":{"df":3,"docs":{"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"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":0,"docs":{},"j":{"df":3,"docs":{"621":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"652":{"tf":1.0}}}},"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":{},"j":{"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"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":{},"j":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}}},"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":31,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"144":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"26":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.7320508075688772},"443":{"tf":1.0},"538":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.4142135623730951},"683":{"tf":2.0},"686":{"tf":2.23606797749979},"692":{"tf":1.0},"769":{"tf":1.0},"782":{"tf":1.0},"802":{"tf":1.4142135623730951},"814":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"949":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"224":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0}}}}}}},"y":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":23,"docs":{"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.0},"133":{"tf":1.0},"142":{"tf":1.4142135623730951},"217":{"tf":1.0},"254":{"tf":1.4142135623730951},"298":{"tf":1.0},"471":{"tf":1.0},"644":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":2.23606797749979},"709":{"tf":1.0},"710":{"tf":1.4142135623730951},"716":{"tf":1.0},"755":{"tf":1.0},"759":{"tf":1.0},"853":{"tf":1.0},"865":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"951":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":2,"docs":{"652":{"tf":1.4142135623730951},"701":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"953":{"tf":1.0}}}},"n":{"d":{"df":15,"docs":{"127":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"146":{"tf":1.0},"22":{"tf":1.4142135623730951},"313":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"734":{"tf":1.0},"754":{"tf":1.0},"809":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.4142135623730951},"834":{"tf":1.0},"871":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"288":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0}}}}},"p":{"8":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":2.0}}}}}}}},"df":30,"docs":{"146":{"tf":1.4142135623730951},"203":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.4142135623730951},"258":{"tf":3.0},"262":{"tf":1.0},"264":{"tf":1.0},"315":{"tf":1.4142135623730951},"318":{"tf":1.0},"377":{"tf":1.0},"480":{"tf":1.0},"487":{"tf":1.0},"496":{"tf":1.0},"498":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"514":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.4142135623730951},"577":{"tf":1.0},"588":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"836":{"tf":1.4142135623730951},"864":{"tf":1.0},"963":{"tf":1.0}},"f":{"df":1,"docs":{"136":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"915":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":25,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.0},"308":{"tf":1.0},"321":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"456":{"tf":1.7320508075688772},"46":{"tf":1.0},"484":{"tf":1.4142135623730951},"53":{"tf":1.0},"538":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":1.4142135623730951},"73":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"94":{"tf":1.0},"958":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"233":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"100":{"tf":1.0},"175":{"tf":1.0},"288":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"590":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.7320508075688772},"915":{"tf":1.0}}}},"t":{"df":8,"docs":{"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"715":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"130":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"567":{"tf":1.0},"674":{"tf":1.0},"78":{"tf":1.0},"788":{"tf":1.7320508075688772},"842":{"tf":1.0},"871":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":2.23606797749979},"958":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"42":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"d":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"671":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"#":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"'":{"df":4,"docs":{"139":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0}}},"(":{"df":1,"docs":{"117":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"275":{"tf":1.0},"298":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":15,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"158":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"326":{"tf":1.0},"864":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"765":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"297":{"tf":1.7320508075688772},"727":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"864":{"tf":1.0}}}}}},"df":317,"docs":{"100":{"tf":5.291502622129181},"101":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"124":{"tf":2.6457513110645907},"125":{"tf":5.0990195135927845},"126":{"tf":3.3166247903554},"127":{"tf":6.855654600401044},"128":{"tf":2.449489742783178},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"131":{"tf":3.4641016151377544},"132":{"tf":1.7320508075688772},"133":{"tf":2.23606797749979},"134":{"tf":2.6457513110645907},"135":{"tf":3.872983346207417},"136":{"tf":3.4641016151377544},"137":{"tf":3.1622776601683795},"138":{"tf":3.1622776601683795},"139":{"tf":2.23606797749979},"140":{"tf":2.8284271247461903},"141":{"tf":2.23606797749979},"142":{"tf":2.0},"143":{"tf":2.6457513110645907},"144":{"tf":2.6457513110645907},"145":{"tf":4.0},"146":{"tf":2.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":3.0},"156":{"tf":2.449489742783178},"157":{"tf":2.6457513110645907},"158":{"tf":2.23606797749979},"159":{"tf":2.23606797749979},"160":{"tf":2.8284271247461903},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":2.23606797749979},"165":{"tf":2.23606797749979},"166":{"tf":2.0},"167":{"tf":2.0},"168":{"tf":2.23606797749979},"169":{"tf":2.0},"17":{"tf":1.4142135623730951},"170":{"tf":2.8284271247461903},"171":{"tf":1.7320508075688772},"172":{"tf":2.23606797749979},"173":{"tf":3.1622776601683795},"174":{"tf":2.0},"175":{"tf":3.4641016151377544},"176":{"tf":2.8284271247461903},"177":{"tf":2.449489742783178},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":4.58257569495584},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":2.0},"214":{"tf":1.0},"217":{"tf":2.0},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.7320508075688772},"223":{"tf":1.0},"224":{"tf":5.0},"231":{"tf":3.605551275463989},"233":{"tf":2.449489742783178},"236":{"tf":2.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":2.449489742783178},"243":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":3.4641016151377544},"258":{"tf":4.0},"259":{"tf":3.0},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":2.0},"264":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":2.8284271247461903},"276":{"tf":2.449489742783178},"278":{"tf":1.0},"289":{"tf":4.0},"290":{"tf":2.23606797749979},"291":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.7320508075688772},"294":{"tf":2.8284271247461903},"295":{"tf":2.23606797749979},"296":{"tf":1.7320508075688772},"297":{"tf":4.69041575982343},"298":{"tf":2.0},"299":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"315":{"tf":4.0},"316":{"tf":2.449489742783178},"317":{"tf":1.0},"318":{"tf":2.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":2.449489742783178},"337":{"tf":1.0},"338":{"tf":2.23606797749979},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"351":{"tf":1.7320508075688772},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":2.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.4142135623730951},"416":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"468":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"619":{"tf":1.0},"623":{"tf":1.0},"632":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"642":{"tf":1.0},"647":{"tf":2.449489742783178},"648":{"tf":1.0},"649":{"tf":2.8284271247461903},"650":{"tf":1.0},"651":{"tf":1.7320508075688772},"652":{"tf":5.0},"653":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":2.449489742783178},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"674":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":3.605551275463989},"679":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":2.6457513110645907},"698":{"tf":1.7320508075688772},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.7320508075688772},"704":{"tf":1.0},"709":{"tf":2.449489742783178},"710":{"tf":2.23606797749979},"711":{"tf":2.449489742783178},"715":{"tf":1.7320508075688772},"716":{"tf":1.0},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"723":{"tf":1.0},"727":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.4142135623730951},"730":{"tf":1.0},"734":{"tf":2.6457513110645907},"736":{"tf":1.0},"738":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":2.449489742783178},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"765":{"tf":1.0},"78":{"tf":2.23606797749979},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":5.291502622129181},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"806":{"tf":2.23606797749979},"807":{"tf":2.23606797749979},"809":{"tf":1.4142135623730951},"812":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":1.4142135623730951},"834":{"tf":2.449489742783178},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.7320508075688772},"842":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"854":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"860":{"tf":1.4142135623730951},"861":{"tf":2.0},"862":{"tf":1.4142135623730951},"864":{"tf":2.23606797749979},"865":{"tf":2.23606797749979},"867":{"tf":1.7320508075688772},"869":{"tf":1.7320508075688772},"871":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"875":{"tf":1.0},"876":{"tf":1.0},"878":{"tf":1.0},"880":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"907":{"tf":1.0},"913":{"tf":2.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.7320508075688772},"916":{"tf":2.0},"917":{"tf":1.4142135623730951},"919":{"tf":2.0},"920":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":2.8284271247461903},"930":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":2.23606797749979},"952":{"tf":1.0},"956":{"tf":2.449489742783178},"958":{"tf":1.0},"963":{"tf":1.0},"99":{"tf":2.23606797749979}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"696":{"tf":1.7320508075688772},"697":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"\"":{"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":{"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"649":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"652":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":{"652":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":20,"docs":{"131":{"tf":1.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"17":{"tf":1.4142135623730951},"208":{"tf":1.0},"21":{"tf":2.449489742783178},"26":{"tf":1.0},"278":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"336":{"tf":1.0},"338":{"tf":2.0},"665":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.7320508075688772},"864":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.4142135623730951}}}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"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":2,"docs":{"649":{"tf":1.0},"652":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":2,"docs":{"210":{"tf":1.0},"254":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"858":{"tf":1.0},"869":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"316":{"tf":1.0},"317":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"df":7,"docs":{"115":{"tf":1.0},"19":{"tf":2.0},"43":{"tf":1.0},"673":{"tf":1.0},"692":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"136":{"tf":1.0},"160":{"tf":1.0},"184":{"tf":1.4142135623730951},"218":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":2.23606797749979},"77":{"tf":1.0},"864":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"132":{"tf":1.0},"376":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"595":{"tf":1.0},"602":{"tf":1.4142135623730951},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"20":{"tf":1.0},"338":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"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":{},"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":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":11,"docs":{"138":{"tf":1.0},"147":{"tf":1.0},"26":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"683":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"969":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"652":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"636":{"tf":1.0}}}}}}}},"n":{"df":7,"docs":{"190":{"tf":1.0},"344":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":30,"docs":{"185":{"tf":2.23606797749979},"186":{"tf":1.0},"187":{"tf":2.23606797749979},"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.4142135623730951},"206":{"tf":2.23606797749979},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"315":{"tf":1.0}}},"=":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}},"df":68,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"132":{"tf":2.0},"136":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"236":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"379":{"tf":1.0},"456":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"653":{"tf":1.0},"690":{"tf":1.0},"697":{"tf":1.0},"705":{"tf":1.0},"794":{"tf":1.0},"806":{"tf":1.0},"815":{"tf":1.0},"831":{"tf":1.0},"854":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.4142135623730951},"9":{"tf":1.0},"902":{"tf":1.4142135623730951},"913":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":2.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"936":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":3,"docs":{"923":{"tf":1.0},"928":{"tf":1.0},"938":{"tf":1.0}}}}}}}}}}},"y":{"df":3,"docs":{"100":{"tf":1.0},"79":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":30,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"124":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"422":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"514":{"tf":1.0},"537":{"tf":1.0},"582":{"tf":1.0},"65":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"85":{"tf":1.0},"860":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"136":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":36,"docs":{"13":{"tf":3.7416573867739413},"663":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.4142135623730951},"672":{"tf":1.0},"693":{"tf":2.8284271247461903},"694":{"tf":2.0},"695":{"tf":1.7320508075688772},"696":{"tf":1.0},"697":{"tf":1.7320508075688772},"698":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.7320508075688772},"721":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"773":{"tf":1.0},"786":{"tf":1.4142135623730951},"792":{"tf":1.7320508075688772},"793":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"828":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"924":{"tf":1.0},"951":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"203":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"404":{"tf":1.0},"414":{"tf":1.0},"462":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"621":{"tf":1.0},"63":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"700":{"tf":1.4142135623730951},"913":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"924":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"951":{"tf":1.0},"958":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"31":{"tf":2.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":12,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.6457513110645907},"191":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0}}},"p":{"df":3,"docs":{"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"254":{"tf":1.0},"289":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"401":{"tf":1.0},"412":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.7320508075688772},"223":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"270":{"tf":1.0},"297":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"70":{"tf":1.0},"741":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"867":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"924":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":9,"docs":{"113":{"tf":1.0},"115":{"tf":2.0},"150":{"tf":1.0},"317":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"750":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"190":{"tf":1.4142135623730951},"262":{"tf":1.0},"267":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"64":{"tf":1.0},"73":{"tf":1.0},"744":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"814":{"tf":1.0},"833":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"234":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":23,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"114":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.0},"289":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"878":{"tf":1.0},"962":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{".":{"0":{"df":5,"docs":{"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951}}},"1":{"df":3,"docs":{"899":{"tf":1.4142135623730951},"901":{"tf":1.0},"902":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"898":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"897":{"tf":1.4142135623730951}}},"df":0,"docs":{},"x":{"df":1,"docs":{"896":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"184":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"131":{"tf":2.449489742783178},"132":{"tf":1.0},"289":{"tf":1.0},"734":{"tf":1.4142135623730951},"804":{"tf":1.0}},"e":{"_":{"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":{"734":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"560":{"tf":1.0},"640":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"127":{"tf":1.0},"136":{"tf":1.0},"326":{"tf":1.0},"720":{"tf":1.0},"807":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.7320508075688772},"259":{"tf":1.0},"289":{"tf":1.0},"315":{"tf":2.23606797749979},"316":{"tf":2.0},"317":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"476":{"tf":1.0},"494":{"tf":1.4142135623730951},"596":{"tf":1.0},"607":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.7320508075688772},"960":{"tf":1.0},"968":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"285":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":2,"docs":{"720":{"tf":1.0},"757":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"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":{"782":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"782":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"757":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"912":{"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":1,"docs":{"252":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"130":{"tf":1.0},"136":{"tf":1.0},"231":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"67":{"tf":1.0},"845":{"tf":1.0},"951":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"967":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"667":{"tf":1.0},"864":{"tf":1.0}}}}},"s":{"df":9,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"198":{"tf":1.0},"376":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"17":{"tf":1.0},"203":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"692":{"tf":1.7320508075688772},"720":{"tf":1.0},"742":{"tf":1.0},"771":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"913":{"tf":1.0},"929":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"118":{"tf":1.0},"142":{"tf":1.4142135623730951},"149":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"478":{"tf":1.0},"492":{"tf":1.0},"65":{"tf":1.0},"711":{"tf":1.4142135623730951},"752":{"tf":1.0},"791":{"tf":1.0},"796":{"tf":1.0},"806":{"tf":1.4142135623730951},"824":{"tf":1.0},"846":{"tf":1.0},"916":{"tf":1.0},"924":{"tf":1.0}},"s":{"df":8,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"254":{"tf":1.0},"654":{"tf":1.0},"782":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"551":{"tf":1.0},"553":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"52":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"962":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":17,"docs":{"378":{"tf":1.0},"393":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"614":{"tf":1.0},"616":{"tf":1.0},"747":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"217":{"tf":1.0},"834":{"tf":1.0},"864":{"tf":1.0},"880":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"324":{"tf":1.0},"425":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"563":{"tf":1.0},"671":{"tf":1.0},"814":{"tf":1.0},"837":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"862":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"104":{"tf":1.0},"680":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"276":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"61":{"tf":2.0},"704":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"402":{"tf":1.0},"619":{"tf":1.0}}}},"df":4,"docs":{"254":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.0},"912":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":2,"docs":{"254":{"tf":1.0},"675":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":45,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"125":{"tf":1.0},"155":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"22":{"tf":2.449489742783178},"224":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"263":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":2.8284271247461903},"316":{"tf":2.6457513110645907},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"379":{"tf":1.7320508075688772},"439":{"tf":1.0},"441":{"tf":1.0},"459":{"tf":1.7320508075688772},"646":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"711":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"816":{"tf":1.0},"83":{"tf":1.0},"832":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"115":{"tf":1.7320508075688772},"330":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"804":{"tf":1.0},"830":{"tf":1.4142135623730951},"858":{"tf":1.0}},"t":{"'":{"df":7,"docs":{"224":{"tf":1.0},"227":{"tf":1.0},"355":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}},"df":87,"docs":{"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"132":{"tf":2.0},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":1.0},"215":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"268":{"tf":2.0},"276":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.7320508075688772},"37":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"580":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"647":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"669":{"tf":2.0},"67":{"tf":1.0},"674":{"tf":1.0},"685":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"853":{"tf":1.0},"9":{"tf":2.6457513110645907},"908":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"100":{"tf":1.4142135623730951},"132":{"tf":1.0},"289":{"tf":2.0},"533":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"0":{"tf":1.0},"252":{"tf":1.0},"653":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"104":{"tf":1.0},"83":{"tf":1.0},"958":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"834":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"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":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":101,"docs":{"0":{"tf":2.23606797749979},"10":{"tf":2.23606797749979},"103":{"tf":1.0},"11":{"tf":1.7320508075688772},"111":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":2.0},"13":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"18":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.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},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"66":{"tf":1.0},"661":{"tf":1.0},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"68":{"tf":1.0},"680":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"8":{"tf":2.0},"82":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"891":{"tf":1.0},"894":{"tf":1.0},"9":{"tf":1.0},"908":{"tf":1.0},"912":{"tf":1.4142135623730951},"915":{"tf":1.0},"92":{"tf":1.0},"958":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"956":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"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":{"317":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.7320508075688772}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"840":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"223":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"802":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"749":{"tf":1.0},"777":{"tf":1.0},"929":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.4142135623730951},"208":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"568":{"tf":1.4142135623730951},"580":{"tf":1.0},"582":{"tf":1.0},"618":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"905":{"tf":1.0},"951":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"963":{"tf":1.0},"964":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"?":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"231":{"tf":1.0},"232":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"541":{"tf":1.0},"854":{"tf":1.0},"922":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":109,"docs":{"10":{"tf":1.0},"121":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.4142135623730951},"330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"37":{"tf":1.0},"379":{"tf":1.0},"39":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":2.0},"476":{"tf":1.4142135623730951},"48":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":2.0},"494":{"tf":1.7320508075688772},"505":{"tf":1.0},"514":{"tf":1.0},"517":{"tf":1.0},"57":{"tf":1.0},"574":{"tf":1.0},"585":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"653":{"tf":1.0},"66":{"tf":1.0},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"685":{"tf":1.7320508075688772},"686":{"tf":1.0},"692":{"tf":1.0},"701":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"793":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"9":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.4142135623730951},"953":{"tf":1.0},"959":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":3.3166247903554}}},"df":0,"docs":{},"s":{"df":1,"docs":{"698":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"590":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"697":{"tf":1.4142135623730951},"7":{"tf":1.0},"773":{"tf":1.4142135623730951},"784":{"tf":1.0},"842":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"782":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":12,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":2.23606797749979},"777":{"tf":1.0},"778":{"tf":1.0},"806":{"tf":1.0},"850":{"tf":1.0},"913":{"tf":1.0},"926":{"tf":1.4142135623730951},"951":{"tf":1.0},"958":{"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":{"60":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}},"s":{"df":30,"docs":{"124":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"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},"285":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"459":{"tf":1.0},"580":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0},"678":{"tf":1.0},"693":{"tf":1.0},"924":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"t":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"140":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"924":{"tf":1.0}}}},"w":{"d":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"17":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"22":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"658":{"tf":1.0}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"318":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"837":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"690":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"3":{"df":3,"docs":{"21":{"tf":1.7320508075688772},"673":{"tf":1.0},"690":{"tf":1.0}}},"df":120,"docs":{"0":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.7320508075688772},"146":{"tf":1.0},"15":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"174":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":3.0},"20":{"tf":2.23606797749979},"21":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":2.449489742783178},"30":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":2.23606797749979},"349":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"390":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"470":{"tf":1.0},"484":{"tf":1.4142135623730951},"486":{"tf":1.0},"513":{"tf":1.0},"529":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"605":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.0},"658":{"tf":2.0},"670":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":3.0},"690":{"tf":1.0},"721":{"tf":1.0},"725":{"tf":1.4142135623730951},"727":{"tf":1.0},"729":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"743":{"tf":1.0},"751":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"790":{"tf":1.0},"799":{"tf":1.0},"803":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.7320508075688772},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"820":{"tf":1.4142135623730951},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"842":{"tf":2.0},"845":{"tf":1.0},"846":{"tf":2.0},"847":{"tf":1.0},"849":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.4142135623730951},"858":{"tf":2.0},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":2.0},"869":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.0},"921":{"tf":1.4142135623730951},"939":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.7320508075688772}}}}}}}},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":11,"docs":{"0":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"48":{"tf":1.0},"653":{"tf":1.0},"661":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"919":{"tf":1.4142135623730951},"934":{"tf":1.0}}}},"r":{"df":1,"docs":{"233":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":18,"docs":{"0":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"661":{"tf":1.0},"9":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.7320508075688772},"933":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"40":{"tf":1.0},"50":{"tf":2.0},"903":{"tf":1.0},"912":{"tf":1.7320508075688772},"924":{"tf":1.7320508075688772},"926":{"tf":1.0},"927":{"tf":1.4142135623730951},"934":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"194":{"tf":1.0},"197":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":33,"docs":{"132":{"tf":1.0},"376":{"tf":1.4142135623730951},"401":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0},"595":{"tf":1.7320508075688772},"596":{"tf":1.7320508075688772},"597":{"tf":1.0},"598":{"tf":1.7320508075688772},"599":{"tf":1.0},"600":{"tf":2.6457513110645907},"601":{"tf":2.23606797749979},"602":{"tf":1.7320508075688772},"603":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":1.7320508075688772},"608":{"tf":1.0},"609":{"tf":1.7320508075688772},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"612":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"734":{"tf":1.0},"791":{"tf":1.4142135623730951},"817":{"tf":1.0},"830":{"tf":1.4142135623730951},"937":{"tf":1.0}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"617":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"938":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"865":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"136":{"tf":1.0},"157":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"231":{"tf":2.23606797749979},"256":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":1.0},"765":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":35,"docs":{"188":{"tf":1.0},"205":{"tf":1.7320508075688772},"376":{"tf":1.0},"389":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"535":{"tf":1.4142135623730951},"548":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"569":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"615":{"tf":1.4142135623730951},"627":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"637":{"tf":1.4142135623730951},"646":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"959":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"u":{"df":2,"docs":{"310":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":14,"docs":{"168":{"tf":1.0},"310":{"tf":1.0},"649":{"tf":1.0},"718":{"tf":1.0},"720":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.4142135623730951},"774":{"tf":1.0},"807":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"157":{"tf":1.0},"953":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"963":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"135":{"tf":2.0},"834":{"tf":1.0}}},"df":5,"docs":{"761":{"tf":1.0},"769":{"tf":1.0},"912":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":3.7416573867739413}}}}}},"r":{"2":{"0":{"df":1,"docs":{"883":{"tf":1.0}}},"5":{"c":{"df":1,"docs":{"745":{"tf":1.0}}},"df":1,"docs":{"762":{"tf":1.0}}},"6":{"c":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"204":{"tf":1.0},"823":{"tf":1.0},"856":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"878":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"288":{"tf":1.0},"734":{"tf":1.0},"774":{"tf":1.0},"842":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"528":{"tf":1.0}}}}}}},"df":1,"docs":{"376":{"tf":1.0}},"g":{"df":7,"docs":{"107":{"tf":1.0},"120":{"tf":1.0},"471":{"tf":1.4142135623730951},"52":{"tf":1.0},"582":{"tf":1.4142135623730951},"65":{"tf":1.0},"86":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"264":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"78":{"tf":1.0},"878":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"(":{"1":{"df":1,"docs":{"623":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"623":{"tf":1.0}}}}}}}},"df":30,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":1.0},"376":{"tf":1.4142135623730951},"523":{"tf":1.0},"618":{"tf":2.23606797749979},"619":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":2.449489742783178},"622":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":1.0},"625":{"tf":1.7320508075688772},"626":{"tf":2.449489742783178},"627":{"tf":1.0},"628":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"804":{"tf":1.0},"836":{"tf":1.0},"846":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"929":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"590":{"tf":1.0},"592":{"tf":1.0}},"n":{"df":1,"docs":{"752":{"tf":1.0}}}}}},"w":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"264":{"tf":1.0},"460":{"tf":1.0},"803":{"tf":1.0}}},"y":{"df":1,"docs":{"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"106":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"205":{"tf":1.0},"289":{"tf":1.0},"344":{"tf":1.0},"570":{"tf":1.0},"630":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"85":{"tf":1.0},"867":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"254":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"2":{"tf":1.0},"225":{"tf":1.0},"340":{"tf":1.0},"807":{"tf":1.0},"958":{"tf":1.0},"968":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"252":{"tf":1.0}}}},"i":{"df":2,"docs":{"115":{"tf":1.0},"254":{"tf":1.0}}},"m":{"df":1,"docs":{"912":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":19,"docs":{"184":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"248":{"tf":1.7320508075688772},"255":{"tf":1.7320508075688772},"256":{"tf":2.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.0},"693":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"289":{"tf":1.0},"673":{"tf":1.0},"680":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"752":{"tf":1.0},"840":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.6457513110645907},"184":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":2.8284271247461903},"297":{"tf":1.0},"298":{"tf":2.23606797749979},"649":{"tf":1.0},"652":{"tf":3.3166247903554},"669":{"tf":1.0},"685":{"tf":1.0},"752":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.4142135623730951},"807":{"tf":2.0},"834":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.7320508075688772},"865":{"tf":2.0},"914":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":16,"docs":{"134":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"232":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"523":{"tf":1.0},"578":{"tf":1.7320508075688772},"77":{"tf":1.0},"951":{"tf":1.0},"98":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"858":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"103":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"21":{"tf":1.4142135623730951},"249":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"454":{"tf":1.0},"64":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"678":{"tf":1.0},"776":{"tf":1.0},"801":{"tf":1.0},"82":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"563":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":250,"docs":{"100":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"124":{"tf":1.4142135623730951},"127":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951},"168":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":2.0},"190":{"tf":1.7320508075688772},"213":{"tf":1.0},"258":{"tf":1.7320508075688772},"261":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":2.23606797749979},"376":{"tf":4.242640687119285},"377":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"393":{"tf":2.23606797749979},"395":{"tf":1.0},"396":{"tf":2.23606797749979},"401":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"412":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"414":{"tf":2.23606797749979},"416":{"tf":1.0},"417":{"tf":1.0},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"425":{"tf":3.7416573867739413},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"435":{"tf":2.23606797749979},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.4142135623730951},"474":{"tf":1.0},"476":{"tf":2.0},"478":{"tf":1.0},"480":{"tf":2.6457513110645907},"481":{"tf":2.23606797749979},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"487":{"tf":1.7320508075688772},"488":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"490":{"tf":1.7320508075688772},"491":{"tf":1.7320508075688772},"492":{"tf":1.7320508075688772},"493":{"tf":2.23606797749979},"494":{"tf":2.449489742783178},"496":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":2.23606797749979},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"507":{"tf":2.6457513110645907},"508":{"tf":2.449489742783178},"510":{"tf":1.0},"511":{"tf":1.0},"514":{"tf":1.7320508075688772},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"517":{"tf":2.0},"519":{"tf":1.0},"520":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.7320508075688772},"526":{"tf":1.0},"527":{"tf":1.4142135623730951},"528":{"tf":2.6457513110645907},"529":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"537":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.0},"549":{"tf":1.7320508075688772},"550":{"tf":1.4142135623730951},"551":{"tf":3.605551275463989},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.4142135623730951},"560":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.7320508075688772},"566":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.4142135623730951},"575":{"tf":1.7320508075688772},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"583":{"tf":1.0},"584":{"tf":1.4142135623730951},"585":{"tf":2.0},"586":{"tf":2.0},"588":{"tf":1.0},"589":{"tf":1.0},"593":{"tf":1.7320508075688772},"595":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":2.23606797749979},"606":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.7320508075688772},"611":{"tf":1.4142135623730951},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"620":{"tf":1.4142135623730951},"621":{"tf":1.0},"623":{"tf":1.0},"629":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":2.449489742783178},"677":{"tf":1.4142135623730951},"679":{"tf":2.23606797749979},"680":{"tf":1.0},"71":{"tf":1.0},"711":{"tf":1.0},"718":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"761":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.7320508075688772},"776":{"tf":1.0},"78":{"tf":1.4142135623730951},"782":{"tf":1.0},"79":{"tf":1.4142135623730951},"799":{"tf":1.7320508075688772},"802":{"tf":1.0},"804":{"tf":1.7320508075688772},"807":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.0},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"87":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.4142135623730951},"895":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"92":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"937":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"956":{"tf":1.0},"97":{"tf":2.23606797749979},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"854":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"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":1,"docs":{"834":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"184":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"d":{"df":3,"docs":{"254":{"tf":1.0},"640":{"tf":1.7320508075688772},"642":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"237":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":2,"docs":{"752":{"tf":1.0},"958":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":4,"docs":{"105":{"tf":1.0},"294":{"tf":1.0},"84":{"tf":1.0},"865":{"tf":1.0}}},"df":0,"docs":{}}}},"df":7,"docs":{"17":{"tf":1.0},"182":{"tf":1.4142135623730951},"218":{"tf":1.0},"322":{"tf":1.4142135623730951},"762":{"tf":1.0},"834":{"tf":1.0},"958":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"772":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"875":{"tf":1.0},"902":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"437":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":86,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"138":{"tf":1.4142135623730951},"147":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.7320508075688772},"229":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.7320508075688772},"300":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"376":{"tf":1.0},"387":{"tf":1.7320508075688772},"390":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"408":{"tf":1.7320508075688772},"411":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"429":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"466":{"tf":1.7320508075688772},"470":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"488":{"tf":1.0},"50":{"tf":1.0},"502":{"tf":1.4142135623730951},"513":{"tf":1.4142135623730951},"515":{"tf":1.0},"525":{"tf":1.4142135623730951},"533":{"tf":1.7320508075688772},"536":{"tf":1.4142135623730951},"545":{"tf":1.7320508075688772},"556":{"tf":1.7320508075688772},"559":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"571":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"594":{"tf":1.4142135623730951},"602":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"613":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"625":{"tf":1.7320508075688772},"628":{"tf":1.4142135623730951},"636":{"tf":1.7320508075688772},"645":{"tf":1.7320508075688772},"654":{"tf":1.0},"659":{"tf":1.0},"769":{"tf":1.0},"8":{"tf":1.0},"811":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"924":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":2.23606797749979},"968":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"875":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"408":{"tf":1.0},"429":{"tf":1.0},"602":{"tf":1.0}}}}}}}},"df":1,"docs":{"408":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"4":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"460":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}},"x":{"df":3,"docs":{"364":{"tf":1.0},"371":{"tf":1.0},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"195":{"tf":1.7320508075688772},"198":{"tf":1.0},"232":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"651":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"715":{"tf":1.0},"752":{"tf":1.0},"884":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"307":{"tf":1.0}}}}}}}}}}}}},"p":{"df":2,"docs":{"307":{"tf":1.0},"338":{"tf":1.4142135623730951}}}}},"r":{"df":4,"docs":{"289":{"tf":1.0},"678":{"tf":1.0},"812":{"tf":1.0},"833":{"tf":1.4142135623730951}},"i":{"df":67,"docs":{"108":{"tf":1.0},"138":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"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.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"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},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"387":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"499":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"666":{"tf":1.0},"686":{"tf":1.0},"708":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"750":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"567":{"tf":1.0},"680":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":36,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"239":{"tf":1.0},"254":{"tf":1.0},"273":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"391":{"tf":1.0},"412":{"tf":1.0},"488":{"tf":1.0},"515":{"tf":1.0},"583":{"tf":1.0},"606":{"tf":1.0},"709":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":2.23606797749979},"99":{"tf":1.0}}},"x":{"df":3,"docs":{"33":{"tf":1.0},"762":{"tf":1.0},"851":{"tf":1.0}}}},"df":9,"docs":{"142":{"tf":1.0},"170":{"tf":1.0},"376":{"tf":1.4142135623730951},"560":{"tf":1.0},"618":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":66,"docs":{"107":{"tf":1.0},"11":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"132":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"254":{"tf":1.0},"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"315":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"745":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.0},"781":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"846":{"tf":1.0},"855":{"tf":1.0},"86":{"tf":1.0},"868":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"888":{"tf":1.0},"893":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"9":{"tf":1.0},"901":{"tf":1.0},"912":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":7,"docs":{"259":{"tf":1.0},"288":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"326":{"tf":1.0},"647":{"tf":1.0},"665":{"tf":1.0},"858":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"184":{"tf":1.0},"754":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"786":{"tf":1.0}}},"df":0,"docs":{}}},"df":7,"docs":{"142":{"tf":1.4142135623730951},"309":{"tf":1.0},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"838":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"183":{"tf":1.0},"203":{"tf":1.0},"254":{"tf":1.4142135623730951},"330":{"tf":1.0},"796":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":7,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"206":{"tf":1.0},"254":{"tf":1.0},"738":{"tf":1.0},"752":{"tf":1.0}}},"v":{"df":44,"docs":{"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"329":{"tf":1.0},"398":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"499":{"tf":1.7320508075688772},"522":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"614":{"tf":1.7320508075688772},"716":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"744":{"tf":1.0},"752":{"tf":2.0},"762":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":2.23606797749979},"771":{"tf":1.0},"772":{"tf":1.0},"779":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0},"830":{"tf":1.0},"833":{"tf":1.4142135623730951},"838":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.4142135623730951},"882":{"tf":1.0},"891":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"920":{"tf":1.0},"947":{"tf":1.0},"952":{"tf":1.0},"98":{"tf":2.23606797749979}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"743":{"tf":1.0},"754":{"tf":1.0}},"l":{"@":{"0":{".":{"5":{".":{"3":{"df":1,"docs":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"288":{"tf":1.0},"807":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0},"838":{"tf":1.0},"969":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"254":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":17,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"673":{"tf":1.0},"725":{"tf":1.0},"732":{"tf":1.0},"799":{"tf":2.0},"854":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":1,"docs":{"127":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":52,"docs":{"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"120":{"tf":2.0},"127":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"315":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"346":{"tf":1.0},"381":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":2.449489742783178},"440":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"532":{"tf":1.0},"591":{"tf":1.0},"6":{"tf":1.0},"614":{"tf":1.0},"635":{"tf":2.23606797749979},"742":{"tf":1.0},"773":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"857":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.4142135623730951},"918":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"958":{"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":10,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.4142135623730951},"17":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"404":{"tf":1.0},"414":{"tf":1.0},"590":{"tf":1.0},"621":{"tf":1.0},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"762":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":2.0},"129":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"212":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":2.0},"263":{"tf":1.0},"295":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.4142135623730951},"363":{"tf":1.0},"370":{"tf":1.0},"379":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"698":{"tf":1.7320508075688772},"701":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"802":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"861":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"9":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.4142135623730951},"919":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"956":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":130,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"254":{"tf":1.7320508075688772},"264":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"302":{"tf":1.0},"305":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"313":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":2.0},"318":{"tf":1.7320508075688772},"326":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"333":{"tf":1.0},"340":{"tf":1.0},"385":{"tf":1.0},"39":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"406":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"58":{"tf":1.4142135623730951},"580":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.7320508075688772},"600":{"tf":1.0},"603":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.4142135623730951},"62":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":2.6457513110645907},"677":{"tf":1.7320508075688772},"678":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"76":{"tf":1.4142135623730951},"761":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.4142135623730951},"789":{"tf":1.4142135623730951},"801":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.0},"811":{"tf":1.0},"819":{"tf":1.4142135623730951},"834":{"tf":1.0},"837":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"965":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"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":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"32":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"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":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"175":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"636":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"871":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"224":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.7320508075688772},"371":{"tf":1.0}}}},"t":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"289":{"tf":1.0},"318":{"tf":3.1622776601683795},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"402":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"814":{"tf":1.0},"860":{"tf":1.0},"872":{"tf":1.0},"88":{"tf":1.0},"948":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"456":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"483":{"tf":1.0},"484":{"tf":1.0},"499":{"tf":1.0},"557":{"tf":1.7320508075688772},"76":{"tf":2.0},"811":{"tf":1.0},"950":{"tf":1.4142135623730951},"97":{"tf":2.0}}}},"v":{"df":2,"docs":{"34":{"tf":1.0},"912":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"_":{"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":{"20":{"tf":1.0},"338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"315":{"tf":1.4142135623730951},"567":{"tf":1.0},"655":{"tf":1.0},"772":{"tf":1.4142135623730951},"838":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"127":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"326":{"tf":1.0},"655":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"853":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"100":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":3.1622776601683795},"289":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"560":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"919":{"tf":1.0},"923":{"tf":1.0},"929":{"tf":1.7320508075688772},"932":{"tf":1.0},"99":{"tf":1.0}}}}},"df":4,"docs":{"254":{"tf":1.0},"276":{"tf":1.0},"916":{"tf":1.0},"966":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"796":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"170":{"tf":1.0},"259":{"tf":1.0},"303":{"tf":1.0},"747":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"190":{"tf":1.0},"258":{"tf":1.7320508075688772},"263":{"tf":1.0},"297":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"801":{"tf":1.0},"839":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"919":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":4,"docs":{"203":{"tf":1.0},"233":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"218":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"590":{"tf":1.0},"592":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"162":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":2.0},"849":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":29,"docs":{"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"234":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"88":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":47,"docs":{"134":{"tf":1.0},"149":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"459":{"tf":1.0},"464":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"490":{"tf":1.0},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.7320508075688772},"565":{"tf":1.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"692":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":2.449489742783178},"801":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.0},"858":{"tf":1.0},"919":{"tf":1.0},"951":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":13,"docs":{"103":{"tf":1.7320508075688772},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"670":{"tf":1.0},"70":{"tf":1.0},"780":{"tf":1.0},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.4142135623730951},"743":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"138":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"54":{"tf":1.0},"64":{"tf":1.0},"677":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.4142135623730951},"862":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"958":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"745":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"471":{"tf":1.0},"503":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"107":{"tf":1.0},"62":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"106":{"tf":1.4142135623730951},"13":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"79":{"tf":1.0},"804":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0},"958":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"117":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"v":{"'":{"df":2,"docs":{"803":{"tf":1.0},"818":{"tf":1.0}}},"df":9,"docs":{"270":{"tf":1.0},"741":{"tf":1.4142135623730951},"753":{"tf":1.0},"754":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"880":{"tf":1.0}}}},"l":{"b":{"df":16,"docs":{"736":{"tf":1.0},"788":{"tf":1.4142135623730951},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.7320508075688772},"818":{"tf":1.4142135623730951},"820":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}},"l":{"df":1,"docs":{"190":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":18,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":3.872983346207417},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":3.0}}}}}}},"o":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"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":{"667":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"318":{"tf":1.0},"665":{"tf":1.0},"673":{"tf":1.0},"677":{"tf":1.0},"915":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"13":{"tf":2.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"77":{"tf":1.0},"881":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":2,"docs":{"232":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"16":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.4142135623730951},"720":{"tf":1.0},"867":{"tf":1.0}}}},"n":{"df":83,"docs":{"100":{"tf":1.7320508075688772},"104":{"tf":1.0},"119":{"tf":1.4142135623730951},"126":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"136":{"tf":1.0},"142":{"tf":2.6457513110645907},"149":{"tf":1.0},"17":{"tf":2.6457513110645907},"173":{"tf":1.0},"175":{"tf":2.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":2.449489742783178},"203":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"241":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":2.0},"32":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":1.0},"340":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"457":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"60":{"tf":1.0},"652":{"tf":2.6457513110645907},"655":{"tf":1.0},"658":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.0},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"802":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"814":{"tf":1.0},"83":{"tf":1.0},"834":{"tf":1.4142135623730951},"839":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.7320508075688772},"915":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":16,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"20":{"tf":1.4142135623730951},"206":{"tf":1.0},"221":{"tf":1.0},"241":{"tf":1.0},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"765":{"tf":1.0},"805":{"tf":1.0},"834":{"tf":1.0},"858":{"tf":1.0},"921":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"4":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":1,"docs":{"958":{"tf":1.0}}},"df":133,"docs":{"0":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"19":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.0},"395":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"411":{"tf":1.0},"416":{"tf":1.0},"421":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"448":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"559":{"tf":1.0},"565":{"tf":1.0},"571":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.0},"617":{"tf":1.0},"623":{"tf":1.0},"628":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0},"653":{"tf":1.7320508075688772},"654":{"tf":1.7320508075688772},"655":{"tf":2.0},"715":{"tf":1.0},"716":{"tf":1.0},"718":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"736":{"tf":1.4142135623730951},"738":{"tf":1.0},"740":{"tf":1.4142135623730951},"743":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.4142135623730951},"757":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.0},"809":{"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},"819":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0},"837":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"881":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"958":{"tf":2.0},"969":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":13,"docs":{"258":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"716":{"tf":1.4142135623730951},"76":{"tf":1.0},"765":{"tf":1.4142135623730951},"803":{"tf":1.0},"818":{"tf":1.4142135623730951},"920":{"tf":1.0},"97":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"849":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":36,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"254":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"454":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":2.0},"626":{"tf":1.0},"668":{"tf":1.0},"678":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"823":{"tf":1.4142135623730951},"840":{"tf":1.0},"916":{"tf":1.0},"969":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":31,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":2.23606797749979},"254":{"tf":2.23606797749979},"31":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":2.0},"476":{"tf":2.6457513110645907},"493":{"tf":2.449489742783178},"494":{"tf":2.6457513110645907},"496":{"tf":1.0},"505":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"678":{"tf":1.0},"803":{"tf":1.0},"894":{"tf":1.0},"912":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"17":{"tf":1.0},"958":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"621":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"254":{"tf":1.0},"289":{"tf":2.0},"710":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"184":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0}}}},"n":{"df":6,"docs":{"135":{"tf":1.4142135623730951},"233":{"tf":1.0},"734":{"tf":1.0},"831":{"tf":1.4142135623730951},"913":{"tf":1.0},"929":{"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":6,"docs":{"175":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":2.23606797749979},"191":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":33,"docs":{"127":{"tf":1.4142135623730951},"137":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":3.3166247903554},"178":{"tf":1.4142135623730951},"184":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"275":{"tf":2.0},"297":{"tf":2.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"321":{"tf":1.0},"619":{"tf":1.0},"647":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"710":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"723":{"tf":1.0},"727":{"tf":1.0},"755":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"867":{"tf":1.0},"876":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":20,"docs":{"108":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.7320508075688772},"290":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":1.7320508075688772},"299":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"63":{"tf":1.0},"644":{"tf":1.7320508075688772},"677":{"tf":1.4142135623730951},"678":{"tf":1.0},"697":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"87":{"tf":1.0},"935":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":7,"docs":{"230":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":2.8284271247461903},"362":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"375":{"tf":1.7320508075688772},"541":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"680":{"tf":1.0},"697":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}},"r":{"'":{"df":1,"docs":{"60":{"tf":1.0}}},".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"/":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"@":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"276":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"184":{"tf":1.0},"254":{"tf":1.7320508075688772},"289":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"17":{"tf":2.449489742783178},"20":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"35":{"tf":2.23606797749979},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"500":{"tf":1.0},"592":{"tf":1.0},"663":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"685":{"tf":1.0},"769":{"tf":1.0},"774":{"tf":1.0},"852":{"tf":1.0},"879":{"tf":1.0},"912":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"232":{"tf":1.0},"289":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":8,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"318":{"tf":1.0},"663":{"tf":1.0},"682":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"=":{"2":{"5":{"df":1,"docs":{"835":{"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":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":8,"docs":{"17":{"tf":1.7320508075688772},"682":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"774":{"tf":1.0},"852":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":176,"docs":{"0":{"tf":2.6457513110645907},"10":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":2.449489742783178},"14":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"2":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"22":{"tf":3.1622776601683795},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":2.23606797749979},"225":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"256":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":2.0},"315":{"tf":2.6457513110645907},"316":{"tf":2.6457513110645907},"317":{"tf":1.0},"318":{"tf":3.7416573867739413},"32":{"tf":3.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.7320508075688772},"338":{"tf":1.0},"340":{"tf":2.23606797749979},"349":{"tf":2.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"398":{"tf":1.4142135623730951},"4":{"tf":2.0},"419":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":2.0},"522":{"tf":1.4142135623730951},"538":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"626":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":2.6457513110645907},"654":{"tf":2.0},"655":{"tf":1.0},"656":{"tf":1.4142135623730951},"657":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":2.0},"66":{"tf":1.4142135623730951},"660":{"tf":2.23606797749979},"661":{"tf":1.0},"662":{"tf":1.0},"665":{"tf":1.0},"666":{"tf":1.0},"67":{"tf":1.0},"671":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":2.6457513110645907},"692":{"tf":1.0},"693":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.7320508075688772},"706":{"tf":1.4142135623730951},"709":{"tf":1.0},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"731":{"tf":1.0},"735":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"772":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"793":{"tf":1.4142135623730951},"804":{"tf":1.0},"814":{"tf":1.0},"82":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"83":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"85":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"9":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":2.23606797749979},"966":{"tf":1.0},"969":{"tf":2.0},"99":{"tf":1.7320508075688772}}}},"df":4,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{".":{"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":{"140":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"tf":1.4142135623730951}}},"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":{},"t":{"(":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}},"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":{".":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"652":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"445":{"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":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"446":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}}},"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":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"tf":1.0}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"540":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"544":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"544":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"543":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"a":{"d":{"d":{"(":{"5":{"df":1,"docs":{"652":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"652":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"a":{"d":{"d":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"445":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"448":{"tf":1.0}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"540":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"544":{"tf":1.4142135623730951}}}}}}}},"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"543":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"428":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"425":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"425":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":24,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.0},"138":{"tf":2.23606797749979},"140":{"tf":2.449489742783178},"254":{"tf":2.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"376":{"tf":1.0},"429":{"tf":1.0},"443":{"tf":1.0},"450":{"tf":1.4142135623730951},"452":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"548":{"tf":1.4142135623730951},"652":{"tf":1.7320508075688772},"665":{"tf":1.0},"73":{"tf":1.0},"782":{"tf":1.0},"84":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"858":{"tf":1.0}}}}},"df":25,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"135":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"155":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"286":{"tf":1.0},"315":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"861":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":45,"docs":{"1":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":2.0},"132":{"tf":2.0},"138":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"208":{"tf":1.0},"221":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.7320508075688772},"280":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":2.0},"326":{"tf":1.0},"330":{"tf":1.0},"4":{"tf":1.4142135623730951},"427":{"tf":1.0},"5":{"tf":1.4142135623730951},"538":{"tf":1.0},"678":{"tf":1.0},"73":{"tf":1.0},"730":{"tf":1.0},"865":{"tf":1.4142135623730951},"94":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":2.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"965":{"tf":1.7320508075688772},"968":{"tf":1.4142135623730951},"969":{"tf":2.23606797749979}},"’":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":97,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":2.0},"259":{"tf":1.0},"28":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"330":{"tf":1.0},"356":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"501":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"549":{"tf":1.4142135623730951},"56":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"572":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"630":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"672":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"709":{"tf":1.0},"772":{"tf":1.7320508075688772},"79":{"tf":1.0},"799":{"tf":2.23606797749979},"83":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"895":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.4142135623730951},"958":{"tf":1.0}},"m":{"df":2,"docs":{"109":{"tf":1.0},"88":{"tf":1.0}}},"n":{"df":4,"docs":{"234":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"377":{"tf":1.0}}}},"g":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"157":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":3.3166247903554},"289":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"73":{"tf":1.0},"890":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"473":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"144":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"298":{"tf":1.0},"649":{"tf":1.0},"872":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"_":{"df":0,"docs":{},"p":{"df":31,"docs":{"139":{"tf":1.0},"140":{"tf":2.23606797749979},"160":{"tf":1.4142135623730951},"259":{"tf":1.0},"289":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"642":{"tf":1.0},"677":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":66,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"116":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":2.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"145":{"tf":1.0},"160":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"203":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"220":{"tf":1.7320508075688772},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"236":{"tf":2.0},"242":{"tf":2.0},"258":{"tf":2.23606797749979},"259":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"330":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"354":{"tf":1.4142135623730951},"560":{"tf":1.0},"6":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"716":{"tf":1.0},"747":{"tf":1.0},"755":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"807":{"tf":1.0},"82":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"867":{"tf":1.0},"87":{"tf":1.0},"875":{"tf":1.0},"9":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":1.0}},"p":{"df":2,"docs":{"224":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":6,"docs":{"103":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"289":{"tf":2.0},"546":{"tf":1.0},"958":{"tf":1.0}}}}},"t":{"df":121,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"145":{"tf":2.8284271247461903},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.23606797749979},"218":{"tf":1.0},"224":{"tf":2.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"398":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"412":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"549":{"tf":1.0},"561":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"590":{"tf":1.4142135623730951},"591":{"tf":1.0},"614":{"tf":1.0},"618":{"tf":1.0},"632":{"tf":1.0},"651":{"tf":1.0},"677":{"tf":1.0},"679":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"716":{"tf":1.0},"727":{"tf":1.4142135623730951},"73":{"tf":1.0},"752":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"806":{"tf":2.0},"83":{"tf":1.0},"837":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.7320508075688772},"865":{"tf":1.0},"873":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":2.0},"224":{"tf":1.0},"231":{"tf":1.0},"346":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.4142135623730951},"653":{"tf":1.0},"692":{"tf":1.0},"775":{"tf":1.0},"79":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":5,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"770":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"570":{"tf":1.0},"644":{"tf":1.0},"697":{"tf":1.0},"755":{"tf":1.0},"770":{"tf":1.0}}}},"df":5,"docs":{"34":{"tf":1.0},"376":{"tf":1.0},"5":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0}}},"v":{"df":11,"docs":{"199":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"251":{"tf":1.0},"276":{"tf":1.0},"285":{"tf":1.0},"62":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"73":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"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":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":64,"docs":{"0":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":2.23606797749979},"212":{"tf":2.449489742783178},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"258":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.0},"53":{"tf":2.0},"54":{"tf":2.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"66":{"tf":1.0},"674":{"tf":1.0},"727":{"tf":1.7320508075688772},"74":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"834":{"tf":1.0},"9":{"tf":1.4142135623730951},"922":{"tf":1.0},"95":{"tf":1.0}},"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":{"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":8,"docs":{"267":{"tf":1.4142135623730951},"270":{"tf":1.0},"289":{"tf":1.0},"54":{"tf":1.4142135623730951},"687":{"tf":1.0},"704":{"tf":1.4142135623730951},"721":{"tf":1.0},"736":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":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":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"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":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"895":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"241":{"tf":1.0},"289":{"tf":1.0},"454":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"890":{"tf":1.0},"895":{"tf":1.0},"905":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"905":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"803":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"126":{"tf":1.0},"802":{"tf":1.0},"914":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":145,"docs":{"100":{"tf":2.8284271247461903},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"128":{"tf":1.0},"13":{"tf":2.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":2.6457513110645907},"136":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"173":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":2.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"24":{"tf":1.4142135623730951},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"315":{"tf":2.6457513110645907},"316":{"tf":2.23606797749979},"318":{"tf":1.0},"32":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"330":{"tf":2.23606797749979},"348":{"tf":1.0},"35":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.7320508075688772},"373":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.0},"377":{"tf":1.7320508075688772},"383":{"tf":1.7320508075688772},"393":{"tf":1.7320508075688772},"402":{"tf":1.0},"41":{"tf":1.4142135623730951},"425":{"tf":1.7320508075688772},"435":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"457":{"tf":1.0},"460":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":3.4641016151377544},"540":{"tf":1.7320508075688772},"541":{"tf":1.0},"551":{"tf":2.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"598":{"tf":1.7320508075688772},"609":{"tf":1.7320508075688772},"619":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.7320508075688772},"640":{"tf":1.7320508075688772},"649":{"tf":1.4142135623730951},"651":{"tf":1.0},"653":{"tf":1.4142135623730951},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"665":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"676":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"690":{"tf":1.7320508075688772},"691":{"tf":1.0},"710":{"tf":1.0},"715":{"tf":1.4142135623730951},"72":{"tf":1.0},"720":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.8284271247461903},"801":{"tf":1.4142135623730951},"804":{"tf":1.0},"817":{"tf":1.0},"839":{"tf":1.4142135623730951},"84":{"tf":1.0},"842":{"tf":1.0},"85":{"tf":1.0},"858":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"921":{"tf":1.0},"923":{"tf":1.4142135623730951},"925":{"tf":1.0},"927":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.0},"328":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.0},"329":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"359":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"727":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"462":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"460":{"tf":1.4142135623730951},"938":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"373":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"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":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"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":1,"docs":{"919":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":9,"docs":{"12":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"254":{"tf":2.23606797749979},"318":{"tf":1.4142135623730951},"43":{"tf":1.0},"673":{"tf":1.0},"676":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"307":{"tf":1.0},"715":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"956":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"858":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"541":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"225":{"tf":1.0},"265":{"tf":1.0},"626":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"772":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"431":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"117":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"969":{"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":8,"docs":{"103":{"tf":1.0},"128":{"tf":1.0},"192":{"tf":1.0},"626":{"tf":1.4142135623730951},"738":{"tf":1.0},"82":{"tf":1.0},"824":{"tf":1.0},"826":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"234":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"11":{"tf":1.0},"665":{"tf":1.0},"751":{"tf":1.0},"775":{"tf":1.0},"804":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"958":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0}}}}},"df":2,"docs":{"655":{"tf":1.0},"658":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"456":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":13,"docs":{"111":{"tf":1.0},"117":{"tf":1.4142135623730951},"151":{"tf":1.0},"184":{"tf":1.0},"218":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"678":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"939":{"tf":1.0},"969":{"tf":2.449489742783178}},"n":{"df":5,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":24,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"184":{"tf":1.0},"342":{"tf":1.7320508075688772},"715":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":1.0},"739":{"tf":1.4142135623730951},"743":{"tf":1.0},"747":{"tf":1.4142135623730951},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"806":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.4142135623730951},"931":{"tf":1.0}}}}}},"df":8,"docs":{"184":{"tf":1.0},"22":{"tf":1.0},"339":{"tf":2.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.0},"814":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"0":{"tf":1.0},"268":{"tf":1.0},"318":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"73":{"tf":1.0},"854":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"762":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"df":7,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"494":{"tf":1.7320508075688772},"621":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"258":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"734":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"318":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"103":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"381":{"tf":1.0},"674":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"900":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"i":{"df":10,"docs":{"142":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"677":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"503":{"tf":1.0},"514":{"tf":1.4142135623730951},"515":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"473":{"tf":1.0},"490":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":33,"docs":{"104":{"tf":1.0},"117":{"tf":1.0},"142":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"318":{"tf":1.0},"376":{"tf":2.23606797749979},"377":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.4142135623730951},"494":{"tf":1.0},"549":{"tf":1.0},"568":{"tf":1.0},"595":{"tf":1.0},"629":{"tf":1.0},"70":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.7320508075688772},"76":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"78":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"852":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"348":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"129":{"tf":1.0},"135":{"tf":2.8284271247461903},"190":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"326":{"tf":1.0},"376":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"510":{"tf":1.0},"511":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"517":{"tf":1.0},"522":{"tf":1.0},"524":{"tf":1.4142135623730951},"693":{"tf":1.0},"720":{"tf":1.0},"818":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"916":{"tf":1.4142135623730951},"929":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"(":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"232":{"tf":1.0},"306":{"tf":1.0},"782":{"tf":1.0},"799":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":5,"docs":{"456":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"830":{"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":2,"docs":{"121":{"tf":1.4142135623730951},"864":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"568":{"tf":1.0},"626":{"tf":1.0},"816":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"145":{"tf":1.0},"289":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"267":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"557":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":2.23606797749979},"823":{"tf":1.0},"834":{"tf":1.0},"89":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"480":{"tf":2.23606797749979},"496":{"tf":1.0},"507":{"tf":2.23606797749979},"577":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"642":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}},"s":{"df":2,"docs":{"565":{"tf":1.4142135623730951},"642":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"565":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"480":{"tf":2.23606797749979},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"577":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"[":{"1":{"9":{"df":1,"docs":{"577":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"[":{"0":{"df":1,"docs":{"565":{"tf":2.0}}},"df":0,"docs":{}},"df":8,"docs":{"112":{"tf":2.23606797749979},"13":{"tf":1.0},"480":{"tf":3.3166247903554},"496":{"tf":1.4142135623730951},"507":{"tf":3.4641016151377544},"565":{"tf":2.449489742783178},"577":{"tf":2.449489742783178},"642":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":3.872983346207417}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"132":{"tf":1.0},"289":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":1,"docs":{"815":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"112":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"1":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"799":{"tf":1.0}}}}}}},"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":{},"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":{},"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"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":{"563":{"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":0,"docs":{},"e":{"\"":{"_":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}},"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":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"799":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"190":{"tf":1.0},"376":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"596":{"tf":1.0},"618":{"tf":1.4142135623730951},"67":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"692":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"915":{"tf":1.0},"969":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"195":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"261":{"tf":1.4142135623730951},"308":{"tf":1.0},"316":{"tf":1.0},"867":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"878":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":31,"docs":{"118":{"tf":1.4142135623730951},"129":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"219":{"tf":1.4142135623730951},"27":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"353":{"tf":1.4142135623730951},"370":{"tf":2.23606797749979},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"493":{"tf":1.0},"567":{"tf":1.0},"7":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"77":{"tf":1.0},"801":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"98":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"563":{"tf":1.7320508075688772},"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"$":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"683":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"686":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"224":{"tf":1.0},"231":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"264":{"tf":1.7320508075688772},"580":{"tf":1.0},"591":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"471":{"tf":1.0},"861":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"538":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":36,"docs":{"120":{"tf":1.0},"140":{"tf":1.0},"224":{"tf":1.4142135623730951},"252":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"393":{"tf":2.0},"398":{"tf":1.7320508075688772},"414":{"tf":2.0},"419":{"tf":1.7320508075688772},"435":{"tf":2.0},"440":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"591":{"tf":1.7320508075688772},"593":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"616":{"tf":1.4142135623730951},"630":{"tf":1.0},"65":{"tf":1.0},"969":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":115,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"118":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"316":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"328":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"367":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.7320508075688772},"406":{"tf":1.0},"416":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"480":{"tf":1.0},"488":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"529":{"tf":1.7320508075688772},"531":{"tf":1.0},"538":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.4142135623730951},"554":{"tf":1.0},"565":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.4142135623730951},"632":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"690":{"tf":1.0},"693":{"tf":1.4142135623730951},"697":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"776":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"858":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"926":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.0},"951":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":2.0},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":66,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.7320508075688772},"297":{"tf":1.0},"315":{"tf":1.7320508075688772},"316":{"tf":1.0},"377":{"tf":1.0},"385":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"419":{"tf":1.4142135623730951},"427":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"448":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"480":{"tf":1.0},"483":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.7320508075688772},"524":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"568":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.4142135623730951},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"640":{"tf":1.0},"642":{"tf":1.0},"670":{"tf":1.0},"76":{"tf":1.4142135623730951},"789":{"tf":1.0},"823":{"tf":1.0},"839":{"tf":1.0},"858":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"184":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.4142135623730951},"466":{"tf":1.0},"484":{"tf":1.4142135623730951},"76":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"793":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"590":{"tf":1.0}},"s":{"_":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"590":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"q":{"df":0,"docs":{},"l":{".":{"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":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"925":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"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":{},"r":{"df":1,"docs":{"27":{"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":0,"docs":{},"{":{"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":{"17":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"698":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"df":1,"docs":{"909":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"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":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"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":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"tf":1.7320508075688772}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"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":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{"[":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"414":{"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"416":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"\"":{")":{".":{"a":{"d":{"d":{"(":{"3":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"414":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{"416":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"417":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"752":{"tf":1.0},"881":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"646":{"tf":1.0},"65":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"376":{"tf":1.0},"439":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0}}}}},"r":{"d":{"df":10,"docs":{"110":{"tf":2.0},"231":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"572":{"tf":1.0},"62":{"tf":1.0},"823":{"tf":1.0},"837":{"tf":1.0},"89":{"tf":2.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"179":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"7":{"/":{"1":{"5":{":":{"0":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"/":{"0":{"4":{":":{"3":{"0":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":55,"docs":{"0":{"tf":2.8284271247461903},"100":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":2.0},"2":{"tf":1.0},"203":{"tf":1.4142135623730951},"224":{"tf":2.449489742783178},"241":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"269":{"tf":1.0},"285":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":2.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.7320508075688772},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"478":{"tf":1.4142135623730951},"490":{"tf":2.23606797749979},"492":{"tf":1.0},"494":{"tf":1.0},"541":{"tf":1.0},"618":{"tf":1.0},"675":{"tf":1.4142135623730951},"678":{"tf":1.0},"711":{"tf":1.4142135623730951},"736":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"79":{"tf":1.0},"818":{"tf":1.0},"853":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"880":{"tf":1.0},"969":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":38,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"146":{"tf":1.0},"155":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"678":{"tf":1.0},"752":{"tf":1.4142135623730951},"760":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"807":{"tf":1.4142135623730951},"818":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.0},"876":{"tf":1.0},"9":{"tf":1.0},"929":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"120":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"203":{"tf":2.8284271247461903},"32":{"tf":1.0},"324":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.0},"674":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"76":{"tf":1.0},"838":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0},"923":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"42":{"tf":1.0},"678":{"tf":1.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":11,"docs":{"377":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"664":{"tf":1.0},"684":{"tf":1.0},"752":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"585":{"tf":2.449489742783178},"586":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":12,"docs":{"289":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":2.23606797749979},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"342":{"tf":1.0},"742":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"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":{"_":{"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"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":{"_":{"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"df":2,"docs":{"76":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"d":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"0":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"565":{"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":{},"m":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"553":{"tf":1.0}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"461":{"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":2,"docs":{"844":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":36,"docs":{"10":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"14":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":2.0},"195":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":2.0},"23":{"tf":2.0},"247":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":2.0},"290":{"tf":1.0},"299":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":2.0},"441":{"tf":1.0},"45":{"tf":1.4142135623730951},"57":{"tf":2.0},"64":{"tf":1.0},"677":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"701":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"924":{"tf":1.0},"926":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":34,"docs":{"118":{"tf":1.4142135623730951},"127":{"tf":1.0},"136":{"tf":1.0},"19":{"tf":1.0},"259":{"tf":1.0},"288":{"tf":1.0},"37":{"tf":1.0},"393":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"46":{"tf":1.0},"471":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"517":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"694":{"tf":1.0},"697":{"tf":1.0},"701":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":1.4142135623730951},"805":{"tf":1.0},"905":{"tf":1.0},"912":{"tf":1.0},"923":{"tf":1.4142135623730951},"969":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"491":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"471":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"494":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":17,"docs":{"149":{"tf":1.0},"203":{"tf":1.0},"454":{"tf":1.4142135623730951},"457":{"tf":2.0},"459":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"491":{"tf":1.7320508075688772},"716":{"tf":1.0},"77":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"921":{"tf":1.0},"969":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":18,"docs":{"129":{"tf":1.0},"135":{"tf":2.449489742783178},"17":{"tf":1.0},"264":{"tf":1.4142135623730951},"31":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"678":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"789":{"tf":1.0},"834":{"tf":1.0},"909":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":52,"docs":{"114":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"224":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"464":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"565":{"tf":1.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"642":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.0},"74":{"tf":1.0},"752":{"tf":1.0},"837":{"tf":1.0},"842":{"tf":1.0},"882":{"tf":1.0},"905":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"951":{"tf":1.0}}},"i":{"df":2,"docs":{"289":{"tf":1.4142135623730951},"958":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"144":{"tf":1.7320508075688772},"340":{"tf":1.0},"674":{"tf":1.0}}}}}}},"df":1,"docs":{"752":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"136":{"tf":1.0},"234":{"tf":1.4142135623730951},"297":{"tf":1.0},"698":{"tf":1.0},"923":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"964":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"862":{"tf":1.0},"864":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":95,"docs":{"120":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":3.605551275463989},"136":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"170":{"tf":1.4142135623730951},"198":{"tf":1.0},"224":{"tf":2.0},"231":{"tf":1.0},"285":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"347":{"tf":2.449489742783178},"376":{"tf":2.8284271247461903},"377":{"tf":1.4142135623730951},"422":{"tf":2.23606797749979},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"425":{"tf":2.6457513110645907},"426":{"tf":1.0},"427":{"tf":2.8284271247461903},"428":{"tf":2.8284271247461903},"429":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":2.6457513110645907},"436":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.449489742783178},"444":{"tf":1.0},"445":{"tf":2.8284271247461903},"446":{"tf":2.8284271247461903},"447":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"529":{"tf":1.4142135623730951},"532":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"554":{"tf":1.7320508075688772},"560":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":2.23606797749979},"580":{"tf":1.4142135623730951},"603":{"tf":1.0},"614":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.4142135623730951},"634":{"tf":1.0},"635":{"tf":2.23606797749979},"644":{"tf":1.0},"645":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"697":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":2.449489742783178},"738":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"78":{"tf":1.0},"799":{"tf":1.0},"813":{"tf":1.0},"818":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.7320508075688772},"842":{"tf":1.0},"862":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"897":{"tf":1.4142135623730951},"933":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"738":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"442":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"969":{"tf":1.4142135623730951}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"231":{"tf":1.0},"282":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"340":{"tf":1.0},"376":{"tf":1.0},"638":{"tf":1.0},"640":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"645":{"tf":1.0},"87":{"tf":1.0},"956":{"tf":1.0},"964":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"816":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"226":{"tf":1.7320508075688772},"675":{"tf":1.4142135623730951},"677":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"377":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"135":{"tf":1.0},"330":{"tf":1.0},"344":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"129":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"169":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"258":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"312":{"tf":1.0},"354":{"tf":1.0},"561":{"tf":1.4142135623730951},"648":{"tf":1.4142135623730951},"652":{"tf":1.0},"66":{"tf":2.0},"710":{"tf":1.7320508075688772},"711":{"tf":1.0},"752":{"tf":1.0},"864":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"929":{"tf":1.0},"956":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"184":{"tf":1.0},"272":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"801":{"tf":1.0}}}},"df":53,"docs":{"100":{"tf":1.4142135623730951},"117":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"160":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"561":{"tf":1.0},"60":{"tf":1.0},"647":{"tf":1.4142135623730951},"649":{"tf":2.6457513110645907},"652":{"tf":3.4641016151377544},"710":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"801":{"tf":1.0},"804":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"917":{"tf":1.0},"919":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.4142135623730951}},"p":{"df":1,"docs":{"50":{"tf":1.7320508075688772}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"22":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"847":{"tf":1.0},"859":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"289":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":15,"docs":{"100":{"tf":1.7320508075688772},"142":{"tf":1.0},"224":{"tf":1.0},"243":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"560":{"tf":1.0},"736":{"tf":1.0},"79":{"tf":1.7320508075688772}}}},"t":{"df":8,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"568":{"tf":1.0},"644":{"tf":1.0},"715":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"127":{"tf":1.4142135623730951},"62":{"tf":1.0},"710":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"698":{"tf":1.0},"913":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":40,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":3.0},"31":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.4142135623730951},"443":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"63":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"66":{"tf":1.0},"692":{"tf":1.0},"78":{"tf":1.4142135623730951},"811":{"tf":1.0},"840":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"379":{"tf":1.0},"838":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"145":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"779":{"tf":1.0},"789":{"tf":1.0},"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"113":{"tf":1.0},"117":{"tf":1.0},"318":{"tf":1.0}}}},"m":{"df":7,"docs":{"412":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.6457513110645907},"519":{"tf":1.4142135623730951},"577":{"tf":2.23606797749979},"588":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"254":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"968":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"315":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"830":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"492":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":85,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"151":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"34":{"tf":1.4142135623730951},"422":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"572":{"tf":1.0},"62":{"tf":1.0},"626":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"671":{"tf":1.0},"697":{"tf":1.0},"705":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"730":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0},"776":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0},"812":{"tf":1.0},"834":{"tf":2.0},"835":{"tf":1.0},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"846":{"tf":1.0},"85":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"925":{"tf":1.0},"938":{"tf":1.4142135623730951},"947":{"tf":1.0},"950":{"tf":2.0},"951":{"tf":1.0},"958":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951}}}},"s":{"df":2,"docs":{"100":{"tf":1.0},"79":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"107":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"288":{"tf":1.0},"34":{"tf":1.4142135623730951},"340":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.7320508075688772},"443":{"tf":1.0},"538":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"814":{"tf":1.0},"823":{"tf":1.0},"847":{"tf":1.0},"86":{"tf":1.7320508075688772},"882":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"540":{"tf":1.0}}},"df":62,"docs":{"0":{"tf":1.0},"110":{"tf":1.4142135623730951},"14":{"tf":2.0},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":2.0},"161":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.7320508075688772},"174":{"tf":1.0},"223":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"354":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"513":{"tf":1.0},"536":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"605":{"tf":1.0},"653":{"tf":1.0},"657":{"tf":1.7320508075688772},"681":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"738":{"tf":1.4142135623730951},"760":{"tf":1.0},"770":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.7320508075688772},"798":{"tf":1.0},"799":{"tf":1.0},"804":{"tf":1.0},"818":{"tf":1.0},"839":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"969":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"224":{"tf":1.0},"324":{"tf":1.0},"735":{"tf":1.0},"772":{"tf":1.0},"793":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"844":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"c":{"df":3,"docs":{"289":{"tf":1.0},"692":{"tf":1.0},"907":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"759":{"tf":1.0},"900":{"tf":1.0},"909":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"105":{"tf":1.0},"115":{"tf":1.7320508075688772},"132":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"184":{"tf":1.0},"234":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"735":{"tf":1.0},"78":{"tf":1.0},"791":{"tf":1.0},"804":{"tf":1.0},"817":{"tf":1.0},"84":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"969":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"17":{"tf":1.0},"198":{"tf":1.0},"241":{"tf":1.0},"254":{"tf":1.4142135623730951},"289":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"960":{"tf":1.4142135623730951},"963":{"tf":1.0},"964":{"tf":1.7320508075688772},"969":{"tf":4.58257569495584}},"l":{"df":7,"docs":{"103":{"tf":1.0},"129":{"tf":1.4142135623730951},"136":{"tf":1.0},"70":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.7320508075688772}}}}}}},"df":52,"docs":{"108":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":2.0},"218":{"tf":1.7320508075688772},"219":{"tf":2.0},"223":{"tf":1.0},"224":{"tf":3.1622776601683795},"231":{"tf":1.7320508075688772},"233":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.7320508075688772},"289":{"tf":2.0},"297":{"tf":1.7320508075688772},"299":{"tf":2.23606797749979},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":2.23606797749979},"304":{"tf":1.7320508075688772},"305":{"tf":1.4142135623730951},"326":{"tf":1.0},"352":{"tf":1.7320508075688772},"353":{"tf":2.0},"359":{"tf":1.0},"363":{"tf":2.6457513110645907},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":2.6457513110645907},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":3.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":4.242640687119285},"374":{"tf":1.0},"375":{"tf":2.23606797749979},"801":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"837":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"843":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"933":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"969":{"tf":1.0}},"p":{"df":1,"docs":{"224":{"tf":1.0}}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"17":{"tf":1.0},"279":{"tf":1.7320508075688772},"299":{"tf":1.0},"300":{"tf":1.0},"783":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":24,"docs":{"117":{"tf":1.0},"132":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"44":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"592":{"tf":1.0},"644":{"tf":1.4142135623730951},"674":{"tf":1.0},"675":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.0},"805":{"tf":1.0},"830":{"tf":1.0},"864":{"tf":1.0},"884":{"tf":1.0},"97":{"tf":1.0}},"n":{"df":14,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"258":{"tf":1.0},"315":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"522":{"tf":1.0},"591":{"tf":1.0},"614":{"tf":1.0},"83":{"tf":1.0},"847":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}},"r":{"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":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"756":{"tf":1.0},"762":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"110":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"280":{"tf":1.0},"290":{"tf":1.0},"34":{"tf":1.0},"342":{"tf":1.4142135623730951},"653":{"tf":1.0},"667":{"tf":1.0},"731":{"tf":1.0},"862":{"tf":1.0},"874":{"tf":1.0},"89":{"tf":1.0},"927":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":31,"docs":{"127":{"tf":1.4142135623730951},"151":{"tf":1.0},"2":{"tf":1.0},"271":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"321":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":2.23606797749979},"376":{"tf":1.0},"454":{"tf":1.0},"678":{"tf":1.0},"715":{"tf":1.0},"718":{"tf":1.0},"736":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0},"812":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"881":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"97":{"tf":1.0}}}}},"b":{"df":2,"docs":{"505":{"tf":1.0},"517":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"6":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"132":{"tf":1.4142135623730951},"223":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"344":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"537":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"712":{"tf":1.0},"752":{"tf":1.0},"78":{"tf":1.0},"834":{"tf":1.0},"860":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"99":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"160":{"tf":1.0},"223":{"tf":1.0},"289":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"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":38,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"129":{"tf":1.0},"136":{"tf":1.4142135623730951},"145":{"tf":1.0},"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"224":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"288":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"674":{"tf":1.0},"680":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"77":{"tf":1.4142135623730951},"775":{"tf":1.0},"839":{"tf":1.4142135623730951},"847":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.7320508075688772},"936":{"tf":1.0},"958":{"tf":2.449489742783178},"98":{"tf":1.4142135623730951}}},"y":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":12,"docs":{"249":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"129":{"tf":1.0},"132":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":3,"docs":{"13":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"744":{"tf":1.0}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"318":{"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":{},"t":{"df":1,"docs":{"545":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"318":{"tf":1.4142135623730951},"837":{"tf":1.0},"860":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"289":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"511":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":5,"docs":{"272":{"tf":1.0},"340":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"149":{"tf":1.0},"233":{"tf":1.0},"276":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}}}},"s":{"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":{"328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":1,"docs":{"318":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"765":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"772":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"772":{"tf":1.0}}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"318":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":76,"docs":{"107":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":3.3166247903554},"112":{"tf":3.0},"113":{"tf":2.23606797749979},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"136":{"tf":1.0},"143":{"tf":2.449489742783178},"144":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"318":{"tf":6.48074069840786},"328":{"tf":2.0},"331":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"405":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"518":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"564":{"tf":1.4142135623730951},"565":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"622":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"641":{"tf":1.4142135623730951},"650":{"tf":1.4142135623730951},"652":{"tf":1.0},"720":{"tf":1.4142135623730951},"728":{"tf":1.0},"742":{"tf":1.0},"763":{"tf":1.4142135623730951},"768":{"tf":1.0},"776":{"tf":1.0},"784":{"tf":1.0},"801":{"tf":1.0},"804":{"tf":1.0},"810":{"tf":1.0},"814":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.0},"853":{"tf":1.0},"86":{"tf":2.0},"863":{"tf":1.0},"867":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"888":{"tf":1.0},"9":{"tf":1.0},"912":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"922":{"tf":1.4142135623730951},"924":{"tf":2.0},"927":{"tf":1.7320508075688772},"937":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"952":{"tf":1.0},"958":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":1,"docs":{"347":{"tf":2.449489742783178}}}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"333":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":27,"docs":{"107":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"566":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"643":{"tf":1.4142135623730951},"86":{"tf":1.0},"879":{"tf":1.0},"933":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":28,"docs":{"107":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"427":{"tf":1.7320508075688772},"437":{"tf":1.7320508075688772},"448":{"tf":2.0},"464":{"tf":1.7320508075688772},"480":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"531":{"tf":1.7320508075688772},"543":{"tf":1.4142135623730951},"553":{"tf":1.7320508075688772},"565":{"tf":2.0},"577":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"611":{"tf":1.4142135623730951},"623":{"tf":1.7320508075688772},"634":{"tf":1.4142135623730951},"642":{"tf":1.7320508075688772},"765":{"tf":1.0},"772":{"tf":2.449489742783178},"805":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":2,"docs":{"496":{"tf":1.0},"519":{"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"765":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"793":{"tf":1.4142135623730951}}}}}}}}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"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":{},"i":{"d":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"887":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"886":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"885":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"883":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"882":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"332":{"tf":1.4142135623730951}}}},"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":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"318":{"tf":1.7320508075688772},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":19,"docs":{"254":{"tf":1.7320508075688772},"289":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"629":{"tf":2.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":2.6457513110645907},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"636":{"tf":1.7320508075688772},"637":{"tf":1.0},"643":{"tf":1.0},"677":{"tf":1.0},"684":{"tf":2.0},"740":{"tf":1.0},"770":{"tf":1.4142135623730951},"929":{"tf":1.0},"969":{"tf":3.7416573867739413}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"288":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"288":{"tf":1.0},"765":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"153":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"297":{"tf":1.0},"669":{"tf":1.0},"685":{"tf":1.0},"963":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"103":{"tf":1.0},"318":{"tf":1.0},"519":{"tf":1.0},"588":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"173":{"tf":1.0},"22":{"tf":1.7320508075688772},"468":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"95":{"tf":1.0}}}}},"’":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}},"g":{"df":24,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0},"231":{"tf":1.0},"289":{"tf":1.4142135623730951},"306":{"tf":1.0},"376":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"70":{"tf":1.0},"708":{"tf":1.0},"75":{"tf":2.449489742783178},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":2.449489742783178},"99":{"tf":1.4142135623730951}}},"k":{"df":7,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"618":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":2,"docs":{"175":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":16,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"184":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"241":{"tf":1.0},"258":{"tf":1.0},"297":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"686":{"tf":1.0},"908":{"tf":1.0},"919":{"tf":1.0},"969":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"127":{"tf":1.0},"342":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"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":{},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"679":{"tf":1.0}}}}}},"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":{},"n":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"679":{"tf":1.7320508075688772}}}},"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":1,"docs":{"840":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":24,"docs":{"22":{"tf":3.0},"318":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"454":{"tf":1.0},"471":{"tf":1.0},"679":{"tf":1.0},"718":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"76":{"tf":1.4142135623730951},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"833":{"tf":1.4142135623730951},"847":{"tf":1.0},"849":{"tf":1.0},"852":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":12,"docs":{"113":{"tf":1.0},"117":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"29":{"tf":1.0},"318":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0},"78":{"tf":1.0},"958":{"tf":1.4142135623730951},"969":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"258":{"tf":1.0},"570":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"807":{"tf":1.0},"823":{"tf":1.0},"919":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":67,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"136":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":2.0},"198":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.7320508075688772},"221":{"tf":2.0},"223":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"240":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"289":{"tf":1.0},"316":{"tf":1.7320508075688772},"326":{"tf":1.0},"330":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.7320508075688772},"35":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"398":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"471":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.0},"522":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"621":{"tf":2.23606797749979},"673":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"736":{"tf":1.0},"79":{"tf":1.0},"814":{"tf":1.0},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"9":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"968":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"142":{"tf":1.7320508075688772},"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"802":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"679":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"315":{"tf":1.0},"316":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"448":{"tf":1.4142135623730951},"464":{"tf":1.0},"531":{"tf":1.0},"553":{"tf":1.0},"600":{"tf":1.0},"623":{"tf":1.0},"642":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"765":{"tf":1.0},"772":{"tf":1.7320508075688772},"861":{"tf":1.4142135623730951},"925":{"tf":1.0}},"n":{"df":2,"docs":{"698":{"tf":1.0},"805":{"tf":1.0}}}}}},"u":{"df":7,"docs":{"142":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"449":{"tf":1.0},"578":{"tf":1.0},"772":{"tf":1.0},"963":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":3,"docs":{"173":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"101":{"tf":1.0},"137":{"tf":1.0},"80":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"289":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"n":{"df":2,"docs":{"456":{"tf":1.0},"484":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"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":3,"docs":{"456":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"158":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.0},"487":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.0},"554":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"857":{"tf":1.0}}}}}}},"df":172,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.0},"124":{"tf":2.23606797749979},"126":{"tf":1.4142135623730951},"127":{"tf":2.449489742783178},"131":{"tf":2.6457513110645907},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"145":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":2.6457513110645907},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":3.3166247903554},"19":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"248":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":2.23606797749979},"257":{"tf":1.0},"258":{"tf":2.23606797749979},"259":{"tf":1.7320508075688772},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.7320508075688772},"280":{"tf":1.0},"288":{"tf":2.23606797749979},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"340":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.449489742783178},"377":{"tf":2.449489742783178},"401":{"tf":1.0},"412":{"tf":1.0},"420":{"tf":1.0},"454":{"tf":1.7320508075688772},"456":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":3.872983346207417},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":2.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":2.8284271247461903},"481":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"484":{"tf":2.8284271247461903},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.23606797749979},"488":{"tf":2.6457513110645907},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"492":{"tf":1.0},"493":{"tf":2.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"496":{"tf":1.7320508075688772},"497":{"tf":1.4142135623730951},"498":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":2.0},"502":{"tf":1.0},"507":{"tf":1.0},"549":{"tf":2.0},"551":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"596":{"tf":1.0},"607":{"tf":1.0},"619":{"tf":1.0},"644":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"70":{"tf":1.0},"711":{"tf":2.23606797749979},"718":{"tf":1.4142135623730951},"720":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.7320508075688772},"734":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":2.0},"76":{"tf":3.3166247903554},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"803":{"tf":1.4142135623730951},"805":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.4142135623730951},"811":{"tf":1.0},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"83":{"tf":1.0},"830":{"tf":1.0},"847":{"tf":1.4142135623730951},"85":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":2.449489742783178},"862":{"tf":1.4142135623730951},"866":{"tf":1.0},"880":{"tf":1.4142135623730951},"9":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"919":{"tf":1.4142135623730951},"929":{"tf":1.0},"951":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":3.3166247903554},"98":{"tf":2.23606797749979},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"184":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.0},"739":{"tf":1.0}}}}},"r":{"df":12,"docs":{"142":{"tf":1.0},"456":{"tf":1.7320508075688772},"471":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"476":{"tf":1.0},"484":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"728":{"tf":1.0},"872":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"473":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"491":{"tf":1.0},"772":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"454":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"803":{"tf":1.0}}},"df":34,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"158":{"tf":1.0},"376":{"tf":1.0},"454":{"tf":2.449489742783178},"455":{"tf":1.0},"456":{"tf":1.4142135623730951},"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.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"483":{"tf":1.0},"549":{"tf":1.4142135623730951},"76":{"tf":2.0},"816":{"tf":1.7320508075688772},"863":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.0},"880":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"834":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"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":19,"docs":{"131":{"tf":1.4142135623730951},"142":{"tf":5.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"272":{"tf":1.0},"315":{"tf":1.0},"560":{"tf":1.7320508075688772},"729":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.0},"804":{"tf":2.449489742783178},"878":{"tf":1.4142135623730951},"894":{"tf":1.0},"915":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"929":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"180":{"tf":2.0},"181":{"tf":1.4142135623730951},"182":{"tf":2.0},"183":{"tf":2.8284271247461903},"184":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.4142135623730951},"881":{"tf":1.0},"97":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":2.0},"482":{"tf":1.0},"716":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"725":{"tf":1.0},"813":{"tf":1.0},"870":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"502":{"tf":1.0},"834":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"803":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"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":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"249":{"tf":1.0},"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"964":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":2.23606797749979}}}}},"l":{"d":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"318":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"127":{"tf":1.0},"175":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":30,"docs":{"246":{"tf":2.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"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.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"561":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.7320508075688772},"224":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":2.23606797749979},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"79":{"tf":1.7320508075688772},"872":{"tf":1.0},"934":{"tf":1.0}}}}},"l":{"d":{"df":2,"docs":{"126":{"tf":1.0},"802":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"127":{"tf":1.0},"175":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"496":{"tf":1.0}}},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"563":{"tf":2.0},"565":{"tf":1.0},"567":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"498":{"tf":1.0},"500":{"tf":1.0}}}}},"df":30,"docs":{"115":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"276":{"tf":1.4142135623730951},"288":{"tf":1.0},"299":{"tf":1.0},"34":{"tf":1.0},"348":{"tf":1.0},"43":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"703":{"tf":1.0},"707":{"tf":1.7320508075688772},"73":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.0},"956":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"379":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"960":{"tf":1.0},"969":{"tf":2.23606797749979}}}}}}},"p":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"254":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"673":{"tf":1.0},"678":{"tf":1.0},"965":{"tf":1.0}},"i":{"c":{"df":11,"docs":{"107":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"86":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"127":{"tf":1.4142135623730951},"376":{"tf":1.0},"396":{"tf":1.0},"412":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.7320508075688772},"76":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"267":{"tf":1.0},"315":{"tf":1.0},"859":{"tf":1.0},"925":{"tf":1.0}}},"k":{"df":20,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"377":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"673":{"tf":1.0},"74":{"tf":1.0},"806":{"tf":1.0},"818":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"185":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.0},"206":{"tf":1.7320508075688772},"258":{"tf":1.0},"263":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"141":{"tf":1.0},"912":{"tf":1.0}}},"n":{"df":5,"docs":{"119":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"252":{"tf":1.0}}},"t":{"df":4,"docs":{"729":{"tf":1.0},"738":{"tf":1.4142135623730951},"811":{"tf":1.0},"823":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"110":{"tf":1.0},"21":{"tf":1.0},"487":{"tf":1.0},"514":{"tf":1.0},"829":{"tf":1.0},"89":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"21":{"tf":2.0},"276":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"862":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"131":{"tf":1.0},"560":{"tf":1.0},"568":{"tf":1.0}}}},"t":{"df":6,"docs":{"128":{"tf":1.0},"213":{"tf":1.0},"248":{"tf":1.0},"709":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"752":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"704":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"166":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"665":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"379":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":29,"docs":{"110":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"565":{"tf":1.4142135623730951},"600":{"tf":1.0},"63":{"tf":1.0},"642":{"tf":1.0},"652":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"71":{"tf":1.0},"712":{"tf":1.0},"737":{"tf":1.0},"756":{"tf":1.0},"786":{"tf":1.0},"807":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"957":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"144":{"tf":1.4142135623730951},"155":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":2.23606797749979},"231":{"tf":2.0},"233":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"342":{"tf":1.0},"66":{"tf":1.0},"716":{"tf":1.0},"734":{"tf":1.0},"752":{"tf":1.0},"869":{"tf":1.0},"938":{"tf":1.0},"951":{"tf":2.0}}}}}},"m":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"752":{"tf":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":{"752":{"tf":1.0}}},"p":{"df":1,"docs":{"881":{"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":2,"docs":{"218":{"tf":1.0},"49":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":29,"docs":{"100":{"tf":2.0},"13":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":2.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"254":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.4142135623730951},"395":{"tf":1.0},"649":{"tf":1.0},"652":{"tf":2.6457513110645907},"665":{"tf":1.0},"666":{"tf":1.4142135623730951},"678":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":2.0},"94":{"tf":1.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"131":{"tf":1.0},"328":{"tf":2.449489742783178},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"468":{"tf":2.0},"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"524":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"632":{"tf":1.0},"635":{"tf":2.23606797749979},"761":{"tf":1.0},"873":{"tf":1.0},"897":{"tf":1.4142135623730951},"912":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}}}},"y":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"773":{"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":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.4142135623730951}}}},"df":2,"docs":{"912":{"tf":1.4142135623730951},"913":{"tf":1.0}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"191":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":2,"docs":{"100":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"258":{"tf":1.7320508075688772},"297":{"tf":1.0},"663":{"tf":1.0},"701":{"tf":1.0},"79":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"968":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"183":{"tf":1.4142135623730951},"79":{"tf":1.0},"814":{"tf":1.0},"876":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"712":{"tf":1.4142135623730951},"957":{"tf":1.4142135623730951}}}},"o":{"df":21,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.4142135623730951},"173":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.0},"318":{"tf":1.0},"377":{"tf":1.4142135623730951},"44":{"tf":1.0},"613":{"tf":1.0},"677":{"tf":1.0},"79":{"tf":1.0},"793":{"tf":1.0},"814":{"tf":1.0},"875":{"tf":1.4142135623730951},"958":{"tf":1.0},"959":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}},">":{"/":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}},"df":369,"docs":{"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"132":{"tf":3.872983346207417},"134":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"160":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"232":{"tf":1.0},"254":{"tf":1.0},"259":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":2.6457513110645907},"289":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"376":{"tf":2.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":2.449489742783178},"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},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"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},"407":{"tf":1.0},"408":{"tf":1.7320508075688772},"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.4142135623730951},"419":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"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.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"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.7320508075688772},"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.0},"464":{"tf":1.0},"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.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"476":{"tf":1.7320508075688772},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.7320508075688772},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.4142135623730951},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"52":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"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.4142135623730951},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.7320508075688772},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.7320508075688772},"564":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":1.7320508075688772},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.4142135623730951},"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.4142135623730951},"580":{"tf":1.0},"581":{"tf":1.0},"582":{"tf":1.4142135623730951},"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},"590":{"tf":1.4142135623730951},"591":{"tf":1.0},"592":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.7320508075688772},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.7320508075688772},"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.7320508075688772},"626":{"tf":2.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"632":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.7320508075688772},"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":2.449489742783178},"645":{"tf":2.6457513110645907},"646":{"tf":1.0},"67":{"tf":2.449489742783178},"677":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"72":{"tf":1.7320508075688772},"721":{"tf":1.0},"727":{"tf":1.7320508075688772},"73":{"tf":1.0},"730":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"740":{"tf":1.0},"772":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.7320508075688772},"804":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"813":{"tf":1.7320508075688772},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.7320508075688772},"818":{"tf":1.4142135623730951},"823":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"834":{"tf":1.7320508075688772},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772},"913":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":2.0},"92":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.7320508075688772},"932":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"954":{"tf":1.0},"956":{"tf":2.449489742783178},"958":{"tf":1.4142135623730951},"961":{"tf":1.0},"99":{"tf":1.7320508075688772}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":5,"docs":{"134":{"tf":1.0},"184":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"264":{"tf":1.0}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"d":{"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":{},"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":{"553":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":5,"docs":{"475":{"tf":1.0},"476":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"136":{"tf":1.0}}},"df":2,"docs":{"531":{"tf":1.0},"692":{"tf":1.0}},"i":{"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":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"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":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"151":{"tf":1.0},"316":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"232":{"tf":1.0},"316":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"194":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"316":{"tf":1.0},"324":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"6":{"4":{"df":2,"docs":{"461":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"933":{"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":{"d":{"df":2,"docs":{"316":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"184":{"tf":1.0},"239":{"tf":1.0},"791":{"tf":1.0},"917":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"772":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"844":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"127":{"tf":1.0},"807":{"tf":1.0},"929":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"310":{"tf":1.0},"697":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"796":{"tf":1.0},"815":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"376":{"tf":1.0},"414":{"tf":2.449489742783178},"418":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"679":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"679":{"tf":1.0}},"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":1,"docs":{"679":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"865":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"904":{"tf":1.0},"923":{"tf":1.0},"946":{"tf":1.0}}}}},"r":{"df":21,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"393":{"tf":1.0},"414":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"963":{"tf":1.0},"965":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"471":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"252":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"456":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"117":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"173":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"543":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"677":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"376":{"tf":2.0},"422":{"tf":1.0},"433":{"tf":1.0},"443":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":11,"docs":{"719":{"tf":1.0},"728":{"tf":1.0},"733":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"748":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"768":{"tf":1.0},"772":{"tf":1.0},"958":{"tf":1.0}}}},"i":{"df":1,"docs":{"234":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"310":{"tf":1.4142135623730951},"763":{"tf":1.0},"766":{"tf":1.0},"812":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"100":{"tf":1.0},"342":{"tf":1.4142135623730951},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"78":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"862":{"tf":1.0}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":13,"docs":{"104":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"160":{"tf":1.0},"376":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"697":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"t":{"df":37,"docs":{"107":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"143":{"tf":1.0},"318":{"tf":2.449489742783178},"460":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":2.23606797749979},"483":{"tf":1.0},"487":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"499":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":2.0},"522":{"tf":1.0},"554":{"tf":1.0},"557":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":1.4142135623730951},"734":{"tf":1.0},"818":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"840":{"tf":1.0},"86":{"tf":2.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"958":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"751":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"376":{"tf":1.0},"572":{"tf":1.0}}}}}},"x":{"df":2,"docs":{"664":{"tf":1.0},"684":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":13,"docs":{"132":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"393":{"tf":1.0},"414":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"524":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0},"674":{"tf":1.0},"791":{"tf":1.0},"839":{"tf":1.0},"923":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"377":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"224":{"tf":1.0},"289":{"tf":1.4142135623730951},"330":{"tf":1.0},"401":{"tf":1.0},"412":{"tf":1.0},"680":{"tf":1.0},"710":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"907":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"137":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"316":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"929":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"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":{"732":{"tf":1.0},"858":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.4142135623730951}}}}}},"l":{"df":2,"docs":{"960":{"tf":1.0},"968":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"714":{"tf":1.4142135623730951},"889":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"168":{"tf":1.0},"173":{"tf":1.0},"752":{"tf":1.0}}}},"t":{"df":2,"docs":{"673":{"tf":1.4142135623730951},"686":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"339":{"tf":1.0},"50":{"tf":1.0},"721":{"tf":1.0},"731":{"tf":1.0},"79":{"tf":1.0},"795":{"tf":1.0},"953":{"tf":1.0},"969":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"265":{"tf":1.0},"266":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":76,"docs":{"108":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"203":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"289":{"tf":1.0},"32":{"tf":1.0},"626":{"tf":1.0},"719":{"tf":1.4142135623730951},"720":{"tf":1.0},"721":{"tf":1.4142135623730951},"727":{"tf":1.0},"728":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.7320508075688772},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"776":{"tf":1.4142135623730951},"783":{"tf":1.0},"786":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"807":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"838":{"tf":1.4142135623730951},"862":{"tf":1.0},"869":{"tf":1.4142135623730951},"87":{"tf":1.0},"897":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"909":{"tf":1.4142135623730951},"912":{"tf":2.0},"914":{"tf":1.0},"915":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":42,"docs":{"11":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.7320508075688772},"184":{"tf":2.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"404":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"747":{"tf":1.0},"757":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"848":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"904":{"tf":1.0},"929":{"tf":1.4142135623730951},"939":{"tf":1.0},"969":{"tf":2.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":26,"docs":{"127":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"730":{"tf":1.0},"745":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.4142135623730951},"808":{"tf":1.0},"815":{"tf":1.0},"842":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"872":{"tf":1.0},"880":{"tf":1.0},"883":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"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":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"338":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":76,"docs":{"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":2.0},"126":{"tf":1.4142135623730951},"127":{"tf":2.0},"135":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"312":{"tf":1.7320508075688772},"313":{"tf":2.0},"315":{"tf":2.6457513110645907},"316":{"tf":1.7320508075688772},"317":{"tf":3.4641016151377544},"318":{"tf":2.0},"320":{"tf":2.23606797749979},"321":{"tf":2.6457513110645907},"322":{"tf":2.23606797749979},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"471":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"649":{"tf":1.0},"674":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"710":{"tf":1.4142135623730951},"715":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.7320508075688772},"741":{"tf":1.0},"742":{"tf":1.0},"745":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"766":{"tf":1.0},"786":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.4142135623730951},"807":{"tf":1.0},"816":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.7320508075688772},"834":{"tf":1.7320508075688772},"836":{"tf":1.0},"838":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"854":{"tf":2.6457513110645907},"859":{"tf":1.7320508075688772},"860":{"tf":1.0},"861":{"tf":1.7320508075688772},"875":{"tf":1.0},"880":{"tf":1.0},"895":{"tf":1.4142135623730951},"913":{"tf":1.0},"919":{"tf":2.23606797749979},"921":{"tf":1.7320508075688772},"922":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":2.449489742783178},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"947":{"tf":1.0},"956":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"917":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"338":{"tf":1.0},"923":{"tf":1.7320508075688772}}},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"715":{"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":{"317":{"tf":1.0},"922":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"317":{"tf":1.0},"922":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"693":{"tf":1.0},"701":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{".":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"324":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":1,"docs":{"324":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"127":{"tf":1.0},"135":{"tf":1.0},"217":{"tf":1.0},"254":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"710":{"tf":1.0},"929":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"541":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"540":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":{"912":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"r":{".":{"a":{"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"254":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.4142135623730951}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"190":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":34,"docs":{"11":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"223":{"tf":1.0},"230":{"tf":2.23606797749979},"231":{"tf":3.1622776601683795},"232":{"tf":3.872983346207417},"233":{"tf":3.0},"288":{"tf":1.0},"289":{"tf":2.0},"297":{"tf":1.0},"376":{"tf":1.4142135623730951},"537":{"tf":2.449489742783178},"538":{"tf":1.7320508075688772},"539":{"tf":1.0},"540":{"tf":2.23606797749979},"541":{"tf":2.8284271247461903},"542":{"tf":1.0},"543":{"tf":1.7320508075688772},"544":{"tf":1.0},"545":{"tf":2.0},"546":{"tf":2.0},"547":{"tf":1.0},"548":{"tf":1.4142135623730951},"761":{"tf":1.7320508075688772},"786":{"tf":1.0},"790":{"tf":1.7320508075688772},"837":{"tf":1.0},"864":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.7320508075688772},"932":{"tf":1.0},"946":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"786":{"tf":1.0}}}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":13,"docs":{"135":{"tf":1.0},"289":{"tf":1.0},"346":{"tf":1.4142135623730951},"371":{"tf":1.0},"4":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"678":{"tf":1.0},"699":{"tf":1.4142135623730951},"707":{"tf":1.0},"770":{"tf":1.0},"878":{"tf":1.0},"941":{"tf":1.0}}}},"df":411,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"11":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"136":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"198":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"203":{"tf":2.6457513110645907},"206":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":2.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":2.23606797749979},"223":{"tf":1.7320508075688772},"224":{"tf":3.4641016151377544},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":3.1622776601683795},"234":{"tf":2.0},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"259":{"tf":2.23606797749979},"26":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":2.449489742783178},"289":{"tf":3.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"299":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"31":{"tf":1.7320508075688772},"315":{"tf":3.0},"316":{"tf":3.0},"318":{"tf":3.0},"32":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"338":{"tf":2.0},"34":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.4142135623730951},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":3.7416573867739413},"377":{"tf":2.23606797749979},"38":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"391":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":2.0},"4":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.4142135623730951},"419":{"tf":2.0},"423":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":2.0},"443":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"456":{"tf":3.0},"457":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":2.449489742783178},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.4142135623730951},"47":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"484":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"497":{"tf":1.4142135623730951},"499":{"tf":2.0},"5":{"tf":2.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"515":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"52":{"tf":2.0},"520":{"tf":1.4142135623730951},"522":{"tf":2.0},"526":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"538":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"566":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":2.0},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"598":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.4142135623730951},"606":{"tf":1.0},"607":{"tf":1.7320508075688772},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"614":{"tf":2.0},"618":{"tf":1.7320508075688772},"619":{"tf":1.4142135623730951},"621":{"tf":2.6457513110645907},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"632":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.4142135623730951},"644":{"tf":1.0},"649":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"655":{"tf":1.0},"656":{"tf":1.4142135623730951},"657":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.7320508075688772},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":2.6457513110645907},"673":{"tf":2.6457513110645907},"674":{"tf":2.0},"677":{"tf":1.7320508075688772},"678":{"tf":1.4142135623730951},"68":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"684":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"690":{"tf":1.4142135623730951},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"697":{"tf":1.0},"70":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.0},"721":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"731":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"74":{"tf":1.4142135623730951},"742":{"tf":1.0},"75":{"tf":2.0},"752":{"tf":1.4142135623730951},"754":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"763":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"772":{"tf":2.0},"773":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"786":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.4142135623730951},"796":{"tf":1.0},"80":{"tf":1.7320508075688772},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":2.0},"804":{"tf":1.0},"807":{"tf":2.0},"809":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"82":{"tf":1.7320508075688772},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"834":{"tf":2.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"85":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"86":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":1.7320508075688772},"880":{"tf":1.4142135623730951},"881":{"tf":1.0},"89":{"tf":1.7320508075688772},"898":{"tf":1.0},"9":{"tf":2.23606797749979},"908":{"tf":1.0},"909":{"tf":1.7320508075688772},"91":{"tf":1.0},"916":{"tf":2.0},"919":{"tf":1.0},"92":{"tf":1.0},"920":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"942":{"tf":1.0},"95":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":2.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":3.605551275463989},"97":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":6,"docs":{"289":{"tf":1.7320508075688772},"697":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":1.0},"99":{"tf":1.4142135623730951}}},".":{"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":{"d":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.7320508075688772}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"529":{"tf":1.4142135623730951}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{".":{"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":{"d":{"(":{")":{".":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"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":{},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"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":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"531":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{".":{"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":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"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":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"529":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"532":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"531":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{")":{"[":{"0":{"]":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":84,"docs":{"100":{"tf":3.0},"117":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"136":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":2.23606797749979},"151":{"tf":2.0},"160":{"tf":1.7320508075688772},"169":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"233":{"tf":1.0},"242":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":2.449489742783178},"276":{"tf":1.0},"289":{"tf":2.6457513110645907},"3":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":2.449489742783178},"316":{"tf":2.0},"317":{"tf":1.4142135623730951},"320":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"423":{"tf":1.0},"443":{"tf":1.0},"46":{"tf":1.0},"469":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"538":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"63":{"tf":1.0},"637":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0},"694":{"tf":1.0},"70":{"tf":1.0},"710":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":2.0},"775":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":3.0},"852":{"tf":1.4142135623730951},"854":{"tf":1.0},"858":{"tf":1.0},"879":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.4142135623730951},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":2.0},"951":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.7320508075688772},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"289":{"tf":1.0},"964":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"480":{"tf":2.449489742783178},"496":{"tf":1.0},"507":{"tf":2.449489742783178},"663":{"tf":1.0},"673":{"tf":1.0},"682":{"tf":1.0},"697":{"tf":1.0},"74":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"c":{"+":{"1":{"1":{"df":1,"docs":{"183":{"tf":1.7320508075688772}}},"df":2,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":11,"docs":{"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.0},"288":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"664":{"tf":1.0},"684":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":10,"docs":{"170":{"tf":1.4142135623730951},"328":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"570":{"tf":1.4142135623730951},"632":{"tf":1.0},"791":{"tf":1.0},"802":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"234":{"tf":1.0},"51":{"tf":1.0},"653":{"tf":1.0},"689":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"v":{"4":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"528":{"tf":1.0},"529":{"tf":1.0},"531":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":22,"docs":{"132":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"376":{"tf":1.4142135623730951},"526":{"tf":2.0},"527":{"tf":1.0},"528":{"tf":3.3166247903554},"529":{"tf":3.7416573867739413},"530":{"tf":1.0},"531":{"tf":2.6457513110645907},"532":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"762":{"tf":1.0},"78":{"tf":1.0},"817":{"tf":1.7320508075688772},"852":{"tf":1.0},"869":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"0":{".":{"1":{"df":6,"docs":{"882":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"955":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"942":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"941":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"940":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"939":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"938":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"136":{"tf":1.0},"937":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"936":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"935":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"934":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"933":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"932":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"931":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"930":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"754":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":2,"docs":{"929":{"tf":1.4142135623730951},"958":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"954":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"927":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"926":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"924":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"923":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"922":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"921":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"920":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"919":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"918":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"953":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"917":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"916":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"915":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"952":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"951":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"950":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"949":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"948":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"947":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"946":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"945":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"944":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"943":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"914":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"913":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"912":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"2":{"df":1,"docs":{"858":{"tf":1.0}}},"4":{"df":1,"docs":{"857":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{"df":1,"docs":{"838":{"tf":1.0}}},"3":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"911":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"910":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"3":{"df":1,"docs":{"903":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"950":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{".":{"3":{".":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{".":{"0":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"881":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"880":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":2,"docs":{"908":{"tf":1.0},"909":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"908":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"565":{"tf":1.0},"907":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"906":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"905":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"904":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"879":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"878":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"877":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"876":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"875":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"874":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"872":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"871":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"870":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"869":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"868":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"867":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"866":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"865":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"864":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"863":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"862":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"861":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"860":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"859":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"858":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"857":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"856":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"855":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":3,"docs":{"901":{"tf":1.7320508075688772},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"854":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"853":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"852":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"851":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"834":{"tf":1.0},"849":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"848":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"847":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"846":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"844":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"842":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"841":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"840":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"839":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"838":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"837":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"836":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"835":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"834":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"833":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"832":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"831":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"830":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"829":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"828":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"827":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"825":{"tf":1.0},"826":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"825":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"824":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"822":{"tf":1.0},"823":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"821":{"tf":1.0},"822":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"821":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{".":{"0":{"df":2,"docs":{"810":{"tf":1.0},"811":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"810":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"809":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"808":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"820":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"819":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"818":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"817":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"816":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"815":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"814":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"813":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"812":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"807":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"806":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"805":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"803":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":2,"docs":{"380":{"tf":1.0},"802":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"801":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"800":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"752":{"tf":1.0}}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"799":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"798":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"797":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"796":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"795":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":5,"docs":{"896":{"tf":1.7320508075688772},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"824":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"895":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"792":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"791":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"790":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"789":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"788":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"787":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"785":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"784":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"782":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"781":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"780":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"779":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"778":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"777":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":2,"docs":{"136":{"tf":1.0},"776":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"774":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"528":{"tf":1.0}}},"5":{".":{"0":{".":{"0":{"df":2,"docs":{"893":{"tf":1.7320508075688772},"894":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"892":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"891":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"890":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":3,"docs":{"764":{"tf":1.0},"767":{"tf":1.0},"772":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"770":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"769":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"768":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"4":{"df":1,"docs":{"766":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":3,"docs":{"764":{"tf":1.0},"765":{"tf":1.4142135623730951},"767":{"tf":1.0}}},"1":{"df":1,"docs":{"764":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"763":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"762":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"761":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"759":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"758":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"757":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"756":{"tf":1.4142135623730951}}},"1":{"df":2,"docs":{"753":{"tf":1.0},"755":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"754":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"753":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"716":{"tf":1.0}}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"752":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"751":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"750":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"749":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"748":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"746":{"tf":1.0},"747":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"746":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"745":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"744":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"743":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"741":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"740":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"739":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"738":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"737":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"736":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"735":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"733":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"732":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"731":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"729":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"728":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"772":{"tf":1.0}}},"1":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"1":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"756":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"727":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"726":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"725":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"724":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"723":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"722":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":2,"docs":{"425":{"tf":1.0},"721":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"718":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"717":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"716":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"715":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"765":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"750":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"1":{".":{"0":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"1":{"df":1,"docs":{"735":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"731":{"tf":1.0}}},"8":{"df":1,"docs":{"721":{"tf":1.0}}},"9":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"316":{"tf":1.4142135623730951},"318":{"tf":1.0},"347":{"tf":1.4142135623730951},"360":{"tf":1.0},"367":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.0},"507":{"tf":1.4142135623730951},"565":{"tf":2.0},"577":{"tf":1.4142135623730951},"642":{"tf":1.0},"651":{"tf":1.0},"803":{"tf":1.0}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":2.8284271247461903}}}}}}}}},"df":34,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"230":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"285":{"tf":1.0},"288":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"618":{"tf":1.0},"644":{"tf":1.0},"652":{"tf":3.872983346207417},"698":{"tf":1.0},"772":{"tf":1.0},"802":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"913":{"tf":1.4142135623730951},"915":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":176,"docs":{"100":{"tf":3.4641016151377544},"101":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"170":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"202":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"224":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.7320508075688772},"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"298":{"tf":1.0},"315":{"tf":2.0},"316":{"tf":1.4142135623730951},"326":{"tf":1.0},"328":{"tf":1.7320508075688772},"352":{"tf":1.0},"357":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":2.23606797749979},"373":{"tf":1.0},"376":{"tf":3.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"393":{"tf":1.4142135623730951},"395":{"tf":2.8284271247461903},"398":{"tf":1.4142135623730951},"401":{"tf":2.0},"402":{"tf":1.7320508075688772},"404":{"tf":1.7320508075688772},"406":{"tf":1.7320508075688772},"412":{"tf":1.7320508075688772},"414":{"tf":1.7320508075688772},"416":{"tf":3.0},"419":{"tf":1.4142135623730951},"422":{"tf":1.0},"425":{"tf":3.7416573867739413},"427":{"tf":3.3166247903554},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":3.0},"440":{"tf":1.4142135623730951},"443":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.7320508075688772},"449":{"tf":1.0},"457":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"468":{"tf":1.7320508075688772},"471":{"tf":2.0},"476":{"tf":2.23606797749979},"480":{"tf":3.872983346207417},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"487":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":2.23606797749979},"497":{"tf":1.0},"499":{"tf":1.7320508075688772},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":4.0},"508":{"tf":2.0},"510":{"tf":1.4142135623730951},"514":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"522":{"tf":2.0},"526":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":2.23606797749979},"531":{"tf":3.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"543":{"tf":1.7320508075688772},"549":{"tf":1.0},"551":{"tf":1.7320508075688772},"553":{"tf":2.449489742783178},"554":{"tf":1.4142135623730951},"557":{"tf":1.0},"560":{"tf":1.7320508075688772},"563":{"tf":1.7320508075688772},"565":{"tf":2.0},"568":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"572":{"tf":1.0},"575":{"tf":1.7320508075688772},"577":{"tf":3.1622776601683795},"578":{"tf":2.0},"580":{"tf":1.7320508075688772},"583":{"tf":1.0},"588":{"tf":1.7320508075688772},"589":{"tf":1.0},"591":{"tf":2.0},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.7320508075688772},"600":{"tf":2.8284271247461903},"601":{"tf":2.0},"606":{"tf":1.0},"609":{"tf":1.7320508075688772},"611":{"tf":2.0},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.7320508075688772},"623":{"tf":1.7320508075688772},"632":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"642":{"tf":1.7320508075688772},"644":{"tf":1.0},"652":{"tf":1.4142135623730951},"664":{"tf":1.0},"677":{"tf":1.0},"684":{"tf":1.0},"73":{"tf":2.449489742783178},"756":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":3.4641016151377544},"791":{"tf":1.0},"799":{"tf":1.0},"80":{"tf":1.0},"801":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"82":{"tf":1.0},"830":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.0},"843":{"tf":1.0},"857":{"tf":1.0},"86":{"tf":1.0},"864":{"tf":1.4142135623730951},"88":{"tf":1.0},"891":{"tf":1.0},"905":{"tf":1.0},"914":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.0},"94":{"tf":2.449489742783178},"952":{"tf":1.0},"99":{"tf":2.23606797749979}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"553":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":6,"docs":{"324":{"tf":1.0},"347":{"tf":2.0},"473":{"tf":1.0},"565":{"tf":1.4142135623730951},"640":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":32,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.6457513110645907},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"203":{"tf":2.23606797749979},"208":{"tf":1.0},"209":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.7320508075688772},"229":{"tf":2.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"348":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":2.0},"368":{"tf":1.4142135623730951},"369":{"tf":2.0},"374":{"tf":1.4142135623730951},"375":{"tf":2.0},"402":{"tf":1.0},"619":{"tf":1.0},"663":{"tf":1.0},"673":{"tf":2.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.0},"841":{"tf":1.0},"907":{"tf":1.0},"921":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"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":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"665":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"665":{"tf":1.0}}}}},"df":2,"docs":{"315":{"tf":1.0},"318":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"655":{"tf":1.0},"658":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"184":{"tf":1.0},"234":{"tf":1.0},"246":{"tf":1.0},"704":{"tf":1.0},"924":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"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":{"448":{"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":{},"v":{"df":3,"docs":{"17":{"tf":1.0},"690":{"tf":1.0},"921":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"315":{"tf":1.4142135623730951},"739":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"117":{"tf":1.0},"173":{"tf":1.0},"674":{"tf":1.0},"693":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"652":{"tf":2.23606797749979}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"5":{"df":1,"docs":{"44":{"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":1,"docs":{"44":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"/":{"<":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":103,"docs":{"11":{"tf":2.6457513110645907},"117":{"tf":1.0},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"13":{"tf":2.0},"132":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"17":{"tf":2.0},"173":{"tf":1.7320508075688772},"175":{"tf":2.0},"224":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":2.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"288":{"tf":2.6457513110645907},"289":{"tf":2.0},"315":{"tf":1.0},"318":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":2.449489742783178},"44":{"tf":2.23606797749979},"456":{"tf":1.0},"48":{"tf":1.7320508075688772},"484":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"529":{"tf":1.0},"561":{"tf":1.0},"63":{"tf":1.0},"669":{"tf":2.449489742783178},"673":{"tf":2.0},"685":{"tf":3.0},"692":{"tf":2.23606797749979},"721":{"tf":1.0},"727":{"tf":1.0},"731":{"tf":1.4142135623730951},"735":{"tf":1.0},"739":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":2.23606797749979},"763":{"tf":1.7320508075688772},"768":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"78":{"tf":1.0},"783":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"794":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"843":{"tf":1.0},"848":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":2.23606797749979},"862":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"897":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":1.0},"915":{"tf":1.7320508075688772},"916":{"tf":1.0},"924":{"tf":1.0},"929":{"tf":1.0},"936":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"951":{"tf":1.0},"956":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"i":{"a":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}}},"df":13,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"354":{"tf":1.0},"656":{"tf":1.0},"666":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"742":{"tf":1.0},"837":{"tf":1.0},"906":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"666":{"tf":1.0},"686":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"1":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"\"":{"]":{".":{"a":{"d":{"d":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":34,"docs":{"110":{"tf":1.4142135623730951},"117":{"tf":1.0},"136":{"tf":1.0},"218":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"254":{"tf":1.0},"352":{"tf":1.7320508075688772},"356":{"tf":1.0},"363":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.7320508075688772},"569":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"890":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"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":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"563":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"563":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{},"s":{"(":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"566":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"566":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"566":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"565":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"563":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":1,"docs":{"566":{"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":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"565":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"690":{"tf":1.0},"691":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"19":{"tf":1.7320508075688772},"689":{"tf":1.0},"690":{"tf":2.0},"691":{"tf":1.7320508075688772},"692":{"tf":1.0},"915":{"tf":1.4142135623730951},"939":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":4,"docs":{"670":{"tf":1.7320508075688772},"672":{"tf":1.7320508075688772},"673":{"tf":1.0},"921":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"315":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"254":{"tf":1.0},"289":{"tf":1.4142135623730951},"41":{"tf":1.0},"968":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}},"d":{"df":9,"docs":{"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"206":{"tf":1.0},"258":{"tf":2.0}}}}}},"p":{"df":0,"docs":{},"n":{"df":1,"docs":{"738":{"tf":1.0}}}},"s":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"744":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"127":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"652":{"tf":1.0},"715":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"801":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"861":{"tf":1.0},"958":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"867":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":4,"docs":{"203":{"tf":1.0},"674":{"tf":1.0},"675":{"tf":1.0},"880":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":30,"docs":{"246":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":2.0},"251":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"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.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}}}}}}}}}},"l":{"df":4,"docs":{"315":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"894":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"100":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"834":{"tf":1.0},"915":{"tf":1.0},"94":{"tf":1.4142135623730951},"958":{"tf":1.0},"96":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"315":{"tf":1.0},"328":{"tf":1.0},"356":{"tf":1.0},"830":{"tf":1.7320508075688772},"858":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"969":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"958":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"861":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"50":{"tf":1.0},"669":{"tf":1.4142135623730951},"674":{"tf":1.0},"677":{"tf":1.7320508075688772},"685":{"tf":1.4142135623730951},"776":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0},"924":{"tf":1.0},"948":{"tf":1.0},"958":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"545":{"tf":1.0},"632":{"tf":1.0},"636":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}}}}},"df":23,"docs":{"0":{"tf":1.0},"218":{"tf":1.0},"233":{"tf":1.7320508075688772},"243":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"894":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"909":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.7320508075688772},"952":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"342":{"tf":1.0},"912":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"241":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":11,"docs":{"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"218":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"712":{"tf":1.7320508075688772},"9":{"tf":1.0},"957":{"tf":2.0},"958":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"131":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"31":{"tf":1.0},"379":{"tf":1.0},"65":{"tf":1.0},"655":{"tf":1.0},"658":{"tf":1.0},"679":{"tf":1.0},"786":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"5":{"tf":1.0},"957":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":12,"docs":{"19":{"tf":1.4142135623730951},"673":{"tf":2.23606797749979},"751":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.4142135623730951},"815":{"tf":1.0},"820":{"tf":1.4142135623730951},"831":{"tf":1.0},"832":{"tf":1.0},"846":{"tf":1.0},"858":{"tf":1.0},"867":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"195":{"tf":1.0},"82":{"tf":1.0},"960":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"d":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"110":{"tf":1.0},"22":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"89":{"tf":1.0},"968":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":2.0},"318":{"tf":1.0},"387":{"tf":1.0},"801":{"tf":1.0},"862":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"233":{"tf":1.0},"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"190":{"tf":1.0},"258":{"tf":1.0},"371":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"100":{"tf":1.0},"79":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"655":{"tf":1.0},"658":{"tf":1.0},"715":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"376":{"tf":1.0},"595":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"289":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"n":{"d":{"df":1,"docs":{"342":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"890":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":3,"docs":{"241":{"tf":1.4142135623730951},"905":{"tf":1.4142135623730951},"906":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"173":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":2.0},"19":{"tf":1.0},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"272":{"tf":1.0},"289":{"tf":1.0},"673":{"tf":1.0},"690":{"tf":1.4142135623730951},"711":{"tf":2.449489742783178},"749":{"tf":1.0},"750":{"tf":1.0},"754":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"804":{"tf":1.0},"853":{"tf":1.0},"862":{"tf":1.0},"867":{"tf":1.0},"886":{"tf":1.0},"904":{"tf":1.0},"910":{"tf":1.0},"912":{"tf":1.0},"919":{"tf":1.0},"929":{"tf":1.4142135623730951},"958":{"tf":1.0}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"129":{"tf":1.0},"132":{"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":{}},"s":{"df":0,"docs":{},"h":{"df":30,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"315":{"tf":1.0},"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":26,"docs":{"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"117":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.4142135623730951},"259":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"330":{"tf":1.0},"379":{"tf":1.0},"454":{"tf":1.0},"677":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.4142135623730951},"853":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.0},"145":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"22":{"tf":1.0},"289":{"tf":1.0},"342":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"618":{"tf":1.0},"693":{"tf":1.0},"698":{"tf":1.0},"730":{"tf":1.0},"751":{"tf":1.0},"858":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"915":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"224":{"tf":1.4142135623730951},"231":{"tf":1.0},"803":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":6,"docs":{"105":{"tf":1.0},"294":{"tf":1.4142135623730951},"697":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"927":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":47,"docs":{"100":{"tf":1.0},"107":{"tf":1.7320508075688772},"114":{"tf":1.0},"19":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":3.0},"224":{"tf":1.0},"233":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":2.0},"673":{"tf":1.4142135623730951},"680":{"tf":1.0},"70":{"tf":1.0},"712":{"tf":1.0},"725":{"tf":1.0},"747":{"tf":1.0},"753":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"79":{"tf":1.0},"804":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"834":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"86":{"tf":1.7320508075688772},"862":{"tf":1.4142135623730951},"864":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.0},"91":{"tf":1.0},"929":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"22":{"tf":2.0},"834":{"tf":1.0},"852":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"113":{"tf":1.0},"118":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"958":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"736":{"tf":1.0},"867":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"d":{"!":{"\"":{">":{"<":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"969":{"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":{},"i":{"df":2,"docs":{"22":{"tf":1.0},"710":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"117":{"tf":1.0},"652":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.0},"653":{"tf":1.0},"665":{"tf":1.0},"761":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"100":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":1.0},"111":{"tf":1.0},"127":{"tf":1.0},"315":{"tf":1.0},"340":{"tf":1.0},"694":{"tf":1.7320508075688772},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"753":{"tf":1.0},"79":{"tf":1.0},"809":{"tf":1.0},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"21":{"tf":1.0},"570":{"tf":1.0},"968":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"877":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"782":{"tf":1.0}}}}}}}}},"x":{".":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"673":{"tf":1.0}}}},"df":0,"docs":{}}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"19":{"tf":1.7320508075688772},"751":{"tf":1.0},"775":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"132":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"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":{"798":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":18,"docs":{"16":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"362":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"657":{"tf":1.0},"732":{"tf":1.0},"738":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"786":{"tf":1.0},"833":{"tf":1.0},"855":{"tf":1.4142135623730951},"858":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"233":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"464":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":0,"docs":{},"s":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"\"":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"437":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"543":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"565":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"634":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"565":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"652":{"tf":1.0}}}}}}}}}},"0":{"df":17,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.4142135623730951},"555":{"tf":1.0},"566":{"tf":1.0},"601":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0}}},"1":{"1":{"df":2,"docs":{"480":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"416":{"tf":1.0},"642":{"tf":1.0}}},"2":{"df":3,"docs":{"480":{"tf":1.0},"507":{"tf":1.0},"565":{"tf":1.0}}},"3":{"df":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"4":{"3":{"3":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"652":{"tf":1.0}}},"6":{"df":1,"docs":{"406":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"d":{"df":1,"docs":{"553":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"395":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"395":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"531":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"333":{"tf":1.0},"334":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"a":{"1":{"1":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"318":{"tf":1.0}}}}}}},"df":17,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"136":{"tf":2.0},"205":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0},"471":{"tf":2.0},"484":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"701":{"tf":1.0},"775":{"tf":1.0},"837":{"tf":1.0},"839":{"tf":1.0},"842":{"tf":1.0},"916":{"tf":1.4142135623730951},"936":{"tf":1.0}},"l":{"df":1,"docs":{"132":{"tf":1.0}}},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"701":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":59,"docs":{"108":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"138":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"276":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":2.0},"281":{"tf":1.4142135623730951},"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.0},"289":{"tf":1.0},"290":{"tf":2.0},"291":{"tf":1.4142135623730951},"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":2.0},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"387":{"tf":1.0},"408":{"tf":1.0},"429":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"450":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.7320508075688772},"533":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"645":{"tf":1.0},"678":{"tf":1.4142135623730951},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":2.0},"857":{"tf":1.0}}}}}}}}},"df":1,"docs":{"701":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"471":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"551":{"tf":1.0},"553":{"tf":1.0},"795":{"tf":1.0},"830":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":3,"docs":{"226":{"tf":1.0},"422":{"tf":1.0},"537":{"tf":1.0}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"_":{"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":{},"p":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"402":{"tf":1.0},"493":{"tf":1.0},"619":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"z":{"0":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"a":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"958":{"tf":1.0}}}}}}}},"title":{"root":{"0":{"1":{"df":28,"docs":{"732":{"tf":1.0},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"766":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"817":{"tf":1.0},"829":{"tf":1.0},"855":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"896":{"tf":1.0},"899":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0}}},"2":{"df":18,"docs":{"730":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"791":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"816":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}}},"3":{"df":27,"docs":{"728":{"tf":1.0},"729":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.0},"804":{"tf":1.0},"837":{"tf":1.0},"862":{"tf":1.0},"872":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"909":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.0},"934":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0}}},"4":{":":{"0":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"727":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"760":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"798":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"859":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"892":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0}}},"5":{"df":30,"docs":{"716":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"871":{"tf":1.0},"891":{"tf":1.0},"895":{"tf":1.0},"910":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}}},"6":{"df":24,"docs":{"720":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"775":{"tf":1.0},"786":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"898":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0}}},"7":{"df":26,"docs":{"717":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"869":{"tf":1.0},"886":{"tf":1.0},"913":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0}}},"8":{"df":21,"docs":{"719":{"tf":1.0},"720":{"tf":1.0},"736":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"766":{"tf":1.0},"768":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"919":{"tf":1.0}}},"9":{"df":30,"docs":{"718":{"tf":1.0},"735":{"tf":1.0},"745":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"796":{"tf":1.0},"803":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"860":{"tf":1.0},"884":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"912":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":33,"docs":{"275":{"tf":1.0},"717":{"tf":1.0},"734":{"tf":1.0},"739":{"tf":1.0},"744":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"829":{"tf":1.0},"842":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"917":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"952":{"tf":1.0}}},"1":{"df":37,"docs":{"715":{"tf":1.0},"716":{"tf":1.0},"733":{"tf":1.0},"741":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"831":{"tf":1.0},"849":{"tf":1.0},"857":{"tf":1.0},"865":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.4142135623730951},"878":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"938":{"tf":1.0}}},"2":{"df":24,"docs":{"729":{"tf":1.0},"731":{"tf":1.0},"735":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"801":{"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},"819":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0}}},"3":{"df":4,"docs":{"752":{"tf":1.0},"789":{"tf":1.0},"854":{"tf":1.0},"947":{"tf":1.0}}},"4":{"df":4,"docs":{"774":{"tf":1.0},"867":{"tf":1.0},"907":{"tf":1.0},"946":{"tf":1.0}}},"5":{"df":8,"docs":{"743":{"tf":1.0},"755":{"tf":1.0},"770":{"tf":1.0},"780":{"tf":1.0},"809":{"tf":1.0},"813":{"tf":1.0},"902":{"tf":1.0},"922":{"tf":1.0}}},"6":{"df":9,"docs":{"732":{"tf":1.0},"773":{"tf":1.0},"788":{"tf":1.0},"804":{"tf":1.0},"841":{"tf":1.0},"866":{"tf":1.0},"901":{"tf":1.0},"904":{"tf":1.0},"932":{"tf":1.0}}},"7":{"df":15,"docs":{"754":{"tf":1.0},"769":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"800":{"tf":1.0},"812":{"tf":1.0},"818":{"tf":1.0},"836":{"tf":1.0},"864":{"tf":1.0},"870":{"tf":1.0},"914":{"tf":1.0},"928":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}}},"8":{"df":10,"docs":{"759":{"tf":1.0},"784":{"tf":1.0},"808":{"tf":1.0},"830":{"tf":1.0},"876":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.0}}},"9":{"df":6,"docs":{"751":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0}}},"df":5,"docs":{"190":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"258":{"tf":1.0},"266":{"tf":1.0}}},"2":{"0":{"1":{"9":{"df":18,"docs":{"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"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.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":57,"docs":{"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.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"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.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"859":{"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":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0}}},"1":{"df":71,"docs":{"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},"803":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"855":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"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.0},"956":{"tf":1.0}}},"2":{"df":36,"docs":{"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.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},"765":{"tf":1.0},"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},"911":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0}}},"3":{"df":33,"docs":{"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},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"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},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0}}},"4":{"df":25,"docs":{"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},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"740":{"tf":1.0},"772":{"tf":1.0},"840":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"931":{"tf":1.0},"942":{"tf":1.0}}},"1":{"df":5,"docs":{"719":{"tf":1.0},"873":{"tf":1.0},"894":{"tf":1.0},"912":{"tf":1.0},"935":{"tf":1.0}}},"2":{"df":13,"docs":{"727":{"tf":1.0},"765":{"tf":1.0},"805":{"tf":1.0},"828":{"tf":1.0},"839":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.0},"920":{"tf":1.0},"930":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0}}},"3":{"df":8,"docs":{"721":{"tf":1.0},"723":{"tf":1.0},"734":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"859":{"tf":1.0},"891":{"tf":1.0},"954":{"tf":1.0}}},"4":{"df":9,"docs":{"718":{"tf":1.0},"742":{"tf":1.0},"758":{"tf":1.0},"827":{"tf":1.0},"835":{"tf":1.0},"838":{"tf":1.0},"846":{"tf":1.0},"896":{"tf":1.0},"953":{"tf":1.0}}},"5":{"df":10,"docs":{"753":{"tf":1.0},"757":{"tf":1.0},"771":{"tf":1.0},"792":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"834":{"tf":1.0},"845":{"tf":1.0},"893":{"tf":1.0},"916":{"tf":1.0}}},"6":{"df":12,"docs":{"749":{"tf":1.0},"750":{"tf":1.0},"764":{"tf":1.0},"767":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"844":{"tf":1.0},"855":{"tf":1.0},"863":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"948":{"tf":1.0}}},"7":{"df":4,"docs":{"833":{"tf":1.0},"862":{"tf":1.0},"900":{"tf":1.0},"906":{"tf":1.0}}},"8":{"df":7,"docs":{"715":{"tf":1.0},"728":{"tf":1.0},"737":{"tf":1.0},"761":{"tf":1.0},"793":{"tf":1.0},"824":{"tf":1.0},"852":{"tf":1.0}}},"9":{"df":7,"docs":{"730":{"tf":1.0},"787":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"880":{"tf":1.0}}},"df":5,"docs":{"191":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"259":{"tf":1.0},"267":{"tf":1.0}}},"3":{"0":{"df":6,"docs":{"733":{"tf":1.0},"748":{"tf":1.0},"802":{"tf":1.0},"892":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0}}},"1":{"df":4,"docs":{"722":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.0},"799":{"tf":1.0}}},"df":1,"docs":{"268":{"tf":1.0}}},"4":{"df":1,"docs":{"269":{"tf":1.0}}},"5":{"df":1,"docs":{"270":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"8":{"df":1,"docs":{"273":{"tf":1.0}}},"9":{"df":1,"docs":{"274":{"tf":1.0}}},"a":{".":{"df":0,"docs":{},"k":{".":{"a":{"df":2,"docs":{"187":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"356":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"475":{"tf":1.0},"493":{"tf":1.0},"574":{"tf":1.0},"585":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"476":{"tf":1.0},"494":{"tf":1.0},"575":{"tf":1.0},"586":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"505":{"tf":1.0},"517":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"257":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"691":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}}},"d":{"df":10,"docs":{"404":{"tf":1.0},"414":{"tf":1.0},"445":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"961":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}}},"df":13,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"379":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"195":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0}}},"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":{},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"665":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"316":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"671":{"tf":1.0},"674":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":66,"docs":{"112":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"314":{"tf":1.0},"318":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"372":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"403":{"tf":1.0},"405":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"444":{"tf":1.0},"447":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.0},"472":{"tf":1.0},"479":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"516":{"tf":1.0},"518":{"tf":1.0},"527":{"tf":1.0},"530":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"550":{"tf":1.0},"552":{"tf":1.0},"562":{"tf":1.0},"564":{"tf":1.0},"573":{"tf":1.0},"576":{"tf":1.0},"584":{"tf":1.0},"587":{"tf":1.0},"597":{"tf":1.0},"599":{"tf":1.0},"608":{"tf":1.0},"610":{"tf":1.0},"620":{"tf":1.0},"622":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"648":{"tf":1.0},"650":{"tf":1.0},"964":{"tf":1.0}}},"p":{"df":1,"docs":{"679":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"5":{"tf":1.0},"966":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":15,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"142":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"51":{"tf":1.0},"671":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"101":{"tf":1.0},"80":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"205":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"692":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}},"df":3,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"223":{"tf":1.0},"231":{"tf":1.0},"695":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"147":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"245":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"125":{"tf":1.0},"152":{"tf":1.0},"158":{"tf":1.0}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"561":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"684":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"140":{"tf":1.0},"675":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"310":{"tf":1.0},"311":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"958":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"706":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"381":{"tf":1.0},"391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"241":{"tf":1.0},"245":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"26":{"tf":1.0},"268":{"tf":1.0},"63":{"tf":1.0},"663":{"tf":1.0},"671":{"tf":1.0},"676":{"tf":1.0},"682":{"tf":1.0},"684":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"691":{"tf":1.0},"81":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"458":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"89":{"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":1,"docs":{"285":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"50":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":1.0},"204":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"118":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"270":{"tf":1.0},"379":{"tf":1.0},"714":{"tf":1.0},"889":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"713":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"72":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"78":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"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":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":8,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"117":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"689":{"tf":1.0},"691":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"34":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"258":{"tf":1.0},"663":{"tf":1.0},"676":{"tf":1.0},"682":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"260":{"tf":1.0},"33":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"20":{"tf":1.0},"316":{"tf":1.0},"43":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"967":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"959":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"654":{"tf":1.0},"659":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"42":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"402":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"619":{"tf":1.0},"75":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"401":{"tf":1.0},"412":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"50":{"tf":1.0},"674":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"317":{"tf":1.0},"336":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"690":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"546":{"tf":1.0}}}}}}}}},"df":29,"docs":{"117":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"389":{"tf":1.0},"399":{"tf":1.0},"410":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":1.0},"535":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.4142135623730951},"592":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.0},"627":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0},"77":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"183":{"tf":1.0},"684":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"549":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":18,"docs":{"215":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"348":{"tf":1.0},"352":{"tf":1.0},"363":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"138":{"tf":1.0},"147":{"tf":1.0},"256":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"645":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"159":{"tf":1.0},"164":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"626":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"153":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"272":{"tf":1.0},"462":{"tf":1.0},"52":{"tf":1.0}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"321":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"471":{"tf":1.0},"488":{"tf":1.0},"503":{"tf":1.0},"515":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"182":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"339":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"179":{"tf":1.0},"180":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"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":{"969":{"tf":1.0}}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"57":{"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":{"698":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"229":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"273":{"tf":1.0},"34":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"165":{"tf":1.0},"171":{"tf":1.0},"213":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"344":{"tf":1.0},"55":{"tf":1.0},"560":{"tf":1.0},"679":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"100":{"tf":1.0},"112":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"347":{"tf":1.0},"645":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"340":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"254":{"tf":1.0},"326":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"209":{"tf":1.0},"330":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"685":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"626":{"tf":1.0},"672":{"tf":1.0}}}}},"r":{"a":{"df":20,"docs":{"388":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"467":{"tf":1.0},"483":{"tf":1.0},"499":{"tf":1.0},"510":{"tf":1.0},"522":{"tf":1.0},"534":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"568":{"tf":1.0},"580":{"tf":1.0},"591":{"tf":1.0},"603":{"tf":1.0},"614":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"350":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":15,"docs":{"108":{"tf":1.0},"20":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"t":{"df":2,"docs":{"106":{"tf":1.0},"85":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"231":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"378":{"tf":1.0},"967":{"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":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":1,"docs":{"687":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"528":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"113":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"306":{"tf":1.0},"35":{"tf":1.0},"888":{"tf":1.0},"968":{"tf":1.0}}}}},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"651":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"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":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"j":{"df":1,"docs":{"240":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"324":{"tf":1.0}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"369":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"44":{"tf":1.0},"692":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"375":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"d":{"df":1,"docs":{"664":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"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":{"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":54,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"29":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"340":{"tf":1.0},"344":{"tf":1.0},"39":{"tf":1.0},"402":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"619":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"671":{"tf":1.0},"674":{"tf":1.0},"68":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"691":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"712":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"957":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"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":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"670":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"668":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"702":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"2":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"959":{"tf":1.0},"968":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"259":{"tf":1.0},"561":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"34":{"tf":1.0},"423":{"tf":1.0},"538":{"tf":1.0},"630":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"222":{"tf":1.0},"349":{"tf":1.0},"4":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"965":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"263":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"691":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"692":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"232":{"tf":1.0},"674":{"tf":1.0},"679":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"685":{"tf":1.0}},"r":{"df":12,"docs":{"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},"208":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"673":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"o":{"df":7,"docs":{"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"50":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"267":{"tf":1.0}}}},"t":{"df":0,"docs":{},"’":{"df":1,"docs":{"182":{"tf":1.0}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"121":{"tf":1.0},"169":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"688":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"698":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"b":{"df":6,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"225":{"tf":1.0},"656":{"tf":1.0}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":10,"docs":{"377":{"tf":1.0},"378":{"tf":1.0},"391":{"tf":1.0},"412":{"tf":1.0},"433":{"tf":1.0},"488":{"tf":1.0},"515":{"tf":1.0},"583":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"’":{"df":1,"docs":{"253":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"270":{"tf":1.0},"309":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"135":{"tf":1.0},"357":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0},"484":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"524":{"tf":1.0},"570":{"tf":1.0},"593":{"tf":1.0},"616":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"227":{"tf":1.0},"689":{"tf":1.0}}},"t":{"df":2,"docs":{"38":{"tf":1.0},"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"344":{"tf":1.0}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":10,"docs":{"217":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"104":{"tf":1.0},"107":{"tf":1.0},"44":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"62":{"tf":1.0},"672":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"213":{"tf":1.0}}}},"df":1,"docs":{"686":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"459":{"tf":1.0},"477":{"tf":1.0},"711":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"503":{"tf":1.0},"515":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"204":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"225":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"221":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":84,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"287":{"tf":1.0},"35":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"402":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"619":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"67":{"tf":1.0},"677":{"tf":1.0},"69":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"108":{"tf":1.0},"277":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"196":{"tf":1.0},"274":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"262":{"tf":1.0},"263":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"202":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"281":{"tf":1.0},"286":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.0},"687":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"77":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"w":{"df":7,"docs":{"102":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0},"961":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"680":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"281":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"546":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"638":{"tf":1.0},"645":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"683":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"671":{"tf":1.0}}}}}}},"n":{"c":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0}}}}}}},"s":{"/":{"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":{"271":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"184":{"tf":1.0},"653":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0},"962":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":51,"docs":{"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"545":{"tf":1.0},"547":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"625":{"tf":1.0},"636":{"tf":1.0},"644":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"683":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"223":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":44,"docs":{"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.4142135623730951},"275":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"336":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"647":{"tf":1.0},"66":{"tf":1.0},"678":{"tf":1.0},"709":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"696":{"tf":1.0},"697":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"704":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}},"e":{"df":3,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":11,"docs":{"146":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"700":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"115":{"tf":1.0},"958":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{".":{"0":{"df":4,"docs":{"894":{"tf":1.0},"895":{"tf":1.0},"900":{"tf":1.0},"903":{"tf":1.0}}},"1":{"df":2,"docs":{"899":{"tf":1.0},"902":{"tf":1.0}}},"2":{"df":1,"docs":{"898":{"tf":1.0}}},"3":{"df":1,"docs":{"897":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"967":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"692":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"e":{"df":2,"docs":{"59":{"tf":1.0},"61":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"115":{"tf":1.0},"71":{"tf":1.0},"92":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"119":{"tf":1.0},"192":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.0},"268":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"121":{"tf":1.0},"267":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"169":{"tf":1.0},"18":{"tf":1.0},"235":{"tf":1.0},"658":{"tf":1.0},"673":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"661":{"tf":1.0}}}},"t":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"595":{"tf":1.0},"596":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"157":{"tf":1.0},"177":{"tf":1.0},"231":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":23,"docs":{"205":{"tf":1.0},"389":{"tf":1.0},"399":{"tf":1.0},"410":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"469":{"tf":1.0},"485":{"tf":1.0},"500":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":1.0},"535":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"569":{"tf":1.0},"592":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.0},"627":{"tf":1.0},"637":{"tf":1.0},"646":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"618":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"563":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":27,"docs":{"114":{"tf":1.0},"258":{"tf":1.0},"327":{"tf":1.0},"382":{"tf":1.0},"392":{"tf":1.0},"403":{"tf":1.0},"413":{"tf":1.0},"424":{"tf":1.0},"434":{"tf":1.0},"444":{"tf":1.0},"455":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"516":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"550":{"tf":1.0},"562":{"tf":1.0},"573":{"tf":1.0},"584":{"tf":1.0},"597":{"tf":1.0},"608":{"tf":1.0},"620":{"tf":1.0},"631":{"tf":1.0},"639":{"tf":1.0},"679":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"182":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":26,"docs":{"3":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"390":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"421":{"tf":1.0},"432":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"502":{"tf":1.0},"513":{"tf":1.0},"525":{"tf":1.0},"536":{"tf":1.0},"559":{"tf":1.0},"571":{"tf":1.0},"581":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"617":{"tf":1.0},"628":{"tf":1.0},"964":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"336":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"338":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"20":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"113":{"tf":1.0},"120":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"126":{"tf":1.0},"159":{"tf":1.0},"164":{"tf":1.0},"262":{"tf":1.0},"698":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":11,"docs":{"15":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"40":{"tf":1.0},"58":{"tf":1.0},"673":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"295":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"181":{"tf":1.0},"182":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"183":{"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":3,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":6,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"283":{"tf":1.0},"293":{"tf":1.0},"302":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"663":{"tf":1.0},"682":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":22,"docs":{"121":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"340":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"674":{"tf":1.0},"688":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"78":{"tf":1.0},"965":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"139":{"tf":1.0},"140":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0},"354":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0},"250":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"267":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"366":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":24,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"330":{"tf":1.0},"35":{"tf":1.0},"383":{"tf":1.0},"393":{"tf":1.0},"41":{"tf":1.0},"425":{"tf":1.0},"435":{"tf":1.0},"446":{"tf":1.0},"529":{"tf":1.0},"540":{"tf":1.0},"551":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"460":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"254":{"tf":1.0},"676":{"tf":1.0}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"541":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":1,"docs":{"339":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"487":{"tf":1.0},"514":{"tf":1.0},"582":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"73":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"258":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"118":{"tf":1.0},"219":{"tf":1.0},"353":{"tf":1.0},"370":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"105":{"tf":1.0},"222":{"tf":1.0},"31":{"tf":1.0},"349":{"tf":1.0},"4":{"tf":1.0},"662":{"tf":1.0},"681":{"tf":1.0},"84":{"tf":1.0},"965":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"253":{"tf":1.0},"456":{"tf":1.0},"473":{"tf":1.0},"490":{"tf":1.0},"675":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}},"u":{"df":1,"docs":{"320":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"21":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"680":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"474":{"tf":1.0},"491":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"457":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"422":{"tf":1.0},"433":{"tf":1.0},"443":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"130":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"301":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"133":{"tf":1.0},"561":{"tf":1.0},"648":{"tf":1.0},"66":{"tf":1.0},"710":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"136":{"tf":1.0},"259":{"tf":1.0},"649":{"tf":1.0}},"p":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"107":{"tf":1.0},"44":{"tf":1.0},"86":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"232":{"tf":1.0},"657":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":9,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"284":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"340":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"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":{"63":{"tf":1.0}}},"y":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"249":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"652":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":32,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"318":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.0},"394":{"tf":1.0},"405":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"463":{"tf":1.0},"479":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"542":{"tf":1.0},"552":{"tf":1.0},"564":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"599":{"tf":1.0},"610":{"tf":1.0},"622":{"tf":1.0},"633":{"tf":1.0},"641":{"tf":1.0},"650":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"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":{},"i":{"d":{"df":1,"docs":{"334":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":23,"docs":{"386":{"tf":1.0},"396":{"tf":1.0},"407":{"tf":1.0},"417":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"465":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"532":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"566":{"tf":1.0},"578":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.0},"612":{"tf":1.0},"624":{"tf":1.0},"635":{"tf":1.0},"643":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":23,"docs":{"385":{"tf":1.0},"395":{"tf":1.0},"406":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.0},"480":{"tf":1.0},"496":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"565":{"tf":1.0},"577":{"tf":1.0},"588":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0},"642":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"554":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"887":{"tf":1.0}}},"2":{"df":1,"docs":{"886":{"tf":1.0}}},"3":{"df":1,"docs":{"885":{"tf":1.0}}},"4":{"df":1,"docs":{"884":{"tf":1.0}}},"5":{"df":1,"docs":{"883":{"tf":1.0}}},"6":{"df":1,"docs":{"882":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"629":{"tf":1.0},"684":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"75":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"316":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"248":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"272":{"tf":1.0},"471":{"tf":1.0},"488":{"tf":1.0},"76":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"180":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}}}}}}},"o":{"df":1,"docs":{"246":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"320":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"707":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"263":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"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":1,"docs":{"49":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"468":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"712":{"tf":1.0},"957":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"106":{"tf":1.0},"379":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"310":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"104":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"714":{"tf":1.0},"889":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":10,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"116":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"230":{"tf":1.0},"537":{"tf":1.0},"546":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"346":{"tf":1.0},"699":{"tf":1.0}}}},"df":19,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"28":{"tf":1.0},"326":{"tf":1.0},"461":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"596":{"tf":1.0},"607":{"tf":1.0},"671":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"183":{"tf":1.0},"2":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"963":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"526":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"0":{".":{"1":{"df":6,"docs":{"882":{"tf":1.0},"883":{"tf":1.0},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"956":{"tf":1.0}}},"1":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"942":{"tf":1.0}}},"1":{"df":1,"docs":{"941":{"tf":1.0}}},"2":{"df":1,"docs":{"940":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"939":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"938":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"937":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"936":{"tf":1.0}}},"1":{"df":1,"docs":{"935":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"931":{"tf":1.0}}},"1":{"df":1,"docs":{"930":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"929":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"954":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"927":{"tf":1.0}}},"1":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"923":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"920":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"919":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"918":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"953":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"917":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"915":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"950":{"tf":1.0}}},"1":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"947":{"tf":1.0}}},"1":{"df":1,"docs":{"946":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"945":{"tf":1.0}}},"1":{"df":1,"docs":{"944":{"tf":1.0}}},"2":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"914":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"913":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"912":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"910":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"880":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"909":{"tf":1.0}}},"1":{"df":1,"docs":{"908":{"tf":1.0}}},"2":{"df":1,"docs":{"907":{"tf":1.0}}},"3":{"df":1,"docs":{"906":{"tf":1.0}}},"4":{"df":1,"docs":{"905":{"tf":1.0}}},"5":{"df":1,"docs":{"904":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"878":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"877":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"875":{"tf":1.0}}},"1":{"df":1,"docs":{"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"871":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"870":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"869":{"tf":1.0}}},"1":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"866":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"864":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"863":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"861":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"858":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"857":{"tf":1.0}}},"1":{"df":1,"docs":{"856":{"tf":1.0}}},"2":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":3,"docs":{"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"854":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"853":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"852":{"tf":1.0}}},"1":{"df":1,"docs":{"851":{"tf":1.0}}},"2":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"849":{"tf":1.0}}},"1":{"df":1,"docs":{"848":{"tf":1.0}}},"2":{"df":1,"docs":{"847":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"846":{"tf":1.0}}},"1":{"df":1,"docs":{"845":{"tf":1.0}}},"2":{"df":1,"docs":{"844":{"tf":1.0}}},"3":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"841":{"tf":1.0}}},"1":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"839":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"837":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"836":{"tf":1.0}}},"1":{"df":1,"docs":{"835":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"834":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"833":{"tf":1.0}}},"1":{"df":1,"docs":{"832":{"tf":1.0}}},"2":{"df":1,"docs":{"831":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"830":{"tf":1.0}}},"1":{"df":1,"docs":{"829":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"828":{"tf":1.0}}},"1":{"df":1,"docs":{"827":{"tf":1.0}}},"2":{"df":1,"docs":{"826":{"tf":1.0}}},"3":{"df":1,"docs":{"825":{"tf":1.0}}},"4":{"df":1,"docs":{"824":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"823":{"tf":1.0}}},"1":{"df":1,"docs":{"822":{"tf":1.0}}},"2":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"811":{"tf":1.0}}},"1":{"df":1,"docs":{"810":{"tf":1.0}}},"2":{"df":1,"docs":{"809":{"tf":1.0}}},"3":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"820":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"819":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"818":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"816":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"815":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"814":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"813":{"tf":1.0}}},"1":{"df":1,"docs":{"812":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"806":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"804":{"tf":1.0}}},"1":{"df":1,"docs":{"803":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"802":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"1":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"799":{"tf":1.0}}},"1":{"df":1,"docs":{"798":{"tf":1.0}}},"2":{"df":1,"docs":{"797":{"tf":1.0}}},"3":{"df":1,"docs":{"796":{"tf":1.0}}},"4":{"df":1,"docs":{"795":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":5,"docs":{"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"895":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"792":{"tf":1.0}}},"1":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"788":{"tf":1.0}}},"1":{"df":1,"docs":{"787":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"786":{"tf":1.0}}},"1":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"783":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"782":{"tf":1.0}}},"1":{"df":1,"docs":{"781":{"tf":1.0}}},"2":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"779":{"tf":1.0}}},"1":{"df":1,"docs":{"778":{"tf":1.0}}},"2":{"df":1,"docs":{"777":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"776":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"775":{"tf":1.0}}},"1":{"df":1,"docs":{"774":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":2,"docs":{"893":{"tf":1.0},"894":{"tf":1.0}}},"1":{"df":1,"docs":{"892":{"tf":1.0}}},"2":{"df":1,"docs":{"891":{"tf":1.0}}},"3":{"df":1,"docs":{"890":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"0":{".":{"0":{"df":1,"docs":{"772":{"tf":1.0}}},"1":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"770":{"tf":1.0}}},"1":{"df":1,"docs":{"769":{"tf":1.0}}},"2":{"df":1,"docs":{"768":{"tf":1.0}}},"3":{"df":1,"docs":{"767":{"tf":1.0}}},"4":{"df":1,"docs":{"766":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"765":{"tf":1.0}}},"1":{"df":1,"docs":{"764":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"756":{"tf":1.0}}},"1":{"df":1,"docs":{"755":{"tf":1.0}}},"2":{"df":1,"docs":{"754":{"tf":1.0}}},"3":{"df":1,"docs":{"753":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"752":{"tf":1.0}}},"1":{"df":1,"docs":{"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"750":{"tf":1.0}}},"1":{"df":1,"docs":{"749":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"748":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"747":{"tf":1.0}}},"1":{"df":1,"docs":{"746":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"745":{"tf":1.0}}},"1":{"df":1,"docs":{"744":{"tf":1.0}}},"2":{"df":1,"docs":{"743":{"tf":1.0}}},"3":{"df":1,"docs":{"742":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"741":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"736":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{".":{"0":{"df":1,"docs":{"735":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{".":{"0":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{".":{"0":{"df":1,"docs":{"733":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"732":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{"df":1,"docs":{"731":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{".":{"0":{"df":1,"docs":{"730":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"729":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{".":{"0":{"df":1,"docs":{"728":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{".":{"0":{".":{"0":{"df":1,"docs":{"727":{"tf":1.0}}},"1":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"725":{"tf":1.0}}},"1":{"df":1,"docs":{"724":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"722":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"721":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"720":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"df":1,"docs":{"719":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"718":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{".":{"0":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"117":{"tf":1.0},"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"468":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"685":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"218":{"tf":1.0},"352":{"tf":1.0},"363":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"690":{"tf":1.0},"691":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"672":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"272":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"247":{"tf":1.0},"250":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"181":{"tf":1.0},"182":{"tf":1.0},"712":{"tf":1.0},"957":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"673":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"711":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"256":{"tf":1.0},"83":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"107":{"tf":1.0},"86":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"694":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":8,"docs":{"20":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}
\ No newline at end of file
+{"doc_urls":["index.html#introduction","index.html#sections","index.html#user-guides","index.html#api-reference","index.html#sdk-specific-information","index.html#appendix","index.html#contact","index.html#license","user/adding-glean-to-your-project/index.html#adding-glean-to-your-project","user/adding-glean-to-your-project/index.html#glean-integration-checklist","user/adding-glean-to-your-project/kotlin.html#adding-glean-to-your-kotlin-project","user/adding-glean-to-your-project/kotlin.html#setting-up-the-dependency","user/adding-glean-to-your-project/kotlin.html#dependency-for-local-testing","user/adding-glean-to-your-project/kotlin.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/swift.html#adding-glean-to-your-swift-project","user/adding-glean-to-your-project/swift.html#requirements","user/adding-glean-to-your-project/swift.html#setting-up-the-dependency","user/adding-glean-to-your-project/swift.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/python.html#adding-glean-to-your-python-project","user/adding-glean-to-your-project/python.html#setting-up-the-dependency","user/adding-glean-to-your-project/python.html#consuming-yaml-registry-files","user/adding-glean-to-your-project/python.html#automation-steps","user/adding-glean-to-your-project/python.html#parallelism","user/adding-glean-to-your-project/rust.html#adding-glean-to-your-rust-project","user/adding-glean-to-your-project/rust.html#setting-up-the-dependency","user/adding-glean-to-your-project/rust.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/rust.html#glean-build-is-in-beta","user/adding-glean-to-your-project/rust.html#include-the-generated-code","user/adding-glean-to-your-project/rust.html#use-the-metrics","user/adding-glean-to-your-project/javascript.html#adding-glean-to-your-javascript-project","user/adding-glean-to-your-project/javascript.html#requirements","user/adding-glean-to-your-project/javascript.html#browser-extension-specific-requirements","user/adding-glean-to-your-project/javascript.html#setting-up-the-dependency","user/adding-glean-to-your-project/javascript.html#browser-extension-security-considerations","user/adding-glean-to-your-project/javascript.html#common-import-errors","user/adding-glean-to-your-project/javascript.html#setting-up-metrics-and-pings-code-generation","user/adding-glean-to-your-project/javascript.html#automation-steps","user/adding-glean-to-your-project/javascript.html#documentation","user/adding-glean-to-your-project/javascript.html#yaml-registry-files-linting","user/adding-glean-to-your-project/qt.html#adding-glean-to-your-qtqml-project","user/adding-glean-to-your-project/qt.html#requirements","user/adding-glean-to-your-project/qt.html#setting-up-the-dependency","user/adding-glean-to-your-project/qt.html#picking-the-correct-version","user/adding-glean-to-your-project/qt.html#consuming-yaml-registry-files","user/adding-glean-to-your-project/qt.html#make-sure-you-have-the-correct-glean_parser-version","user/adding-glean-to-your-project/qt.html#automation-steps","user/adding-glean-to-your-project/qt.html#documentation","user/adding-glean-to-your-project/qt.html#yaml-registry-files-linting","user/adding-glean-to-your-project/qt.html#debugging","user/adding-glean-to-your-project/qt.html#troubleshooting","user/adding-glean-to-your-project/qt.html#submitping-may-cause-crashes-when-debugging-ios-devices","user/adding-glean-to-your-project/server.html#adding-glean-to-your-server-application","user/adding-glean-to-your-project/server.html#differences-from-using-the-glean-sdk","user/adding-glean-to-your-project/server.html#when-to-use-server-side-collection","user/adding-glean-to-your-project/server.html#how-to-add-glean-server-side-collection-to-your-service","user/adding-glean-to-your-project/server.html#how-to-add-a-new-event-to-your-server-side-collection","user/adding-glean-to-your-project/server.html#technical-details---ingestion","user/adding-glean-to-your-project/enable-data-ingestion.html#enabling-data-to-be-ingested-by-the-data-platform","user/adding-glean-to-your-project/enable-data-ingestion.html#requirements","user/adding-glean-to-your-project/enable-data-ingestion.html#add-your-product-to-probe-scraper","user/adding-glean-to-your-project/enable-data-ingestion.html#validate-and-publish-metrics","user/adding-glean-to-your-project/enable-data-ingestion.html#add-your-library-to-probe-scraper","user/integrating-glean-for-product-managers.html#integrating-glean-for-product-managers","user/integrating-glean-for-product-managers.html#building-a-telemetry-plan","user/integrating-glean-for-product-managers.html#integrating-glean-into-your-product","user/integrating-glean-for-product-managers.html#optional-adapting-glean-to-your-platform","user/integrating-glean-for-product-managers.html#optional-designing-ping-submission","user/integrating-glean-for-product-managers.html#optional-new-metric-types","user/integrating-glean-for-product-managers.html#integrating-glean-into-glam","user/metrics/adding-new-metrics.html#adding-new-metrics","user/metrics/adding-new-metrics.html#table-of-contents","user/metrics/adding-new-metrics.html#process-overview","user/metrics/adding-new-metrics.html#choosing-a-metric-type","user/metrics/adding-new-metrics.html#is-it-a-single-measurement","user/metrics/adding-new-metrics.html#are-you-measuring-user-behavior","user/metrics/adding-new-metrics.html#are-you-counting-things","user/metrics/adding-new-metrics.html#are-you-measuring-time","user/metrics/adding-new-metrics.html#for-how-long-do-you-need-to-collect-this-data","user/metrics/adding-new-metrics.html#when-should-the-glean-sdk-automatically-clear-the-measurement","user/metrics/adding-new-metrics.html#a-lifetime-example","user/metrics/adding-new-metrics.html#what-if-none-of-these-lifetimes-are-appropriate","user/metrics/adding-new-metrics.html#what-should-this-new-metric-be-called","user/metrics/adding-new-metrics.html#reuse-names-from-other-applications","user/metrics/adding-new-metrics.html#make-names-unique-within-an-application","user/metrics/adding-new-metrics.html#be-as-specific-as-possible","user/metrics/adding-new-metrics.html#what-if-none-of-these-metric-types-is-the-right-fit","user/metrics/adding-new-metrics.html#how-do-i-make-sure-my-metric-is-working","user/metrics/adding-new-metrics.html#adding-the-metric-to-the-metricsyaml-file","user/metrics/adding-new-metrics.html#using-the-metric-from-your-code","user/metrics/adding-new-metrics.html#capitalization","user/metrics/adding-new-metrics.html#adding-new-metrics","user/metrics/adding-new-metrics.html#table-of-contents","user/metrics/adding-new-metrics.html#process-overview","user/metrics/adding-new-metrics.html#choosing-a-metric-type","user/metrics/adding-new-metrics.html#is-it-a-single-measurement","user/metrics/adding-new-metrics.html#are-you-measuring-user-behavior","user/metrics/adding-new-metrics.html#are-you-counting-things","user/metrics/adding-new-metrics.html#are-you-measuring-time","user/metrics/adding-new-metrics.html#for-how-long-do-you-need-to-collect-this-data","user/metrics/adding-new-metrics.html#when-should-the-glean-sdk-automatically-clear-the-measurement","user/metrics/adding-new-metrics.html#a-lifetime-example","user/metrics/adding-new-metrics.html#what-if-none-of-these-lifetimes-are-appropriate","user/metrics/adding-new-metrics.html#what-should-this-new-metric-be-called","user/metrics/adding-new-metrics.html#reuse-names-from-other-applications","user/metrics/adding-new-metrics.html#make-names-unique-within-an-application","user/metrics/adding-new-metrics.html#be-as-specific-as-possible","user/metrics/adding-new-metrics.html#what-if-none-of-these-metric-types-is-the-right-fit","user/metrics/adding-new-metrics.html#how-do-i-make-sure-my-metric-is-working","user/metrics/adding-new-metrics.html#adding-the-metric-to-the-metricsyaml-file","user/metrics/adding-new-metrics.html#using-the-metric-from-your-code","user/metrics/adding-new-metrics.html#capitalization","user/metrics/testing-metrics.html#unit-testing-glean-metrics","user/metrics/testing-metrics.html#example-of-using-the-test-api","user/metrics/testing-metrics.html#generating-testing-coverage-reports","user/metrics/testing-metrics.html#recording-coverage","user/metrics/testing-metrics.html#post-processing-the-results","user/metrics/testing-metrics.html#uploading-coverage","user/metrics/validation-checklist.html#validating-the-collected-data","user/metrics/validation-checklist.html#how-to-annotate-metrics-without-changing-the-source-code","user/metrics/validation-checklist.html#does-the-product-support-multiple-release-channels","user/metrics/error-reporting.html#error-reporting","user/collected-metrics/metrics.html#the-glean-javascript-sdk-provides-a-slightly-different-set-of-metrics-and-pings","user/collected-metrics/metrics.html#metrics","user/collected-metrics/metrics.html#pings","user/collected-metrics/metrics.html#all-pings","user/collected-metrics/metrics.html#baseline","user/collected-metrics/metrics.html#deletion-request","user/collected-metrics/metrics.html#metrics-1","user/pings/index.html#pings","user/pings/index.html#table-of-contents","user/pings/index.html#payload-structure","user/pings/index.html#the-ping_info-section","user/pings/index.html#the-client_info-section","user/pings/index.html#ping-submission","user/pings/index.html#url","user/pings/index.html#limitations","user/pings/index.html#submitted-headers","user/pings/custom.html#custom-pings","user/pings/custom.html#defining-a-custom-ping","user/pings/custom.html#sending-metrics-in-a-custom-ping","user/pings/custom.html#ping-metadata-must-be-loaded-before-sending","user/pings/custom.html#the-gleanrestarted-event","user/pings/custom.html#event-timestamps-throughout-application-restarts","user/pings/testing-custom-pings.html#testing-custom-pings","user/pings/testing-custom-pings.html#general-testing-strategy","user/pings/sent-by-glean.html#pings-sent-by-glean","user/pings/sent-by-glean.html#available-pings-per-platform","user/pings/sent-by-glean.html#defining-foreground-and-background-state","user/pings/sent-by-glean.html#foreground","user/pings/sent-by-glean.html#background","user/pings/sent-by-glean.html#foreground-1","user/pings/sent-by-glean.html#background-1","user/pings/baseline.html#the-baseline-ping","user/pings/baseline.html#description","user/pings/baseline.html#platform-availability","user/pings/baseline.html#scheduling","user/pings/baseline.html#contents","user/pings/baseline.html#querying-ping-contents","user/pings/baseline.html#example-baseline-ping","user/pings/deletion-request.html#the-deletion-request-ping","user/pings/deletion-request.html#description","user/pings/deletion-request.html#platform-availability","user/pings/deletion-request.html#scheduling","user/pings/deletion-request.html#contents","user/pings/deletion-request.html#example-deletion-request-ping","user/pings/events.html#the-events-ping","user/pings/events.html#description","user/pings/events.html#platform-availability","user/pings/events.html#scheduling","user/pings/events.html#python-and-javascript-caveats","user/pings/events.html#contents","user/pings/events.html#example-event-json","user/pings/metrics.html#the-metrics-ping","user/pings/metrics.html#description","user/pings/metrics.html#platform-availability","user/pings/metrics.html#scheduling","user/pings/metrics.html#contents","user/pings/metrics.html#querying-ping-contents","user/pings/metrics.html#scheduling-examples","user/pings/metrics.html#crossing-due-time-with-the-application-closed","user/pings/metrics.html#crossing-due-time-and-changing-timezones","user/pings/metrics.html#the-application-doesnt-run-in-a-week","user/pings/metrics.html#the-application-doesnt-run-for-a-week-and-when-its-finally-re-opened-the-timezone-has-changed","user/pings/metrics.html#the-user-changes-timezone-in-an-extreme-enough-fashion-that-they-cross-0400-twice-on-the-same-date","user/pings/ping-schedules-and-timings.html#ping-schedules-and-timings-overview","user/server-knobs/index.html#server-knobs-glean-data-control-plane","user/server-knobs/index.html#contents","user/server-knobs/metrics/index.html#data-control-plane-aka-server-knobs","user/server-knobs/metrics/index.html#contents","user/server-knobs/metrics/example-scenarios.html#example-scenarios","user/server-knobs/metrics/example-scenarios.html#scenario-1","user/server-knobs/metrics/example-scenarios.html#scenario-2","user/server-knobs/metrics/product-integration.html#product-integration","user/server-knobs/metrics/product-integration.html#desktop-feature-integration","user/server-knobs/metrics/product-integration.html#integration-option-1","user/server-knobs/metrics/product-integration.html#integration-option-2-advanced-use","user/server-knobs/metrics/product-integration.html#mobile-feature-integration","user/server-knobs/metrics/product-integration.html#integration-option-1-1","user/server-knobs/metrics/product-integration.html#integration-option-2-advanced-use-1","user/server-knobs/metrics/experimenter-configuration.html#experimenter-configuration","user/server-knobs/metrics/experimenter-configuration.html#example-configuration","user/server-knobs/metrics/advanced-topics.html#advanced-topics","user/server-knobs/metrics/advanced-topics.html#merging-of-configurations-from-multiple-features","user/server-knobs/metrics/advanced-topics.html#example","user/server-knobs/metrics/advanced-topics.html#merging-caveats","user/server-knobs/metrics/faq.html#frequently-asked-questions","user/server-knobs/pings/index.html#data-control-plane-aka-server-knobs","user/server-knobs/pings/index.html#contents","user/server-knobs/pings/product-integration.html#product-integration","user/server-knobs/pings/experimenter-configuration.html#experimenter-configuration","user/server-knobs/pings/experimenter-configuration.html#example-configuration","user/server-knobs/other/index.html#other-server-knobs","user/server-knobs/other/index.html#contents","user/server-knobs/other/max-events.html#max-events","user/server-knobs/other/max-events.html#example-configuration","user/debugging/index.html#debugging-products-using-the-glean-sdk","user/debugging/index.html#features","user/debugging/index.html#log-pings","user/debugging/index.html#debug-view-tag","user/debugging/index.html#source-tags","user/debugging/index.html#send-ping","user/debugging/index.html#debugging-methods","user/debugging/index.html#platform-specific-information","user/debugging/index.html#available-debugging-methods-per-platform","user/debugging/android.html#debugging-android-applications-using-the-glean-sdk","user/debugging/android.html#glean-kotlin-sdk-log-messages","user/debugging/android.html#android-studio","user/debugging/android.html#command-line","user/debugging/ios.html#debugging-ios-applications-using-the-glean-sdk","user/debugging/ios.html#enabling-debugging-features-in-ios-through-environment-variables","user/debugging/ios.html#enabling-debugging-features-in-ios-through-a-custom-url-scheme","user/debugging/ios.html#available-commands-and-query-format","user/debugging/ios.html#instrumenting-the-application-for-glean-swift-sdk-debug-functionality","user/debugging/ios.html#invoking-the-glean-ios-debug-commands","user/debugging/ios.html#glean-log-messages","user/debugging/python.html#debugging-python-applications-using-the-glean-sdk","user/debugging/python.html#sending-pings","user/debugging/python.html#logging-pings","user/debugging/python.html#simple-logging-api","user/debugging/python.html#flexible-logging-api","user/debugging/javascript.html#debugging-javascript-applications-using-gleanjs","user/debugging/javascript.html#debugging-in-the-browser","user/debugging/javascript.html#sending-pings","user/debugging/javascript.html#logging-pings","user/debugging/javascript.html#firefox","user/debugging/javascript.html#chromium-based-browsers","user/howto/index.html#how-tos","user/howto/index.html#server-knobs-walkthrough","user/howto/index.html#real-time-events","user/howto/index.html#telemetrydata-bug-investigation-recommendations","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#server-knobs-a-complete-walkthrough","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#purpose","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#audience","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#lets-get-started","user/howto/server-knobs-walkthrough/server-knobs-walkthrough.html#experiment-setup","user/howto/real-time-events/real-time-events.html#real-time-events","user/howto/real-time-events/real-time-events.html#defining-real-time-events-within-the-glean-sdk","user/howto/real-time-events/real-time-events.html#methods-to-achieve-this-with-glean","user/howto/real-time-events/real-time-events.html#option-1-configuring-glean-to-send-all-events-as-soon-as-they-are-recorded","user/howto/real-time-events/real-time-events.html#option-2-using-a-custom-ping-and-submitting-it-immediately-pings-as-events","user/howto/real-time-events/real-time-events.html#considerations","user/howto/real-time-events/real-time-events.html#what-real-time-glean-eventspings-are--not","user/howto/real-time-events/real-time-events.html#more-network-requests","user/howto/real-time-events/real-time-events.html#more-ingestion-endpoint-traffic","user/howto/real-time-events/real-time-events.html#storage-space-requirements","user/howto/investigating-data-issues/investigating-data-issues.html#telemetrydata-bug-investigation-recommendations","user/howto/investigating-data-issues/investigating-data-issues.html#1-countries","user/howto/investigating-data-issues/investigating-data-issues.html#2-isp-internet-service-provider","user/howto/investigating-data-issues/investigating-data-issues.html#3-product-version--build-id","user/howto/investigating-data-issues/investigating-data-issues.html#4-glean-sdk-version","user/howto/investigating-data-issues/investigating-data-issues.html#5-other-library-version-changes","user/howto/investigating-data-issues/investigating-data-issues.html#6-osplatform-sdk-version","user/howto/investigating-data-issues/investigating-data-issues.html#7-time-differences-startend_time-vs-submission_timestamp","user/howto/investigating-data-issues/investigating-data-issues.html#8-glean-errors","user/howto/investigating-data-issues/investigating-data-issues.html#9-hardware-details-manufacturerversion-mobile-platforms-only","user/howto/investigating-data-issues/investigating-data-issues.html#10-ping-reason","reference/yaml/index.html#yaml-registry-format","reference/yaml/index.html#metricsyaml-file","reference/yaml/index.html#pingsyaml-file","reference/yaml/index.html#tagsyaml-file","reference/yaml/metrics.html#metrics-yaml-registry-format","reference/yaml/metrics.html#note-on-the-naming-of-these-files","reference/yaml/metrics.html#file-structure","reference/yaml/metrics.html#schema","reference/yaml/metrics.html#tags","reference/yaml/metrics.html#category","reference/yaml/metrics.html#name","reference/yaml/metrics.html#metric-parameters","reference/yaml/metrics.html#required-parameters","reference/yaml/metrics.html#optional-parameters","reference/yaml/pings.html#pings-yaml-registry-format","reference/yaml/pings.html#note-on-the-naming-of-these-files","reference/yaml/pings.html#file-structure","reference/yaml/pings.html#schema","reference/yaml/pings.html#name","reference/yaml/pings.html#reserved-ping-names","reference/yaml/pings.html#ping-parameters","reference/yaml/pings.html#required-parameters","reference/yaml/pings.html#optional-parameters","reference/yaml/tags.html#tags-yaml-registry-format","reference/yaml/tags.html#note-on-the-naming-of-these-files","reference/yaml/tags.html#file-structure","reference/yaml/tags.html#schema","reference/yaml/tags.html#name","reference/yaml/tags.html#tag-parameters","reference/yaml/tags.html#required-parameters","reference/general/index.html#the-general-api","reference/general/index.html#the-api","reference/general/initializing.html#initializing","reference/general/initializing.html#libraries-are-not-required-to-initialize-glean","reference/general/initializing.html#behavior-when-uninitialized","reference/general/initializing.html#behavior-once-initialized","reference/general/initializing.html#when-upload-is-enabled","reference/general/initializing.html#when-upload-is-disabled","reference/general/initializing.html#api","reference/general/initializing.html#gleaninitializeconfiguration","reference/general/initializing.html#consuming-glean-through-android-components","reference/general/initializing.html#custom-uploaders","reference/general/initializing.html#testing-api","reference/general/initializing.html#reference","reference/general/toggling-upload-status.html#toggling-upload-status","reference/general/toggling-upload-status.html#disabling-upload","reference/general/toggling-upload-status.html#enabling-upload","reference/general/toggling-upload-status.html#api","reference/general/toggling-upload-status.html#gleansetuploadenabledboolean","reference/general/toggling-upload-status.html#reference","reference/general/experiments-api.html#using-the-experiments-api","reference/general/experiments-api.html#recording-api","reference/general/experiments-api.html#setexperimentactive","reference/general/experiments-api.html#setexperimentinactive","reference/general/experiments-api.html#set-an-experimentation-identifier","reference/general/experiments-api.html#testing-api","reference/general/experiments-api.html#testisexperimentactive","reference/general/experiments-api.html#testgetexperimentdata","reference/general/experiments-api.html#testgetexperimentationid","reference/general/experiments-api.html#reference","reference/general/register-custom-pings.html#registering-custom-pings","reference/general/register-custom-pings.html#api","reference/general/register-custom-pings.html#registerpings","reference/general/shutdown.html#shut-down","reference/general/shutdown.html#how-the-glean-sdks-execute-tasks","reference/general/shutdown.html#api","reference/general/shutdown.html#shutdown","reference/general/shutdown.html#reference","reference/general/glean-event-listener.html#glean-event-listener","reference/general/glean-event-listener.html#summary","reference/general/glean-event-listener.html#usage","reference/general/glean-event-listener.html#examples","reference/debug/index.html#debugging","reference/debug/index.html#platform-specific-information","reference/debug/index.html#features","reference/debug/index.html#log-pings","reference/debug/index.html#debug-view-tag","reference/debug/index.html#source-tags","reference/debug/index.html#send-pings","reference/debug/logPings.html#log-pings","reference/debug/logPings.html#on-how-to-access-logs","reference/debug/logPings.html#limits","reference/debug/logPings.html#api","reference/debug/logPings.html#setlogpings","reference/debug/logPings.html#getlogpings","reference/debug/logPings.html#environment-variable","reference/debug/logPings.html#glean_log_pings","reference/debug/debugViewTag.html#debug-view-tag","reference/debug/debugViewTag.html#limits","reference/debug/debugViewTag.html#api","reference/debug/debugViewTag.html#setdebugviewtag","reference/debug/debugViewTag.html#getdebugviewtag","reference/debug/debugViewTag.html#environment-variable","reference/debug/debugViewTag.html#glean_debug_view_tag","reference/debug/sourceTags.html#source-tags","reference/debug/sourceTags.html#limits","reference/debug/sourceTags.html#api","reference/debug/sourceTags.html#setsourcetags","reference/debug/sourceTags.html#environment-variable","reference/debug/sourceTags.html#glean_source_tags","reference/metrics/index.html#metrics","reference/metrics/index.html#labeled-metrics","reference/metrics/index.html#label-format","reference/metrics/index.html#adding-or-changing-metric-types","reference/metrics/index.html#deprecated-metrics","reference/metrics/boolean.html#boolean","reference/metrics/boolean.html#recording-api","reference/metrics/boolean.html#set","reference/metrics/boolean.html#testing-api","reference/metrics/boolean.html#testgetvalue","reference/metrics/boolean.html#testgetnumrecordederrors","reference/metrics/boolean.html#metric-parameters","reference/metrics/boolean.html#extra-metric-parameters","reference/metrics/boolean.html#data-questions","reference/metrics/boolean.html#reference","reference/metrics/labeled_booleans.html#labeled-booleans","reference/metrics/labeled_booleans.html#recording-api","reference/metrics/labeled_booleans.html#set","reference/metrics/labeled_booleans.html#testing-api","reference/metrics/labeled_booleans.html#testgetvalue","reference/metrics/labeled_booleans.html#testgetnumrecordederrors","reference/metrics/labeled_booleans.html#metric-parameters","reference/metrics/labeled_booleans.html#extra-metric-parameters","reference/metrics/labeled_booleans.html#data-questions","reference/metrics/labeled_booleans.html#reference","reference/metrics/counter.html#counter","reference/metrics/counter.html#let-the-glean-metric-do-the-counting","reference/metrics/counter.html#recording-api","reference/metrics/counter.html#add","reference/metrics/counter.html#testing-api","reference/metrics/counter.html#testgetvalue","reference/metrics/counter.html#testgetnumrecordederrors","reference/metrics/counter.html#metric-parameters","reference/metrics/counter.html#extra-metric-parameters","reference/metrics/counter.html#data-questions","reference/metrics/counter.html#reference","reference/metrics/labeled_counters.html#labeled-counters","reference/metrics/labeled_counters.html#recording-api","reference/metrics/labeled_counters.html#add","reference/metrics/labeled_counters.html#testing-api","reference/metrics/labeled_counters.html#testgetvalue","reference/metrics/labeled_counters.html#testgetnumrecordederrors","reference/metrics/labeled_counters.html#metric-parameters","reference/metrics/labeled_counters.html#extra-metric-parameters","reference/metrics/labeled_counters.html#data-questions","reference/metrics/labeled_counters.html#reference","reference/metrics/string.html#strings","reference/metrics/string.html#important","reference/metrics/string.html#recording-api","reference/metrics/string.html#set","reference/metrics/string.html#testing-api","reference/metrics/string.html#testgetvalue","reference/metrics/string.html#testgetnumrecordederrors","reference/metrics/string.html#metric-parameters","reference/metrics/string.html#extra-metric-parameters","reference/metrics/string.html#data-questions","reference/metrics/string.html#reference","reference/metrics/labeled_strings.html#labeled-strings","reference/metrics/labeled_strings.html#recording-api","reference/metrics/labeled_strings.html#set","reference/metrics/labeled_strings.html#testing-api","reference/metrics/labeled_strings.html#testgetvalue","reference/metrics/labeled_strings.html#testgetnumrecordederrors","reference/metrics/labeled_strings.html#metric-parameters","reference/metrics/labeled_strings.html#extra-metric-parameters","reference/metrics/labeled_strings.html#data-questions","reference/metrics/labeled_strings.html#reference","reference/metrics/string_list.html#string-list","reference/metrics/string_list.html#recording-api","reference/metrics/string_list.html#add","reference/metrics/string_list.html#set","reference/metrics/string_list.html#testing-api","reference/metrics/string_list.html#testgetvalue","reference/metrics/string_list.html#testgetnumrecordederrors","reference/metrics/string_list.html#metric-parameters","reference/metrics/string_list.html#extra-metric-parameters","reference/metrics/string_list.html#data-questions","reference/metrics/string_list.html#reference","reference/metrics/timespan.html#timespan","reference/metrics/timespan.html#recording-api","reference/metrics/timespan.html#start","reference/metrics/timespan.html#stop","reference/metrics/timespan.html#cancel","reference/metrics/timespan.html#measure","reference/metrics/timespan.html#setrawnanos","reference/metrics/timespan.html#only-use-this-if-you-have-to","reference/metrics/timespan.html#these-are-different","reference/metrics/timespan.html#testing-api","reference/metrics/timespan.html#testgetvalue","reference/metrics/timespan.html#testgetnumrecordederrors","reference/metrics/timespan.html#metric-parameters","reference/metrics/timespan.html#extra-metric-parameters","reference/metrics/timespan.html#values-are-truncated","reference/metrics/timespan.html#data-questions","reference/metrics/timespan.html#reference","reference/metrics/timing_distribution.html#timing-distribution","reference/metrics/timing_distribution.html#recording-api","reference/metrics/timing_distribution.html#start","reference/metrics/timing_distribution.html#stopandaccumulate","reference/metrics/timing_distribution.html#accumulatesamples","reference/metrics/timing_distribution.html#accumulatesinglesample","reference/metrics/timing_distribution.html#measure","reference/metrics/timing_distribution.html#cancel","reference/metrics/timing_distribution.html#testing-api","reference/metrics/timing_distribution.html#testgetvalue","reference/metrics/timing_distribution.html#testgetnumrecordederrors","reference/metrics/timing_distribution.html#metric-parameters","reference/metrics/timing_distribution.html#extra-metric-parameters","reference/metrics/timing_distribution.html#limits","reference/metrics/timing_distribution.html#data-questions","reference/metrics/timing_distribution.html#reference","reference/metrics/timing_distribution.html#simulator","reference/metrics/labeled_timing_distributions.html#labeled-timing-distributions","reference/metrics/labeled_timing_distributions.html#recording-api","reference/metrics/labeled_timing_distributions.html#start","reference/metrics/labeled_timing_distributions.html#stopandaccumulate","reference/metrics/labeled_timing_distributions.html#cancel","reference/metrics/labeled_timing_distributions.html#accumulatesamples","reference/metrics/labeled_timing_distributions.html#accumulatesinglesample","reference/metrics/labeled_timing_distributions.html#testing-api","reference/metrics/labeled_timing_distributions.html#testgetvalue","reference/metrics/labeled_timing_distributions.html#testgetnumrecordederrors","reference/metrics/labeled_timing_distributions.html#metric-parameters","reference/metrics/labeled_timing_distributions.html#extra-metric-parameters","reference/metrics/labeled_timing_distributions.html#data-questions","reference/metrics/labeled_timing_distributions.html#limits","reference/metrics/labeled_timing_distributions.html#reference","reference/metrics/memory_distribution.html#memory-distribution","reference/metrics/memory_distribution.html#recording-api","reference/metrics/memory_distribution.html#accumulate","reference/metrics/memory_distribution.html#testing-api","reference/metrics/memory_distribution.html#testgetvalue","reference/metrics/memory_distribution.html#testgetnumrecordederrors","reference/metrics/memory_distribution.html#metric-parameters","reference/metrics/memory_distribution.html#extra-metric-parameters","reference/metrics/memory_distribution.html#limits","reference/metrics/memory_distribution.html#data-questions","reference/metrics/memory_distribution.html#reference","reference/metrics/memory_distribution.html#simulator","reference/metrics/labeled_memory_distributions.html#labeled-memory-distributions","reference/metrics/labeled_memory_distributions.html#recording-api","reference/metrics/labeled_memory_distributions.html#accumulate","reference/metrics/labeled_memory_distributions.html#testing-api","reference/metrics/labeled_memory_distributions.html#testgetvalue","reference/metrics/labeled_memory_distributions.html#testgetnumrecordederrors","reference/metrics/labeled_memory_distributions.html#metric-parameters","reference/metrics/labeled_memory_distributions.html#extra-metric-parameters","reference/metrics/labeled_memory_distributions.html#data-questions","reference/metrics/labeled_memory_distributions.html#limits","reference/metrics/labeled_memory_distributions.html#reference","reference/metrics/uuid.html#uuid","reference/metrics/uuid.html#recording-api","reference/metrics/uuid.html#generateandset","reference/metrics/uuid.html#set","reference/metrics/uuid.html#testing-api","reference/metrics/uuid.html#testgetvalue","reference/metrics/uuid.html#testgetnumrecordederrors","reference/metrics/uuid.html#metric-parameters","reference/metrics/uuid.html#extra-metric-parameters","reference/metrics/uuid.html#data-questions","reference/metrics/uuid.html#reference","reference/metrics/url.html#url","reference/metrics/url.html#important","reference/metrics/url.html#recording-api","reference/metrics/url.html#set","reference/metrics/url.html#seturl","reference/metrics/url.html#testing-api","reference/metrics/url.html#testgetvalue","reference/metrics/url.html#testgetnumrecordederrors","reference/metrics/url.html#metric-parameters","reference/metrics/url.html#note-on-data_sensitivity-of-url-metrics","reference/metrics/url.html#extra-metric-parameters","reference/metrics/url.html#data-questions","reference/metrics/datetime.html#datetime","reference/metrics/datetime.html#recording-api","reference/metrics/datetime.html#set","reference/metrics/datetime.html#testing-api","reference/metrics/datetime.html#testgetvalue","reference/metrics/datetime.html#testgetvalueasstring","reference/metrics/datetime.html#testgetnumrecordederrors","reference/metrics/datetime.html#metric-parameters","reference/metrics/datetime.html#extra-metric-parameters","reference/metrics/datetime.html#data-questions","reference/metrics/datetime.html#reference","reference/metrics/event.html#events","reference/metrics/event.html#immediate-submission-or-batching","reference/metrics/event.html#recording-api","reference/metrics/event.html#recordobject","reference/metrics/event.html#testing-api","reference/metrics/event.html#testgetvalue","reference/metrics/event.html#testgetnumrecordederrors","reference/metrics/event.html#metric-parameters","reference/metrics/event.html#extra-metric-parameters","reference/metrics/event.html#data-questions","reference/metrics/event.html#limits","reference/metrics/event.html#reference","reference/metrics/custom_distribution.html#custom-distribution","reference/metrics/custom_distribution.html#recording-api","reference/metrics/custom_distribution.html#accumulatesamples","reference/metrics/custom_distribution.html#accumulatesinglesample","reference/metrics/custom_distribution.html#testing-api","reference/metrics/custom_distribution.html#testgetvalue","reference/metrics/custom_distribution.html#testgetnumrecordederrors","reference/metrics/custom_distribution.html#metric-parameters","reference/metrics/custom_distribution.html#extra-metric-parameters","reference/metrics/custom_distribution.html#reference","reference/metrics/custom_distribution.html#simulator","reference/metrics/labeled_custom_distributions.html#labeled-custom-distributions","reference/metrics/labeled_custom_distributions.html#recording-api","reference/metrics/labeled_custom_distributions.html#accumulatesamples","reference/metrics/labeled_custom_distributions.html#accumulatesinglesample","reference/metrics/labeled_custom_distributions.html#testing-api","reference/metrics/labeled_custom_distributions.html#testgetvalue","reference/metrics/labeled_custom_distributions.html#testgetnumrecordederrors","reference/metrics/labeled_custom_distributions.html#metric-parameters","reference/metrics/labeled_custom_distributions.html#extra-metric-parameters","reference/metrics/labeled_custom_distributions.html#data-questions","reference/metrics/labeled_custom_distributions.html#limits","reference/metrics/labeled_custom_distributions.html#reference","reference/metrics/quantity.html#quantity","reference/metrics/quantity.html#do-not-use-quantity-for-counting","reference/metrics/quantity.html#recording-api","reference/metrics/quantity.html#set","reference/metrics/quantity.html#testing-api","reference/metrics/quantity.html#testgetvalue","reference/metrics/quantity.html#testgetnumrecordederrors","reference/metrics/quantity.html#metric-parameters","reference/metrics/quantity.html#extra-metric-parameters","reference/metrics/quantity.html#data-questions","reference/metrics/quantity.html#reference","reference/metrics/labeled_quantity.html#labeled-quantities","reference/metrics/labeled_quantity.html#do-not-use-labeled-quantity-metrics-for-counting","reference/metrics/labeled_quantity.html#recording-api","reference/metrics/labeled_quantity.html#set","reference/metrics/labeled_quantity.html#testing-api","reference/metrics/labeled_quantity.html#testgetvalue","reference/metrics/labeled_quantity.html#testgetnumrecordederrors","reference/metrics/labeled_quantity.html#metric-parameters","reference/metrics/labeled_quantity.html#extra-metric-parameters","reference/metrics/labeled_quantity.html#data-questions","reference/metrics/labeled_quantity.html#limits","reference/metrics/labeled_quantity.html#reference","reference/metrics/rate.html#rate","reference/metrics/rate.html#let-the-glean-metric-do-the-counting","reference/metrics/rate.html#recording-api","reference/metrics/rate.html#addtonumerator--addtodenominator","reference/metrics/rate.html#testing-api","reference/metrics/rate.html#testgetvalue","reference/metrics/rate.html#testgetnumrecordederrors","reference/metrics/rate.html#metric-parameters","reference/metrics/rate.html#external-denominators","reference/metrics/rate.html#data-questions","reference/metrics/rate.html#reference","reference/metrics/text.html#text","reference/metrics/text.html#important","reference/metrics/text.html#recording-api","reference/metrics/text.html#set","reference/metrics/text.html#testing-api","reference/metrics/text.html#testgetvalue","reference/metrics/text.html#testgetnumrecordederrors","reference/metrics/text.html#metric-parameters","reference/metrics/text.html#data-questions","reference/metrics/object.html#object","reference/metrics/object.html#recording-api","reference/metrics/object.html#set","reference/metrics/object.html#testing-api","reference/metrics/object.html#testgetvalue","reference/metrics/object.html#testgetnumrecordederrors","reference/metrics/object.html#metric-parameters","reference/metrics/object.html#example-object-metric-definition","reference/metrics/object.html#data-questions","reference/pings/index.html#pings","reference/pings/index.html#submission-api","reference/pings/index.html#submit","reference/pings/index.html#testing-api","reference/pings/index.html#getregisteredpingnames","reference/pings/index.html#testbeforenextsubmit","language-bindings/index.html#overview","language-bindings/index.html#rust-core-based-sdks","language-bindings/index.html#rust","language-bindings/index.html#kotlin","language-bindings/index.html#swift","language-bindings/index.html#python","language-bindings/index.html#javascript-core-based-sdks","language-bindings/index.html#javascript","language-bindings/index.html#qml","language-bindings/android/index.html#android-specific-information","language-bindings/android/android-build-configuration-options.html#android-build-script-configuration-options","language-bindings/android/android-build-configuration-options.html#gleanbuilddate","language-bindings/android/android-build-configuration-options.html#allowmetricsfromaar","language-bindings/android/android-build-configuration-options.html#gleangeneratemarkdowndocs","language-bindings/android/android-build-configuration-options.html#gleandocsdirectory","language-bindings/android/android-build-configuration-options.html#gleanyamlfiles","language-bindings/android/android-build-configuration-options.html#gleanexpirebyversion","language-bindings/android/android-build-configuration-options.html#gleanpythonenvdir","language-bindings/android/android-offline-builds.html#offline-builds-of-android-applications-that-use-glean","language-bindings/android/android-offline-builds.html#provide-an-externally-managed-virtualenv","language-bindings/android/android-offline-builds.html#provide-a-python-interpreter-and-the-required-wheels","language-bindings/android/instrument-android-crashes-example.html#instrumenting-android-crashes-with-the-glean-sdk","language-bindings/android/instrument-android-crashes-example.html#before-you-start","language-bindings/android/instrument-android-crashes-example.html#setup-build-configuration","language-bindings/android/instrument-android-crashes-example.html#add-a-custom-metric","language-bindings/android/instrument-android-crashes-example.html#add-a-custom-ping","language-bindings/android/instrument-android-crashes-example.html#instrument-the-app-to-record-the-event","language-bindings/android/instrument-android-crashes-example.html#next-steps","language-bindings/ios/index.html#ios-specific-information","language-bindings/ios/ios-build-configuration-options.html#ios-build-script-configuration-options","language-bindings/ios/ios-build-configuration-options.html#--output----o-path","language-bindings/ios/ios-build-configuration-options.html#--build-date----b","language-bindings/ios/ios-build-configuration-options.html#--expire-by-version","language-bindings/ios/ios-build-configuration-options.html#--markdown----m","language-bindings/ios/ios-build-configuration-options.html#--glean-namespace----g","language-bindings/javascript/index.html#glean-javascript-sdk","language-bindings/javascript/cli.html#command-line-interface","language-bindings/javascript/cli.html#customizing-virtual-environment","language-bindings/javascript/cli.html#what-if-the-glean-command-is-called-from-inside-an-active-virtual-environment","language-bindings/javascript/cli.html#preventing-automatic-installation-of-glean_parser","language-bindings/javascript/plugins/index.html#plugins","language-bindings/javascript/plugins/index.html#on-writing-your-own-plugins","language-bindings/javascript/plugins/index.html#available-plugins","language-bindings/javascript/plugins/index.html#pingencryptionplugin","language-bindings/javascript/plugins/encryption.html#pingencryptionplugin","language-bindings/javascript/plugins/encryption.html#requesting-an-encryption-key","language-bindings/javascript/plugins/encryption.html#usage","language-bindings/javascript/plugins/encryption.html#entry-point","language-bindings/javascript/plugins/encryption.html#instantiating","appendix/glossary.html#glossary","appendix/glossary.html#glean","appendix/glossary.html#glean-pipeline","appendix/glossary.html#glean-sdks","appendix/glossary.html#glean-sdks-book","appendix/glossary.html#glean-tools","appendix/glossary.html#metric","appendix/glossary.html#ping","appendix/glossary.html#submission","appendix/glossary.html#measurement-window","appendix/glossary.html#this-week-in-glean-twig","appendix/changelog/index.html#changelog","appendix/changelog/sdk.html#unreleased-changes","appendix/changelog/sdk.html#v6300-2024-11-28","appendix/changelog/sdk.html#v6200-2024-11-05","appendix/changelog/sdk.html#v6120-2024-10-07","appendix/changelog/sdk.html#v6110-2024-09-24","appendix/changelog/sdk.html#v6100-2024-08-21","appendix/changelog/sdk.html#v6050-2024-08-06","appendix/changelog/sdk.html#v6040-2024-07-23","appendix/changelog/sdk.html#v6030-2024-05-31","appendix/changelog/sdk.html#v6020-2024-05-23","appendix/changelog/sdk.html#v6011-2024-05-31","appendix/changelog/sdk.html#v6010-2024-05-06","appendix/changelog/sdk.html#v6001-2024-05-31","appendix/changelog/sdk.html#v6000-2024-04-22","appendix/changelog/sdk.html#v5900-2024-03-28","appendix/changelog/sdk.html#v5810-2024-03-12","appendix/changelog/sdk.html#v5800-2024-02-29","appendix/changelog/sdk.html#v5700-2024-02-12","appendix/changelog/sdk.html#v5610-2024-01-16","appendix/changelog/sdk.html#v5600-2023-11-30","appendix/changelog/sdk.html#v5500-2023-10-23","appendix/changelog/sdk.html#v5400-2023-09-12","appendix/changelog/sdk.html#v5320-2023-08-02","appendix/changelog/sdk.html#v5310-2023-06-28","appendix/changelog/sdk.html#v5300-2023-06-07","appendix/changelog/sdk.html#v5270-2023-05-10","appendix/changelog/sdk.html#v5260-2023-04-20","appendix/changelog/sdk.html#v5250-2023-04-11","appendix/changelog/sdk.html#v5243-2023-03-24","appendix/changelog/sdk.html#v5242-2023-03-15","appendix/changelog/sdk.html#v5241-2023-03-10","appendix/changelog/sdk.html#v5240-2023-03-09","appendix/changelog/sdk.html#v5231-2023-03-01","appendix/changelog/sdk.html#v5230-2023-02-23","appendix/changelog/sdk.html#v5220-2023-01-30","appendix/changelog/sdk.html#v5211-2023-01-26","appendix/changelog/sdk.html#v5210-2023-01-26","appendix/changelog/sdk.html#v5201-2023-01-19","appendix/changelog/sdk.html#v5200-2022-12-13","appendix/changelog/sdk.html#v5183-2022-11-25","appendix/changelog/sdk.html#v5182-2022-11-17","appendix/changelog/sdk.html#v5181-2022-11-15","appendix/changelog/sdk.html#v5180-2022-11-03","appendix/changelog/sdk.html#v5170-2022-10-25","appendix/changelog/sdk.html#v5160-2022-10-24","appendix/changelog/sdk.html#v5150-2022-10-18","appendix/changelog/sdk.html#v5140-2022-10-04","appendix/changelog/sdk.html#v5130-2022-09-28","appendix/changelog/sdk.html#v5120-2022-09-08","appendix/changelog/sdk.html#v5110-2022-08-08","appendix/changelog/sdk.html#v5101-2022-07-26","appendix/changelog/sdk.html#v5100-2022-07-22","appendix/changelog/sdk.html#v5014-2022-08-01","appendix/changelog/sdk.html#v5013-2022-07-26","appendix/changelog/sdk.html#v5012-2022-07-08","appendix/changelog/sdk.html#v5011-2022-06-17","appendix/changelog/sdk.html#v5010-2022-06-15","appendix/changelog/sdk.html#v5001-2022-05-25","appendix/changelog/sdk.html#v5000-2022-05-20","appendix/changelog/sdk.html#v4420-2022-05-16","appendix/changelog/sdk.html#v4411-2022-04-14","appendix/changelog/sdk.html#v4410-2022-04-06","appendix/changelog/sdk.html#v4400-2022-02-09","appendix/changelog/sdk.html#v4302-2022-01-17","appendix/changelog/sdk.html#v4301-2022-01-17","appendix/changelog/sdk.html#v4300-2022-01-17","appendix/changelog/sdk.html#v4232-2021-12-15","appendix/changelog/sdk.html#v4231-2021-12-07","appendix/changelog/sdk.html#v4230-2021-12-07","appendix/changelog/sdk.html#v4220-2021-11-03","appendix/changelog/sdk.html#v4210-2021-10-18","appendix/changelog/sdk.html#v4201-2021-10-11","appendix/changelog/sdk.html#v4200-2021-10-06","appendix/changelog/sdk.html#v4111-2021-09-29","appendix/changelog/sdk.html#v4110-2021-09-16","appendix/changelog/sdk.html#v4100-2021-09-13","appendix/changelog/sdk.html#v4020-2021-09-08","appendix/changelog/sdk.html#v4011-2021-09-02","appendix/changelog/sdk.html#v4010-2021-08-25","appendix/changelog/sdk.html#v4000-2021-07-28","appendix/changelog/sdk.html#v3910-2021-07-26","appendix/changelog/sdk.html#v3904-2021-07-26","appendix/changelog/sdk.html#v3903-2021-06-09","appendix/changelog/sdk.html#v3902-2021-06-07","appendix/changelog/sdk.html#v3901-2021-06-04","appendix/changelog/sdk.html#v3900-2021-05-31","appendix/changelog/sdk.html#v3801-2021-05-17","appendix/changelog/sdk.html#v3800-2021-05-12","appendix/changelog/sdk.html#v3700-2021-04-30","appendix/changelog/sdk.html#v3601-2021-04-09","appendix/changelog/sdk.html#v3600-2021-03-16","appendix/changelog/sdk.html#v3500-2021-02-22","appendix/changelog/sdk.html#v3410-2021-02-04","appendix/changelog/sdk.html#v3400-2021-01-29","appendix/changelog/sdk.html#v33103-2021-01-18","appendix/changelog/sdk.html#v33102-2021-01-15","appendix/changelog/sdk.html#v33101-2021-01-06","appendix/changelog/sdk.html#v33100-2021-01-06","appendix/changelog/sdk.html#v3391-2020-12-17","appendix/changelog/sdk.html#v3390-2020-12-15","appendix/changelog/sdk.html#v3380-2020-12-10","appendix/changelog/sdk.html#v3370-2020-12-07","appendix/changelog/sdk.html#v3360-2020-12-02","appendix/changelog/sdk.html#v3350-2020-12-01","appendix/changelog/sdk.html#v3340-2020-11-17","appendix/changelog/sdk.html#v3330-2020-11-12","appendix/changelog/sdk.html#v3320-2020-11-10","appendix/changelog/sdk.html#v3312-2020-11-04","appendix/changelog/sdk.html#v3311-2020-11-04","appendix/changelog/sdk.html#v3310-2020-11-04","appendix/changelog/sdk.html#v3304-2020-09-28","appendix/changelog/sdk.html#v3303-2020-09-25","appendix/changelog/sdk.html#v3302-2020-09-25","appendix/changelog/sdk.html#v3301-2020-09-24","appendix/changelog/sdk.html#v3300-2020-09-22","appendix/changelog/sdk.html#v3241-2020-10-01","appendix/changelog/sdk.html#v3240-2020-09-18","appendix/changelog/sdk.html#v3232-2020-09-11","appendix/changelog/sdk.html#v3231-2020-09-09","appendix/changelog/sdk.html#v3230-2020-08-27","appendix/changelog/sdk.html#v3220-2020-08-25","appendix/changelog/sdk.html#v3211-2020-08-24","appendix/changelog/sdk.html#v3210-2020-08-17","appendix/changelog/sdk.html#v3200-2020-08-03","appendix/changelog/sdk.html#v3160-2020-07-24","appendix/changelog/sdk.html#v3150-2020-07-22","appendix/changelog/sdk.html#v3141-2020-07-20","appendix/changelog/sdk.html#v3140-2020-07-16","appendix/changelog/sdk.html#v3130-2020-07-10","appendix/changelog/sdk.html#v3123-2020-06-29","appendix/changelog/sdk.html#v3122-2020-06-26","appendix/changelog/sdk.html#v3121-2020-06-25","appendix/changelog/sdk.html#v3120-2020-06-24","appendix/changelog/sdk.html#v3112-2020-06-23","appendix/changelog/sdk.html#v3111-2020-06-12","appendix/changelog/sdk.html#v3110-2020-06-11","appendix/changelog/sdk.html#v3102-2020-05-29","appendix/changelog/sdk.html#v3101-2020-05-29","appendix/changelog/sdk.html#v3100-2020-05-28","appendix/changelog/sdk.html#v3010-2020-05-22","appendix/changelog/sdk.html#v3000-2020-05-13","appendix/changelog/sdk.html#v2912-2021-01-26","appendix/changelog/sdk.html#v2911-2020-05-22","appendix/changelog/sdk.html#v2910-2020-05-11","appendix/changelog/sdk.html#v2900-2020-05-05","appendix/changelog/sdk.html#v2800-2020-04-23","appendix/changelog/sdk.html#v2710-2020-04-09","appendix/changelog/sdk.html#v2700-2020-04-08","appendix/changelog/sdk.html#v2600-2020-03-27","appendix/changelog/sdk.html#v2510-2020-02-26","appendix/changelog/sdk.html#v2500-2020-02-17","appendix/changelog/sdk.html#v2420-2020-02-11","appendix/changelog/sdk.html#v2410-2020-01-16","appendix/changelog/sdk.html#v2400-2020-01-14","appendix/changelog/sdk.html#v2301-2020-01-08","appendix/changelog/sdk.html#v2300-2020-01-07","appendix/changelog/sdk.html#v2210-2019-12-17","appendix/changelog/sdk.html#v2200-2019-12-05","appendix/changelog/sdk.html#v2130-2019-12-03","appendix/changelog/sdk.html#v2120-2019-11-21","appendix/changelog/sdk.html#v2111-2019-11-20","appendix/changelog/sdk.html#v2110-2019-11-20","appendix/changelog/sdk.html#v2100-2019-11-18","appendix/changelog/sdk.html#v2020-2019-11-11","appendix/changelog/sdk.html#v2010-2019-11-11","appendix/changelog/sdk.html#v2000-2019-11-11","appendix/changelog/sdk.html#v1910-2019-10-29","appendix/changelog/sdk.html#v1900-2019-10-22","appendix/changelog/sdk.html#v001-testing6-2019-10-18","appendix/changelog/sdk.html#v001-testing5-2019-10-10","appendix/changelog/sdk.html#v001-testing4-2019-10-09","appendix/changelog/sdk.html#v001-testing3-2019-10-08","appendix/changelog/sdk.html#v001-testing2-2019-10-07","appendix/changelog/sdk.html#v001-testing1-2019-10-02","appendix/changelog/sdk.html#general","appendix/changelog/js.html#unreleased-changes","appendix/changelog/js.html#v503-2024-08-02","appendix/changelog/js.html#v502-2024-05-23","appendix/changelog/js.html#v501-2024-04-30","appendix/changelog/js.html#v500-2024-03-25","appendix/changelog/js.html#v500-pre0-2024-03-21","appendix/changelog/js.html#v410-pre0-2024-03-05","appendix/changelog/js.html#v400-2024-01-24","appendix/changelog/js.html#v400-pre3-2023-12-22","appendix/changelog/js.html#v400-pre2-2023-12-06","appendix/changelog/js.html#v400-pre1-2023-12-01","appendix/changelog/js.html#v400-pre0-2023-11-27","appendix/changelog/js.html#v300-2023-11-16","appendix/changelog/js.html#v300-pre1-2023-11-15","appendix/changelog/js.html#v300-pre0-2023-11-10","appendix/changelog/js.html#v205-2023-10-16","appendix/changelog/js.html#v204-2023-10-10","appendix/changelog/js.html#v203-2023-09-27","appendix/changelog/js.html#v202-2023-09-14","appendix/changelog/js.html#v201-2023-08-11","appendix/changelog/js.html#v200-2023-08-03","appendix/changelog/js.html#v140-2023-05-10","appendix/changelog/js.html#v130-2022-10-18","appendix/changelog/js.html#v120-2022-09-21","appendix/changelog/js.html#v110-2022-07-18","appendix/changelog/js.html#v100-2022-03-17","appendix/changelog/js.html#v0320-2022-03-01","appendix/changelog/js.html#v0310-2022-01-25","appendix/changelog/js.html#v0300-2022-01-10","appendix/changelog/js.html#v0290-2022-01-04","appendix/changelog/js.html#v0280-2021-12-08","appendix/changelog/js.html#v0270-2021-11-22","appendix/changelog/js.html#v0260-2021-11-19","appendix/changelog/js.html#v0250-2021-11-15","appendix/changelog/js.html#v0240-2021-11-04","appendix/changelog/js.html#v0230-2021-10-12","appendix/changelog/js.html#v0220-2021-10-06","appendix/changelog/js.html#v0211-2021-09-30","appendix/changelog/js.html#v0210-2021-09-30","appendix/changelog/js.html#v0200-2021-09-17","appendix/changelog/js.html#v0190-2021-09-03","appendix/changelog/js.html#v0181-2021-07-22","appendix/changelog/js.html#v0180-2021-07-20","appendix/changelog/js.html#v0170-2021-07-16","appendix/changelog/js.html#v0160-2021-07-06","appendix/changelog/js.html#v0150-2021-06-03","appendix/changelog/js.html#v0141-2021-05-21","appendix/changelog/js.html#v0140-2021-05-19","appendix/changelog/js.html#v0130-2021-05-18","appendix/changelog/js.html#v0120-2021-05-11","appendix/changelog/js.html#v0110-2021-05-03","appendix/changelog/js.html#v0102-2021-04-26","appendix/changelog/js.html#v0101-2021-04-26","appendix/changelog/js.html#v0100-2021-04-20","appendix/changelog/js.html#v092-2021-04-19","appendix/changelog/js.html#v091-2021-04-19","appendix/changelog/js.html#v090-2021-04-19","appendix/changelog/js.html#v081-2021-04-14","appendix/changelog/js.html#v080-2021-04-13","appendix/changelog/js.html#v070-2021-03-26","appendix/changelog/js.html#v061-2021-03-22","appendix/changelog/js.html#v060-2021-03-22","appendix/changelog/js.html#v050-2021-03-18","appendix/changelog/js.html#v040-2021-03-10","appendix/changelog/js.html#v030-2021-02-24","appendix/changelog/js.html#v020-2021-02-23","appendix/changelog/js.html#v011-2021-02-17","appendix/changelog/js.html#v010-2021-02-17","appendix/twig.html#this-week-in-glean-twig","appendix/twig.html#blog-posts","appendix/contribution-guidelines.html#contribution-guidelines","appendix/contribution-guidelines.html#table-of-contents","appendix/contribution-guidelines.html#where-to-add-new-content","appendix/contribution-guidelines.html#overview","appendix/contribution-guidelines.html#user-guides","appendix/contribution-guidelines.html#api-reference","appendix/contribution-guidelines.html#sdk-specific-information","appendix/contribution-guidelines.html#appendix","appendix/contribution-guidelines.html#in-which-format-to-present-content","appendix/contribution-guidelines.html#general-guidelines","appendix/contribution-guidelines.html#custom-elements"],"index":{"documentStore":{"docInfo":{"0":{"body":106,"breadcrumbs":2,"title":1},"1":{"body":0,"breadcrumbs":2,"title":1},"10":{"body":33,"breadcrumbs":8,"title":4},"100":{"body":275,"breadcrumbs":6,"title":2},"101":{"body":50,"breadcrumbs":7,"title":3},"102":{"body":6,"breadcrumbs":7,"title":3},"103":{"body":60,"breadcrumbs":7,"title":3},"104":{"body":71,"breadcrumbs":9,"title":5},"105":{"body":37,"breadcrumbs":6,"title":2},"106":{"body":26,"breadcrumbs":9,"title":5},"107":{"body":64,"breadcrumbs":8,"title":4},"108":{"body":57,"breadcrumbs":8,"title":4},"109":{"body":43,"breadcrumbs":7,"title":3},"11":{"body":94,"breadcrumbs":7,"title":3},"110":{"body":155,"breadcrumbs":5,"title":1},"111":{"body":64,"breadcrumbs":7,"title":4},"112":{"body":142,"breadcrumbs":7,"title":4},"113":{"body":23,"breadcrumbs":7,"title":4},"114":{"body":31,"breadcrumbs":5,"title":2},"115":{"body":105,"breadcrumbs":6,"title":3},"116":{"body":29,"breadcrumbs":5,"title":2},"117":{"body":179,"breadcrumbs":6,"title":3},"118":{"body":34,"breadcrumbs":9,"title":6},"119":{"body":28,"breadcrumbs":8,"title":5},"12":{"body":44,"breadcrumbs":7,"title":3},"120":{"body":123,"breadcrumbs":5,"title":2},"121":{"body":9,"breadcrumbs":14,"title":9},"122":{"body":24,"breadcrumbs":6,"title":1},"123":{"body":5,"breadcrumbs":6,"title":1},"124":{"body":132,"breadcrumbs":6,"title":1},"125":{"body":165,"breadcrumbs":6,"title":1},"126":{"body":76,"breadcrumbs":7,"title":2},"127":{"body":424,"breadcrumbs":6,"title":1},"128":{"body":36,"breadcrumbs":2,"title":1},"129":{"body":67,"breadcrumbs":3,"title":2},"13":{"body":153,"breadcrumbs":10,"title":6},"130":{"body":84,"breadcrumbs":3,"title":2},"131":{"body":160,"breadcrumbs":3,"title":2},"132":{"body":319,"breadcrumbs":3,"title":2},"133":{"body":18,"breadcrumbs":3,"title":2},"134":{"body":54,"breadcrumbs":2,"title":1},"135":{"body":122,"breadcrumbs":2,"title":1},"136":{"body":182,"breadcrumbs":3,"title":2},"137":{"body":65,"breadcrumbs":7,"title":2},"138":{"body":74,"breadcrumbs":8,"title":3},"139":{"body":12,"breadcrumbs":9,"title":4},"14":{"body":33,"breadcrumbs":8,"title":4},"140":{"body":61,"breadcrumbs":10,"title":5},"141":{"body":24,"breadcrumbs":7,"title":2},"142":{"body":259,"breadcrumbs":10,"title":5},"143":{"body":13,"breadcrumbs":7,"title":3},"144":{"body":52,"breadcrumbs":7,"title":3},"145":{"body":90,"breadcrumbs":7,"title":3},"146":{"body":30,"breadcrumbs":8,"title":4},"147":{"body":8,"breadcrumbs":8,"title":4},"148":{"body":14,"breadcrumbs":5,"title":1},"149":{"body":52,"breadcrumbs":5,"title":1},"15":{"body":2,"breadcrumbs":5,"title":1},"150":{"body":19,"breadcrumbs":5,"title":1},"151":{"body":50,"breadcrumbs":5,"title":1},"152":{"body":0,"breadcrumbs":8,"title":2},"153":{"body":15,"breadcrumbs":7,"title":1},"154":{"body":10,"breadcrumbs":8,"title":2},"155":{"body":57,"breadcrumbs":7,"title":1},"156":{"body":15,"breadcrumbs":7,"title":1},"157":{"body":32,"breadcrumbs":9,"title":3},"158":{"body":64,"breadcrumbs":9,"title":3},"159":{"body":0,"breadcrumbs":10,"title":3},"16":{"body":34,"breadcrumbs":7,"title":3},"160":{"body":84,"breadcrumbs":8,"title":1},"161":{"body":11,"breadcrumbs":9,"title":2},"162":{"body":13,"breadcrumbs":8,"title":1},"163":{"body":9,"breadcrumbs":8,"title":1},"164":{"body":59,"breadcrumbs":11,"title":4},"165":{"body":0,"breadcrumbs":8,"title":2},"166":{"body":20,"breadcrumbs":7,"title":1},"167":{"body":10,"breadcrumbs":8,"title":2},"168":{"body":45,"breadcrumbs":7,"title":1},"169":{"body":33,"breadcrumbs":9,"title":3},"17":{"body":194,"breadcrumbs":10,"title":6},"170":{"body":74,"breadcrumbs":7,"title":1},"171":{"body":73,"breadcrumbs":9,"title":3},"172":{"body":0,"breadcrumbs":8,"title":2},"173":{"body":91,"breadcrumbs":7,"title":1},"174":{"body":10,"breadcrumbs":8,"title":2},"175":{"body":172,"breadcrumbs":7,"title":1},"176":{"body":39,"breadcrumbs":7,"title":1},"177":{"body":11,"breadcrumbs":9,"title":3},"178":{"body":0,"breadcrumbs":8,"title":2},"179":{"body":42,"breadcrumbs":11,"title":5},"18":{"body":28,"breadcrumbs":8,"title":4},"180":{"body":45,"breadcrumbs":11,"title":5},"181":{"body":45,"breadcrumbs":10,"title":4},"182":{"body":45,"breadcrumbs":16,"title":10},"183":{"body":120,"breadcrumbs":17,"title":11},"184":{"body":249,"breadcrumbs":11,"title":4},"185":{"body":96,"breadcrumbs":12,"title":6},"186":{"body":15,"breadcrumbs":7,"title":1},"187":{"body":95,"breadcrumbs":16,"title":6},"188":{"body":16,"breadcrumbs":11,"title":1},"189":{"body":0,"breadcrumbs":14,"title":2},"19":{"body":126,"breadcrumbs":7,"title":3},"190":{"body":150,"breadcrumbs":14,"title":2},"191":{"body":79,"breadcrumbs":14,"title":2},"192":{"body":29,"breadcrumbs":14,"title":2},"193":{"body":12,"breadcrumbs":15,"title":3},"194":{"body":71,"breadcrumbs":15,"title":3},"195":{"body":181,"breadcrumbs":17,"title":5},"196":{"body":0,"breadcrumbs":15,"title":3},"197":{"body":71,"breadcrumbs":15,"title":3},"198":{"body":138,"breadcrumbs":17,"title":5},"199":{"body":42,"breadcrumbs":14,"title":2},"2":{"body":42,"breadcrumbs":3,"title":2},"20":{"body":59,"breadcrumbs":8,"title":4},"200":{"body":13,"breadcrumbs":14,"title":2},"201":{"body":0,"breadcrumbs":14,"title":2},"202":{"body":42,"breadcrumbs":16,"title":4},"203":{"body":347,"breadcrumbs":13,"title":1},"204":{"body":40,"breadcrumbs":14,"title":2},"205":{"body":49,"breadcrumbs":16,"title":3},"206":{"body":94,"breadcrumbs":16,"title":6},"207":{"body":9,"breadcrumbs":11,"title":1},"208":{"body":71,"breadcrumbs":14,"title":2},"209":{"body":35,"breadcrumbs":14,"title":2},"21":{"body":126,"breadcrumbs":6,"title":2},"210":{"body":13,"breadcrumbs":14,"title":2},"211":{"body":13,"breadcrumbs":10,"title":2},"212":{"body":35,"breadcrumbs":9,"title":1},"213":{"body":34,"breadcrumbs":14,"title":2},"214":{"body":8,"breadcrumbs":14,"title":2},"215":{"body":10,"breadcrumbs":9,"title":5},"216":{"body":0,"breadcrumbs":5,"title":1},"217":{"body":6,"breadcrumbs":6,"title":2},"218":{"body":79,"breadcrumbs":7,"title":3},"219":{"body":8,"breadcrumbs":6,"title":2},"22":{"body":228,"breadcrumbs":5,"title":1},"220":{"body":3,"breadcrumbs":6,"title":2},"221":{"body":58,"breadcrumbs":6,"title":2},"222":{"body":23,"breadcrumbs":7,"title":3},"223":{"body":70,"breadcrumbs":9,"title":5},"224":{"body":358,"breadcrumbs":11,"title":6},"225":{"body":17,"breadcrumbs":10,"title":5},"226":{"body":50,"breadcrumbs":7,"title":2},"227":{"body":69,"breadcrumbs":7,"title":2},"228":{"body":0,"breadcrumbs":11,"title":6},"229":{"body":25,"breadcrumbs":12,"title":7},"23":{"body":28,"breadcrumbs":8,"title":4},"230":{"body":40,"breadcrumbs":13,"title":8},"231":{"body":210,"breadcrumbs":9,"title":4},"232":{"body":226,"breadcrumbs":12,"title":7},"233":{"body":208,"breadcrumbs":10,"title":5},"234":{"body":85,"breadcrumbs":8,"title":3},"235":{"body":16,"breadcrumbs":11,"title":6},"236":{"body":20,"breadcrumbs":7,"title":2},"237":{"body":51,"breadcrumbs":7,"title":2},"238":{"body":27,"breadcrumbs":8,"title":3},"239":{"body":59,"breadcrumbs":8,"title":3},"24":{"body":11,"breadcrumbs":7,"title":3},"240":{"body":18,"breadcrumbs":10,"title":5},"241":{"body":40,"breadcrumbs":7,"title":2},"242":{"body":30,"breadcrumbs":7,"title":2},"243":{"body":11,"breadcrumbs":7,"title":2},"244":{"body":10,"breadcrumbs":6,"title":1},"245":{"body":15,"breadcrumbs":8,"title":3},"246":{"body":9,"breadcrumbs":3,"title":1},"247":{"body":9,"breadcrumbs":5,"title":3},"248":{"body":12,"breadcrumbs":5,"title":3},"249":{"body":10,"breadcrumbs":6,"title":4},"25":{"body":0,"breadcrumbs":10,"title":6},"250":{"body":0,"breadcrumbs":9,"title":4},"251":{"body":31,"breadcrumbs":6,"title":1},"252":{"body":38,"breadcrumbs":6,"title":1},"253":{"body":19,"breadcrumbs":7,"title":2},"254":{"body":476,"breadcrumbs":7,"title":2},"255":{"body":0,"breadcrumbs":8,"title":3},"256":{"body":20,"breadcrumbs":12,"title":7},"257":{"body":0,"breadcrumbs":8,"title":3},"258":{"body":182,"breadcrumbs":13,"title":8},"259":{"body":80,"breadcrumbs":14,"title":9},"26":{"body":69,"breadcrumbs":7,"title":3},"260":{"body":0,"breadcrumbs":6,"title":1},"261":{"body":51,"breadcrumbs":9,"title":4},"262":{"body":35,"breadcrumbs":8,"title":3},"263":{"body":19,"breadcrumbs":9,"title":4},"264":{"body":44,"breadcrumbs":8,"title":3},"265":{"body":13,"breadcrumbs":10,"title":4},"266":{"body":23,"breadcrumbs":8,"title":2},"267":{"body":37,"breadcrumbs":11,"title":5},"268":{"body":35,"breadcrumbs":11,"title":5},"269":{"body":23,"breadcrumbs":10,"title":4},"27":{"body":33,"breadcrumbs":7,"title":3},"270":{"body":20,"breadcrumbs":10,"title":4},"271":{"body":35,"breadcrumbs":10,"title":4},"272":{"body":24,"breadcrumbs":12,"title":6},"273":{"body":17,"breadcrumbs":9,"title":3},"274":{"body":17,"breadcrumbs":12,"title":6},"275":{"body":38,"breadcrumbs":9,"title":3},"276":{"body":72,"breadcrumbs":6,"title":3},"277":{"body":10,"breadcrumbs":5,"title":2},"278":{"body":10,"breadcrumbs":5,"title":2},"279":{"body":15,"breadcrumbs":5,"title":2},"28":{"body":23,"breadcrumbs":6,"title":2},"280":{"body":47,"breadcrumbs":8,"title":4},"281":{"body":23,"breadcrumbs":7,"title":3},"282":{"body":36,"breadcrumbs":6,"title":2},"283":{"body":13,"breadcrumbs":5,"title":1},"284":{"body":8,"breadcrumbs":5,"title":1},"285":{"body":62,"breadcrumbs":5,"title":1},"286":{"body":30,"breadcrumbs":5,"title":1},"287":{"body":19,"breadcrumbs":6,"title":2},"288":{"body":318,"breadcrumbs":6,"title":2},"289":{"body":579,"breadcrumbs":6,"title":2},"29":{"body":42,"breadcrumbs":8,"title":4},"290":{"body":49,"breadcrumbs":8,"title":4},"291":{"body":23,"breadcrumbs":7,"title":3},"292":{"body":24,"breadcrumbs":6,"title":2},"293":{"body":13,"breadcrumbs":5,"title":1},"294":{"body":50,"breadcrumbs":5,"title":1},"295":{"body":13,"breadcrumbs":7,"title":3},"296":{"body":0,"breadcrumbs":6,"title":2},"297":{"body":155,"breadcrumbs":6,"title":2},"298":{"body":36,"breadcrumbs":6,"title":2},"299":{"body":44,"breadcrumbs":8,"title":4},"3":{"body":17,"breadcrumbs":3,"title":2},"30":{"body":16,"breadcrumbs":5,"title":1},"300":{"body":23,"breadcrumbs":7,"title":3},"301":{"body":11,"breadcrumbs":6,"title":2},"302":{"body":13,"breadcrumbs":5,"title":1},"303":{"body":24,"breadcrumbs":5,"title":1},"304":{"body":0,"breadcrumbs":6,"title":2},"305":{"body":12,"breadcrumbs":6,"title":2},"306":{"body":40,"breadcrumbs":4,"title":2},"307":{"body":75,"breadcrumbs":3,"title":1},"308":{"body":26,"breadcrumbs":4,"title":1},"309":{"body":13,"breadcrumbs":7,"title":4},"31":{"body":67,"breadcrumbs":8,"title":4},"310":{"body":28,"breadcrumbs":5,"title":2},"311":{"body":0,"breadcrumbs":6,"title":3},"312":{"body":19,"breadcrumbs":5,"title":2},"313":{"body":44,"breadcrumbs":5,"title":2},"314":{"body":0,"breadcrumbs":4,"title":1},"315":{"body":432,"breadcrumbs":4,"title":1},"316":{"body":324,"breadcrumbs":8,"title":5},"317":{"body":95,"breadcrumbs":5,"title":2},"318":{"body":412,"breadcrumbs":5,"title":2},"319":{"body":17,"breadcrumbs":4,"title":1},"32":{"body":106,"breadcrumbs":7,"title":3},"320":{"body":21,"breadcrumbs":8,"title":3},"321":{"body":30,"breadcrumbs":7,"title":2},"322":{"body":23,"breadcrumbs":7,"title":2},"323":{"body":0,"breadcrumbs":6,"title":1},"324":{"body":68,"breadcrumbs":6,"title":1},"325":{"body":17,"breadcrumbs":6,"title":1},"326":{"body":77,"breadcrumbs":7,"title":3},"327":{"body":0,"breadcrumbs":6,"title":2},"328":{"body":161,"breadcrumbs":5,"title":1},"329":{"body":41,"breadcrumbs":5,"title":1},"33":{"body":35,"breadcrumbs":8,"title":4},"330":{"body":67,"breadcrumbs":7,"title":3},"331":{"body":0,"breadcrumbs":6,"title":2},"332":{"body":22,"breadcrumbs":5,"title":1},"333":{"body":62,"breadcrumbs":5,"title":1},"334":{"body":36,"breadcrumbs":5,"title":1},"335":{"body":14,"breadcrumbs":5,"title":1},"336":{"body":15,"breadcrumbs":8,"title":3},"337":{"body":0,"breadcrumbs":6,"title":1},"338":{"body":147,"breadcrumbs":6,"title":1},"339":{"body":18,"breadcrumbs":6,"title":2},"34":{"body":55,"breadcrumbs":7,"title":3},"340":{"body":52,"breadcrumbs":8,"title":4},"341":{"body":0,"breadcrumbs":5,"title":1},"342":{"body":73,"breadcrumbs":5,"title":1},"343":{"body":8,"breadcrumbs":5,"title":1},"344":{"body":17,"breadcrumbs":9,"title":3},"345":{"body":11,"breadcrumbs":7,"title":1},"346":{"body":57,"breadcrumbs":7,"title":1},"347":{"body":67,"breadcrumbs":7,"title":1},"348":{"body":25,"breadcrumbs":2,"title":1},"349":{"body":33,"breadcrumbs":4,"title":3},"35":{"body":53,"breadcrumbs":10,"title":6},"350":{"body":6,"breadcrumbs":2,"title":1},"351":{"body":9,"breadcrumbs":3,"title":2},"352":{"body":11,"breadcrumbs":4,"title":3},"353":{"body":9,"breadcrumbs":3,"title":2},"354":{"body":20,"breadcrumbs":3,"title":2},"355":{"body":17,"breadcrumbs":5,"title":2},"356":{"body":18,"breadcrumbs":5,"title":2},"357":{"body":6,"breadcrumbs":4,"title":1},"358":{"body":0,"breadcrumbs":4,"title":1},"359":{"body":21,"breadcrumbs":4,"title":1},"36":{"body":0,"breadcrumbs":6,"title":2},"360":{"body":14,"breadcrumbs":4,"title":1},"361":{"body":0,"breadcrumbs":5,"title":2},"362":{"body":66,"breadcrumbs":4,"title":1},"363":{"body":35,"breadcrumbs":7,"title":3},"364":{"body":19,"breadcrumbs":5,"title":1},"365":{"body":0,"breadcrumbs":5,"title":1},"366":{"body":31,"breadcrumbs":5,"title":1},"367":{"body":23,"breadcrumbs":5,"title":1},"368":{"body":0,"breadcrumbs":6,"title":2},"369":{"body":70,"breadcrumbs":5,"title":1},"37":{"body":69,"breadcrumbs":5,"title":1},"370":{"body":35,"breadcrumbs":5,"title":2},"371":{"body":60,"breadcrumbs":4,"title":1},"372":{"body":0,"breadcrumbs":4,"title":1},"373":{"body":44,"breadcrumbs":4,"title":1},"374":{"body":0,"breadcrumbs":5,"title":2},"375":{"body":76,"breadcrumbs":4,"title":1},"376":{"body":246,"breadcrumbs":3,"title":1},"377":{"body":131,"breadcrumbs":4,"title":2},"378":{"body":9,"breadcrumbs":4,"title":2},"379":{"body":51,"breadcrumbs":6,"title":4},"38":{"body":39,"breadcrumbs":8,"title":4},"380":{"body":8,"breadcrumbs":4,"title":2},"381":{"body":6,"breadcrumbs":4,"title":1},"382":{"body":0,"breadcrumbs":5,"title":2},"383":{"body":39,"breadcrumbs":4,"title":1},"384":{"body":0,"breadcrumbs":5,"title":2},"385":{"body":68,"breadcrumbs":4,"title":1},"386":{"body":31,"breadcrumbs":4,"title":1},"387":{"body":38,"breadcrumbs":5,"title":2},"388":{"body":1,"breadcrumbs":6,"title":3},"389":{"body":2,"breadcrumbs":5,"title":2},"39":{"body":28,"breadcrumbs":8,"title":4},"390":{"body":14,"breadcrumbs":4,"title":1},"391":{"body":8,"breadcrumbs":6,"title":2},"392":{"body":0,"breadcrumbs":6,"title":2},"393":{"body":119,"breadcrumbs":5,"title":1},"394":{"body":0,"breadcrumbs":6,"title":2},"395":{"body":99,"breadcrumbs":5,"title":1},"396":{"body":61,"breadcrumbs":5,"title":1},"397":{"body":27,"breadcrumbs":6,"title":2},"398":{"body":104,"breadcrumbs":7,"title":3},"399":{"body":3,"breadcrumbs":6,"title":2},"4":{"body":19,"breadcrumbs":4,"title":3},"40":{"body":4,"breadcrumbs":5,"title":1},"400":{"body":20,"breadcrumbs":5,"title":1},"401":{"body":45,"breadcrumbs":4,"title":1},"402":{"body":31,"breadcrumbs":6,"title":3},"403":{"body":0,"breadcrumbs":5,"title":2},"404":{"body":108,"breadcrumbs":4,"title":1},"405":{"body":0,"breadcrumbs":5,"title":2},"406":{"body":77,"breadcrumbs":4,"title":1},"407":{"body":48,"breadcrumbs":4,"title":1},"408":{"body":37,"breadcrumbs":5,"title":2},"409":{"body":1,"breadcrumbs":6,"title":3},"41":{"body":39,"breadcrumbs":7,"title":3},"410":{"body":3,"breadcrumbs":5,"title":2},"411":{"body":14,"breadcrumbs":4,"title":1},"412":{"body":35,"breadcrumbs":6,"title":2},"413":{"body":0,"breadcrumbs":6,"title":2},"414":{"body":192,"breadcrumbs":5,"title":1},"415":{"body":0,"breadcrumbs":6,"title":2},"416":{"body":110,"breadcrumbs":5,"title":1},"417":{"body":59,"breadcrumbs":5,"title":1},"418":{"body":28,"breadcrumbs":6,"title":2},"419":{"body":104,"breadcrumbs":7,"title":3},"42":{"body":18,"breadcrumbs":7,"title":3},"420":{"body":6,"breadcrumbs":6,"title":2},"421":{"body":20,"breadcrumbs":5,"title":1},"422":{"body":22,"breadcrumbs":4,"title":1},"423":{"body":15,"breadcrumbs":4,"title":1},"424":{"body":0,"breadcrumbs":5,"title":2},"425":{"body":134,"breadcrumbs":4,"title":1},"426":{"body":0,"breadcrumbs":5,"title":2},"427":{"body":110,"breadcrumbs":4,"title":1},"428":{"body":69,"breadcrumbs":4,"title":1},"429":{"body":37,"breadcrumbs":5,"title":2},"43":{"body":17,"breadcrumbs":8,"title":4},"430":{"body":1,"breadcrumbs":6,"title":3},"431":{"body":13,"breadcrumbs":5,"title":2},"432":{"body":14,"breadcrumbs":4,"title":1},"433":{"body":11,"breadcrumbs":6,"title":2},"434":{"body":0,"breadcrumbs":6,"title":2},"435":{"body":140,"breadcrumbs":5,"title":1},"436":{"body":0,"breadcrumbs":6,"title":2},"437":{"body":95,"breadcrumbs":5,"title":1},"438":{"body":60,"breadcrumbs":5,"title":1},"439":{"body":31,"breadcrumbs":6,"title":2},"44":{"body":83,"breadcrumbs":9,"title":5},"440":{"body":104,"breadcrumbs":7,"title":3},"441":{"body":7,"breadcrumbs":6,"title":2},"442":{"body":20,"breadcrumbs":5,"title":1},"443":{"body":29,"breadcrumbs":6,"title":2},"444":{"body":0,"breadcrumbs":6,"title":2},"445":{"body":94,"breadcrumbs":5,"title":1},"446":{"body":105,"breadcrumbs":5,"title":1},"447":{"body":0,"breadcrumbs":6,"title":2},"448":{"body":101,"breadcrumbs":5,"title":1},"449":{"body":41,"breadcrumbs":5,"title":1},"45":{"body":0,"breadcrumbs":6,"title":2},"450":{"body":39,"breadcrumbs":6,"title":2},"451":{"body":1,"breadcrumbs":7,"title":3},"452":{"body":3,"breadcrumbs":6,"title":2},"453":{"body":14,"breadcrumbs":5,"title":1},"454":{"body":45,"breadcrumbs":4,"title":1},"455":{"body":0,"breadcrumbs":5,"title":2},"456":{"body":128,"breadcrumbs":4,"title":1},"457":{"body":65,"breadcrumbs":4,"title":1},"458":{"body":49,"breadcrumbs":4,"title":1},"459":{"body":45,"breadcrumbs":4,"title":1},"46":{"body":57,"breadcrumbs":5,"title":1},"460":{"body":14,"breadcrumbs":4,"title":1},"461":{"body":55,"breadcrumbs":4,"title":1},"462":{"body":52,"breadcrumbs":4,"title":1},"463":{"body":0,"breadcrumbs":5,"title":2},"464":{"body":78,"breadcrumbs":4,"title":1},"465":{"body":42,"breadcrumbs":4,"title":1},"466":{"body":41,"breadcrumbs":5,"title":2},"467":{"body":39,"breadcrumbs":6,"title":3},"468":{"body":16,"breadcrumbs":5,"title":2},"469":{"body":4,"breadcrumbs":5,"title":2},"47":{"body":22,"breadcrumbs":8,"title":4},"470":{"body":14,"breadcrumbs":4,"title":1},"471":{"body":156,"breadcrumbs":6,"title":2},"472":{"body":0,"breadcrumbs":6,"title":2},"473":{"body":92,"breadcrumbs":5,"title":1},"474":{"body":63,"breadcrumbs":5,"title":1},"475":{"body":86,"breadcrumbs":5,"title":1},"476":{"body":154,"breadcrumbs":5,"title":1},"477":{"body":25,"breadcrumbs":5,"title":1},"478":{"body":53,"breadcrumbs":5,"title":1},"479":{"body":0,"breadcrumbs":6,"title":2},"48":{"body":44,"breadcrumbs":5,"title":1},"480":{"body":179,"breadcrumbs":5,"title":1},"481":{"body":57,"breadcrumbs":5,"title":1},"482":{"body":28,"breadcrumbs":6,"title":2},"483":{"body":23,"breadcrumbs":7,"title":3},"484":{"body":76,"breadcrumbs":5,"title":1},"485":{"body":4,"breadcrumbs":6,"title":2},"486":{"body":6,"breadcrumbs":5,"title":1},"487":{"body":82,"breadcrumbs":5,"title":1},"488":{"body":23,"breadcrumbs":8,"title":3},"489":{"body":0,"breadcrumbs":7,"title":2},"49":{"body":0,"breadcrumbs":5,"title":1},"490":{"body":61,"breadcrumbs":6,"title":1},"491":{"body":67,"breadcrumbs":6,"title":1},"492":{"body":46,"breadcrumbs":6,"title":1},"493":{"body":114,"breadcrumbs":6,"title":1},"494":{"body":116,"breadcrumbs":6,"title":1},"495":{"body":0,"breadcrumbs":7,"title":2},"496":{"body":81,"breadcrumbs":6,"title":1},"497":{"body":23,"breadcrumbs":6,"title":1},"498":{"body":35,"breadcrumbs":7,"title":2},"499":{"body":127,"breadcrumbs":8,"title":3},"5":{"body":62,"breadcrumbs":2,"title":1},"50":{"body":40,"breadcrumbs":10,"title":6},"500":{"body":17,"breadcrumbs":7,"title":2},"501":{"body":81,"breadcrumbs":6,"title":1},"502":{"body":10,"breadcrumbs":6,"title":1},"503":{"body":45,"breadcrumbs":6,"title":2},"504":{"body":0,"breadcrumbs":6,"title":2},"505":{"body":69,"breadcrumbs":5,"title":1},"506":{"body":0,"breadcrumbs":6,"title":2},"507":{"body":192,"breadcrumbs":5,"title":1},"508":{"body":60,"breadcrumbs":5,"title":1},"509":{"body":25,"breadcrumbs":6,"title":2},"51":{"body":26,"breadcrumbs":8,"title":4},"510":{"body":30,"breadcrumbs":7,"title":3},"511":{"body":13,"breadcrumbs":5,"title":1},"512":{"body":4,"breadcrumbs":6,"title":2},"513":{"body":9,"breadcrumbs":5,"title":1},"514":{"body":83,"breadcrumbs":5,"title":1},"515":{"body":19,"breadcrumbs":8,"title":3},"516":{"body":0,"breadcrumbs":7,"title":2},"517":{"body":60,"breadcrumbs":6,"title":1},"518":{"body":0,"breadcrumbs":7,"title":2},"519":{"body":80,"breadcrumbs":6,"title":1},"52":{"body":48,"breadcrumbs":8,"title":4},"520":{"body":24,"breadcrumbs":6,"title":1},"521":{"body":35,"breadcrumbs":7,"title":2},"522":{"body":134,"breadcrumbs":8,"title":3},"523":{"body":15,"breadcrumbs":7,"title":2},"524":{"body":59,"breadcrumbs":6,"title":1},"525":{"body":10,"breadcrumbs":6,"title":1},"526":{"body":11,"breadcrumbs":4,"title":1},"527":{"body":0,"breadcrumbs":5,"title":2},"528":{"body":65,"breadcrumbs":4,"title":1},"529":{"body":102,"breadcrumbs":4,"title":1},"53":{"body":21,"breadcrumbs":8,"title":4},"530":{"body":0,"breadcrumbs":5,"title":2},"531":{"body":110,"breadcrumbs":4,"title":1},"532":{"body":53,"breadcrumbs":4,"title":1},"533":{"body":39,"breadcrumbs":5,"title":2},"534":{"body":1,"breadcrumbs":6,"title":3},"535":{"body":3,"breadcrumbs":5,"title":2},"536":{"body":14,"breadcrumbs":4,"title":1},"537":{"body":20,"breadcrumbs":4,"title":1},"538":{"body":32,"breadcrumbs":4,"title":1},"539":{"body":0,"breadcrumbs":5,"title":2},"54":{"body":36,"breadcrumbs":10,"title":6},"540":{"body":41,"breadcrumbs":4,"title":1},"541":{"body":51,"breadcrumbs":4,"title":1},"542":{"body":0,"breadcrumbs":5,"title":2},"543":{"body":67,"breadcrumbs":4,"title":1},"544":{"body":64,"breadcrumbs":4,"title":1},"545":{"body":42,"breadcrumbs":5,"title":2},"546":{"body":12,"breadcrumbs":7,"title":4},"547":{"body":1,"breadcrumbs":6,"title":3},"548":{"body":13,"breadcrumbs":5,"title":2},"549":{"body":33,"breadcrumbs":4,"title":1},"55":{"body":9,"breadcrumbs":10,"title":6},"550":{"body":0,"breadcrumbs":5,"title":2},"551":{"body":143,"breadcrumbs":4,"title":1},"552":{"body":0,"breadcrumbs":5,"title":2},"553":{"body":146,"breadcrumbs":4,"title":1},"554":{"body":80,"breadcrumbs":4,"title":1},"555":{"body":48,"breadcrumbs":4,"title":1},"556":{"body":40,"breadcrumbs":5,"title":2},"557":{"body":32,"breadcrumbs":6,"title":3},"558":{"body":4,"breadcrumbs":5,"title":2},"559":{"body":14,"breadcrumbs":4,"title":1},"56":{"body":13,"breadcrumbs":7,"title":3},"560":{"body":58,"breadcrumbs":4,"title":1},"561":{"body":18,"breadcrumbs":6,"title":3},"562":{"body":0,"breadcrumbs":5,"title":2},"563":{"body":134,"breadcrumbs":4,"title":1},"564":{"body":0,"breadcrumbs":5,"title":2},"565":{"body":179,"breadcrumbs":4,"title":1},"566":{"body":52,"breadcrumbs":4,"title":1},"567":{"body":64,"breadcrumbs":5,"title":2},"568":{"body":69,"breadcrumbs":6,"title":3},"569":{"body":3,"breadcrumbs":5,"title":2},"57":{"body":28,"breadcrumbs":11,"title":5},"570":{"body":53,"breadcrumbs":4,"title":1},"571":{"body":14,"breadcrumbs":4,"title":1},"572":{"body":35,"breadcrumbs":6,"title":2},"573":{"body":0,"breadcrumbs":6,"title":2},"574":{"body":24,"breadcrumbs":5,"title":1},"575":{"body":40,"breadcrumbs":5,"title":1},"576":{"body":0,"breadcrumbs":6,"title":2},"577":{"body":130,"breadcrumbs":5,"title":1},"578":{"body":54,"breadcrumbs":5,"title":1},"579":{"body":40,"breadcrumbs":6,"title":2},"58":{"body":2,"breadcrumbs":7,"title":1},"580":{"body":72,"breadcrumbs":7,"title":3},"581":{"body":3,"breadcrumbs":5,"title":1},"582":{"body":45,"breadcrumbs":5,"title":1},"583":{"body":29,"breadcrumbs":8,"title":3},"584":{"body":0,"breadcrumbs":7,"title":2},"585":{"body":67,"breadcrumbs":6,"title":1},"586":{"body":68,"breadcrumbs":6,"title":1},"587":{"body":0,"breadcrumbs":7,"title":2},"588":{"body":84,"breadcrumbs":6,"title":1},"589":{"body":23,"breadcrumbs":6,"title":1},"59":{"body":21,"breadcrumbs":10,"title":4},"590":{"body":44,"breadcrumbs":7,"title":2},"591":{"body":142,"breadcrumbs":8,"title":3},"592":{"body":14,"breadcrumbs":7,"title":2},"593":{"body":56,"breadcrumbs":6,"title":1},"594":{"body":10,"breadcrumbs":6,"title":1},"595":{"body":12,"breadcrumbs":4,"title":1},"596":{"body":17,"breadcrumbs":6,"title":3},"597":{"body":0,"breadcrumbs":5,"title":2},"598":{"body":50,"breadcrumbs":4,"title":1},"599":{"body":0,"breadcrumbs":5,"title":2},"6":{"body":31,"breadcrumbs":2,"title":1},"60":{"body":61,"breadcrumbs":9,"title":3},"600":{"body":93,"breadcrumbs":4,"title":1},"601":{"body":66,"breadcrumbs":4,"title":1},"602":{"body":38,"breadcrumbs":5,"title":2},"603":{"body":10,"breadcrumbs":6,"title":3},"604":{"body":3,"breadcrumbs":5,"title":2},"605":{"body":14,"breadcrumbs":4,"title":1},"606":{"body":16,"breadcrumbs":6,"title":2},"607":{"body":18,"breadcrumbs":9,"title":5},"608":{"body":0,"breadcrumbs":6,"title":2},"609":{"body":53,"breadcrumbs":5,"title":1},"61":{"body":31,"breadcrumbs":10,"title":4},"610":{"body":0,"breadcrumbs":6,"title":2},"611":{"body":47,"breadcrumbs":5,"title":1},"612":{"body":23,"breadcrumbs":5,"title":1},"613":{"body":56,"breadcrumbs":6,"title":2},"614":{"body":115,"breadcrumbs":7,"title":3},"615":{"body":3,"breadcrumbs":6,"title":2},"616":{"body":46,"breadcrumbs":5,"title":1},"617":{"body":10,"breadcrumbs":5,"title":1},"618":{"body":37,"breadcrumbs":4,"title":1},"619":{"body":29,"breadcrumbs":6,"title":3},"62":{"body":56,"breadcrumbs":8,"title":4},"620":{"body":0,"breadcrumbs":5,"title":2},"621":{"body":168,"breadcrumbs":5,"title":2},"622":{"body":0,"breadcrumbs":5,"title":2},"623":{"body":103,"breadcrumbs":4,"title":1},"624":{"body":45,"breadcrumbs":4,"title":1},"625":{"body":42,"breadcrumbs":5,"title":2},"626":{"body":67,"breadcrumbs":5,"title":2},"627":{"body":9,"breadcrumbs":5,"title":2},"628":{"body":8,"breadcrumbs":4,"title":1},"629":{"body":9,"breadcrumbs":4,"title":1},"63":{"body":64,"breadcrumbs":7,"title":3},"630":{"body":16,"breadcrumbs":4,"title":1},"631":{"body":0,"breadcrumbs":5,"title":2},"632":{"body":72,"breadcrumbs":4,"title":1},"633":{"body":0,"breadcrumbs":5,"title":2},"634":{"body":66,"breadcrumbs":4,"title":1},"635":{"body":67,"breadcrumbs":4,"title":1},"636":{"body":43,"breadcrumbs":5,"title":2},"637":{"body":9,"breadcrumbs":5,"title":2},"638":{"body":3,"breadcrumbs":4,"title":1},"639":{"body":0,"breadcrumbs":5,"title":2},"64":{"body":19,"breadcrumbs":7,"title":3},"640":{"body":66,"breadcrumbs":4,"title":1},"641":{"body":0,"breadcrumbs":5,"title":2},"642":{"body":76,"breadcrumbs":4,"title":1},"643":{"body":26,"breadcrumbs":4,"title":1},"644":{"body":59,"breadcrumbs":5,"title":2},"645":{"body":43,"breadcrumbs":7,"title":4},"646":{"body":11,"breadcrumbs":5,"title":2},"647":{"body":21,"breadcrumbs":2,"title":1},"648":{"body":0,"breadcrumbs":3,"title":2},"649":{"body":74,"breadcrumbs":2,"title":1},"65":{"body":65,"breadcrumbs":8,"title":4},"650":{"body":0,"breadcrumbs":3,"title":2},"651":{"body":18,"breadcrumbs":2,"title":1},"652":{"body":269,"breadcrumbs":2,"title":1},"653":{"body":83,"breadcrumbs":2,"title":1},"654":{"body":21,"breadcrumbs":5,"title":4},"655":{"body":40,"breadcrumbs":2,"title":1},"656":{"body":36,"breadcrumbs":2,"title":1},"657":{"body":30,"breadcrumbs":2,"title":1},"658":{"body":27,"breadcrumbs":2,"title":1},"659":{"body":13,"breadcrumbs":5,"title":4},"66":{"body":47,"breadcrumbs":8,"title":4},"660":{"body":39,"breadcrumbs":2,"title":1},"661":{"body":26,"breadcrumbs":2,"title":1},"662":{"body":22,"breadcrumbs":4,"title":3},"663":{"body":29,"breadcrumbs":10,"title":5},"664":{"body":31,"breadcrumbs":6,"title":1},"665":{"body":62,"breadcrumbs":6,"title":1},"666":{"body":45,"breadcrumbs":6,"title":1},"667":{"body":21,"breadcrumbs":6,"title":1},"668":{"body":25,"breadcrumbs":6,"title":1},"669":{"body":49,"breadcrumbs":6,"title":1},"67":{"body":64,"breadcrumbs":8,"title":4},"670":{"body":32,"breadcrumbs":6,"title":1},"671":{"body":55,"breadcrumbs":10,"title":6},"672":{"body":9,"breadcrumbs":8,"title":4},"673":{"body":159,"breadcrumbs":9,"title":5},"674":{"body":60,"breadcrumbs":10,"title":5},"675":{"body":37,"breadcrumbs":7,"title":2},"676":{"body":13,"breadcrumbs":8,"title":3},"677":{"body":208,"breadcrumbs":8,"title":3},"678":{"body":172,"breadcrumbs":8,"title":3},"679":{"body":95,"breadcrumbs":9,"title":4},"68":{"body":23,"breadcrumbs":7,"title":3},"680":{"body":40,"breadcrumbs":7,"title":2},"681":{"body":22,"breadcrumbs":4,"title":3},"682":{"body":21,"breadcrumbs":10,"title":5},"683":{"body":6,"breadcrumbs":9,"title":4},"684":{"body":41,"breadcrumbs":10,"title":5},"685":{"body":53,"breadcrumbs":8,"title":3},"686":{"body":45,"breadcrumbs":9,"title":4},"687":{"body":35,"breadcrumbs":10,"title":5},"688":{"body":44,"breadcrumbs":4,"title":3},"689":{"body":24,"breadcrumbs":7,"title":3},"69":{"body":0,"breadcrumbs":4,"title":3},"690":{"body":61,"breadcrumbs":7,"title":3},"691":{"body":17,"breadcrumbs":11,"title":7},"692":{"body":57,"breadcrumbs":8,"title":4},"693":{"body":55,"breadcrumbs":3,"title":1},"694":{"body":8,"breadcrumbs":4,"title":2},"695":{"body":0,"breadcrumbs":4,"title":2},"696":{"body":12,"breadcrumbs":3,"title":1},"697":{"body":96,"breadcrumbs":6,"title":1},"698":{"body":37,"breadcrumbs":8,"title":3},"699":{"body":0,"breadcrumbs":6,"title":1},"7":{"body":14,"breadcrumbs":2,"title":1},"70":{"body":58,"breadcrumbs":3,"title":2},"700":{"body":9,"breadcrumbs":7,"title":2},"701":{"body":55,"breadcrumbs":6,"title":1},"702":{"body":7,"breadcrumbs":2,"title":1},"703":{"body":23,"breadcrumbs":2,"title":1},"704":{"body":32,"breadcrumbs":3,"title":2},"705":{"body":12,"breadcrumbs":3,"title":2},"706":{"body":1,"breadcrumbs":4,"title":3},"707":{"body":10,"breadcrumbs":3,"title":2},"708":{"body":19,"breadcrumbs":2,"title":1},"709":{"body":18,"breadcrumbs":2,"title":1},"71":{"body":41,"breadcrumbs":3,"title":2},"710":{"body":54,"breadcrumbs":2,"title":1},"711":{"body":45,"breadcrumbs":3,"title":2},"712":{"body":18,"breadcrumbs":4,"title":3},"713":{"body":7,"breadcrumbs":2,"title":1},"714":{"body":2,"breadcrumbs":4,"title":2},"715":{"body":56,"breadcrumbs":6,"title":4},"716":{"body":54,"breadcrumbs":6,"title":4},"717":{"body":16,"breadcrumbs":6,"title":4},"718":{"body":30,"breadcrumbs":6,"title":4},"719":{"body":25,"breadcrumbs":6,"title":4},"72":{"body":13,"breadcrumbs":4,"title":3},"720":{"body":45,"breadcrumbs":6,"title":4},"721":{"body":69,"breadcrumbs":6,"title":4},"722":{"body":16,"breadcrumbs":6,"title":4},"723":{"body":9,"breadcrumbs":6,"title":4},"724":{"body":18,"breadcrumbs":6,"title":4},"725":{"body":23,"breadcrumbs":6,"title":4},"726":{"body":18,"breadcrumbs":6,"title":4},"727":{"body":63,"breadcrumbs":6,"title":4},"728":{"body":35,"breadcrumbs":6,"title":4},"729":{"body":51,"breadcrumbs":6,"title":4},"73":{"body":105,"breadcrumbs":3,"title":2},"730":{"body":28,"breadcrumbs":6,"title":4},"731":{"body":47,"breadcrumbs":6,"title":4},"732":{"body":51,"breadcrumbs":6,"title":4},"733":{"body":13,"breadcrumbs":6,"title":4},"734":{"body":78,"breadcrumbs":6,"title":4},"735":{"body":39,"breadcrumbs":6,"title":4},"736":{"body":74,"breadcrumbs":6,"title":4},"737":{"body":33,"breadcrumbs":6,"title":4},"738":{"body":99,"breadcrumbs":6,"title":4},"739":{"body":39,"breadcrumbs":6,"title":4},"74":{"body":35,"breadcrumbs":4,"title":3},"740":{"body":12,"breadcrumbs":6,"title":4},"741":{"body":75,"breadcrumbs":6,"title":4},"742":{"body":25,"breadcrumbs":6,"title":4},"743":{"body":17,"breadcrumbs":6,"title":4},"744":{"body":12,"breadcrumbs":6,"title":4},"745":{"body":25,"breadcrumbs":6,"title":4},"746":{"body":8,"breadcrumbs":6,"title":4},"747":{"body":58,"breadcrumbs":6,"title":4},"748":{"body":7,"breadcrumbs":6,"title":4},"749":{"body":13,"breadcrumbs":6,"title":4},"75":{"body":48,"breadcrumbs":3,"title":2},"750":{"body":46,"breadcrumbs":6,"title":4},"751":{"body":18,"breadcrumbs":6,"title":4},"752":{"body":137,"breadcrumbs":6,"title":4},"753":{"body":37,"breadcrumbs":6,"title":4},"754":{"body":19,"breadcrumbs":6,"title":4},"755":{"body":23,"breadcrumbs":6,"title":4},"756":{"body":36,"breadcrumbs":6,"title":4},"757":{"body":25,"breadcrumbs":6,"title":4},"758":{"body":26,"breadcrumbs":6,"title":4},"759":{"body":32,"breadcrumbs":6,"title":4},"76":{"body":119,"breadcrumbs":3,"title":2},"760":{"body":19,"breadcrumbs":6,"title":4},"761":{"body":40,"breadcrumbs":6,"title":4},"762":{"body":95,"breadcrumbs":6,"title":4},"763":{"body":42,"breadcrumbs":6,"title":4},"764":{"body":20,"breadcrumbs":6,"title":4},"765":{"body":70,"breadcrumbs":6,"title":4},"766":{"body":11,"breadcrumbs":6,"title":4},"767":{"body":20,"breadcrumbs":6,"title":4},"768":{"body":12,"breadcrumbs":6,"title":4},"769":{"body":25,"breadcrumbs":6,"title":4},"77":{"body":105,"breadcrumbs":5,"title":4},"770":{"body":31,"breadcrumbs":6,"title":4},"771":{"body":14,"breadcrumbs":6,"title":4},"772":{"body":166,"breadcrumbs":6,"title":4},"773":{"body":45,"breadcrumbs":6,"title":4},"774":{"body":20,"breadcrumbs":6,"title":4},"775":{"body":30,"breadcrumbs":6,"title":4},"776":{"body":56,"breadcrumbs":6,"title":4},"777":{"body":8,"breadcrumbs":6,"title":4},"778":{"body":7,"breadcrumbs":6,"title":4},"779":{"body":46,"breadcrumbs":6,"title":4},"78":{"body":155,"breadcrumbs":6,"title":5},"780":{"body":9,"breadcrumbs":6,"title":4},"781":{"body":8,"breadcrumbs":6,"title":4},"782":{"body":45,"breadcrumbs":6,"title":4},"783":{"body":14,"breadcrumbs":6,"title":4},"784":{"body":13,"breadcrumbs":6,"title":4},"785":{"body":21,"breadcrumbs":6,"title":4},"786":{"body":60,"breadcrumbs":6,"title":4},"787":{"body":9,"breadcrumbs":6,"title":4},"788":{"body":25,"breadcrumbs":6,"title":4},"789":{"body":38,"breadcrumbs":6,"title":4},"79":{"body":275,"breadcrumbs":3,"title":2},"790":{"body":28,"breadcrumbs":6,"title":4},"791":{"body":26,"breadcrumbs":6,"title":4},"792":{"body":39,"breadcrumbs":6,"title":4},"793":{"body":70,"breadcrumbs":6,"title":4},"794":{"body":14,"breadcrumbs":6,"title":4},"795":{"body":10,"breadcrumbs":6,"title":4},"796":{"body":31,"breadcrumbs":6,"title":4},"797":{"body":9,"breadcrumbs":6,"title":4},"798":{"body":15,"breadcrumbs":6,"title":4},"799":{"body":115,"breadcrumbs":6,"title":4},"8":{"body":24,"breadcrumbs":6,"title":3},"80":{"body":50,"breadcrumbs":4,"title":3},"800":{"body":13,"breadcrumbs":6,"title":4},"801":{"body":70,"breadcrumbs":6,"title":4},"802":{"body":81,"breadcrumbs":6,"title":4},"803":{"body":57,"breadcrumbs":6,"title":4},"804":{"body":118,"breadcrumbs":6,"title":4},"805":{"body":54,"breadcrumbs":6,"title":4},"806":{"body":68,"breadcrumbs":6,"title":4},"807":{"body":119,"breadcrumbs":6,"title":4},"808":{"body":7,"breadcrumbs":6,"title":4},"809":{"body":46,"breadcrumbs":6,"title":4},"81":{"body":6,"breadcrumbs":4,"title":3},"810":{"body":13,"breadcrumbs":6,"title":4},"811":{"body":45,"breadcrumbs":6,"title":4},"812":{"body":27,"breadcrumbs":6,"title":4},"813":{"body":23,"breadcrumbs":6,"title":4},"814":{"body":87,"breadcrumbs":6,"title":4},"815":{"body":40,"breadcrumbs":6,"title":4},"816":{"body":48,"breadcrumbs":6,"title":4},"817":{"body":42,"breadcrumbs":6,"title":4},"818":{"body":60,"breadcrumbs":6,"title":4},"819":{"body":22,"breadcrumbs":6,"title":4},"82":{"body":60,"breadcrumbs":4,"title":3},"820":{"body":30,"breadcrumbs":6,"title":4},"821":{"body":6,"breadcrumbs":6,"title":4},"822":{"body":6,"breadcrumbs":6,"title":4},"823":{"body":78,"breadcrumbs":6,"title":4},"824":{"body":61,"breadcrumbs":6,"title":4},"825":{"body":9,"breadcrumbs":6,"title":4},"826":{"body":12,"breadcrumbs":6,"title":4},"827":{"body":19,"breadcrumbs":6,"title":4},"828":{"body":25,"breadcrumbs":6,"title":4},"829":{"body":23,"breadcrumbs":6,"title":4},"83":{"body":71,"breadcrumbs":6,"title":5},"830":{"body":104,"breadcrumbs":6,"title":4},"831":{"body":68,"breadcrumbs":6,"title":4},"832":{"body":9,"breadcrumbs":6,"title":4},"833":{"body":34,"breadcrumbs":6,"title":4},"834":{"body":210,"breadcrumbs":6,"title":4},"835":{"body":21,"breadcrumbs":6,"title":4},"836":{"body":15,"breadcrumbs":6,"title":4},"837":{"body":84,"breadcrumbs":6,"title":4},"838":{"body":83,"breadcrumbs":6,"title":4},"839":{"body":95,"breadcrumbs":6,"title":4},"84":{"body":37,"breadcrumbs":3,"title":2},"840":{"body":53,"breadcrumbs":6,"title":4},"841":{"body":10,"breadcrumbs":6,"title":4},"842":{"body":66,"breadcrumbs":6,"title":4},"843":{"body":22,"breadcrumbs":6,"title":4},"844":{"body":20,"breadcrumbs":6,"title":4},"845":{"body":17,"breadcrumbs":6,"title":4},"846":{"body":53,"breadcrumbs":6,"title":4},"847":{"body":34,"breadcrumbs":6,"title":4},"848":{"body":16,"breadcrumbs":6,"title":4},"849":{"body":40,"breadcrumbs":6,"title":4},"85":{"body":26,"breadcrumbs":6,"title":5},"850":{"body":9,"breadcrumbs":6,"title":4},"851":{"body":9,"breadcrumbs":6,"title":4},"852":{"body":83,"breadcrumbs":6,"title":4},"853":{"body":80,"breadcrumbs":6,"title":4},"854":{"body":67,"breadcrumbs":6,"title":4},"855":{"body":15,"breadcrumbs":6,"title":4},"856":{"body":11,"breadcrumbs":6,"title":4},"857":{"body":30,"breadcrumbs":6,"title":4},"858":{"body":128,"breadcrumbs":6,"title":4},"859":{"body":55,"breadcrumbs":6,"title":4},"86":{"body":64,"breadcrumbs":5,"title":4},"860":{"body":55,"breadcrumbs":6,"title":4},"861":{"body":130,"breadcrumbs":6,"title":4},"862":{"body":114,"breadcrumbs":6,"title":4},"863":{"body":21,"breadcrumbs":6,"title":4},"864":{"body":125,"breadcrumbs":6,"title":4},"865":{"body":117,"breadcrumbs":6,"title":4},"866":{"body":29,"breadcrumbs":6,"title":4},"867":{"body":75,"breadcrumbs":6,"title":4},"868":{"body":23,"breadcrumbs":6,"title":4},"869":{"body":60,"breadcrumbs":6,"title":4},"87":{"body":57,"breadcrumbs":5,"title":4},"870":{"body":7,"breadcrumbs":6,"title":4},"871":{"body":22,"breadcrumbs":6,"title":4},"872":{"body":26,"breadcrumbs":6,"title":4},"873":{"body":42,"breadcrumbs":6,"title":4},"874":{"body":14,"breadcrumbs":6,"title":4},"875":{"body":35,"breadcrumbs":6,"title":4},"876":{"body":22,"breadcrumbs":6,"title":4},"877":{"body":15,"breadcrumbs":6,"title":4},"878":{"body":31,"breadcrumbs":6,"title":4},"879":{"body":28,"breadcrumbs":6,"title":4},"88":{"body":43,"breadcrumbs":4,"title":3},"880":{"body":59,"breadcrumbs":6,"title":4},"881":{"body":32,"breadcrumbs":6,"title":4},"882":{"body":29,"breadcrumbs":7,"title":5},"883":{"body":6,"breadcrumbs":7,"title":5},"884":{"body":22,"breadcrumbs":7,"title":5},"885":{"body":11,"breadcrumbs":7,"title":5},"886":{"body":7,"breadcrumbs":7,"title":5},"887":{"body":2,"breadcrumbs":7,"title":5},"888":{"body":8,"breadcrumbs":3,"title":1},"889":{"body":2,"breadcrumbs":4,"title":2},"89":{"body":155,"breadcrumbs":2,"title":1},"890":{"body":20,"breadcrumbs":6,"title":4},"891":{"body":22,"breadcrumbs":6,"title":4},"892":{"body":23,"breadcrumbs":6,"title":4},"893":{"body":8,"breadcrumbs":6,"title":4},"894":{"body":26,"breadcrumbs":7,"title":5},"895":{"body":34,"breadcrumbs":7,"title":5},"896":{"body":8,"breadcrumbs":6,"title":4},"897":{"body":29,"breadcrumbs":7,"title":5},"898":{"body":18,"breadcrumbs":7,"title":5},"899":{"body":11,"breadcrumbs":7,"title":5},"9":{"body":180,"breadcrumbs":6,"title":3},"90":{"body":0,"breadcrumbs":7,"title":3},"900":{"body":18,"breadcrumbs":7,"title":5},"901":{"body":7,"breadcrumbs":6,"title":4},"902":{"body":18,"breadcrumbs":7,"title":5},"903":{"body":12,"breadcrumbs":7,"title":5},"904":{"body":11,"breadcrumbs":6,"title":4},"905":{"body":27,"breadcrumbs":6,"title":4},"906":{"body":9,"breadcrumbs":6,"title":4},"907":{"body":37,"breadcrumbs":6,"title":4},"908":{"body":25,"breadcrumbs":6,"title":4},"909":{"body":39,"breadcrumbs":6,"title":4},"91":{"body":58,"breadcrumbs":6,"title":2},"910":{"body":12,"breadcrumbs":6,"title":4},"911":{"body":25,"breadcrumbs":6,"title":4},"912":{"body":98,"breadcrumbs":6,"title":4},"913":{"body":45,"breadcrumbs":6,"title":4},"914":{"body":42,"breadcrumbs":6,"title":4},"915":{"body":127,"breadcrumbs":6,"title":4},"916":{"body":119,"breadcrumbs":6,"title":4},"917":{"body":32,"breadcrumbs":6,"title":4},"918":{"body":20,"breadcrumbs":6,"title":4},"919":{"body":91,"breadcrumbs":6,"title":4},"92":{"body":41,"breadcrumbs":6,"title":2},"920":{"body":32,"breadcrumbs":6,"title":4},"921":{"body":55,"breadcrumbs":6,"title":4},"922":{"body":26,"breadcrumbs":6,"title":4},"923":{"body":83,"breadcrumbs":6,"title":4},"924":{"body":69,"breadcrumbs":6,"title":4},"925":{"body":38,"breadcrumbs":6,"title":4},"926":{"body":13,"breadcrumbs":6,"title":4},"927":{"body":34,"breadcrumbs":6,"title":4},"928":{"body":20,"breadcrumbs":6,"title":4},"929":{"body":139,"breadcrumbs":6,"title":4},"93":{"body":13,"breadcrumbs":7,"title":3},"930":{"body":12,"breadcrumbs":6,"title":4},"931":{"body":6,"breadcrumbs":6,"title":4},"932":{"body":19,"breadcrumbs":6,"title":4},"933":{"body":84,"breadcrumbs":6,"title":4},"934":{"body":21,"breadcrumbs":6,"title":4},"935":{"body":27,"breadcrumbs":6,"title":4},"936":{"body":16,"breadcrumbs":6,"title":4},"937":{"body":20,"breadcrumbs":6,"title":4},"938":{"body":30,"breadcrumbs":6,"title":4},"939":{"body":41,"breadcrumbs":6,"title":4},"94":{"body":105,"breadcrumbs":6,"title":2},"940":{"body":9,"breadcrumbs":6,"title":4},"941":{"body":13,"breadcrumbs":6,"title":4},"942":{"body":24,"breadcrumbs":6,"title":4},"943":{"body":7,"breadcrumbs":6,"title":4},"944":{"body":10,"breadcrumbs":6,"title":4},"945":{"body":20,"breadcrumbs":6,"title":4},"946":{"body":13,"breadcrumbs":6,"title":4},"947":{"body":32,"breadcrumbs":6,"title":4},"948":{"body":9,"breadcrumbs":6,"title":4},"949":{"body":10,"breadcrumbs":6,"title":4},"95":{"body":35,"breadcrumbs":7,"title":3},"950":{"body":66,"breadcrumbs":6,"title":4},"951":{"body":100,"breadcrumbs":6,"title":4},"952":{"body":27,"breadcrumbs":6,"title":4},"953":{"body":36,"breadcrumbs":6,"title":4},"954":{"body":10,"breadcrumbs":6,"title":4},"955":{"body":9,"breadcrumbs":6,"title":4},"956":{"body":130,"breadcrumbs":6,"title":4},"957":{"body":22,"breadcrumbs":5,"title":3},"958":{"body":443,"breadcrumbs":4,"title":2},"959":{"body":20,"breadcrumbs":4,"title":2},"96":{"body":48,"breadcrumbs":6,"title":2},"960":{"body":49,"breadcrumbs":4,"title":2},"961":{"body":23,"breadcrumbs":5,"title":3},"962":{"body":34,"breadcrumbs":3,"title":1},"963":{"body":51,"breadcrumbs":4,"title":2},"964":{"body":66,"breadcrumbs":4,"title":2},"965":{"body":28,"breadcrumbs":5,"title":3},"966":{"body":17,"breadcrumbs":3,"title":1},"967":{"body":0,"breadcrumbs":5,"title":3},"968":{"body":69,"breadcrumbs":4,"title":2},"969":{"body":434,"breadcrumbs":4,"title":2},"97":{"body":119,"breadcrumbs":6,"title":2},"98":{"body":105,"breadcrumbs":8,"title":4},"99":{"body":155,"breadcrumbs":9,"title":5}},"docs":{"0":{"body":"The Glean SDKs are modern cross-platform telemetry client libraries and are a part of the Glean project . Glean logo The Glean SDKs are available for several programming languages and development environments. Each SDK aims to contain the same group of features with similar, but idiomatic APIs. To learn more about each SDK, refer to the SDKs overview page. To get started adding Glean to your project, choose one of the following guides: Kotlin Get started adding Glean to an Android application or library. Swift Get started adding Glean to an iOS application or library. Python Get started adding Glean to any Python project. Rust Get started adding Glean to any Rust project or library. JavaScript Get started adding Glean to a website, web extension or Node.js project. QML Get started adding Glean to a Qt/QML application or library. Server Get started adding Glean to a server-side application. For development documentation on the Glean SDK, refer to the Glean SDK development book .","breadcrumbs":"Glean » Introduction","id":"0","title":"Introduction"},"1":{"body":"","breadcrumbs":"Glean » Sections","id":"1","title":"Sections"},"10":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Kotlin project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so. Currently, this SDK only supports the Android platform.","breadcrumbs":"Adding Glean to your project » Kotlin » Adding Glean to your Kotlin project","id":"10","title":"Adding Glean to your Kotlin project"},"100":{"body":"Let's work through an example to see how these lifetimes play out in practice. Let's suppose we have a user preference, \"turbo mode\", which defaults to false, but the user can turn it to true at any time. We want to know when this flag is true so we can measure its affect on other metrics in the same ping. In the following diagram, we look at a time period that sends 4 pings across two separate runs of the application. We assume here, that like the Glean SDK's built-in metrics ping , the developer writing the metric isn't in control of when the ping is submitted. In this diagram, the ping measurement windows are represented as rectangles, but the moment the ping is \"submitted\" is represented by its right edge. The user changes the \"turbo mode\" setting from false to true in the first run, and then toggles it again twice in the second run. Metric lifetime timeline A. Ping lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. It is included in the first ping after being recorded (Ping 2), which causes it to be cleared. B. Ping lifetime, set on init and change : The default value is included in Ping 1, and the changed value is included in Ping 2, which causes it to be cleared. It therefore misses Ping 3, but when the application is started, it is recorded again and it is included in Ping 4. However, this causes it to be cleared again and it is not in Ping 5. C. Application lifetime, set on change : The value isn't included in Ping 1, because Glean doesn't know about it yet. After the value is changed, it is included in Pings 2 and 3, but then due to application restart it is cleared, so it is not included until the value is manually toggled again. D. Application, set on init and change : The default value is included in Ping 1, and the changed value is included in Pings 2 and 3. Even though the application startup causes it to be cleared, it is set again, and all subsequent pings also have the value. E. User, set on change : The default value is missing from Ping 1, but since user lifetime metrics aren't cleared unless the user profile is reset (e.g. on Android, when the product is uninstalled), it is included in all subsequent pings. F. User, set on init and change : Since user lifetime metrics aren't cleared unless the user profile is reset, it is included in all subsequent pings. This would be true even if the \"turbo mode\" preference were never changed again. Note that for all of the metric configurations, the toggle of the preference off and on during Ping 4 is completely missed. If you need to create a ping containing one, and only one, value for this metric, consider using a custom ping to create a ping whose lifetime matches the lifetime of the value.","breadcrumbs":"Metrics » Adding new metrics » A lifetime example","id":"100","title":"A lifetime example"},"101":{"body":"If the timing at which the metric is sent in the ping needs to closely match the timing of the metrics value, the best option is to use a custom ping to manually control when pings are sent. This is especially useful when metrics need to be tightly related to one another, for example when you need to measure the distribution of frame paint times when a particular rendering backend is in use. If these metrics were in different pings, with different measurement windows, it is much harder to do that kind of reasoning with much certainty.","breadcrumbs":"Metrics » Adding new metrics » What if none of these lifetimes are appropriate?","id":"101","title":"What if none of these lifetimes are appropriate?"},"102":{"body":"Metric names have a maximum length of 30 characters.","breadcrumbs":"Metrics » Adding new metrics » What should this new metric be called?","id":"102","title":"What should this new metric be called?"},"103":{"body":"There's a lot of value using the same name for analogous metrics collected across different products. For example, BigQuery makes it simple to join columns with the same name across multiple tables. Therefore, we encourage you to investigate if a similar metric is already being collected by another product. If it is, there may be an opportunity for code reuse across these products, and if all the projects are using the Glean SDK, it's easy for libraries to send their own metrics. If sharing the code doesn't make sense, at a minimum we recommend using the same metric name for similar actions and concepts whenever possible.","breadcrumbs":"Metrics » Adding new metrics » Reuse names from other applications","id":"103","title":"Reuse names from other applications"},"104":{"body":"Metric identifiers (the combination of a metric's category and name) must be unique across all metrics that are sent by a single application. This includes not only the metrics defined in the app's metrics.yaml, but the metrics.yaml of any Glean SDK-using library that the application uses, including the Glean SDK itself. Therefore, care should be taken to name things specifically enough so as to avoid namespace collisions. In practice, this generally involves thinking carefully about the category of the metric, more than the name. Note: Duplicate metric identifiers are not currently detected at build time. See bug 1578383 for progress on that. However, the probe_scraper process, which runs nightly, will detect duplicate metrics and e-mail the notification_emails associated with the given metrics.","breadcrumbs":"Metrics » Adding new metrics » Make names unique within an application","id":"104","title":"Make names unique within an application"},"105":{"body":"More broadly, you should choose the names of metrics to be as specific as possible. It is not necessary to put the type of the metric in the category or name, since this information is retained in other ways through the entire end-to-end system. For example, if defining a set of events related to search, put them in a category called search, rather than just events or search_events. The events word here would be redundant.","breadcrumbs":"Metrics » Adding new metrics » Be as specific as possible","id":"105","title":"Be as specific as possible"},"106":{"body":"The current set of metrics the Glean SDKs support is based on known common use cases, but new use cases are discovered all the time. Please reach out to us on #glean:mozilla.org . If you think you need a new metric type, we have a process for that .","breadcrumbs":"Metrics » Adding new metrics » What if none of these metric types is the right fit?","id":"106","title":"What if none of these metric types is the right fit?"},"107":{"body":"The Glean SDK has rich support for writing unit tests involving metrics. Writing a good unit test is a large topic, but in general, you should write unit tests for all new telemetry that does the following: Performs the operation being measured. Asserts that metrics contain the expected data, using the testGetValue API on the metric. Where applicable, asserts that no errors are recorded, such as when values are out of range, using the testGetNumRecordedErrors API. In addition to unit tests, it is good practice to validate the incoming data for the new metric on a pre-release channel to make sure things are working as expected.","breadcrumbs":"Metrics » Adding new metrics » How do I make sure my metric is working?","id":"107","title":"How do I make sure my metric is working?"},"108":{"body":"The metrics.yaml file defines the metrics your application or library will send. They are organized into categories. The overall organization is: # Required to indicate this is a `metrics.yaml` file\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 toolbar: click: type: event description: | Event to record toolbar clicks. metadata: tags: - Interaction notification_emails: - CHANGE-ME@example.com bugs: - https://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review expires: 2019-06-01 # <-- Update to a date in the future double_click: ... Refer to the metrics YAML registry format for a full reference on the metrics.yaml file structure.","breadcrumbs":"Metrics » Adding new metrics » Adding the metric to the metrics.yaml file","id":"108","title":"Adding the metric to the metrics.yaml file"},"109":{"body":"The reference documentation for each metric type goes into detail about using each metric type from your code. Note that all Glean metrics are write-only. Outside of unit tests, it is impossible to retrieve a value from the Glean SDK's database. While this may seem limiting, this is required to: enforce the semantics of certain metric types (e.g. that Counters can only be incremented). ensure the lifetime of the metric (when it is cleared or reset) is correctly handled.","breadcrumbs":"Metrics » Adding new metrics » Using the metric from your code","id":"109","title":"Using the metric from your code"},"11":{"body":"The Glean Kotlin SDK is published on maven.mozilla.org . To use it, you need to add the following to your project's top-level build file, in the allprojects block (see e.g. Glean SDK's own build.gradle ): repositories { maven { url \"https://maven.mozilla.org/maven2\" }\n} Each module that uses the Glean Kotlin SDK needs to specify it in its build file, in the dependencies block. Add this to your Gradle configuration: implementation \"org.mozilla.telemetry:glean:{latest-version}\" Pick the correct version The {latest-version} placeholder in the above link should be replaced with the latest version of the Glean SDK . For example, if version 63.0.0 is the latest version, then the include directive becomes: implementation \"org.mozilla.telemetry:glean:63.0.0\" Size impact on the application APK The Glean Kotlin SDK APK ships binary libraries for all the supported platforms. Each library file measures about 600KB. If the final APK size of the consuming project is a concern, please enable ABI splits .","breadcrumbs":"Adding Glean to your project » Kotlin » Setting up the dependency","id":"11","title":"Setting up the dependency"},"110":{"body":"One thing to note is that we try to adhere to the coding conventions of each language wherever possible, so the metric name and category in the metrics.yaml (which is in snake_case) may be changed to some other case convention, such as camelCase, when used from code. Event extras and labels are never capitalized, no matter the target language. Category and metric names in the metrics.yaml are in snake_case, but given the Kotlin coding standards defined by ktlint , these identifiers must be camelCase in Kotlin. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: import org.mozilla.yourApplication.GleanMetrics.Views\nGleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, but given the Swift coding standards defined by swiftlint , these identifiers must be camelCase in Swift. For example, the metric defined in the metrics.yaml as: views: login_opened: ... is accessible in Kotlin as: GleanMetrics.Views.loginOpened... Category and metric names in the metrics.yaml are in snake_case, which matches the PEP8 standard, so no translation is needed for Python. Given the Rust coding standards defined by clippy , identifiers should all be snake_case. This includes category names which in the metrics.yaml are dotted.snake_case: compound.category: metric_name: ... In Rust this becomes: use firefox_on_glean::metrics; metrics::compound_category::metric_name... JavaScript identifiers are customarily camelCase. This requires transforming a metric defined in the metrics.yaml as: compound.category: metric_name: ... to a form useful in JS as: import * as compoundCategory from \"./path/to/generated/files/compoundCategory.js\"; compoundCategory.metricName... Firefox Desktop has Coding Style Guidelines for both C++ and JS. This results in, for a metric defined in the metrics.yaml as: compound.category: metric_name: ... an identifier that looks like: C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::compound_category::metric_name... JavaScript Glean.compoundCategory.metricName... Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Adding new metrics » Capitalization","id":"110","title":"Capitalization"},"111":{"body":"In order to support unit testing inside of client applications using the Glean SDK, a set of testing API functions have been included. The intent is to make the Glean SDKs easier to test 'out of the box' in any client application it may be used in. These functions expose a way to inspect and validate recorded metric values within the client application. but are restricted to test code only. (Outside of a testing context, Glean APIs are otherwise write-only so that it can enforce semantics and constraints about data). To encourage using the testing APIs, it is also possible to generate testing coverage reports to show which metrics in your project are tested.","breadcrumbs":"Metrics » Testing metrics » Unit testing Glean metrics","id":"111","title":"Unit testing Glean metrics"},"112":{"body":"In order to enable metrics testing APIs in each SDK, Glean must be reset and put in testing mode. For documentation on how to do that, refer to Initializing - Testing API . Check out full examples of using the metric testing API on each Glean SDK. All examples omit the step of resetting Glean for tests to focus solely on metrics unit testing. // Record a metric value with extra to validate against\nGleanMetrics.BrowserEngagement.click.record( BrowserEngagementExtras(font = \"Courier\")\n) // Record more events without extras attached\nBrowserEngagement.click.record()\nBrowserEngagement.click.record() // Retrieve a snapshot of the recorded events\nval events = BrowserEngagement.click.testGetValue()!! // Check if we collected all 3 events in the snapshot\nassertEquals(3, events.size) // Check extra key/value for first event in the list\nassertEquals(\"Courier\", events.elementAt(0).extra[\"font\"]) // Record a metric value with extra to validate against\nGleanMetrics.BrowserEngagement.click.record([.font: \"Courier\"]) // Record more events without extras attached\nBrowserEngagement.click.record()\nBrowserEngagement.click.record() // Retrieve a snapshot of the recorded events\nlet events = BrowserEngagement.click.testGetValue()! // Check if we collected all 3 events in the snapshot\nXCTAssertEqual(3, events.count) // Check extra key/value for first event in the list\nXCTAssertEqual(\"Courier\", events[0].extra?[\"font\"]) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Record a metric value with extra to validate against\nmetrics.url.visit.add(1) # Check if we collected any events into the 'click' metric\nassert metrics.url.visit.test_get_value() is not Null # Retrieve a snapshot of the recorded events\nassert 1 == metrics.url.visit.test_get_value()","breadcrumbs":"Metrics » Testing metrics » Example of using the test API","id":"112","title":"Example of using the test API"},"113":{"body":"Glean can generate coverage reports to track which metrics are tested in your unit test suite. There are three steps to integrate it into your continuous integration workflow: recording coverage, post-processing the results, and uploading the results.","breadcrumbs":"Metrics » Testing metrics » Generating testing coverage reports","id":"113","title":"Generating testing coverage reports"},"114":{"body":"Glean testing coverage is enabled by setting the GLEAN_TEST_COVERAGE environment variable to the name of a file to store results. It is good practice to set it to the absolute path to a file, since some testing harnesses (such as cargo test) may change the current working directory. GLEAN_TEST_COVERAGE=$(realpath glean_coverage.txt) make test","breadcrumbs":"Metrics » Testing metrics » Recording coverage","id":"114","title":"Recording coverage"},"115":{"body":"A post-processing step is required to convert the raw output in the file specified by GLEAN_TEST_COVERAGE into usable output for coverage reporting tools. Currently, the only coverage reporting tool supported is codecov.io . This post-processor is available in the coverage subcommand in the glean_parser tool. For some build systems, glean_parser is already installed for you by the build system integration at the following locations: On Android/Gradle, $GRADLE_HOME/glean/bootstrap-4.5.11/Miniconda3/bin/glean_parser On iOS, $PROJECT_ROOT/.venv/bin/glean_parser For other systems, install glean_parser using pip install glean_parser The glean_parser coverage command requires the following parameters: -f: The output format to produce, for example codecovio to produce codecov.io 's custom format. -o: The path to the output file, for example codecov.json. -c: The input raw coverage file. glean_coverage.txt in the example above. A list of the metrics.yaml files in your repository. For example, to produce output for codecov.io : glean_parser coverage -f codecovio -o glean_coverage.json -c glean_coverage.txt app/metrics.yaml In this example, the glean_coverage.json file is now ready for uploading to codecov.io.","breadcrumbs":"Metrics » Testing metrics » Post-processing the results","id":"115","title":"Post-processing the results"},"116":{"body":"If using codecov.io, the uploader doesn't send coverage results for YAML files by default. Pass the -X yaml option to the uploader to make sure they are included: bash <(curl -s https://codecov.io/bash) -X yaml Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Testing metrics » Uploading coverage","id":"116","title":"Uploading coverage"},"117":{"body":"It is worth investing time when instrumentation is added to the product to understand if the data looks reasonable and expected, and to take action if it does not. It is important to highlight that an automated rigorous test suite for testing metrics is an important precondition for building confidence in newly collected data (especially business-critical ones). The following checklist could help guide this validation effort. Before releasing the product with the new data collection, make sure the data looks as expected by generating sample data on a local machine and inspecting it on the Glean Debug View (see the debugging facilities) : a. Is the data showing up in the correct ping(s)? b. Does the metric report the expected data? c. If exercising the same path again, is it expected for the data to be submitted again? And does it? As users start adopting the version of the product with the new data collection (usually within a few days of release), the initial data coming in should be checked, to understand how the measurements are behaving in the wild: a. Does this organically-sent data satisfy the same quality expectations the manually-sent data did in Step 1? b. Is the metric showing up correctly in the Glean Dictionary ? c. Is there any new error being reported for the new data points? If so, does this point to an edge case that should be documented and/or fixed in the code? d. As the first three or four days pass, distributions will converge towards their final shapes. Consider extreme values; are there a very high number of zero/minimum values when there shouldn't be, or values near what you would realistically expect to be the maximum (e.g. a timespan for a single day that is reporting close to 86,400 seconds)? In case of oddities in the data, how much of the product population is affected? Does this require changing the instrumentation or documenting?","breadcrumbs":"Metrics » Validating metrics » Validating the collected data","id":"117","title":"Validating the collected data"},"118":{"body":"Data practitioners that lack familiarity with YAML or product-specific development workflows can still document any discovered edge-cases and anomalies by identifying the metric in the Glean Dictionary and initiate adding commentary from the metric page. After enough data is collected from the product population, are the expectations from the previous points still met?","breadcrumbs":"Metrics » Validating metrics » How to annotate metrics without changing the source code?","id":"118","title":"How to annotate metrics without changing the source code?"},"119":{"body":"In case of multiple distinct product populations, the above checklist should be ideally run against all of them. For example, in case of Firefox , the checklist should be run for the Nightly population first, then on the other channels as the collection moves across the release trains. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Validating metrics » Does the product support multiple release channels?","id":"119","title":"Does the product support multiple release channels?"},"12":{"body":"Due to its use of a native library you will need additional setup to allow local testing. First add a new configuration to your build.gradle, just before your dependencies: configurations { jnaForTest\n} Then add the following lines to your dependencies block: jnaForTest \"net.java.dev.jna:jna:5.6.0@jar\"\ntestImplementation files(configurations.jnaForTest.copyRecursive().files)\ntestImplementation \"org.mozilla.telemetry:glean-forUnitTests:${project.ext.glean_version}\" Note: Always use org.mozilla.telemetry:glean-forUnitTests. This package is standalone and its version will be exported from the main Glean package automatically.","breadcrumbs":"Adding Glean to your project » Kotlin » Dependency for local testing","id":"12","title":"Dependency for local testing"},"120":{"body":"The Glean SDKs record the number of errors that occur when metrics are passed invalid data or are otherwise used incorrectly. This information is reported back in special labeled counter metrics in the glean.error category. Error metrics are included in the same pings as the metric that caused the error. Additionally, error metrics are always sent in the metrics ping ping. The following categories of errors are recorded: invalid_value: The metric value was invalid. invalid_label: The label on a labeled metric was invalid. invalid_state: The metric caught an invalid state while recording. invalid_overflow: The metric value to be recorded overflows the metric-specific upper range. invalid_type: The metric value is not of the expected type. This error type is only recorded by the Glean JavaScript SDK. This error may only happen in dynamically typed languages. For example, if you had a string metric and passed it a string that was too long: MyMetrics.stringMetric.set(\"this_string_is_longer_than_the_limit_for_string_metrics\") The following error metric counter would be incremented: Glean.error.invalidOverflow[\"my_metrics.string_metric\"].add(1) Resulting in the following keys in the ping: { \"metrics\": { \"labeled_counter\": { \"glean.error.invalid_overflow\": { \"my_metrics.string_metric\": 1 } } }\n} If you have a debug build of the Glean SDK, details about the errors being recorded are included in the logs. This detailed information is not included in Glean pings. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Error reporting » Error reporting","id":"120","title":"Error reporting"},"121":{"body":"If you are looking for the metrics collected by Glean.js, refer to the documentation over on the @mozilla/glean.js repository.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » The Glean JavaScript SDK provides a slightly different set of metrics and pings","id":"121","title":"The Glean JavaScript SDK provides a slightly different set of metrics and pings"},"122":{"body":"This document enumerates the metrics collected by this project using the Glean SDK . This project may depend on other projects which also collect metrics. This means you might have to go searching through the dependency tree to get a full picture of everything collected by this project.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » Metrics","id":"122","title":"Metrics"},"123":{"body":"all-pings baseline deletion-request metrics","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » Pings","id":"123","title":"Pings"},"124":{"body":"These metrics are sent in every ping. All Glean pings contain built-in metrics in the ping_info and client_info sections. In addition to those built-in metrics, the following metrics are added to the ping: Name Type Description Data reviews Extras Expiration Data Sensitivity glean.client.annotation.experimentation_id string An experimentation identifier derived and provided by the application for the purpose of experimentation enrollment. Bug 1848201 never 1 glean.error.invalid_label labeled_counter Counts the number of times a metric was set with an invalid label. The labels are the category.name identifier of the metric. Bug 1499761 never 1 glean.error.invalid_overflow labeled_counter Counts the number of times a metric was set a value that overflowed. The labels are the category.name identifier of the metric. Bug 1591912 never 1 glean.error.invalid_state labeled_counter Counts the number of times a timing metric was used incorrectly. The labels are the category.name identifier of the metric. Bug 1499761 never 1 glean.error.invalid_value labeled_counter Counts the number of times a metric was set to an invalid value. The labels are the category.name identifier of the metric. Bug 1499761 never 1 glean.restarted event Recorded when the Glean SDK is restarted. Only included in custom pings that record events. For more information, please consult the Custom Ping documentation . Bug 1716725 never 1","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » all-pings","id":"124","title":"all-pings"},"125":{"body":"This is a built-in ping that is assembled out of the box by the Glean SDK. See the Glean SDK documentation for the baseline ping . This ping is sent if empty. This ping includes the client id . Data reviews for this ping: https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3 https://bugzilla.mozilla.org/show_bug.cgi?id=1599877#c25 Bugs related to this ping: https://bugzilla.mozilla.org/1512938 https://bugzilla.mozilla.org/1599877 Reasons this ping may be sent: active: The ping was submitted when the application became active again, which includes when the application starts. In earlier versions, this was called foreground. *Note*: this ping will not contain the `glean.baseline.duration` metric. dirty_startup: The ping was submitted at startup, because the application process was killed before the Glean SDK had the chance to generate this ping, before becoming inactive, in the last session. *Note*: this ping will not contain the `glean.baseline.duration` metric. inactive: The ping was submitted when becoming inactive. In earlier versions, this was called background. All Glean pings contain built-in metrics in the ping_info and client_info sections. In addition to those built-in metrics, the following metrics are added to the ping: Name Type Description Data reviews Extras Expiration Data Sensitivity glean.baseline.duration timespan The duration of the last foreground session. Bug 1512938 never 1, 2 glean.validation.pings_submitted labeled_counter A count of the pings submitted, by ping type. This metric appears in both the metrics and baseline pings. - On the metrics ping, the counts include the number of pings sent since the last metrics ping (including the last metrics ping) - On the baseline ping, the counts include the number of pings send since the last baseline ping (including the last baseline ping) Bug 1586764 never 1","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » baseline","id":"125","title":"baseline"},"126":{"body":"This is a built-in ping that is assembled out of the box by the Glean SDK. See the Glean SDK documentation for the deletion-request ping . This ping is sent if empty. This ping includes the client id . Data reviews for this ping: https://bugzilla.mozilla.org/show_bug.cgi?id=1587095#c6 https://bugzilla.mozilla.org/show_bug.cgi?id=1702622#c2 Bugs related to this ping: https://bugzilla.mozilla.org/1587095 https://bugzilla.mozilla.org/1702622 Reasons this ping may be sent: at_init: The ping was submitted at startup. Glean discovered that between the last time it was run and this time, upload of data has been disabled. set_upload_enabled: The ping was submitted between Glean init and Glean shutdown. Glean was told after init but before shutdown that upload has changed from enabled to disabled. All Glean pings contain built-in metrics in the ping_info and client_info sections. This ping contains no metrics.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » deletion-request","id":"126","title":"deletion-request"},"127":{"body":"This is a built-in ping that is assembled out of the box by the Glean SDK. See the Glean SDK documentation for the metrics ping . This ping includes the client id . Data reviews for this ping: https://bugzilla.mozilla.org/show_bug.cgi?id=1512938#c3 https://bugzilla.mozilla.org/show_bug.cgi?id=1557048#c13 Bugs related to this ping: https://bugzilla.mozilla.org/1512938 Reasons this ping may be sent: overdue: The last ping wasn't submitted on the current calendar day, but it's after 4am, so this ping submitted immediately reschedule: A ping was just submitted. This ping was rescheduled for the next calendar day at 4am. today: The last ping wasn't submitted on the current calendar day, but it is still before 4am, so schedule to send this ping on the current calendar day at 4am. tomorrow: The last ping was already submitted on the current calendar day, so schedule this ping for the next calendar day at 4am. upgrade: This ping was submitted at startup because the application was just upgraded. All Glean pings contain built-in metrics in the ping_info and client_info sections. In addition to those built-in metrics, the following metrics are added to the ping: Name Type Description Data reviews Extras Expiration Data Sensitivity glean.database.size memory_distribution The size of the database file at startup. Bug 1656589 never 1 glean.error.io counter The number of times we encountered an IO error when writing a pending ping to disk. Bug 1686233 never 1 glean.error.preinit_tasks_overflow counter The number of tasks that overflowed the pre-initialization buffer. Only sent if the buffer ever overflows. In Version 0 this reported the total number of tasks enqueued. Bug 1609482 never 1 glean.upload.deleted_pings_after_quota_hit counter The number of pings deleted after the quota for the size of the pending pings directory or number of files is hit. Since quota is only calculated for the pending pings directory, and deletion request ping live in a different directory, deletion request pings are never deleted. Bug 1601550 never 1 glean.upload.discarded_exceeding_pings_size memory_distribution The size of pings that exceeded the maximum ping size allowed for upload. Bug 1597761 never 1 glean.upload.in_flight_pings_dropped counter How many pings were dropped because we found them already in-flight. Bug 1816401 never 1 glean.upload.missing_send_ids counter How many ping upload responses did we not record as a success or failure (in glean.upload.send_success or glean.upload.send_failue, respectively) due to an inconsistency in our internal bookkeeping? Bug 1816400 never 1 glean.upload.pending_pings counter The total number of pending pings at startup. This does not include deletion-request pings. Bug 1665041 never 1 glean.upload.pending_pings_directory_size memory_distribution The size of the pending pings directory upon initialization of Glean. This does not include the size of the deletion request pings directory. Bug 1601550 never 1 glean.upload.ping_upload_failure labeled_counter Counts the number of ping upload failures, by type of failure. This includes failures for all ping types, though the counts appear in the next successfully sent metrics ping. Bug 1589124 status_code_4xxstatus_code_5xxstatus_code_unknownunrecoverablerecoverable never 1 glean.upload.send_failure timing_distribution Time needed for a failed send of a ping to the servers and getting a reply back. Bug 1814592 never 1 glean.upload.send_success timing_distribution Time needed for a successful send of a ping to the servers and getting a reply back Bug 1814592 never 1 glean.validation.foreground_count counter On mobile, the number of times the application went to foreground. Bug 1683707 never 1 glean.validation.pings_submitted labeled_counter A count of the pings submitted, by ping type. This metric appears in both the metrics and baseline pings. - On the metrics ping, the counts include the number of pings sent since the last metrics ping (including the last metrics ping) - On the baseline ping, the counts include the number of pings send since the last baseline ping (including the last baseline ping) Bug 1586764 never 1 glean.validation.shutdown_dispatcher_wait timing_distribution Time waited for the dispatcher to unblock during shutdown. Most samples are expected to be below the 10s timeout used. Bug 1828066 never 1 glean.validation.shutdown_wait timing_distribution Time waited for the uploader at shutdown. Bug 1814592 never 1 Data categories are defined here . Found a bug? Edit this page on GitHub.","breadcrumbs":"Metrics » Metrics collected by the Glean SDKs » metrics","id":"127","title":"metrics"},"128":{"body":"A ping is a bundle of related metrics, gathered in a payload to be transmitted. The ping payload is encoded in JSON format and contains one or more of the common sections with shared information data. If data collection is enabled, the chosen Glean SDK may provide a set of built-in pings that are assembled out of the box without any developer intervention.","breadcrumbs":"Pings » Pings","id":"128","title":"Pings"},"129":{"body":"Payload structure The ping_info section seq start_time end_time reason (optional) experiments (optional) The client_info section app_build app_channel (optional) app_display_version build_date (optional) architecture client_id (optional) device_manufacturer (optional) device_model (optional) first_run_date os os_version android_sdk_version (optional) windows_build_number (optional) telemetry_sdk_build locale (optional) Ping submission URL Limitations Rate limiting Request body size limiting Storage quota Submitted headers Content-Type Date User-Agent (deprecated) X-Telemetry-Agent X-Debug-Id (optional) X-Source-Tags (optional)","breadcrumbs":"Pings » Table of contents","id":"129","title":"Table of contents"},"13":{"body":"In order for the Glean Kotlin SDK to generate an API for your metrics, two Gradle plugins must be included in your build: The Glean Gradle plugin JetBrains' Python envs plugin The Glean Gradle plugin is distributed through Mozilla's Maven, so we need to tell your build where to look for it by adding the following to the top of your build.gradle: buildscript { repositories { maven { url \"https://maven.mozilla.org/maven2\" } dependencies { classpath \"org.mozilla.telemetry:glean-gradle-plugin:{latest-version}\" } }\n} Important As above, the {latest-components-version} placeholder in the above link should be replaced with the version number of the Glean SDK used in your project. The JetBrains Python plugin is distributed in the Gradle plugin repository, so it can be included with: plugins { id \"com.jetbrains.python.envs\" version \"0.0.26\"\n} Right before the end of the same file, we need to apply the Glean Gradle plugin. Set any additional parameters to control the behavior of the Glean Gradle plugin before calling apply plugin. // Optionally, set any parameters to send to the plugin.\next.gleanGenerateMarkdownDocs = true\napply plugin: \"org.mozilla.telemetry.glean-gradle-plugin\" Rosetta 2 required on Apple Silicon On Apple Silicon machines (M1/M2/M3 MacBooks and iMacs) Rosetta 2 is required for the bundled Python. See the Apple documentation about Rosetta 2 and Bug 1775420 for details. You can install it with softwareupdate --install-rosetta Offline builds The Glean Gradle plugin has limited support for offline builds of applications that use the Glean SDK. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Kotlin » Setting up metrics and pings code generation","id":"13","title":"Setting up metrics and pings code generation"},"130":{"body":"Every ping payload has the following keys at the top-level: The ping_info section contains core metadata that is included in every ping that doesn't set the metadata.include_info_sections property to false. The client_info section contains information that identifies the client. It is included in every ping that doesn't set the metadata.include_info_sections property to false. When included, it contains a persistent client identifier client_id, except when the include_client_id property is set to false. The following keys are only present if any metrics or events were recorded for the given ping: The metrics section contains the submitted values for all metric types except for events . It has keys for each of the metric types, under which is data for each metric. The events section contains the events recorded in the ping. See the payload documentation for more details for each metric type in the metrics and events section.","breadcrumbs":"Pings » Payload structure","id":"130","title":"Payload structure"},"131":{"body":"Metadata about the ping itself. This section is included in every ping that doesn't set the metadata.include_info_sections property to false. The following fields are included in the ping_info section. Optional fields are marked accordingly. seq Type: Counter , Lifetime: User A running counter of the number of times pings of this type have been sent. start_time Type: Datetime , Lifetime: User The time of the start of collection of the data in the ping, in local time and with millisecond precision (by default), including timezone information. ( Note : Custom pings can opt-out of precise timestamps and use minute precision.) end_time Type: Datetime , Lifetime: Ping The time of the end of collection of the data in the ping, in local time and with millisecond precision (by default), including timezone information. This is also the time this ping was generated and is likely well before ping transmission time. ( Note : Custom pings can opt-out of precise timestamps and use minute precision.) reason (optional) The reason the ping was submitted. The specific set of values and their meanings are defined for each metric type in the reasons field in the pings.yaml file. experiments (optional) A dictionary of active experiments. This object contains experiment annotations keyed by the experiment id. Each annotation contains the experiment branch the client is enrolled in and may contain a string to string map with additional data in the extra key. Both the id and branch are truncated to 30 characters. See Using the Experiments API on how to record experiments data. { \"\": { \"branch\": \"branch-id\", \"extra\": { \"some-key\": \"a-value\" } }\n}","breadcrumbs":"Pings » The ping_info section","id":"131","title":"The ping_info section"},"132":{"body":"A limited amount of metrics that are generally useful across products. The data is provided by the embedding application or automatically fetched by the Glean SDK. It is collected at initialization time and sent in every ping afterwards. For historical reasons it contains metrics that are only useful on a certain platform. This section is included in every ping that doesn't set the metadata.include_info_sections property to false. Additional metrics require a proposal Adding new metrics maintained by the Glean SDKs team will require a full proposal and details on why that value is useful across multiple platforms and products and needs Glean SDKs team ownership. The Glean SDKs are not taking ownership of new metrics that are platform- or product-specific. The following fields are included in the client_info section. Optional fields are marked accordingly. app_build Type: String , Lifetime: Application The build identifier generated by the CI system (e.g. \"1234/A\"). If the value was not provided through configuration, this metric gets set to Unknown. app_channel (optional) Type: String , Lifetime: Application The product-provided release channel (e.g. \"beta\"). app_display_version Type: String , Lifetime: Application The user-visible version string (e.g. \"1.0.3\"). The meaning of the string (e.g. whether semver or a git hash) is application-specific. If the value was not provided through configuration, this metric gets set to Unknown. build_date (optional) Type: Datetime , Lifetime: Application architecture Type: String , Lifetime: Application The architecture of the device (e.g. \"arm\", \"x86\"). client_id (optional) Type: UUID , Lifetime: User A UUID identifying a profile and allowing user-oriented correlation of data. device_manufacturer (optional) Type: String , Lifetime: Application The manufacturer of the device the application is running on. Not set if the device manufacturer can't be determined (e.g. on Desktop). device_model (optional) Type: String , Lifetime: Application The model of the device the application is running on. On Android, this is Build.MODEL, the user-visible marketing name, like \"Pixel 2 XL\". Not set if the device model can't be determined (e.g. on Desktop). first_run_date Type: Datetime , Lifetime: User The date of the first run of the application, in local time and with day precision, including timezone information. os Type: String , Lifetime: Application The name of the operating system (e.g. \"Linux\", \"Android\", \"iOS\"). os_version Type: String , Lifetime: Application The user-visible version of the operating system (e.g. \"1.2.3\"). If the version detection fails, this metric gets set to Unknown. android_sdk_version (optional) Type: String , Lifetime: Application The Android specific SDK version of the software running on this hardware device (e.g. \"23\"). windows_build_number (optional ) Type: Quantity , Lifetime: Application The optional Windows build number, reported by Windows (e.g. 22000) and not set for other platforms. telemetry_sdk_build Type: String , Lifetime: Application The version of the Glean SDK. locale (optional) Type: String , Lifetime: Application The locale of the application during initialization (e.g. \"es-ES\"). If the locale can't be determined on the system, the value is \"und\", to indicate \"undetermined\".","breadcrumbs":"Pings » The client_info section","id":"132","title":"The client_info section"},"133":{"body":"The pings that the Glean SDKs generate are submitted to the Mozilla servers at specific paths, in order to provide additional metadata without the need to unpack the ping payload.","breadcrumbs":"Pings » Ping submission","id":"133","title":"Ping submission"},"134":{"body":"A typical submission URL looks like \"/submit////\" where: : the address of the server that receives the pings; : a unique application id, automatically detected by the Glean SDK; this is the value returned by Context.getPackageName() ; : the name of the ping; this can be one of the pings available out of the box with the Glean SDK, or a custom ping; : the version of the Glean ping schema; : a unique identifier for this ping.","breadcrumbs":"Pings » URL","id":"134","title":"URL"},"135":{"body":"To keep resource usage in check, the Glean SDK enforces some limitations on ping uploading and ping storage. Rate limiting Only up to 15 ping submissions every 60 seconds are allowed. For the JavaScript SDK that limit is higher and up to 40 ping submissions every 60 seconds are allowed. Request body size limiting The body of a ping request may have up to 1MB (after compression). Pings that exceed this size are discarded and don't get uploaded. Size and number of discarded pings are recorded on the internal Glean metric glean.upload.discarded_exceeding_pings_size . Storage quota Pending pings are stored on disk. Storage is scanned every time Glean is initialized and upon scanning Glean checks its size. If it exceeds a size of 10MB or 250 pending pings, pings are deleted to get the storage back to an accepted size. Pings are deleted oldest first, until the storage size is below the quota. The number of deleted pings due to exceeding storage quota is recorded on the metric glean.upload.deleted_pings_after_quota_hit and the size of the pending pings directory is recorded (regardless on whether quota has been reached) on the metric glean.upload.pending_pings_directory_size . Deletion request pings are not subject to this limitation and never get deleted.","breadcrumbs":"Pings » Limitations","id":"135","title":"Limitations"},"136":{"body":"A pre-defined set of headers is additionally sent along with the submitted ping. Content-Type Describes the data sent to the server. Value is always application/json; charset=utf-8. Date Submission date/time in GMT/UTC+0 offset, e.g. Mon, 23 Jan 2019 10:10:10 GMT+00:00. User-Agent (deprecated) Up to Glean v44.0.0 and Glean.js v0.13.0 this contained the Glean SDK version and platform information. Newer Glean SDKs do not overwrite this header. See X-Telemetry-Agent for details. Clients might still send it, for example, when sending pings from browsers it will contain the characteristic browser UA string . This header is parsed by the Glean pipeline and can be queried at analysis time through the metadata.user_agent.* fields in the ping tables. X-Telemetry-Agent The Glean SDK version and platform this ping is sent from. Useful for debugging purposes when pings are sent to the error stream . as it describes the application and the Glean SDK used for sending the ping. It's looks like Glean/40.0.0 (Kotlin on Android), where 40.0.0 is the Glean Kotlin SDK version number and Kotlin on Android is the name of the language used by the SDK that sent the request plus the name of the platform it is running on. X-Debug-Id (optional) Debug header attached to Glean pings by using the debug APIs , e.g. test-tag. When this header is present, the ping is redirected to the Glean Debug View . X-Source-Tags (optional) A list of tags to associate with the ping, useful for clustering pings at analysis time, for example to tell data generated from CI from other data e.g. automation, perf. This header is attached to Glean pings by using the debug APIs . Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Submitted headers","id":"136","title":"Submitted headers"},"137":{"body":"Applications can define metrics that are sent in custom pings. Unlike the built-in pings, custom pings are sent explicitly by the application. This is useful when the scheduling of the built-in pings ( metrics , baseline and events ) are not appropriate for your data. Since the timing of the submission of custom pings is handled by the application, the measurement window is under the application's control. This is especially useful when metrics need to be tightly related to one another, for example when you need to measure the distribution of frame paint times when a particular rendering backend is in use. If these metrics were in different pings, with different measurement windows, it is much harder to do that kind of reasoning with much certainty.","breadcrumbs":"Pings » Adding new custom pings » Custom pings","id":"137","title":"Custom pings"},"138":{"body":"Custom pings must be defined in a pings.yaml file , placed in the same directory alongside your app's metrics.yaml file. For example, to define a custom ping called search specifically for search information: $schema: moz://mozilla.org/schemas/glean/pings/2-0-0 search: description: > A ping to record search data. metadata: tags: - Search include_client_id: false notification_emails: - CHANGE-ME@example.com bugs: - http://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review Tags are an optional feature you can use to provide an additional layer of categorization to pings. Any tags specified in the metadata section of a ping must have a corresponding entry in a tags YAML registry for your project. Refer to the pings YAML registry format for a full reference on the pings.yaml file structure.","breadcrumbs":"Pings » Adding new custom pings » Defining a custom ping","id":"138","title":"Defining a custom ping"},"139":{"body":"To send a metric on a custom ping, you add the custom ping's name to the send_in_pings parameter in the metrics.yaml file.","breadcrumbs":"Pings » Adding new custom pings » Sending metrics in a custom ping","id":"139","title":"Sending metrics in a custom ping"},"14":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Swift project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so. Currently, this SDK only supports the iOS platform.","breadcrumbs":"Adding Glean to your project » Swift » Adding Glean to your Swift project","id":"14","title":"Adding Glean to your Swift project"},"140":{"body":"After defining a custom ping, before it can be used for sending data, its metadata must be loaded into your application or library . For example, to define a new metric to record the default search engine, which is sent in a custom ping called search, put search in the send_in_pings parameter. Note that it is an error to specify a ping in send_in_pings that does not also have an entry in pings.yaml. search.default: name: type: string description: > The name of the default search engine. send_in_pings: - search If this metric should also be sent in the default ping for the given metric type, you can add the special value default to send_in_pings: send_in_pings: - search - default","breadcrumbs":"Pings » Adding new custom pings » Ping metadata must be loaded before sending!","id":"140","title":"Ping metadata must be loaded before sending!"},"141":{"body":"For custom pings that contain event metrics, the glean.restarted event is injected by Glean on every application restart that may happen during the pings measurement window. Note : All leading and trailing glean.restarted events are omitted from each ping.","breadcrumbs":"Pings » Adding new custom pings » The glean.restarted event","id":"141","title":"The glean.restarted event"},"142":{"body":"Event timestamps are always calculated relative to the first event in a ping. The first event will always have timestamp 0 and subsequent events will have timestamps corresponding to the elapsed amount of milliseconds since that first event. That is also the case for events recorded throughout restarts. Example In the below example payload, there were two events recorded on the first application run. The first event is timestamp 0 and the second event happens one second after the first one, so it has timestamp 1000. The application is restarted one hour after the first event and a glean.restarted event is recorded, timestamp 3600000. Finally, an event is recorded during the second application run two seconds after restart, timestamp 3602000. { ... \"events\": [ { \"timestamp\": 0, \"category\": \"examples\", \"name\": \"event_example\", }, { \"timestamp\": 1000, \"category\": \"examples\", \"name\": \"event_example\" }, { \"timestamp\": 3600000, \"category\": \"glean\", \"name\": \"restarted\" }, { \"timestamp\": 3602000, \"category\": \"examples\", \"name\": \"event_example\" }, ]\n} Caveat: Handling decreasing time offsets For events recorded in a single application run, Glean relies on a monotonically increasing timer to calculate event timestamps, while for calculating the time elapsed between application runs Glean has to rely on the computer clock, which is not necessarily monotonically increasing. In the case that timestamps in between application runs are not monotonically increasing, Glean will take the value of the previous timestamp and add one millisecond, thus guaranteeing that timestamps are always increasing. Checking for decreasing time offsets between restarts When this edge case is hit, Glean records an InvalidValue error for the glean.restarted metric. This metric may be consulted at analysis time. It is sent in the same ping where the error happened. In the below example payload, the first and second application runs go exactly like in the example above . The only difference is that when the restart happens, the offset between the absolute time of the first event and the absolute time of the restart is not enough to keep the timestamps increasing. That may happen for many reasons, such as a change in timezones or simply a manual change in the clock by the user. In this case, Glean will ignore the incorrect timestamp and add one millisecond to the last timestamp of the previous run, in order to keep the monotonically increasing nature of the timestamps. { ... \"events\": [ { \"timestamp\": 0, \"category\": \"examples\", \"name\": \"event_example\", }, { \"timestamp\": 1000, \"category\": \"examples\", \"name\": \"event_example\" }, { \"timestamp\": 1001, \"category\": \"glean\", \"name\": \"restarted\" }, { \"timestamp\": 3001, \"category\": \"examples\", \"name\": \"event_example\" }, ]\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Adding new custom pings » Event timestamps throughout application restarts","id":"142","title":"Event timestamps throughout application restarts"},"143":{"body":"Applications defining custom pings can use use the ping testing API to test these pings in unit tests.","breadcrumbs":"Pings » Testing custom pings » Testing custom pings","id":"143","title":"Testing custom pings"},"144":{"body":"The schedule of custom pings depends on the specific application implementation, since it is up to the SDK user to define the ping semantics. This makes the testing strategy a bit more complex, but usually boiling down to: Triggering the code path that accumulates/records the data. Defining a callback validation function using the ping testing API . Finally triggering the code path that submits the custom ping or submitting the ping using the submit API . Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Testing custom pings » General testing strategy","id":"144","title":"General testing strategy"},"145":{"body":"If data collection is enabled, the Glean SDKs provide a set of built-in pings that are assembled out of the box without any developer intervention. The following is a list of these built-in pings: baseline ping : A small ping sent every time the application goes to foreground and background. Going to foreground also includes when the application starts. deletion-request ping : Sent when the user disables telemetry in order to request a deletion of their data. events ping : The default ping for events. Sent every time the application goes to background or a certain number of events is reached. Is not sent when there are no events recorded, even if there are other metrics with values. metrics ping : The default ping for metrics. Sent approximately daily. Applications can also define and send their own custom pings when the schedules of these pings is not suitable. There is also a high-level overview of how the metrics and baseline pings relate and the timings they record.","breadcrumbs":"Pings » Pings sent by Glean » Pings sent by Glean","id":"145","title":"Pings sent by Glean"},"146":{"body":"SDK baseline deletion-request events metrics Kotlin ✅ ✅ ✅ ✅ Swift ✅ ✅ ✅ ✅ Python ✅ [1] ✅ ✅ [2] ❌ Rust ✅ ✅ ✅ ✅ JavaScript ❌ ✅ ✅ ❌ Firefox Desktop ✅ ✅ ✅ ✅ Not sent automatically. Use the handle_client_active and handle_client_inactive API. Sent on startup when pending events are stored. Additionally sent when handle_client_inactive is called.","breadcrumbs":"Pings » Pings sent by Glean » Available pings per platform","id":"146","title":"Available pings per platform"},"147":{"body":"These docs refer to application 'foreground' and 'background' state in several places.","breadcrumbs":"Pings » Pings sent by Glean » Defining foreground and background state","id":"147","title":"Defining foreground and background state"},"148":{"body":"For Android, this specifically means the activity becomes visible to the user, it has entered the Started state, and the system invokes the onStart() callback.","breadcrumbs":"Pings » Pings sent by Glean » Foreground","id":"148","title":"Foreground"},"149":{"body":"This specifically means when the activity is no longer visible to the user, it has entered the Stopped state, and the system invokes the onStop() callback. This may occur, if the user uses Overview button to change to another app, the user presses the Back button and navigates to a previous application or the home screen, or if the user presses the Home button to return to the home screen. This can also occur if the user navigates away from the application through some notification or other means. The system may also call onStop() when the activity has finished running, and is about to be terminated.","breadcrumbs":"Pings » Pings sent by Glean » Background","id":"149","title":"Background"},"15":{"body":"Python >= 3.8.","breadcrumbs":"Adding Glean to your project » Swift » Requirements","id":"15","title":"Requirements"},"150":{"body":"For iOS, the Glean Swift SDK attaches to the willEnterForegroundNotification . This notification is posted by the OS shortly before an app leaves the background state on its way to becoming the active app.","breadcrumbs":"Pings » Pings sent by Glean » Foreground","id":"150","title":"Foreground"},"151":{"body":"For iOS, this specifically means when the app is no longer visible to the user, or when the UIApplicationDelegate receives the applicationDidEnterBackground event. This may occur if the user opens the task switcher to change to another app, or if the user presses the Home button to show the home screen. This can also occur if the user navigates away from the app through a notification or other means. Note: Glean does not currently support Scene based lifecycle events that were introduced in iOS 13. Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Background","id":"151","title":"Background"},"152":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » The baseline ping","id":"152","title":"The baseline ping"},"153":{"body":"This ping is intended to provide metrics that are managed by the Glean SDKs themselves, and not explicitly set by the application or included in the application's metrics.yaml file.","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Description","id":"153","title":"Description"},"154":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop baseline ping ✅ ✅ ❌ ✅ ❌ ✅","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Platform availability","id":"154","title":"Platform availability"},"155":{"body":"The baseline ping is automatically submitted with a reason: active when the application becomes active (on mobile it means getting to foreground ). These baseline pings do not contain duration. The baseline ping is automatically submitted with a reason: inactive when the application becomes inactive (on mobile it means getting to background ). If no baseline ping is triggered when becoming inactive (e.g. the process is abruptly killed) a baseline ping with reason dirty_startup will be submitted on the next application startup. This only happens from the second application start onward. See also the ping schedules and timing overview .","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Scheduling","id":"155","title":"Scheduling"},"156":{"body":"The baseline ping also includes the common ping sections found in all pings. It also includes a number of metrics defined in the Glean SDKs themselves .","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Contents","id":"156","title":"Contents"},"157":{"body":"A quick note about querying ping contents (i.e. for sql.telemetry.mozilla.org ): Each metric in the baseline ping is organized by its metric type, and uses a namespace of glean.baseline. For instance, in order to select duration you would use metrics.timespan['glean.baseline.duration']. If you were trying to select a String based metric such as os, then you would use metrics.string['glean.baseline.os']","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Querying ping contents","id":"157","title":"Querying ping contents"},"158":{"body":"{ \"ping_info\": { \"experiments\": { \"third_party_library\": { \"branch\": \"enabled\" } }, \"seq\": 0, \"start_time\": \"2019-03-29T09:50-04:00\", \"end_time\": \"2019-03-29T09:53-04:00\", \"reason\": \"foreground\" }, \"client_info\": { \"telemetry_sdk_build\": \"0.49.0\", \"first_run_date\": \"2019-03-29-04:00\", \"os\": \"Android\", \"android_sdk_version\": \"27\", \"os_version\": \"8.1.0\", \"device_manufacturer\": \"Google\", \"device_model\": \"Android SDK built for x86\", \"architecture\": \"x86\", \"app_build\": \"1\", \"app_display_version\": \"1.0\", \"client_id\": \"35dab852-74db-43f4-8aa0-88884211e545\" }, \"metrics\": { \"timespan\": { \"glean.baseline.duration\": { \"value\": 52, \"time_unit\": \"second\" } } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Baseline Ping » Example baseline ping","id":"158","title":"Example baseline ping"},"159":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » The deletion-request ping","id":"159","title":"The deletion-request ping"},"16":{"body":"The Glean Swift SDK can be consumed as a Swift Package. In your Xcode project add a new package dependency: https://github.com/mozilla/glean-swift Use the dependency rule \"Up to Next Major Version\". Xcode will automatically fetch the latest version for you. The Glean library will be automatically available to your code when you import it: import Glean","breadcrumbs":"Adding Glean to your project » Swift » Setting up the dependency","id":"16","title":"Setting up the dependency"},"160":{"body":"This ping is submitted when a user opts out of sending technical and interaction data. This ping contains the client id. This ping is intended to communicate to the Data Pipeline that the user wishes to have their reported Telemetry data deleted. As such it attempts to send itself at the moment the user opts out of data collection, and continues to try and send itself. Adding secondary ids It is possible to send secondary ids in the deletion request ping. For instance, if the application is migrating from legacy telemetry to Glean, the legacy client ids can be added to the deletion request ping by creating a metrics.yaml entry for the id to be added with a send_in_pings value of deletion_request. An example metrics.yaml entry might look like this: legacy_client_id: type: uuid description: A UUID uniquely identifying the legacy client. send_in_pings: - deletion_request ...","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Description","id":"160","title":"Description"},"161":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop deletion-request ping ✅ ✅ ✅ ✅ ✅ ✅","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Platform availability","id":"161","title":"Platform availability"},"162":{"body":"The deletion-request ping is automatically submitted when upload is disabled in Glean. If upload fails, it is retried after Glean is initialized.","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Scheduling","id":"162","title":"Scheduling"},"163":{"body":"The deletion-request does not contain additional metrics aside from secondary ids that have been added.","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Contents","id":"163","title":"Contents"},"164":{"body":"{ \"ping_info\": { \"seq\": 0, \"start_time\": \"2019-12-06T09:50-04:00\", \"end_time\": \"2019-12-06T09:53-04:00\" }, \"client_info\": { \"telemetry_sdk_build\": \"22.0.0\", \"first_run_date\": \"2019-03-29-04:00\", \"os\": \"Android\", \"android_sdk_version\": \"28\", \"os_version\": \"9\", \"device_manufacturer\": \"Google\", \"device_model\": \"Android SDK built for x86\", \"architecture\": \"x86\", \"app_build\": \"1\", \"app_display_version\": \"1.0\", \"client_id\": \"35dab852-74db-43f4-8aa0-88884211e545\" }, \"metrics\": { \"uuid\": { \"legacy_client_id\": \"5faffa6d-6147-4d22-a93e-c1dbd6e06171\" } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Deletion Request Ping » Example deletion-request ping","id":"164","title":"Example deletion-request ping"},"165":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » The events ping","id":"165","title":"The events ping"},"166":{"body":"The events ping's purpose is to transport event metric information. If the application crashes, an events ping is generated next time the application starts with events that were not sent before the crash.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Description","id":"166","title":"Description"},"167":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop events ping ✅ ✅ ✅ ✅ ✅ ✅","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Platform availability","id":"167","title":"Platform availability"},"168":{"body":"The events ping is automatically submitted under the following circumstances: If there are any recorded events to send when the application becomes inactive (on mobile, this means going to background ). When the queue of events exceeds Glean.configuration.maxEvents (default 1 for Glean.js, 500 for all other SDKs). This configuration option can be changed at initialization or through Server Knobs . If there are any unsent events found on disk when starting the application. (This results in this ping never containing the glean.restarted event.)","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Scheduling","id":"168","title":"Scheduling"},"169":{"body":"Since the Glean Python and JavaScript SDKs don't have a generic concept of \"inactivity\", case (1) above cannot be handled automatically. On Python, users can call the handle_client_inactive API to let Glean know the app is inactive and that will trigger submission of the events ping. On JavaScript there is no such API and only cases (2) and (3) apply.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Python and JavaScript caveats","id":"169","title":"Python and JavaScript caveats"},"17":{"body":"The metrics.yaml file is parsed at build time and Swift code is generated. Add a new metrics.yaml file to your Xcode project. Follow these steps to automatically run the parser at build time: Download the sdk_generator.sh script from the Glean repository: https://raw.githubusercontent.com/mozilla/glean/{latest-release}/glean-core/ios/sdk_generator.sh Pick the correct version As above, the {latest-version} placeholder should be replaced with the version number of Glean Swift SDK release used in this project. Add the sdk_generator.sh file to your Xcode project. On your application targets' Build Phases settings tab, click the + icon and choose New Run Script Phase. Create a Run Script in which you specify your shell (ex: /bin/sh), add the following contents to the script area below the shell: bash $PWD/sdk_generator.sh Set additional options to control the behavior of the script. Add the path to your metrics.yaml and (optionally) pings.yaml and tags.yaml under \"Input files\": $(SRCROOT)/{project-name}/metrics.yaml\n$(SRCROOT)/{project-name}/pings.yaml\n$(SRCROOT)/{project-name}/tags.yaml Add the path to the generated code file to the \"Output Files\": $(SRCROOT)/{project-name}/Generated/Metrics.swift If you are using Git, add the following lines to your .gitignore file: .venv/\n{project-name}/Generated This will ignore files that are generated at build time by the sdk_generator.sh script. They don't need to be kept in version control, as they can be re-generated from your metrics.yaml and pings.yaml files. Glean and embedded extensions Metric collection is a no-op in application extensions and Glean will not run. Since extensions run in a separate sandbox and process from the application, Glean would run in an extension as if it were a completely separate application with different client ids and storage. This complicates things because Glean doesn’t know or care about other processes. Because of this, Glean is purposefully prevented from running in an application extension and if metrics need to be collected from extensions, it's up to the integrating application to pass the information to the base application to record in Glean. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Swift » Setting up metrics and pings code generation","id":"17","title":"Setting up metrics and pings code generation"},"170":{"body":"At the top-level, this ping contains the following keys: client_info: The information common to all pings . ping_info: The information common to all pings . events: An array of all of the events that have occurred since the last time the events ping was sent. Each entry in the events array is an object with the following properties: \"timestamp\": The milliseconds relative to the first event in the ping. \"category\": The category of the event, as defined by its location in the metrics.yaml file. \"name\": The name of the event, as defined in the metrics.yaml file. \"extra\" (optional): A mapping of strings to strings providing additional data about the event. Keys are restricted to 40 UTF-8 bytes while values in the extra object are limited a maximum length of 500 UTF-8 bytes.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Contents","id":"170","title":"Contents"},"171":{"body":"{ \"ping_info\": { \"experiments\": { \"third_party_library\": { \"branch\": \"enabled\" } }, \"seq\": 0, \"start_time\": \"2019-03-29T09:50-04:00\", \"end_time\": \"2019-03-29T10:02-04:00\" }, \"client_info\": { \"telemetry_sdk_build\": \"0.49.0\", \"first_run_date\": \"2019-03-29-04:00\", \"os\": \"Android\", \"android_sdk_version\": \"27\", \"os_version\": \"8.1.0\", \"device_manufacturer\": \"Google\", \"device_model\": \"Android SDK built for x86\", \"architecture\": \"x86\", \"app_build\": \"1\", \"app_display_version\": \"1.0\", \"client_id\": \"35dab852-74db-43f4-8aa0-88884211e545\" }, \"events\": [ { \"timestamp\": 0, \"category\": \"examples\", \"name\": \"event_example\", \"extra\": { \"metadata1\": \"extra\", \"metadata2\": \"more_extra\" } }, { \"timestamp\": 1000, \"category\": \"examples\", \"name\": \"event_example\" } ]\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Events Ping » Example event JSON","id":"171","title":"Example event JSON"},"172":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The metrics ping","id":"172","title":"The metrics ping"},"173":{"body":"The metrics ping is intended for all of the metrics that are explicitly set by the application or are included in the application's metrics.yaml file (except events). The reported data is tied to the ping's measurement window , which is the time between the collection of two metrics pings. Ideally, this window is expected to be about 24 hours, given that the collection is scheduled daily at 04:00. However, the metrics ping is only submitted while the application is actually running, so in practice, it may not meet the 04:00 target very frequently. Data in the ping_info section of the ping can be used to infer the length of this window and the reason that triggered the ping to be submitted. If the application crashes, unsent recorded metrics are sent along with the next metrics ping. Additionally, it is undesirable to mix metric recording from different versions of the application. Therefore, if a version upgrade is detected, the metrics ping is collected immediately before further metrics from the new version are recorded.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Description","id":"173","title":"Description"},"174":{"body":"SDK Kotlin Swift Python Rust JavaScript Firefox Desktop metrics ping ✅ ✅ ❌ ✅ ❌ ✅","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Platform availability","id":"174","title":"Platform availability"},"175":{"body":"The desired behavior is to collect the ping at the first available opportunity after 04:00 local time on a new calendar day, but given constraints of the platform, it can only be submitted while the application is running. This breaks down into three scenarios: the application was just installed; the application was just upgraded (the version of the app is different from the last time the app was run); the application was just started (after a crash or a long inactivity period); the application was running at 04:00. In the first case, since the application was just installed, if the due time for the current calendar day has passed, a metrics ping is immediately generated and scheduled for sending (reason code overdue). Otherwise, if the due time for the current calendar day has not passed, a ping collection is scheduled for that time (reason code today). In the second case, if a version change is detected at startup, the metrics ping is immediately submitted so that metrics from one version are not aggregated with metrics from another version (reason code upgrade). In the third case, if the metrics ping was not already collected on the current calendar day, and it is before 04:00, a collection is scheduled for 04:00 on the current calendar day (reason code today). If it is after 04:00, a new collection is scheduled immediately (reason code overdue). Lastly, if a ping was already collected on the current calendar day, the next one is scheduled for collecting at 04:00 on the next calendar day (reason code tomorrow). In the fourth and last case, the application is running during a scheduled ping collection time. The next ping is scheduled for 04:00 the next calendar day (reason code reschedule). More scheduling examples are included below. See also the ping schedules and timing overview .","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Scheduling","id":"175","title":"Scheduling"},"176":{"body":"The metrics ping contains all of the metrics defined in metrics.yaml (except events) that don't specify a ping or where default is specified in their send in pings property. Additionally, error metrics in the glean.error category are included in the metrics ping. The metrics ping shall also include the common ping_info and 'client_info' sections. It also includes a number of metrics defined in the Glean SDKs themselves .","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Contents","id":"176","title":"Contents"},"177":{"body":"Information about query ping contents is available in Accessing Glean data in the Firefox data docs.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Querying ping contents","id":"177","title":"Querying ping contents"},"178":{"body":"","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Scheduling Examples","id":"178","title":"Scheduling Examples"},"179":{"body":"The application is opened on Feb 7 on 15:00, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 8 on 17:00. Glean notes that we passed local 04:00 since MW1. Glean closes MW1, with: start_time=Feb7/15:00; end_time=Feb8/17:00. Glean records metric A again, into MW2, which has a start_time of Feb8/17:00.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Crossing due time with the application closed","id":"179","title":"Crossing due time with the application closed"},"18":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Python project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Python » Adding Glean to your Python project","id":"18","title":"Adding Glean to your Python project"},"180":{"body":"The application is opened on Feb 7 on 15:00 in timezone UTC, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 8 on 17:00 in timezone UTC+1. Glean notes that we passed local 04:00 UTC+1 since MW1. Glean closes MW1, with: start_time=Feb7/15:00/UTC; end_time=Feb8/17:00/UTC+1. Glean records metric A again, into MW2.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » Crossing due time and changing timezones","id":"180","title":"Crossing due time and changing timezones"},"181":{"body":"The application is opened on Feb 7 on 15:00 in timezone UTC, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 16 on 17:00 in timezone UTC. Glean notes that we passed local 04:00 UTC since MW1. Glean closes MW1, with: start_time=Feb7/15:00/UTC; end_time=Feb16/17:00/UTC. Glean records metric A again, into MW2.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The application doesn’t run in a week","id":"181","title":"The application doesn’t run in a week"},"182":{"body":"The application is opened on Feb 7 on 15:00 in timezone UTC, closed on 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 16 on 17:00 in timezone UTC+1. Glean notes that we passed local 04:00 UTC+1 since MW1. Glean closes MW1, with: start_time=Feb7/15:00/UTC end_time=Feb16/17:00/UTC+1. Glean records metric A again, into MW2.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The application doesn’t run for a week, and when it’s finally re-opened the timezone has changed","id":"182","title":"The application doesn’t run for a week, and when it’s finally re-opened the timezone has changed"},"183":{"body":"The application is opened on Feb 7 at 15:00 in timezone UTC+11, closed at 15:05. Glean records one metric A (say startup time in ms) during this measurement window MW1. The application is opened again on Feb 8 at 04:30 in timezone UTC+11. Glean notes that we passed local 04:00 UTC+11. Glean closes MW1, with: start_time=Feb7/15:00/UTC+11; end_time=Feb8/04:30/UTC+11. Glean records metric A again, into MW2. The user changes to timezone UTC-10 and opens the application at Feb 7 at 22:00 in timezone UTC-10 Glean records metric A again, into MW2 (not MW1, which was already sent). The user opens the application at Feb 8 05:00 in timezone UTC-10 Glean notes that we have not yet passed local 04:00 on Feb 9 Measurement window MW2 remains the current measurement window The user opens the application at Feb 9 07:00 in timezone UTC-10 Glean notes that we have passed local 04:00 on Feb 9 Glean closes MW2 with: start_time=Feb8/04:30/UTC+11; end_time=Feb9/19:00/UTC-10. Glean records metric A again, into MW3. Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Metrics Ping » The user changes timezone in an extreme enough fashion that they cross 04:00 twice on the same date","id":"183","title":"The user changes timezone in an extreme enough fashion that they cross 04:00 twice on the same date"},"184":{"body":"Full reference details about the metrics and baseline ping schedules are detailed elsewhere. The following diagram shows a typical timeline of a mobile application, when pings are sent and what timing-related information is included. ping timeline diagram There are two distinct runs of the application, where the OS shutdown the application at the end of Run 1, and the user started it up again at the beginning of Run 2. There are three distinct foreground sessions, where the application was visible on the screen and the user was able to interact with it. The rectangles for the baseline and metrics pings represent the measurement windows of those pings, which always start exactly at the end of the preceding ping. The ping_info.start_time and ping_info.end_time metrics included in these pings correspond to these beginning and the end of their measurement windows. The baseline.duration metric (included only in baseline pings) corresponds to amount of time the application spent on the foreground, which, since measurement window always extend to the next ping, is not always the same thing as the baseline ping's measurement window. The submission_timestamp is the time the ping was received at the telemetry endpoint, added by the ingestion pipeline. It is not exactly the same as ping_info.end_time, since there may be various networking and system latencies both on the client and in the ingestion pipeline (represented by the dotted horizontal line, not to scale). Also of note is that start_time/end_time are measured using the client's real-time clock in its local timezone, which is not a fully reliable source of time. The \"Baseline 4\" ping illustrates an important corner case. When \"Session 2\" ended, the OS also shut down the entire process, and the Glean SDK did not have an opportunity to send a baseline ping immediately. In this case, it is sent at the next available opportunity when the application starts up again in \"Run 2\". This baseline ping is annotated with the reason code dirty_startup. The \"Metrics 2\" ping likewise illustrates another important corner case. \"Metrics 1\" was able to be sent at the target time of 04:00 (local device time) because the application was currently running. However, the next time 04:00 came around, the application was not active, so the Glean SDK was unable to send a metrics ping. It is sent at the next available opportunity, when the application starts up again in \"Run 2\". This metrics ping is annotated with the reason code overdue. NOTE : Ping scheduling and other application lifecycle dependent activities are not set up when Glean is used in a non-main process. See initializing Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » Pings sent by Glean » Schedules and timings overview » Ping schedules and timings overview","id":"184","title":"Ping schedules and timings overview"},"185":{"body":"Glean provides Server Knobs, a Data Control Plane through which Glean runtime settings can be changed remotely including the ability to enable, disable or throttle metrics and pings through a Nimbus rollout or experiment. Products can use this capability to control \"data traffic\", similar to how a network control plane controls \"network traffic\". Server Knobs provides the ability to do the following: Allow runtime changes to data collection without needing to land code and ride release trains. Eliminate the need for manual creation and maintenance of feature flags specific to data collection. Sampling of measurements from a subset of the population so that we do not collect or ingest more data than is necessary from high traffic areas of an application instrumented with Glean metrics. Operational safety through being able to react to high-volume or unwanted data. Visibility into sampling and sampling rates for remotely configured metrics.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Server Knobs: Glean Data Control Plane","id":"185","title":"Server Knobs: Glean Data Control Plane"},"186":{"body":"Controlling Metrics with Server Knobs Controlling Pings with Server Knobs Other Server Knobs Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Contents","id":"186","title":"Contents"},"187":{"body":"Glean provides a Data Control Plane through which metrics can be enabled, disabled or throttled through a Nimbus rollout or experiment. Products can use this capability to control \"data-traffic\", similar to how a network control plane controls \"network-traffic\". This provides the ability to do the following: Allow runtime changes to data collection without needing to land code and ride release trains. Eliminate the need for manual creation and maintenance of feature flags specific to data collection. Sampling of measurements from a subset of the population so that we do not collect or ingest more data than is necessary from high traffic areas of an application instrumented with Glean metrics. Operational safety through being able to react to high-volume or unwanted data. Visibility into sampling and sampling rates for remotely configured metrics. For information on controlling pings with Server Knobs, see the metrics documentation for Server Knobs - Pings .","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Data Control Plane (a.k.a. Server Knobs)","id":"187","title":"Data Control Plane (a.k.a. Server Knobs)"},"188":{"body":"Example Scenarios Product Integration Experimenter Configuration Advanced Topics Frequently Asked Questions Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Contents","id":"188","title":"Contents"},"189":{"body":"","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Example Scenarios » Example Scenarios","id":"189","title":"Example Scenarios"},"19":{"body":"We recommend using a virtual environment for your work to isolate the dependencies for your project. There are many popular abstractions on top of virtual environments in the Python ecosystem which can help manage your project dependencies. The Glean Python SDK currently has prebuilt wheels on PyPI for Windows (i686 and x86_64), Linux/glibc (x86_64) and macOS (x86_64) . For other platforms, including BSD or Linux distributions that don't use glibc, such as Alpine Linux, the glean_sdk package will be built from source on your machine. This requires that Cargo and Rust are already installed. The easiest way to do this is through rustup . Once you have your virtual environment set up and activated, you can install the Glean Python SDK into it using: $ python -m pip install glean_sdk Important Installing Python wheels is still a rapidly evolving feature of the Python package ecosystem. If the above command fails, try upgrading pip: python -m pip install --upgrade pip Important The Glean Python SDK make extensive use of type annotations to catch type related errors at build time. We highly recommend adding mypy to your continuous integration workflow to catch errors related to type mismatches early.","breadcrumbs":"Adding Glean to your project » Python » Setting up the dependency","id":"19","title":"Setting up the dependency"},"190":{"body":"Landing a metric that is disabled by default and then enabling it for some segment of the population This scenario can be expected in cases such as when instrumenting high-traffic areas of the browser. These are instrumentations that would normally generate a lot of data because they are recorded frequently for every user. In this case, the telemetry which has the potential to be high-volume would land with the “disabled” property of the metric set to “true”. This will ensure that it does not record data by default. An example metric definition with this property set would look something like this: urlbar: impression: disabled: true type: event description: Recorded when urlbar results are shown to the user. ... Once the instrumentation is landed, it can now be enabled for a subset of the population through a Nimbus rollout or experiment without further code changes. Through Nimbus , we have the ability to sample the population by setting the audience size to a certain percentage of the eligible population. Nimbus also provides the ability to target clients based on the available targeting parameters for a particular application (for instance, Firefox Desktop’s available targeting parameters). This can be used to slowly roll out instrumentations to the population in order to validate the data we are collecting before measuring the entire population and potentially avoiding costs and overhead by collecting data that isn’t useful. Note: if planning to use this feature for permanently keeping a data collection on for the whole population, please consider enabling the metrics by default by setting disabled: false in the metrics.yaml. Then you can \"down-sample\" if necessary (see Scenario 2 below).","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Example Scenarios » Scenario 1","id":"190","title":"Scenario 1"},"191":{"body":"Landing a metric that is enabled by default and then disabling it for a segment of the population This is effectively the inverse of Scenario 1 , instead of landing the metrics disabled by default, they are landed as enabled so that they are normally collecting data from the entire population. Similar to the first scenario, a Nimbus rollout or experiment can then be launched to configure the metrics as disabled for a subset of the population. This provides a mechanism by which we can disable the sending of telemetry from an audience that we do not wish to collect telemetry data from. For instance, this could be useful in tuning out telemetry data coming from automation sources or bad actors. In addition, it provides a way to disable broken, incorrect, or unexpectedly noisy instrumentations as an operational safety mechanism to directly control the volume of the data we collect and ingest. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Example Scenarios » Scenario 2","id":"191","title":"Scenario 2"},"192":{"body":"In order to enable sharing of this functionality between multiple Nimbus Features, the implementation is not defined as part of the stand-alone Glean feature defined in the Nimbus Feature Manifest, but instead is intended to be added as a feature variable to other Nimbus Feature definitions for them to make use of.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Product Integration","id":"192","title":"Product Integration"},"193":{"body":"In order to make use of the remote metric configuration in a Firefox Desktop component, there are two available options.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Desktop Feature Integration","id":"193","title":"Desktop Feature Integration"},"194":{"body":"Glean provides a general Nimbus feature that can be used for configuration of metrics named glean. Simply select the glean feature along with your Nimbus feature from the Experimenter UI when configuring the experiment or rollout (see Nimbus documentation for more information on multi-feature experiments). The glean Nimbus feature requires the gleanMetricConfiguration variable to be used to provide the required metric configuration. The format of the configuration is a map of the fully qualified metric name (category.name) of the metric to a boolean value representing whether the metric is enabled. If a metric is omitted from this map, it will default to the value found in the metrics.yaml. An example configuration for the glean feature can be found on the Experimenter Configuration page.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 1:","id":"194","title":"Integration Option 1:"},"195":{"body":"A second option that can give you more control over the metric configuration, especially if there are more than one experiments or rollouts that are currently using the glean feature from Option 1 above, is to add a Feature Variable to represent the Glean metric configuration in your own feature. This can be accomplished by modifying the FeatureManifest.yaml file, adding a variable through which to pass metric configurations. Glean will handle merging this configuration with other metrics configurations for you (See Advanced Topics for more info on this). An example feature manifest entry would look like the following: variables: ... // Definitions of other feature variables gleanMetricConfiguration: type: json description: >- \"Glean metric configuration\" This definition allows for configuration to be set in a Nimbus rollout or experiment and fetched by the client to be applied based on the enrollment. Once the Feature Variable has been defined, the final step is to fetch the configuration from Nimbus and supply it to the Glean API. This can be done during initialization and again any time afterwards, such as in response to receiving an updated configuration from Nimbus. Glean will merge this configuration with any other active configurations and enable or disable the metrics accordingly. An example call to set a configuration through your Nimbus Feature could look like this: // Fetch the Glean metric configuration from your feature's Nimbus variable\nlet cfg = lazy.NimbusFeatures.yourNimbusFeatureName.getVariable( \"gleanMetricConfiguration\"\n);\n// Apply the configuration through the Glean API\nServices.fog.setMetricsFeatureConfig(JSON.stringify(cfg)); It is also recommended to register to listen for updates for the Nimbus Feature and apply new configurations as soon as possible. The following example illustrates how a Nimbus Feature might register and update the metric configuration whenever there is a change to the Nimbus configuration: // Register to listen for the `onUpdate` event from Nimbus\nlazy.NimbusFeatures.yourNimbusFeatureName.onUpdate(() => { // Fetch the Glean metric configuration from your feature's Nimbus variable let cfg = lazy.NimbusFeatures.yourNimbusFeatureName.getVariable( \"gleanMetricConfiguration\" ); // Apply the configuration through the Glean API Services.fog.setMetricsFeatureConfig(JSON.stringify(cfg));\n});","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 2 (Advanced use):","id":"195","title":"Integration Option 2 (Advanced use):"},"196":{"body":"","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Mobile Feature Integration","id":"196","title":"Mobile Feature Integration"},"197":{"body":"Glean provides a general Nimbus feature that can be used for configuration of metrics named glean. Simply select the glean feature along with your Nimbus feature from the Experimenter UI when configuring the experiment or rollout (see Nimbus documentation for more information on multi-feature experiments). The glean Nimbus feature requires the gleanMetricConfiguration variable to be used to provide the required metric configuration. The format of the configuration is a map of the fully qualified metric name (category.name) of the metric to a boolean value representing whether the metric is enabled. If a metric is omitted from this map, it will default to the value found in the metrics.yaml. An example configuration for the glean feature can be found on the Experimenter Configuration page.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 1:","id":"197","title":"Integration Option 1:"},"198":{"body":"A second option that can give you more control over the metric configuration, especially if there are more than one experiments or rollouts that are currently using the glean feature from Option 1 above, is to add a Feature Variable to represent the Glean metric configuration in your own feature. This can be accomplished by modifying the Nimbus Feature Manifest file, adding a variable through which to pass metric configurations. Glean will handle merging this configuration with other metrics configurations for you (See Advanced Topics for more info on this). An example feature manifest entry would look like the following: features: homescreen: description: | The homescreen that the user goes to when they press home or new tab. variables: ... // Other homescreen variables gleanMetricConfiguration: description: Glean metric configuration type: String default: \"{}\" Once the Feature Variable has been defined, the final step is to fetch the configuration from Nimbus and supply it to the Glean API. This can be done during initialization and again any time afterwards, such as in response to receiving an updated configuration from Nimbus. Only the latest configuration provided will be applied and any previously configured metrics that are omitted from the new configuration will not be changed. An example call to set a configuration from the “homescreen” Nimbus Feature could look like this: Glean.applyServerKnobsConfig(FxNimbus.features.homescreen.value().metricsEnabled) Since mobile experiments only update on initialization of the application, it isn't necessary to register to listen for notifications for experiment updates. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Product Integration » Integration Option 2 (Advanced use):","id":"198","title":"Integration Option 2 (Advanced use):"},"199":{"body":"The structure of this configuration is a key-value collection with the full metric identification of the Glean metric serving as the key in the format . The values of the key-value pair are booleans which represent whether the metric is enabled (true) or not (false). In the example below gleanMetricConfiguration is the name of the variable defined in the Nimbus feature. This configuration would be what is entered into the branch configuration setup in Experimenter when defining an experiment or rollout.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Experimenter Configuration » Experimenter Configuration","id":"199","title":"Experimenter Configuration"},"2":{"body":"This section of the book contains step-by-step guides and essays detailing how to achieve specific tasks with each Glean SDK. It contains guides on the first steps of integrating Glean into your project, choosing the right metric type for you, debugging products that use Glean and Glean's built-in error reporting mechanism. If you want to start using Glean to report data, this is the section you should read.","breadcrumbs":"Glean » User Guides","id":"2","title":"User Guides"},"20":{"body":"For Python, the metrics.yaml file must be available and loaded at runtime. If your project is a script (i.e. just Python files in a directory), you can load the metrics.yaml using: from glean import load_metrics metrics = load_metrics(\"metrics.yaml\") # Use a metric on the returned object\nmetrics.your_category.your_metric.set(\"value\") If your project is a distributable Python package, you need to include the metrics.yaml file using one of the myriad ways to include data in a Python package and then use pkg_resources.resource_filename() to get the filename at runtime. from glean import load_metrics\nfrom pkg_resources import resource_filename metrics = load_metrics(resource_filename(__name__, \"metrics.yaml\")) # Use a metric on the returned object\nmetrics.your_category.your_metric.set(\"value\")","breadcrumbs":"Adding Glean to your project » Python » Consuming YAML registry files","id":"20","title":"Consuming YAML registry files"},"200":{"body":"{ \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"urlbar.abandonment\": true, \"urlbar.engagement\": true, \"urlbar.impression\": true } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Experimenter Configuration » Example Configuration:","id":"200","title":"Example Configuration:"},"201":{"body":"","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Advanced Topics","id":"201","title":"Advanced Topics"},"202":{"body":"Since each feature defined as a Nimbus Feature can independently provide a Glean configuration, these must be merged together into a cohesive configuration for the entire set of metrics collected by Glean. Configurations will be merged together along with the default values in the metrics.yaml file and applied to the appropriate metrics. Only the latest configuration provided for a given metric will be applied and any previously configured metrics that are omitted from the new configuration will not be changed.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Merging of Configurations from Multiple Features","id":"202","title":"Merging of Configurations from Multiple Features"},"203":{"body":"Imagine a situation where we have 3 features (A, B, C). Each of these features has an event (A.event, B.event, C.event) and these events all default to disabled from their definition in the metrics.yaml file. Let’s walk through an example of changing configurations for these features that illustrates how the merging will work: Initial State This is what the initial state of the events looks like with no configurations applied. All of the events are falling back to the defaults from the metrics.yaml file. This is the starting point for Scenario 1 in the Example Scenarios . Feature A No config, default used A.event is disabled Feature B No config, default used B.event is disabled Feature C No config, default used C.event is disabled Second State In this state, let’s create two rollouts which will provide configurations for features A and B that will enable the events associated with each. The first rollout selects Feature A in experimenter and provides the indicated configuration in the Branch setup page. The second rollout does the same thing, only for Feature B. Feature A Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"A.event\": true } } } A.event is enabled Feature B Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"B.event\": true } } } B.event is enabled Feature C No config, default used C.event is disabled As you can see, the A.event and B.event are enabled by the configurations while C.event remains disabled because there is no rollout for it. Third State In this state, let’s end the rollout for Feature B, start a rollout for Feature C, and launch an experiment for Feature A. Because experiments take precedence over rollouts, this should supersede our configuration from the rollout for Feature A. Feature A Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"A.event\": false } } } A.event is disabled Feature B No config, default used B.event is disabled Feature C Configuration: { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"C.event\": true } } } C.event is enabled After the new changes to the currently running rollouts and experiments, this client is now enrolled in the experiment for Feature A and the configuration is suppressing the A.event. Feature B is no longer sending B.event because it is reverting back to the defaults from the metrics.yaml file. And finally, Feature C is sending C.event with the rollout configuration applied. Fourth State Finally, in this state, let’s end the rollout for Feature C along with the experiment for Feature A. This should stop the sending of the B.event and C.event and resume sending of the A.event as the rollout configuration will again be applied since the experiment configuration is no longer available. Feature A Configuration { // Other variable configs // Glean metric config \"gleanMetricConfiguration\": { \"metrics_enabled\": { \"A.event\": true } } } A.event is enabled Feature B No config, default used B.event is disabled Feature C No config, default used C.event is disabled After the new changes to the currently running rollouts and experiments, this client is now enrolled in the experiment for Feature A and the configuration is suppressing the A.event. Feature B is no longer sending B.event because it is reverting back to the defaults from the metrics.yaml file. And finally, Feature C is sending C.event with the rollout configuration applied. In each case, Glean only updates the configuration associated with the feature that provided it. Nimbus’ feature exclusion would prevent a client from being enrolled in multiple rollouts or experiments for a given feature, so no more than one configuration would be applied per feature for a given client.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Example","id":"203","title":"Example"},"204":{"body":"Because there is currently nothing that ties a particular Nimbus Feature to a set of metrics, care must be taken to avoid feature overlap over a particular metric. If two different features supply conflicting configurations for the same metric, then whether or not the metric is enabled will likely come down to a race condition of whoever set the configuration last. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Advanced Topics » Merging Caveats","id":"204","title":"Merging Caveats"},"205":{"body":"How can I tell if a given client id has the metric X on? Once we have established the functionality behind the data control plane, a dashboard for monitoring this will be provided. Details are to be determined. Why isn't some client id reporting the metric that should be enabled for all the clients for that channel? (e.g. Some fraction of population may get stuck on “default” config) Nimbus must be able to both reach and supply a valid configuration to the audience. For some outliers this doesn't work and so may be \"unreachable\" at times. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Metrics with Server Knobs » Frequently Asked Questions » Frequently Asked Questions","id":"205","title":"Frequently Asked Questions"},"206":{"body":"Glean provides a Data Control Plane through which pings can be enabled or disabled through a Nimbus rollout or experiment. Products can use this capability to control \"data-traffic\", similar to how a network control plane controls \"network-traffic\". This provides the ability to do the following: Allow runtime changes to data collection without needing to land code and ride release trains. Eliminate the need for manual creation and maintenance of feature flags specific to data collection. Sampling of measurements from a subset of the population so that we do not collect or ingest more data than is necessary from high traffic areas of an application instrumented with Glean metrics. Operational safety through being able to react to high-volume or unwanted data. Visibility into sampling and sampling rates for remotely configured metrics. For information on controlling metrics with Server Knobs, see the metrics documentation for Server Knobs - Metrics .","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Data Control Plane (a.k.a. Server Knobs)","id":"206","title":"Data Control Plane (a.k.a. Server Knobs)"},"207":{"body":"Product Integration Experimenter Configuration Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Contents","id":"207","title":"Contents"},"208":{"body":"Glean provides a general Nimbus feature named glean that can be used for configuration of pings. Simply select the glean feature along with your Nimbus feature from the Experimenter UI when configuring the experiment or rollout (see Nimbus documentation for more information on multi-feature experiments). The glean Nimbus feature requires the gleanMetricConfiguration variable to be used to provide the required metric configuration. The format of the configuration is defined in the Experimenter Configuration section. If a ping is not included, it will default to the value found in the pings.yaml. Note that this can also serve as an override for Glean builtin pings disabled using the Configuration property enable_internal_pings=false during initialization. Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Product Integration » Product Integration","id":"208","title":"Product Integration"},"209":{"body":"The structure of this configuration is a key-value collection with the name of the Glean ping serving as the keys and the values are booleans representing whether the ping is enabled (true) or not (false). In the example below, gleanMetricConfiguration is the name of the variable defined in the Nimbus feature. This configuration would be what is entered into the branch configuration setup in Experimenter when defining an experiment or rollout.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Experimenter Configuration » Experimenter Configuration","id":"209","title":"Experimenter Configuration"},"21":{"body":"Documentation The documentation for your application or library's metrics and pings are written in metrics.yaml and pings.yaml. For Mozilla projects, this SDK documentation is automatically published on the Glean Dictionary . For non-Mozilla products, it is recommended to generate markdown-based documentation of your metrics and pings into the repository. For most languages and platforms, this transformation can be done automatically as part of the build. However, for some SDKs the integration to automatically generate docs is an additional step. The Glean Python SDK provides a commandline tool for automatically generating markdown documentation from your metrics.yaml and pings.yaml files. To perform that translation, run glean_parser's translate command: python3 -m glean_parser translate -f markdown -o docs metrics.yaml pings.yaml To get more help about the commandline options: python3 -m glean_parser translate --help We recommend integrating this step into your project's documentation build. The details of that integration is left to you, since it depends on the documentation tool being used and how your project is set up. Metrics linting Glean includes a \"linter\" for metrics.yaml and pings.yaml files called the glinter that catches a number of common mistakes in these files. As part of your continuous integration, you should run the following on your metrics.yaml and pings.yaml files: python3 -m glean_parser glinter metrics.yaml pings.yaml","breadcrumbs":"Adding Glean to your project » Python » Automation steps","id":"21","title":"Automation steps"},"210":{"body":"{ \"gleanMetricConfiguration\": { \"pings_enabled\": { \"baseline\": false, \"events\": false, \"metrics\": false } }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Controlling Pings with Server Knobs » Experimenter Configuration » Example Configuration:","id":"210","title":"Example Configuration:"},"211":{"body":"Below are additional Glean parameters and settings that are exposed via Server Knobs for use in a Nimbus experiment or rollout.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Other Server Knobs","id":"211","title":"Other Server Knobs"},"212":{"body":"Max Events per Event Ping Additional Glean settings will be added to Server Knobs as needed or by request. For information on controlling metrics and pings via Server Knobs, please refer to Controlling Metrics with Server Knobs and Controlling Pings with Server Knobs . Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Contents","id":"212","title":"Contents"},"213":{"body":"By default, Glean batches events together to submit on a single events ping. The event_threshold Server Knob controls how many events Glean will collect before submitting an events ping. For instance, if you wanted to disable batching in order to transmit an events ping after every event is recorded you could set event_threshold: 1.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Max Events per Ping » Max Events","id":"213","title":"Max Events"},"214":{"body":"{ \"gleanMetricConfiguration\": { \"event_threshold\": 1 }\n} Found a bug? Edit this page on GitHub.","breadcrumbs":"Server Knobs: Glean Data Control Plane » Other Server Knobs » Max Events per Ping » Example Configuration:","id":"214","title":"Example Configuration:"},"215":{"body":"Glean provides a few debugging features to assist with debugging a product using Glean.","breadcrumbs":"Debugging products using Glean » Debugging products using the Glean SDK","id":"215","title":"Debugging products using the Glean SDK"},"216":{"body":"","breadcrumbs":"Debugging products using Glean » Features","id":"216","title":"Features"},"217":{"body":"Print the ping payload upon sending a ping.","breadcrumbs":"Debugging products using Glean » Log Pings","id":"217","title":"Log Pings"},"218":{"body":"Tags all outgoing pings as debug pings to make them available for real-time validation, on the Glean Debug View. Glean Debug View The Glean Debug View enables you to easily see in real-time what data your application is sending. This data is what actually arrives in our data pipeline, shown in a web interface that is automatically updated when new data arrives. Any data sent from a Glean-instrumented application usually shows up within 10 seconds, updating the pages automatically. Pings are retained for 3 weeks. Troubleshooting If nothing is showing up on the dashboard after you set a debugViewTag and you see Glean must be enabled before sending pings. in the logs, Glean is disabled. Check with the application author on how to re-enable it.","breadcrumbs":"Debugging products using Glean » Debug View Tag","id":"218","title":"Debug View Tag"},"219":{"body":"Tags outgoing pings with a maximum of 5 comma-separated tags.","breadcrumbs":"Debugging products using Glean » Source Tags","id":"219","title":"Source Tags"},"22":{"body":"Most Glean SDKs use a separate worker thread to do most of its work, including any I/O. This thread is fully managed by the SDK as an implementation detail. Therefore, users should feel free to use the Glean SDKs wherever they are most convenient, without worrying about the performance impact of updating metrics and sending pings. Since the Glean SDKs perform disk and networking I/O, they try to do as much of their work as possible on separate threads and processes. Since there are complex trade-offs and corner cases to support Python parallelism, it is hard to design a one-size-fits-all approach. Default behavior When using the Python SDK, most of the Glean's work is done on a separate thread, managed by the SDK itself. The SDK releases the Global Interpreter Lock (GIL) for most of its operations, therefore your application's threads should not be in contention with the Glean's worker thread. The Glean Python SDK installs an atexit handler so that its worker thread can cleanly finish when your application exits. This handler will wait up to 30 seconds for any pending work to complete. By default, ping uploading is performed in a separate child process. This process will continue to upload any pending pings even after the main process shuts down. This is important for commandline tools where you want to return control to the shell as soon as possible and not be delayed by network connectivity. Cases where subprocesses aren't possible The default approach may not work with applications built using PyInstaller or similar tools which bundle an application together with a Python interpreter making it impossible to spawn new subprocesses of that interpreter. For these cases, there is an option to ensure that ping uploading occurs in the main process. To do this, set the allow_multiprocessing parameter on the glean.Configuration object to False. Using the multiprocessing module Additionally, the default approach does not work if your application uses the multiprocessing module for parallelism. The Glean Python SDK can not wait to finish its work in a multiprocessing subprocess, since atexit handlers are not supported in that context. Therefore, if the Glean Python SDK detects that it is running in a multiprocessing subprocess, all of its work that would normally run on a worker thread will run on the main thread. In practice, this should not be a performance issue: since the work is already in a subprocess, it will not block the main process of your application. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Python » Parallelism","id":"22","title":"Parallelism"},"220":{"body":"Sends a ping on demand.","breadcrumbs":"Debugging products using Glean » Send Ping","id":"220","title":"Send Ping"},"221":{"body":"Each Glean SDK may expose one or more of the following methods to interact with and enable these debugging functionalities. Enable debugging features through APIs exposed through the Glean singleton; Enable debugging features through environment variables set at runtime; Enable debugging features through platform specific tooling. For methods 1. and 2., refer to the API reference section \"Debugging\" for detailed information on how to use them. For method 3. please refer to the platform specific pages on how to debug products using Glean.","breadcrumbs":"Debugging products using Glean » Debugging methods","id":"221","title":"Debugging methods"},"222":{"body":"Debugging Android applications using the Glean SDK Debugging iOS applications using the Glean SDK Debugging Python applications using the Glean SDK Debugging JavaScript applications using Glean.js","breadcrumbs":"Debugging products using Glean » Platform Specific Information","id":"222","title":"Platform Specific Information"},"223":{"body":"Glean API Environment Variables Platform Specific Tooling Kotlin ✅ [1] Swift ✅ ✅ ✅ [2] Python ✅ Rust ✅ ✅ JavaScript ✅ Firefox Desktop ✅ ✅ [3] The Glean Kotlin SDK exposes the GleanDebugActivity for interacting with debug features. Although it is technically possible to also use environment variables in Android, the Glean team is not aware of a proper way to set environment variables in Android devices or emulators. The Glean Swift SDK exposes a custom URL format for interacting with debug features. In Firefox Desktop, developers may use the interface exposed through about:glean to log, tag or send pings. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » Available debugging methods per platform","id":"223","title":"Available debugging methods per platform"},"224":{"body":"The Glean Kotlin SDK exports the GleanDebugActivity that can be used to toggle debugging features on or off. Users can invoke this special activity, at run-time, using the following adb command: adb shell am start -n [applicationId]/mozilla.telemetry.glean.debug.GleanDebugActivity [extra keys] In the above: [applicationId] is the product's application id as defined in the manifest file and/or build script. For the Glean sample application, this is org.mozilla.samples.gleancore for a release build and org.mozilla.samples.gleancore.debug for a debug build. [extra keys] is a list of extra keys to be passed to the debug activity. See the documentation for the command line switches used to pass the extra keys. These are the currently supported keys: key type description logPings boolean (--ez) If set to true, pings are dumped to logcat; defaults to false debugViewTag string (--es) Tags all outgoing pings as debug pings to make them available for real-time validation, on the Glean Debug View . The value must match the pattern [a-zA-Z0-9-]{1,20}. Important : in older versions of the Glean SDK, this was named tagPings sourceTags string array (--esa) Tags outgoing pings with a maximum of 5 comma-separated tags. The tags must match the pattern [a-zA-Z0-9-]{1,20}. The automation tag is meant for tagging pings generated on automation: such pings will be specially handled on the pipeline (i.e. discarded from non-live views ). Tags starting with glean are reserved for future use. Subsequent calls of this overwrite any previously stored tag sendPing string (--es) Sends the ping with the given name immediately startNext string (--es) The name of an exported Android Activity, as defined in the product manifest file, to start right after the GleanDebugActivity completes. All the options provided are propagated to this next activity as well. When omitted, the default launcher activity for the product is started instead. All the options provided to start the activity are passed over to the main activity for the application to process. This is useful if SDK users wants to debug telemetry while providing additional options to the product to enable specific behaviors. Note: Due to limitations on Android logcat message size, pings larger than 4KB are broken into multiple log messages when using logPings. For example, to direct a release build of the Glean sample application to (1) dump pings to logcat, (2) tag the ping with the test-metrics-ping tag, and (3) send the \"metrics\" ping immediately, the following command can be used: adb shell am start -n org.mozilla.samples.gleancore/mozilla.telemetry.glean.debug.GleanDebugActivity \\ --ez logPings true \\ --es sendPing metrics \\ --es debugViewTag test-metrics-ping The logPings command doesn't trigger ping submission and you won't see any output until a ping has been sent. You can use the sendPing command to force a ping to be sent, but it could be more desirable to trigger the pings submission on their normal schedule. For instance, the baseline and events pings can be triggered by moving the app out of the foreground and the metrics ping can be triggered normally if it is overdue for the current calendar day. Note: The device or emulator must be connected to the internet for this to work. Otherwise the job that sends the pings won't be triggered. If no metrics have been collected, no pings will be sent unless send_if_empty is set on your ping . See the ping documentation for more information on ping scheduling to learn when pings are sent. Options that are set using the adb flags are not immediately reset and will persist until the application is closed or manually reset.","breadcrumbs":"Debugging products using Glean » Android » Debugging Android applications using the Glean SDK","id":"224","title":"Debugging Android applications using the Glean SDK"},"225":{"body":"When running a Glean SDK-powered app in the Android emulator or on a device connected to your computer via cable, there are several ways to read the log output.","breadcrumbs":"Debugging products using Glean » Android » Glean Kotlin SDK Log messages","id":"225","title":"Glean Kotlin SDK Log messages"},"226":{"body":"Android Studio can show the logs of a connected emulator or device. To display the log messages for an app: Run an app on your device. Click View > Tool Windows > Logcat (or click Logcat in the tool window bar). The Logcat window will show all log messages and allows to filter those by the application ID. Select the application ID of the product you're debugging. You can also filter by Glean only. More information can be found in the View Logs with Logcat help article.","breadcrumbs":"Debugging products using Glean » Android » Android Studio","id":"226","title":"Android Studio"},"227":{"body":"On the command line you can show all of the log output using: adb logcat This is the unfiltered output of all log messages. You can match for glean using grep: adb logcat | grep -i glean A simple way to filter for only the application that is being debugged is by using pidcat , a wrapper around adb, which adds colors and proper filtering by application ID and log level. Run it like this to filter for an application: pidcat [applicationId] In the above [applicationId] is the product's application id as defined in the manifest file and/or build script. For the Glean sample application, this is org.mozilla.samples.gleancore for a release build and org.mozilla.samples.gleancore.debug for a debug build. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » Android » Command line","id":"227","title":"Command line"},"228":{"body":"","breadcrumbs":"Debugging products using Glean » iOS » Debugging iOS applications using the Glean SDK","id":"228","title":"Debugging iOS applications using the Glean SDK"},"229":{"body":"Debugging features in iOS can be enabled using environment variables. For more information on the available features accessible through this method and how to enable them, see Debugging API reference . These environment variables must be set on the device that is running the application.","breadcrumbs":"Debugging products using Glean » iOS » Enabling debugging features in iOS through environment variables","id":"229","title":"Enabling debugging features in iOS through environment variables"},"23":{"body":"This page provides a step-by-step guide on how to integrate the Glean library into a Rust project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Rust » Adding Glean to your Rust project","id":"23","title":"Adding Glean to your Rust project"},"230":{"body":"For debugging and validation purposes on iOS, the Glean Swift SDK makes use of a custom URL scheme which is implemented within the application . The Glean Swift SDK provides some convenience functions to facilitate this, but it's up to the consuming application to enable this functionality. Applications that enable this feature will be able to launch the application from a URL with the Glean debug commands embedded in the URL itself.","breadcrumbs":"Debugging products using Glean » iOS » Enabling debugging features in iOS through a custom URL scheme","id":"230","title":"Enabling debugging features in iOS through a custom URL scheme"},"231":{"body":"All 4 Glean debugging features are available through the custom URL scheme tool. logPings : This is either true or false and will cause pings that are submitted to also be echoed to the device's log. debugViewTag : This command will tag outgoing pings with the provided value, in order to identify them in the Glean Debug View. sourceTags : This command tags outgoing pings with a maximum of 5 comma-separated tags. sendPing: This command expects a string name of a ping to force immediate collection and submission of. The structure of the custom URL uses the following format: ://glean?=&= ... Where: is the \"URL Scheme\" that has been added for your app (see Instrumenting the application below), such as glean-sample-app. This is followed by :// and then glean which is required for the Glean Swift SDK to recognize the command is meant for it to process. Following standard URL query format, the next character after glean is the ? indicating the beginning of the query. This is followed by one or more queries in the form of =, where the command is one of the commands listed above, followed by an = and then the value or parameter to be used with the command. There are a few things to consider when creating the custom URL: Invalid commands will log an error and cause the entire URL to be ignored. Not all commands are required to be encoded in the URL, you can mix and match the commands that you need. Multiple instances of commands are not allowed in the same URL and, if present, will cause the entire URL to be ignored. The logPings command doesn't trigger ping submission and you won't see any output until a ping has been submitted. You can use the sendPing command to force a ping to be sent, but it could be more desirable to trigger the pings submission on their normal schedule. For instance, the baseline and events pings can be triggered by moving the app out of the foreground and the metrics ping can be triggered normally if it is overdue for the current calendar day. See the ping documentation for more information on ping scheduling to learn when pings are sent. Enabling debugging features through custom URLs overrides any debugging features set through environment variables.","breadcrumbs":"Debugging products using Glean » iOS » Available commands and query format","id":"231","title":"Available commands and query format"},"232":{"body":"In order to enable the debugging features in an iOS application, it is necessary to add some information to the application's Info.plist, and add a line and possibly an override for a function in the AppDelegate.swift. Register custom URL scheme in Info.plist Note: If your application already has a custom URL scheme implemented, there is no need to implement a second scheme, you can simply use that and skip to the next section about adding the convenience method. If the app doesn't have a custom URL scheme implemented, then you will need to perform the following instructions to register your app to receive custom URLs. Find and open the application's Info.plist and right click any blank area and select Add Row to create a new key. You will be prompted to select a key from a drop-down menu, scroll down to and select URL types. This creates an array item, which can be expanded by clicking the triangle disclosure icon. Select Item 0, click on it and click the disclosure icon to expand it and show the URL identifier line. Double-click the value field and fill in your identifier, typically the same as the bundle ID. Right-click on Item 0 and select Add Row from the context menu. In the dropdown menu, select URL Schemes to add the item. Click on the disclosure icon of URL Schemes to expand the item, double-click the value field of Item 0 and key in the value for your application's custom scheme. For instance, the Glean sample app uses glean-sample-app, which allows for custom URLs to be crafted using that as a protocol, for example: glean-sample-app://glean?logPings=true Add the Glean.handleCustomUrl() convenience function and necessary overrides In order to handle the incoming debug commands, it is necessary to implement the override in the application's AppDelegate.swift file. Within that function, you can make use of the convenience function provided in Glean handleCustomUrl(url: URL). An example of a simple implementation of this would look like this: func application(_: UIApplication, open url: URL, options _: [UIApplication.OpenURLOptionsKey: Any] = [:]) -> Bool { // ... // This does nothing if the url isn't meant for Glean. Glean.shared.handleCustomUrl(url: url) // ... return true\n} If you need additional help setting up a custom URL scheme in your application, please refer to Apple's documentation .","breadcrumbs":"Debugging products using Glean » iOS » Instrumenting the application for Glean Swift SDK debug functionality","id":"232","title":"Instrumenting the application for Glean Swift SDK debug functionality"},"233":{"body":"Now that the app has the debug functionality enabled, there are a few ways in which we can invoke the debug commands. Using a web browser Perhaps the simplest way to invoke the debug functionality is to open a web browser and type/paste the custom URL into the address bar. This is especially useful on an actual device because there isn't a good way to launch from the command line and process the URL for an actual device. Using the glean-sample-app as an example: to activate ping logging, tag the pings to go to the Glean Debug View, and force the events ping to be sent, enter the following URL in a web browser on the iOS device: glean-sample-app://glean?logPings=true&debugViewTag=My-ping-tag&sendPing=events This should cause iOS to prompt you with a dialog asking if you want to open the URL in the Glean Sample App, and if you select \"Okay\" then it will launch (or resume if it's already running) the application with the indicated commands and parameters and immediately force the collection and submission of the events ping. Note: This method does not work if the browser you are using to input the command is the same application you are attempting to pass the Glean debug commands to. So, you couldn't use Firefox for iOS to trigger commands within Firefox for iOS. It is also possible to encode the URL into a 2D barcode or QR code and launch the app via the camera app. After scanning the encoded URL, the dialog prompting to launch the app should appear as if the URL were entered into the browser address bar. Using the command line This method is useful for testing via the Simulator, which typically requires a Mac with Xcode installed, including the Xcode command line tools. In order to perform the same command as above with using the browser to input the URL, you can use the following command in the command line terminal of the Mac: xcrun simctl openurl booted \"glean-sample-app://glean?logPings=true&debugViewTag=My-ping-tag&sendPing=events\" This will launch the simulator and again prompt the user with a dialog box asking if you want to open the URL in the Glean Sample App (or whichever app you are instrumenting and testing).","breadcrumbs":"Debugging products using Glean » iOS » Invoking the Glean-iOS debug commands","id":"233","title":"Invoking the Glean-iOS debug commands"},"234":{"body":"The Glean Swift SDK integrates with the unified logging system available on iOS. There are various ways to retrieve log information, see the official documentation . If debugging in the simulator, the logging messages can be seen in the console window within Xcode. When running a Glean-powered app in the iOS Simulator or on a device connected to your computer via cable you can use Console.app to view the system log. You can filter the logs with category:glean to only see logs from the Glean SDK. You can also use the command line utility log to stream the log output. Run the following in a shell: log stream --predicate 'category contains \"glean\"' See Diagnosing Issues Using Crash Reports and Device Logs for more information about debugging deployed iOS apps. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » iOS » Glean log messages","id":"234","title":"Glean log messages"},"235":{"body":"Debugging features in Python can be enabled using environment variables. For more information on the available features and how to enable them, see the Debugging API reference .","breadcrumbs":"Debugging products using Glean » Python » Debugging Python applications using the Glean SDK","id":"235","title":"Debugging Python applications using the Glean SDK"},"236":{"body":"Unlike other platforms, Python doesn't expose convenience methods to send pings on demand. In case that is necessary, calling the submit function for a given ping, such as pings.custom_ping.submit(), will send it.","breadcrumbs":"Debugging products using Glean » Python » Sending pings","id":"236","title":"Sending pings"},"237":{"body":"Glean offers two options for logging from Python: Simple logging API: A simple API that only allows for setting the logging level, but includes all Glean log messages, including those from its networking subprocess. This is also the only mode in which GLEAN_LOG_PINGS can be used to display ping contents in the log. Flexible logging API: Full use of the Python logging module, including its features for redirecting to files and custom handling of messages, but does not include messages from the networking subprocess about HTTP requests.","breadcrumbs":"Debugging products using Glean » Python » Logging pings","id":"237","title":"Logging pings"},"238":{"body":"You can set the logging level for Glean log messages by passing logging.DEBUG to Glean.initialize as follows: import logging\nfrom glean import Glean Glean.initialize(..., log_level=logging.DEBUG) If you want to see ping contents as well, set the GLEAN_LOG_PINGS environment variable to true.","breadcrumbs":"Debugging products using Glean » Python » Simple logging API","id":"238","title":"Simple logging API"},"239":{"body":"You can set the logging level for the Python logging to DEBUG as follows: import logging logging.basicConfig(level=logging.DEBUG) All log messages from the Glean Python SDK are on the glean logger, so if you need to control it independently, you can set a level for just the Glean Python SDK (but note that the global Python logging level also needs to be set as above): logging.getLogger(\"glean\").setLevel(logging.DEBUG) The flexible logging API is unable to display networking-related log messages or ping contents with GLEAN_LOG_PINGS set to true. See the Python logging documentation for more information. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » Python » Flexible logging API","id":"239","title":"Flexible logging API"},"24":{"body":"The Glean Rust SDK is published on crates.io . Add it to your dependencies in Cargo.toml: [dependencies]\nglean = \"50.0.0\"","breadcrumbs":"Adding Glean to your project » Rust » Setting up the dependency","id":"24","title":"Setting up the dependency"},"240":{"body":"Debugging features in JavaScript can be enabled through APIs exposed on the Glean object. For more information on the available features and how to enable them, see the Debugging API reference .","breadcrumbs":"Debugging products using Glean » JavaScript » Debugging JavaScript applications using Glean.js","id":"240","title":"Debugging JavaScript applications using Glean.js"},"241":{"body":"Websites running Glean allow you to debug at runtime using the window.Glean object in the browser console. You can start debugging by simply: Opening the browser console Calling one of the window.Glean APIs: window.Glean.setLogPings, window.Glean.setDebugViewTag, window.Glean.setSourceTags. These debugging options will persist for the length of the current page session. Once the tab is closed, you will need to make those API calls again.","breadcrumbs":"Debugging products using Glean » JavaScript » Debugging in the browser","id":"241","title":"Debugging in the browser"},"242":{"body":"Unlike other platforms, JavaScript doesn't expose convenience methods to send pings on demand. In case that is necessary, calling the submit function for a given ping, such as pings.customPing.submit(), will send it. Note that this method is only effective for custom pings. Glean internal pings are not exposed to users.","breadcrumbs":"Debugging products using Glean » JavaScript » Sending pings","id":"242","title":"Sending pings"},"243":{"body":"By calling Glean.logPings(true) all subsequent pings sent will be logged to the console. To access the logs for web extensions on","breadcrumbs":"Debugging products using Glean » JavaScript » Logging pings","id":"243","title":"Logging pings"},"244":{"body":"Go to about:debugging#/runtime/this-firefox; Find the extension you want to see the logs for; Click on Inspect.","breadcrumbs":"Debugging products using Glean » JavaScript » Firefox","id":"244","title":"Firefox"},"245":{"body":"Go to chrome://extensions; Find the extension you want to see the logs for; Click on background page. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging products using Glean » JavaScript » Chromium-based browsers","id":"245","title":"Chromium-based browsers"},"246":{"body":"This chapter contains various how-tos and walkthroughs to help aid you in using Glean.","breadcrumbs":"Walkthroughs and How-tos » How-tos","id":"246","title":"How-tos"},"247":{"body":"A step-by-step guide in setting up and launching a Server Knobs Experiment.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough","id":"247","title":"Server Knobs Walkthrough"},"248":{"body":"A guide describing the different methods to collect and transmit data in a \"real-time\" fashion using Glean.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events","id":"248","title":"\"Real-Time\" Events"},"249":{"body":"Recommendations and tips on investigating data anomalies. Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations","id":"249","title":"Telemetry/Data Bug Investigation Recommendations"},"25":{"body":"","breadcrumbs":"Adding Glean to your project » Rust » Setting up metrics and pings code generation","id":"25","title":"Setting up metrics and pings code generation"},"250":{"body":"","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Server Knobs: A Complete Walkthrough","id":"250","title":"Server Knobs: A Complete Walkthrough"},"251":{"body":"This documentation serves as a step by step guide on how to create a Server Knobs configuration and make use of it in a Nimbus experiment or rollout. The intent is to explain everything from selecting the metrics or pings you wish to control all the way through launching the experiment or rollout and validating the data is being collected.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Purpose","id":"251","title":"Purpose"},"252":{"body":"This documentation is aimed at the general users of Nimbus experimentation who wish to enable or disable specific metrics and/or pings as part of their deployment. This documentation assumes the reader has no special knowledge of the inner workings of either Glean or Nimbus, but it does assume that the audience has already undergone the prerequisite Nimbus training program and has access to Experimenter to create experiment and rollout definitions.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Audience","id":"252","title":"Audience"},"253":{"body":"The first step in running a Server Knobs experiment or rollout is creating the definition for it in Experimenter . For the purposes of this walkthrough, a rollout will be used but the instructions are interchangeable if you are instead launching an experiment.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Let’s Get Started!","id":"253","title":"Let’s Get Started!"},"254":{"body":"Create a new experiment From the Experimenter landing page, we select the “Create New” button to begin defining the new rollout. Experimenter landing page Initial experiment definition The initial setup requires a name, hypothesis, and the selection of a target application. New experiment dialog Here we enter a human readable name for the rollout and a brief synopsis of what we expect to learn in the “Hypothesis” section. In the final field we select our target application, Firefox Desktop. When that is complete, we click the “Next” button to proceed with the rollout definition. The next screen we are presented with is the “Summary” page of the experiment/rollout, where we can add additional metadata like a longer description, and link to any briefs or other documentation related to the rollout. We complete the required information and then click on “Save and Continue” Experiment summary page Initial branch configuration The next screen we are presented with is the branch configuration page. On this page we can select the glean feature, and check the box to indicate that this is a rollout. Branch configuration page At this point, we now need to create a bit of JSON configuration to put in the box seen here: Branch payload text box Building the Server Knobs configuration for metrics This JSON configuration is the set of instructions for Glean that lets it know which metrics to enable or disable. In order to do this, we will visit the Glean Dictionary to help identify the metrics we wish to work with and get the identifiers from them needed for the configuration in Experimenter. Upon arriving at the Glean Dictionary, we must first find the right application. Glean Dictionary landing page We are going to select “Firefox for Desktop” to match the application we previously selected in Experimenter. This brings us to a screen where we can search and filter for metrics which are defined in the application. Glean Dictionary page for Firefox Desktop To help locate the metrics we are interested in, start typing in the search box at the top of the list. For instance, if we were interested in urlbar metrics: Using the Glean Dictionary search bar From here we can select a metric, such as “urlbar.engagement” to see more information about it: Detail view of urlbar.engagement metric Here we can see this metric currently has active sampling configurations in both release and nightly. Let’s say we wish to add one for beta also. Our next step is to click the copy to clipboard button next to “Sampling Configuration Snippet”: Sampling configuration snippet button With the snippet copied to the clipboard, we return to Experimenter and our rollout configuration. We can now paste this snippet into the text-box like below: Pasting into the branch configuration text box That’s all that needs to be done here, if this is the only metric we need to configure. But what if we want to configure more than one? Then it’s back to Glean Dictionary to find the rest of the metrics we are interested in. Let’s say we are also interested in the “exposure” metric. Searching for the urlbar.exposure metric As we select the exposure metric from the list, we can see it isn’t currently being sampled by any experiments or rollouts, and we again find the button to copy the configuration snippet to the clipboard. Back to the sampling configuration snippet button Now, we can paste this just below the other snippet inside of Experimenter. Pasting the new metric into Experimenter As you can see, the JSON validator isn’t happy and there’s a red squiggle indicating that there’s a problem. We only need a part of the latest pasted snippet, so we copy the ”urlbar.exposure”: true portion of the snippet, and add a comma after the ”urlbar.engagement”: true in the snippet above. The JSON validator isn't happy We can then delete the remains of the snippet below, leaving us with a metric configuration with multiple metrics in it. This can be repeated for all the necessary metrics required by the rollout or experiment. Cleaning up the branch payload Adding pings to the configuration This same procedure can be used to enable and disable pings, also. In order to copy a snippet for a ping, navigate to the “Pings” tab for the application on the Glean Dictionary. Navigate to the Pings tab From here, select a ping that is desired to be configured remotely. For instance, the “crash” ping: Selecting the crash ping Just like with the metric, select the button to copy the configuration snippet to your clipboard, then paste it into the Experimenter setup. Adding the ping configuration to the Experimenter setup This time we need to get everything for the ”pings_enabled” section, copy and paste it below the ”metrics_enabled” section in the snippet above. We also need to add a comma after the metrics section’s curly brace, like this: Copying the ping config into the right spot Then we can delete the remains of the pasted snippet at the bottom, leaving us with: Cleaning up the ping configuration Wrapping up That should be everything needed to enable the two urlbar metrics, as well as the crash ping. Additional experiment branches can be configured in a similar fashion, or if this is a rollout, it should be ready to launch if the metric configuration is all that is needed. Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » Server Knobs Walkthrough » Experiment Setup","id":"254","title":"Experiment Setup"},"255":{"body":"","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » \"Real-Time\" Events","id":"255","title":"\"Real-Time\" Events"},"256":{"body":"For the purposes of the Glean SDK and its capabilities, \"real-time\" is limited to: minimizing the time between instrumentation and reporting. It does not imply or describe how quickly received data is made available for querying.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Defining \"real-time\" events within the Glean SDK","id":"256","title":"Defining \"real-time\" events within the Glean SDK"},"257":{"body":"","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Methods to achieve this with Glean","id":"257","title":"Methods to achieve this with Glean"},"258":{"body":"Glean \"events\" ping submission can be configured either during initialization or through Server Knobs . Setting the maximum event threshold to a value of 1 will configure the Glean SDK to submit an \"events\" ping for each and every event as they are recorded. By default, the Glean SDK will batch 500 events per \"events\" ping. As of November 2024, Desktop Release: Median user per day: 67 events / 3 pings The impact of turning on one event per ping based on the median user would result in an increase of approximately 21 times more event ping volume. 85th percentile user per day: 305 events / 11 pings The impact of turning on one event per ping based on the 85th percentile user would result in an increase of approximately 26 times more event ping volume. 95th percentile user per day: 706 events / 19 pings The impact of turning on one event per ping based on the 95th percentile user would result in an increase of approximately 36 times more event ping volume. The current release population of Desktop as a whole sends us over 10 billion events per day in over 340 million event pings. Sending each of those events as a ping would increase the ping volume by 32 times the current rate. Based on this it is safe to assume that sending 1 event per event ping would increase the ingestion traffic and downstream overhead between 20-40x the current levels with Glean batching of events in the client. This is a significant increase that should be taken into consideration before configuring Glean to disable event batching.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Option 1: Configuring Glean to send all events as soon as they are recorded","id":"258","title":"Option 1: Configuring Glean to send all events as soon as they are recorded"},"259":{"body":"If it isn't necessary to receive all Glean SDK events that are instrumented in an application in \"real-time\", it may be preferable to create a custom ping which contains the relevant information to capture the context around the event and submit it as soon as the application event occurs. This has some additional advantages over using just an event in that custom pings are less restrictive than the extras attached to the event in what data and Glean SDK metric types can be used. If it is important to see the event that is being represented as a custom ping in context with other application events, then you only need to define an event metric and use the send_in_pings parameter to send it in both the custom ping and the Glean built-in \"events\" ping. It can then be seen in sequence and within context of all of the application events, and still be sent in \"real-time\" as needed.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Option 2: Using a custom ping and submitting it immediately (\"Pings-as-Events\")","id":"259","title":"Option 2: Using a custom ping and submitting it immediately (\"Pings-as-Events\")"},"26":{"body":"The glean-build crate is new and currently in beta. It can be used as a git dependency. Please file a bug if it does not work for you. At build time you need to generate the metrics and ping API from your definition files. Add the glean-build crate as a build dependency in your Cargo.toml: [build-dependencies]\nglean-build = { git = \"https://github.com/mozilla/glean\" } Then add a build.rs file next to your Cargo.toml and call the builder: use glean_build::Builder; fn main() { Builder::default() .file(\"metrics.yaml\") .file(\"pings.yaml\") .generate() .expect(\"Error generating Glean Rust bindings\");\n} Ensure your metrics.yaml and pings.yaml files are placed next to your Cargo.toml or adjust the path in the code above. You can also leave out any of the files.","breadcrumbs":"Adding Glean to your project » Rust » glean-build is in beta.","id":"26","title":"glean-build is in beta."},"260":{"body":"","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Considerations","id":"260","title":"Considerations"},"261":{"body":"Configuring the Glean SDK to submit events as soon as they are recorded or using custom pings to submit data immediately does not mean that the data is available for analysis in real time. There are networks to traverse, ingestion pipelines, etl, etc. that are all factors to keep in mind when considering how soon the data is available for analysis purposes. This documentation only purports to cover configuring the Glean SDK to send the data in a real-time fashion and does not make any assumptions about the analysis of data in real-time.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » What \"real-time\" Glean events/pings are not","id":"261","title":"What \"real-time\" Glean events/pings are not"},"262":{"body":"For every event recorded or custom ping submitted, a network request will be generated as the ping is submitted for ingestion. By default, the Glean SDK batches up to 500 events per \"events\" ping, so this has the potential to generate up to 500 times as many network requests than the current defaults for the Glean SDK \"events\" ping.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » More network requests","id":"262","title":"More network requests"},"263":{"body":"As a result of the increased network requests, the ingestion endpoint will need to handle this additional traffic. This increases the load of all the processing steps that are involved with ingesting event data from an application.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » More ingestion endpoint traffic","id":"263","title":"More ingestion endpoint traffic"},"264":{"body":"Typically the raw dataset for Glean events contains 1-500 events in a single row of the database. This row also includes metadata such as information about the client application and the ping itself. With only a single event per \"events\" ping, the replication of this metadata across the database will use additional space to house this repeated information that should rarely if ever change between events Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » \"Real-Time\" Events » Storage space requirements","id":"264","title":"Storage space requirements"},"265":{"body":"This document outlines several diagnostic categories and the insights they may offer when investigating unusual telemetry patterns or data anomalies.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » Telemetry/Data Bug Investigation Recommendations","id":"265","title":"Telemetry/Data Bug Investigation Recommendations"},"266":{"body":"Purpose: Identify geographical patterns that could explain anomalies. Column Name: metadata.geo.country Considerations: Are there ongoing national holidays or similar events that could affect data? Is the region known for bot activity or unusual behavior?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 1. Countries","id":"266","title":"1. Countries"},"267":{"body":"Purpose: Analyze data at a more granular level than countries to identify potential automation or bot activity. Column Name: metadata.isp.name Considerations: Could the anomaly be traced back to a single ISP, potentially indicating automation? Be mindful of the large number of ISPs; consider applying filters (e.g., HAVING clause) to exclude smaller ISPs.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 2. ISP (Internet Service Provider)","id":"267","title":"2. ISP (Internet Service Provider)"},"268":{"body":"Purpose: Check if issues began with a specific product version or build. Column Names: client_info.app_display_version, client_info.app_build Considerations: Did the issue arise after a particular version update? If so, collaborate with the product team to identify changes. Ensure that the build ID matches a known Mozilla build. If not, it could be a clone, fork, or side-load build.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 3. Product Version / Build ID","id":"268","title":"3. Product Version / Build ID"},"269":{"body":"Purpose: Determine whether the issue is tied to a specific Glean SDK version. Column Name: client_info.telemetry_sdk_build Considerations: Did the anomaly start after an update to Glean? Work with the Glean team to verify version changes.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 4. Glean SDK Version","id":"269","title":"4. Glean SDK Version"},"27":{"body":"glean-build will generate a glean_metrics.rs file that needs to be included in your source code. To do so add the following lines of code in your src/lib.rs file: mod metrics { include!(concat!(env!(\"OUT_DIR\"), \"/glean_metrics.rs\"));\n} Alternatively create src/metrics.rs (or a different name) with only the include line: include!(concat!(env!(\"OUT_DIR\"), \"/glean_metrics.rs\")); Then add mod metrics; to your src/lib.rs file.","breadcrumbs":"Adding Glean to your project » Rust » Include the generated code","id":"27","title":"Include the generated code"},"270":{"body":"Purpose: Identify possible regressions due to library updates. Considerations: Review updates to Application Services, Gecko, and other dependencies (e.g., Viaduct, rkv) that could affect telemetry collection.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 5. Other Library Version Changes","id":"270","title":"5. Other Library Version Changes"},"271":{"body":"Purpose: Check if Operating System or platform SDK changes are impacting data collection. Column Names: client_info.os_version (Android only: client_info.android_sdk_version) Considerations: Have there been changes to platform lifecycle events or background task behaviors (e.g., 0-duration pings, or ping submission issues)? Has the OS changed the behaviour of system APIs?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 6. OS/Platform SDK Version","id":"271","title":"6. OS/Platform SDK Version"},"272":{"body":"Purpose: Assess the delay between telemetry collection and submission. Column Names: ping_info.parsed_start_time, ping_info.parsed_end_time, submission_timestamp Considerations: Are the recorded timestamps reasonable, both in terms of the ping time window and the delay from collection to submission?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 7. Time Differences: start/end_time vs. submission_timestamp","id":"272","title":"7. Time Differences: start/end_time vs. submission_timestamp"},"273":{"body":"Purpose: Identify telemetry or network errors related to data collection. Considerations: Are there networking errors, ingestion issues, or other telemetry failures that could be related to the anomaly?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 8. Glean Errors","id":"273","title":"8. Glean Errors"},"274":{"body":"Purpose: Determine if the issue is hardware-specific. Column Names: client_info.device_manufacturer, client_info.device_model Considerations: Does the anomaly occur primarily on older or newer hardware models?","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 9. Hardware Details (Manufacturer/Version) (Mobile platforms only)","id":"274","title":"9. Hardware Details (Manufacturer/Version) (Mobile platforms only)"},"275":{"body":"Purpose: Determine the reason a ping was sent. Column Names: ping_info.reason Considerations: Does the anomaly occur primarily for a specific reason? The built-in pings have different ping reasons based on their schedule baseline ping schedule and reasons metrics ping schedule and reasons events ping schedule and reasons Found a bug? Edit this page on GitHub.","breadcrumbs":"Walkthroughs and How-tos » Telemetry/Data Bug Investigation Recommendations » 10. Ping reason","id":"275","title":"10. Ping reason"},"276":{"body":"User defined Glean pings and metrics are declared in YAML files, which must be parsed by glean_parser to generate public APIs for said metrics and pings. These files also serve the purpose of documenting metrics and pings. They are consumed by the probe-scraper tool, which generates a REST API to access metrics and pings information consumed by most other tools in the Glean ecosystem, such as GLAM and the Glean Dictionary . Moreover, for products that do not wish to use the Glean Dictionary as their metrics and pings documentation source, glean_parser provides an option to generate Markdown documentation for metrics and pings based on these files. For more information of that, refer to the help output of the translate command, by running in your terminal: $ glean_parser translate --help","breadcrumbs":"YAML Registry Format » YAML Registry Format","id":"276","title":"YAML Registry Format"},"277":{"body":"For a full reference on the metrics.yaml format, refer to the Metrics YAML Registry Format page.","breadcrumbs":"YAML Registry Format » metrics.yaml file","id":"277","title":"metrics.yaml file"},"278":{"body":"For a full reference on the pings.yaml format, refer to the Pings YAML Registry Format page.","breadcrumbs":"YAML Registry Format » pings.yaml file","id":"278","title":"pings.yaml file"},"279":{"body":"For a full reference on the tags.yaml format, refer to the Tags YAML Registry Format page. Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » tags.yaml file","id":"279","title":"tags.yaml file"},"28":{"body":"In your code you can then access generated metrics nested within their category under the metrics module (or your chosen name): metrics::your_category::metric_name.set(true); See the metric API reference for details. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Rust » Use the metrics","id":"28","title":"Use the metrics"},"280":{"body":"Metrics sent by an application or library are defined in YAML files which follow the metrics.yaml JSON schema . This files must be parsed by glean_parser at build time in order to generate code in the target language (e.g. Kotlin, Swift, ...). The generated code is what becomes the public API to access the project's metrics. For more information on how to introduce the glean_parser build step for a specific language / environment, refer to the \"Adding Glean to your project\" section of this book.","breadcrumbs":"YAML Registry Format » Metrics » Metrics YAML Registry Format","id":"280","title":"Metrics YAML Registry Format"},"281":{"body":"Although we refer to metrics definitions YAML files as metrics.yaml throughout Glean documentation this files may be named whatever makes the most sense for each project and may even be broken down into multiple files, if necessary.","breadcrumbs":"YAML Registry Format » Metrics » Note on the naming of these files","id":"281","title":"Note on the naming of these files"},"282":{"body":"---\n# Schema\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 $tags: - frontend # Category\ntoolbar: # Name click: # Metric Parameters type: event description: | Event to record toolbar clicks. metadata: tags: - Interaction notification_emails: - CHANGE-ME@example.com bugs: - https://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review expires: 2019-06-01 double_click: ...","breadcrumbs":"YAML Registry Format » Metrics » File structure","id":"282","title":"File structure"},"283":{"body":"Declaring the schema at the top of a metrics definitions file is required, as it is what indicates that the current file is a metrics definitions file.","breadcrumbs":"YAML Registry Format » Metrics » Schema","id":"283","title":"Schema"},"284":{"body":"You may optionally declare tags at the file level that apply to all metrics in that file.","breadcrumbs":"YAML Registry Format » Metrics » $tags","id":"284","title":"$tags"},"285":{"body":"Categories are the top-level keys on metrics definition files. One single definition file may contain multiple categories grouping multiple metrics. They serve the purpose of grouping related metrics in a project. Categories can contain alphanumeric lower case characters as well as the . and _ characters which can be used to provide extra structure, for example category.subcategory is a valid category. Category lengths may not exceed 40 characters. Categories may not start with the string glean. That prefix is reserved for Glean internal metrics. See the \"Capitalization\" note to understand how the category is formatted in generated code.","breadcrumbs":"YAML Registry Format » Metrics » Category","id":"285","title":"Category"},"286":{"body":"Metric names are the second-level keys on metrics definition files. Names may contain alphanumeric lower case characters as well as the _ character. Metric name lengths may not exceed 30 characters. \"Capitalization\" rules also apply to metric names on generated code.","breadcrumbs":"YAML Registry Format » Metrics » Name","id":"286","title":"Name"},"287":{"body":"Specific metric types may have special required parameters in their definition, these parameters are documented in each \"Metric Type\" reference page. Following are the parameters common to all metric types.","breadcrumbs":"YAML Registry Format » Metrics » Metric parameters","id":"287","title":"Metric parameters"},"288":{"body":"type Specifies the type of a metric, like \"counter\" or \"event\". This defines which operations are valid for the metric, how it is stored and how data analysis tooling displays it. See the list of supported metric types . Types should not be changed after release Once a metric is defined in a product, its type should only be changed in rare circumstances. It's better to rename the metric with the new type instead. The ingestion pipeline will create a new column for a metric with a changed type. Any new analysis will need to use the new column going forward. The old column will still be populated with data from old clients. description A textual description of the metric for humans. It should describe what the metric does, what it means for analysts, and its edge cases or any other helpful information. The description field may contain markdown syntax . Imposed limits on line length The Glean linter uses a line length limit of 80 characters. If your description is longer, e.g. because it includes longer links, you can disable yamllint using the following annotations (and make sure to enable yamllint again as well): # yamllint disable\ndescription: | Your extra long description, that's longer than 80 characters by far.\n# yamllint enable notification_emails A list of email addresses to notify for important events with the metric or when people with context or ownership for the metric need to be contacted. For example when a metric's expiration is within in 14 days, emails will be sent from telemetry-alerts@mozilla.com to the notification_emails addresses associated with the metric. Consider adding both a group email address and an individual who is responsible for this metric. bugs A list of bugs (e.g. Bugzilla or GitHub) that are relevant to this metric. For example, bugs that track its original implementation or later changes to it. Each entry should be the full URL to the bug in an issue tracker. The use of numbers alone is deprecated and will be an error in the future. data_reviews A list of URIs to any data collection review responses relevant to the metric. expires When the metric is set to expire. After a metric expires, an application will no longer collect or send data related to it. May be one of the following values: : An ISO date yyyy-mm-dd in UTC on which the metric expires. For example, 2019-03-13. This date is checked at build time. Except in special cases, this form should be used so that the metric automatically \"sunsets\" after a period of time. Emails will be sent to the notification_emails addresses when the metric is about to expire. Generally, when a metric is no longer needed, it should simply be removed. This does not affect the availability of data already collected by the pipeline. : An integer greater than 0 representing the major version the metric expires in, For example, 11. The version is checked at build time against the major provided to the glean_parser (see e.g. Build configuration for Android , Build configuration for iOS ) and is only valid if a major version is provided at built time. If no major version is provided at build time and expiration by major version is used for a metric, an error is raised. Note that mixing expiration by date and version is not allowed within a product. never: This metric never expires. expired: This metric is manually expired.","breadcrumbs":"YAML Registry Format » Metrics » Required parameters","id":"288","title":"Required parameters"},"289":{"body":"tags default: [] A list of tag names associated with this metric. Must correspond to an entry specified in a tags file . lifetime default: ping Defines the lifetime of the metric. Different lifetimes affect when the metrics value is reset. ping (default) The metric is cleared each time it is submitted in the ping. This is the most common case, and should be used for metrics that are highly dynamic, such as things computed in response to the user's interaction with the application. application The metric is related to an application run, and is cleared after the application restarts and any Glean-owned ping, due at startup, is submitted. This should be used for things that are constant during the run of an application, such as the operating system version. In practice, these metrics are generally set during application startup. A common mistake--- using the ping lifetime for these type of metrics---means that they will only be included in the first ping sent during a particular run of the application. user NOTE: Reach out to the Glean team before using this. The metric is part of the user's profile and will live as long as the profile lives. This is often not the best choice unless the metric records a value that really needs to be persisted for the full lifetime of the user profile, e.g. an identifier like the client_id, the day the product was first executed. It is rare to use this lifetime outside of some metrics that are built in to the Glean SDK. send_in_pings default: events|metrics Defines which pings the metric should be sent on. If not specified, the metric is sent on the default ping, which is the events ping for events and the metrics ping for everything else. Most metrics don't need to specify this unless they are sent on custom pings . The special value default may be used, in case it's required for a metric to be sent on the default ping as well as in a custom ping. Adding metrics to every ping For the small number of metrics that should be in every ping the Glean SDKs will eventually provide a solution. See bug 1695236 for details. send_in_pings: - my-custom-ping - default disabled default: false Data collection for this metric is disabled. This is useful when you want to temporarily disable the collection for a specific metric without removing references to it in your source code. Generally, when a metric is no longer needed, it should simply be removed. This does not affect the availability of data already collected by the pipeline. version default: 0 The version of the metric. A monotonically increasing integer value. This should be bumped if the metric changes in a backward-incompatible way. data_sensitivity default: [] A list of data sensitivity categories that the metric falls under. There are four data collection categories related to data sensitivity defined in Mozilla's data collection review process : Category 1: Technical Data (technical) Information about the machine or Firefox itself. Examples include OS, available memory, crashes and errors, outcome of automated processes like updates, safe browsing, activation, versions, and build id. This also includes compatibility information about features and APIs used by websites, add-ons, and other 3rd-party software that interact with Firefox during usage. Category 2: Interaction Data (interaction) Information about the user’s direct engagement with Firefox. Examples include how many tabs, add-ons, or windows a user has open; uses of specific Firefox features; session length, scrolls and clicks; and the status of discrete user preferences. It also includes information about the user's in-product journeys and product choices helpful to understand engagement (attitudes). For example, selections of add-ons or tiles to determine potential interest categories etc. Category 3: Stored Content & Communications (stored_content) (formerly Web activity data, web_activity) Information about what people store, sync, communicate or connect to where the information is generally considered to be more sensitive and personal in nature. Examples include users' saved URLs or URL history, specific web browsing history, general information about their web browsing history (such as TLDs or categories of webpages visited over time) and potentially certain types of interaction data about specific web pages or stories visited (such as highlighted portions of a story). It also includes information such as content saved by users to an individual account like saved URLs, tags, notes, passwords and files as well as communications that users have with one another through a Mozilla service. Category 4: Highly sensitive data or clearly identifiable personal data (highly_sensitive) Information that directly identifies a person, or if combined with other data could identify a person. This data may be embedded within specific website content, such as memory contents, dumps, captures of screen data, or DOM data. Examples include account registration data like name, password, and email address associated with an account, payment data in connection with subscriptions or donations, contact information such as phone numbers or mailing addresses, email addresses associated with surveys, promotions and customer support contacts. It also includes any data from different categories that, when combined, can identify a person, device, household or account. For example Category 1 log data combined with Category 3 saved URLs. Additional examples are: voice audio commands (including a voice audio file), speech-to-text or text-to-speech (including transcripts), biometric data, demographic information, and precise location data associated with a persistent identifier, individual or small population cohorts. This is location inferred or determined from mechanisms other than IP such as wi-fi access points, Bluetooth beacons, cell phone towers or provided directly to us, such as in a survey or a profile. Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » Metrics » Optional parameters","id":"289","title":"Optional parameters"},"29":{"body":"This page provides a step-by-step guide on how to integrate the Glean JavaScript SDK into a JavaScript project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so. The Glean JavaScript SDK allows integration with three distinct JavaScript environments: websites, web extension and Node.js.","breadcrumbs":"Adding Glean to your project » JavaScript » Adding Glean to your JavaScript project","id":"29","title":"Adding Glean to your JavaScript project"},"290":{"body":"Custom pings sent by an application or library are defined in YAML files which follow the pings.yaml JSON schema . This files must be parsed by glean_parser at build time in order to generate code in the target language (e.g. Kotlin, Swift, ...). The generated code is what becomes the public API to access the project's custom pings. For more information on how to introduce the glean_parser build step for a specific language / environment, refer to the \"Adding Glean to your project\" section of this book.","breadcrumbs":"YAML Registry Format » Pings » Pings YAML Registry Format","id":"290","title":"Pings YAML Registry Format"},"291":{"body":"Although we refer to pings definitions YAML files as pings.yaml throughout Glean documentation this files may be named whatever makes the most sense for each project and may even be broken down into multiple files, if necessary.","breadcrumbs":"YAML Registry Format » Pings » Note on the naming of these files","id":"291","title":"Note on the naming of these files"},"292":{"body":"---\n# Schema\n$schema: moz://mozilla.org/schemas/glean/pings/2-0-0 # Name\nsearch: # Ping parameters description: > A ping to record search data. include_client_id: false notification_emails: - CHANGE-ME@example.com bugs: - http://bugzilla.mozilla.org/123456789/ data_reviews: - http://example.com/path/to/data-review","breadcrumbs":"YAML Registry Format » Pings » File structure","id":"292","title":"File structure"},"293":{"body":"Declaring the schema at the top of a pings definitions file is required, as it is what indicates that the current file is a pings definitions file.","breadcrumbs":"YAML Registry Format » Pings » Schema","id":"293","title":"Schema"},"294":{"body":"Ping names are the top-level keys on pings definitions files. One single definition file may contain multiple ping declarations. Ping names are limited to lowercase letters from the ISO basic Latin alphabet and hyphens and a maximum of 30 characters. Pings may not contain the words custom or ping in their names. These are considered redundant words and will trigger a REDUNDANT_PING lint failure on glean_parser. \"Capitalization\" rules apply to ping names on generated code.","breadcrumbs":"YAML Registry Format » Pings » Name","id":"294","title":"Name"},"295":{"body":"The names baseline, metrics, events, deletion-request, default and all-pings are reserved and may not be used as the name of a custom ping.","breadcrumbs":"YAML Registry Format » Pings » Reserved ping names","id":"295","title":"Reserved ping names"},"296":{"body":"","breadcrumbs":"YAML Registry Format » Pings » Ping parameters","id":"296","title":"Ping parameters"},"297":{"body":"description A textual description of the purpose of the ping. It may contain markdown syntax . metadata default: {} A dictionary of extra metadata associated with this ping. tags default: [] A list of tag names associated with this ping. Must correspond to an entry specified in a tags file . ping_schedule default: [] A list of ping names. When one of those pings is sent, then this ping is also sent, with the same reason. This is useful if you want a ping to be scheduled and sent at the same frequency as another ping, like baseline. Pings cannot list themselves under ping_schedule, however it is possible to accidentally create cycles of pings where Ping A schedules Ping B, which schedules Ping C, which in turn schedules Ping A. This can result in a constant stream of pings being sent. Please use caution with ping_schedule, and ensure that you have not accidentally created any cycles with the ping references. include_client_id A boolean indicating whether to include the client_id in the client_info section of the ping. notification_emails A list of email addresses to notify for important events with the ping or when people with context or ownership for the ping need to be contacted. Consider adding both a group email address and an individual who is responsible for this ping. bugs A list of bugs (e.g. Bugzilla or GitHub) that are relevant to this ping. For example, bugs that track its original implementation or later changes to it. Each entry should be the full URL to the bug in an issue tracker. The use of numbers alone is deprecated and will be an error in the future. data_reviews A list of URIs to any data collection review responses relevant to the metric.","breadcrumbs":"YAML Registry Format » Pings » Required parameters","id":"297","title":"Required parameters"},"298":{"body":"send_if_empty default: false A boolean indicating if the ping is sent if it contains no metric data. reasons default: {} The reasons that this ping may be sent. The keys are the reason codes, and the values are a textual description of each reason. The ping payload will (optionally) contain one of these reasons in the ping_info.reason field. Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » Pings » Optional parameters","id":"298","title":"Optional parameters"},"299":{"body":"Any number of custom \"tags\" can be added to any metric or ping. This can be useful in data discovery tools like the Glean Dictionary . The tags for an application are defined in YAML files which follow the tags.yaml JSON schema . These files must be parsed by glean_parser at build time in order to generate the metadata. For more information on how to introduce the glean_parser build step for a specific language / environment, refer to the \"Adding Glean to your project\" section of this book.","breadcrumbs":"YAML Registry Format » Tags » Tags YAML Registry Format","id":"299","title":"Tags YAML Registry Format"},"3":{"body":"This section of the book contains reference pages for Glean’s user facing APIs. If you are looking for information a specific Glean API, this is the section you should check out.","breadcrumbs":"Glean » API Reference","id":"3","title":"API Reference"},"30":{"body":"Node.js >= 12.20.0 npm >= 7.0.0 Webpack >= 5.34.0 Python >= 3.8 The glean command requires Python to download glean_parser which is a Python library","breadcrumbs":"Adding Glean to your project » JavaScript » Requirements","id":"30","title":"Requirements"},"300":{"body":"Although we refer to tag definitions YAML files as tags.yaml throughout Glean documentation this files may be named whatever makes the most sense for each project and may even be broken down into multiple files, if necessary.","breadcrumbs":"YAML Registry Format » Tags » Note on the naming of these files","id":"300","title":"Note on the naming of these files"},"301":{"body":"---\n# Schema\n$schema: moz://mozilla.org/schemas/glean/tags/1-0-0 Search: description: Metrics or pings in the \"search\" domain","breadcrumbs":"YAML Registry Format » Tags » File structure","id":"301","title":"File structure"},"302":{"body":"Declaring the schema at the top of a tags definitions file is required, as it is what indicates that the current file is a tag definitions file.","breadcrumbs":"YAML Registry Format » Tags » Schema","id":"302","title":"Schema"},"303":{"body":"Tag names are the top-level keys on tag definitions files. One single definition file may contain multiple tag declarations. There is no restriction on the name of a tag, aside from the fact that they have a maximum of 80 characters.","breadcrumbs":"YAML Registry Format » Tags » Name","id":"303","title":"Name"},"304":{"body":"","breadcrumbs":"YAML Registry Format » Tags » Tag parameters","id":"304","title":"Tag parameters"},"305":{"body":"description A textual description of the tag. It may contain markdown syntax . Found a bug? Edit this page on GitHub.","breadcrumbs":"YAML Registry Format » Tags » Required parameters","id":"305","title":"Required parameters"},"306":{"body":"The Glean SDKs have a minimal API available on their top-level Glean object called the General API. This API allows, among other things, to enable and disable upload, register custom pings and set experiment data . Only initialize in the main application! Glean should only be initialized from the main application, not individual libraries. If you are adding Glean support to a library, you can safely skip this section.","breadcrumbs":"General API » The General API","id":"306","title":"The General API"},"307":{"body":"The Glean SDKs provide a general API that supports the following operations. See API reference pages for SDK-specific details. Operation Description Notes initialize Configure and initialize the Glean SDK. Initializing the Glean SDK setUploadEnabled Enable or disable Glean collection and upload. Toggling upload status registerPings Register custom pings generated from pings.yaml. Custom pings setExperimentActive Indicate that an experiment is running. Using the Experiments API setExperimentInactive Indicate that an experiment is no longer running.. Using the Experiments API registerEventListener Register a callback by which a consumer can be notified of all event metrics being recorded. Glean Event Listener Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » The API","id":"307","title":"The API"},"308":{"body":"Glean needs to be initialized in order to be able to send pings, record metrics and perform maintenance tasks. Thus it is advised that Glean be initialized as soon as possible in an application's lifetime and importantly, before any other libraries in the application start using Glean.","breadcrumbs":"General API » Initializing » Initializing","id":"308","title":"Initializing"},"309":{"body":"Libraries rely on the same Glean singleton as the application in which they are embedded. Hence, they are not expected to initialize Glean as the application should already do that.","breadcrumbs":"General API » Initializing » Libraries are not required to initialize Glean","id":"309","title":"Libraries are not required to initialize Glean"},"31":{"body":"webextension-polyfill >= 0.8.0 Glean.js assumes a Promise-based browser API: Firefox provides such an API by default. Other browsers may require using a polyfill library such us webextension-polyfill when using Glean in browser extensions Host permissions to the telemetry server Only necessary if the defined server endpoint denies cross-origin requests Not necessary if using the default https://incoming.telemetry.mozilla.org. \"storage\" API permissions Browser extension example configuration The manifest.json file of the sample browser extension available on the mozilla/glean.js repository provides an example on how to define the above permissions as well as how and where to load the webextension-polyfill script.","breadcrumbs":"Adding Glean to your project » JavaScript » Browser extension specific requirements","id":"31","title":"Browser extension specific requirements"},"310":{"body":"Any API called before Glean is initialized is queued and applied at initialization. To avoid unbounded memory growth the queue is bounded (currently to a maximum of 1 million tasks), and further calls are dropped. The number of calls dropped, if any, is recorded in the glean.error.preinit_tasks_overflow metric.","breadcrumbs":"General API » Initializing » Behavior when uninitialized","id":"310","title":"Behavior when uninitialized"},"311":{"body":"","breadcrumbs":"General API » Initializing » Behavior once initialized","id":"311","title":"Behavior once initialized"},"312":{"body":"Once initialized, if upload is enabled, Glean applies all metric recordings and ping submissions, for both user-defined and builtin metrics and pings. This always happens asynchronously.","breadcrumbs":"General API » Initializing » When upload is enabled","id":"312","title":"When upload is enabled"},"313":{"body":"If upload is disabled, any persisted metrics, events and pings (other than first_run_date) are cleared. Pending deletion-request pings are sent. Subsequent calls to record metrics and submit pings will be no-ops. Because Glean does that as part of its initialization, users are required to always initialize Glean. Glean must be initialized even if upload is disabled. This does not apply to special builds where telemetry is disabled at build time. In that case, it is acceptable to not call initialize at all.","breadcrumbs":"General API » Initializing » When upload is disabled","id":"313","title":"When upload is disabled"},"314":{"body":"","breadcrumbs":"General API » Initializing » API","id":"314","title":"API"},"315":{"body":"Initializes Glean. May only be called once. Subsequent calls to initialize are no-op. Configuration The available initialize configuration options may vary depending on the SDK. Below are listed the configuration options available on most SDKs. Note that on some SDKs some of the options are taken as a configuration object. Check the respective SDK documentation for details. Configuration Option Default value Description applicationId On Android/iOS: determined automatically. Otherwise required . Application identifier. For Android and iOS applications, this is the id used on the platform's respective app store and is extracted automatically from the application context. uploadEnabled Required The user preference on whether or not data upload is enabled. channel - The application's release channel. When present, the app_channel will be reported in all pings' client_info sections. appBuild On Android/iOS: determined automatically. Otherwise: - A build identifier e.g. the build identifier generated by a CI system (e.g. \"1234/A\"). If not present, app_build will be reported as \"Unknown\" on all pings' client_info sections. appDisplayVersion - The user visible version string for the application running Glean. If not present, app_display_version will be reported as \"Unknown\" on all pings' client_info sections. serverEndpoint https://incoming.telemetry.mozilla.org The server pings are sent to. maxEvents Glean.js: 1. Other SDKs: 500. The maximum number of events the Glean storage will hold on to before submitting the 'events' ping. Refer to the events ping documentation for more information on its scheduling. httpUploader - A custom HTTP uploader instance, that will overwrite Glean's provided uploader. Useful for users that wish to use specific uploader implementations. See Custom Uploaders for more information on how and when the use this feature. logLevel - The level for how verbose the internal logging is. The level filter options in order from least to most verbose are: Off, Error, Warn, Info, Debug, Trace. See the log crate docs for more information. enableEventTimestamps true Whether to add a wall clock timestamp to all events. rateLimit 15 pings per 60s interval Specifies the maximum number of pings that can be uploaded per interval of a specified number of seconds. experimentationId - Optional. An identifier derived by the application to be sent in all pings for the purpose of experimentation. See the experiments API documentation for more information. enableInternalPings true Whether to enable the internal \"baseline\", \"events\", and \"metrics\" pings. delayPingLifetimeIo false Whether Glean should delay persistence of data from metrics with ping lifetime. On Android data is automatically persisted every 1000 writes and on backgrounding when enabled. To learn about SDK specific configuration options available, refer to the Reference section. Always initialize Glean with the correct upload preference Glean must always be initialized with real values. Always pass the user preference, e.g. Glean.initialize(uploadEnabled=userSettings.telemetryEnabled) or the equivalent for your application. Calling Glean.setUploadEnabled(false) at a later point will trigger deletion-request pings and regenerate client IDs. This should only be done if the user preference actually changes. An excellent place to initialize Glean is within the onCreate method of the class that extends Android's Application class. import org.mozilla.yourApplication.GleanMetrics.GleanBuildInfo\nimport org.mozilla.yourApplication.GleanMetrics.Pings class SampleApplication : Application() { override fun onCreate() { super.onCreate() // If you have custom pings in your application, you must register them // using the following command. This command should be omitted for // applications not using custom pings. Glean.registerPings(Pings) // Initialize the Glean library. Glean.initialize( applicationContext, // Here, `settings()` is a method to get user preferences, specific to // your application and not part of the Glean API. uploadEnabled = settings().isTelemetryEnabled, configuration = Configuration(), buildInfo = GleanBuildInfo.buildInfo ) }\n} The Glean Kotlin SDK supports use across multiple processes. This is enabled by setting a dataPath value in the Glean.Configuration object passed to Glean.initialize. You do not need to set a dataPath for your main process. This configuration should only be used by a non-main process. Requirements for a non-main process: Glean.initialize must be called with the dataPath value set in the Glean.Configuration. The default dataPath for Glean is {context.applicationInfo.dataDir}/glean_data. If you try to use this path, Glean.initialize will fail and throw an error. Set the default process name as your main process. If this is not set up correctly, pings from the non-main process will not send. Configuration.Builder().setDefaultProcessName() Note : When initializing from a non-main process with a specified dataPath, the lifecycle observers will not be set up. This means you will not receive otherwise scheduled baseline or metrics pings.","breadcrumbs":"General API » Initializing » Glean.initialize(configuration)","id":"315","title":"Glean.initialize(configuration)"},"316":{"body":"When the Glean Kotlin SDK is consumed through Android Components, it is required to configure an HTTP client to be used for upload. For example: // Requires `org.mozilla.components:concept-fetch`\nimport mozilla.components.concept.fetch.Client // Requires `org.mozilla.components:lib-fetch-httpurlconnection`.\n// This can be replaced by other implementations, e.g. `lib-fetch-okhttp`\n// or an implementation from `browser-engine-gecko`.\nimport mozilla.components.lib.fetch.httpurlconnection.HttpURLConnectionClient\nimport mozilla.components.service.glean.config.Configuration\nimport mozilla.components.service.glean.net.ConceptFetchHttpUploader val httpClient = ConceptFetchHttpUploader(lazy { HttpURLConnectionClient() as Client })\nval config = Configuration(httpClient = httpClient)\nGlean.initialize( context, uploadEnabled = true, configuration = config, buildInfo = GleanBuildInfo.buildInfo\n) An excellent place to initialize Glean is within the application(_:) method of the class that extends the UIApplicationDelegate class. import Glean\nimport UIKit @UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate { func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // If you have custom pings in your application, you must register them // using the following command. This command should be omitted for // applications not using custom pings. Glean.shared.registerPings(GleanMetrics.Pings) // Initialize the Glean library. Glean.shared.initialize( // Here, `Settings` is a method to get user preferences specific to // your application, and not part of the Glean API. uploadEnabled = Settings.isTelemetryEnabled, configuration = Configuration(), buildInfo = GleanMetrics.GleanBuild.info ) }\n} The Glean Swift SDK supports use across multiple processes. This is enabled by setting a dataPath value in the Glean.Configuration object passed to Glean.initialize. You do not need to set a dataPath for your main process. This configuration should only be used by a non-main process. Requirements for a non-main process: Glean.initialize must be called with the dataPath value set in the Glean.Configuration. On iOS devices, Glean stores data in the Application Support directory. The default dataPath Glean uses is {FileManager.default.urls(for: .applicationSupportDirectory, in: .userDomainMask)[0]}/glean_data. If you try to use this path, Glean.initialize will fail and throw an error. Note : When initializing from a non-main process with a specified dataPath, the lifecycle observers will not be set up. This means you will not receive otherwise scheduled baseline or metrics pings. The main control for the Glean Python SDK is on the glean.Glean singleton. from glean import Glean, Configuration Glean.initialize( application_id=\"my-app-id\", application_version=\"0.1.0\", # Here, `is_telemetry_enabled` is a method to get user preferences specific to # your application, and not part of the Glean API. upload_enabled=is_telemetry_enabled(), configuration=Configuration(),\n) Unlike in other implementations, the Python SDK does not automatically send any pings. See the custom pings documentation about adding custom pings and sending them. The Glean Rust SDK should be initialized as soon as possible. use glean::{ClientInfoMetrics, Configuration};\nlet cfg = Configuration { data_path, application_id: \"my-app-id\".into(), // Here, `is_telemetry_enabled` is a method to get user preferences specific to // your application, and not part of the Glean API. upload_enabled: is_telemetry_enabled(), max_events: None, delay_ping_lifetime_io: false, server_endpoint: Some(\"https://incoming.telemetry.mozilla.org\".into()), uploader: None, use_core_mps: true,\n}; let client_info = ClientInfoMetrics { app_build: env!(\"CARGO_PKG_VERSION\").to_string(), app_display_version: env!(\"CARGO_PKG_VERSION\").to_string(), channel: None, locale: None,\n}; glean::initialize(cfg, client_info); The Glean Rust SDK does not support use across multiple processes, and must only be initialized on the application's main process. Unlike in other implementations, the Rust SDK does not provide a default uploader. See PingUploader for details. import Glean from \"@mozilla/glean/\"; Glean.initialize( \"my-app-id\", // Here, `isTelemetryEnabled` is a method to get user preferences specific to // your application, and not part of the Glean API. isTelemetryEnabled(), { appDisplayVersion: \"0.1.0\" }\n);","breadcrumbs":"General API » Initializing » Consuming Glean through Android Components","id":"316","title":"Consuming Glean through Android Components"},"317":{"body":"A custom HTTP uploader may be provided at initialization time in order to overwrite Glean's native ping uploader implementation. Each SDK exposes a base class for Glean users to extend into their own custom uploaders. See BaseUploader for details on how to implement a custom upload on Kotlin. See HttpPingUploader for details on how to implement a custom upload on Swift. See BaseUploader for details on how to implement a custom upload on Python. See PingUploader for details on how to implement a custom upload on Rust. import { Uploader, UploadResult, UploadResultStatus } from \"@mozilla/glean/uploader\";\nimport Glean from \"@mozilla/glean/\"; /** * My custom uploader implementation */\nexport class MyCustomUploader extends Uploader { async post(url: string, body: string, headers): Promise { // My custom POST request code }\n} Glean.initialize( \"my-app-id\", // Here, `isTelemetryEnabled` is a method to get user preferences specific to // your application, and not part of the Glean API. isTelemetryEnabled(), { httpClient: new MyCustomUploader() }\n);","breadcrumbs":"General API » Initializing » Custom Uploaders","id":"317","title":"Custom Uploaders"},"318":{"body":"When unit testing metrics and pings, Glean needs to be put in testing mode. Initializing Glean for tests is referred to as \"resetting\". It is advised that Glean is reset before each unit test to prevent side effects of one unit test impacting others. How to do that and the definition of \"testing mode\" varies per Glean SDK. Refer to the information below for SDK specific information. Using the Glean Kotlin SDK's unit testing API requires adding Robolectric 4.0 or later as a testing dependency. In Gradle, this can be done by declaring a testImplementation dependency: dependencies { testImplementation \"org.robolectric:robolectric:4.3.1\"\n} In order to put the Glean Kotlin SDK into testing mode apply the JUnit GleanTestRule to your test class. Testing mode will prevent issues with async calls when unit testing the Glean SDK on Kotlin. It also enables uploading and clears the recorded metrics at the beginning of each test run. The rule can be used as shown: @RunWith(AndroidJUnit4::class)\nclass ActivityCollectingDataTest { // Apply the GleanTestRule to set up a disposable Glean instance. // Please note that this clears the Glean data across tests. @get:Rule val gleanRule = GleanTestRule(ApplicationProvider.getApplicationContext()) @Test fun checkCollectedData() { // The Glean Kotlin SDK testing APIs can be called here. }\n} This will ensure that metrics are done recording when the other test functions are used. Note : There's no automatic test rule for Glean tests implemented in Swift. In order to prevent issues with async calls when unit testing the Glean SDK, it is important to put the Glean Swift SDK into testing mode. When the Glean Swift SDK is in testing mode, it enables uploading and clears the recorded metrics at the beginning of each test run. Activate it by resetting Glean in your test's setup: // All pings and metrics testing APIs are marked as `internal`\n// so you need to import `Glean` explicitly in test mode.\nimport XCTest class GleanUsageTests: XCTestCase { override func setUp() { Glean.shared.resetGlean(clearStores: true) } // ...\n} This will ensure that metrics are done recording when the other test functions are used. The Glean Python SDK contains a helper function glean.testing.reset_glean() for resetting Glean for tests. It has two required arguments: the application ID, and the application version. Each reset of the Glean Python SDK will create a new temporary directory for Glean to store its data in. This temporary directory is automatically cleaned up the next time the Glean Python SDK is reset or when the testing framework finishes. The instructions below assume you are using pytest as the test runner. Other test-running libraries have similar features, but are different in the details. Create a file conftest.py at the root of your test directory, and add the following to reset Glean at the start of every test in your suite: import pytest\nfrom glean import testing @pytest.fixture(name=\"reset_glean\", scope=\"function\", autouse=True)\ndef fixture_reset_glean(): testing.reset_glean(application_id=\"my-app-id\", application_version=\"0.1.0\") Note Glean uses a global singleton object. Tests need to run single-threaded or need to ensure exclusivity using a lock. The Glean Rust SDK contains a helper function test_reset_glean() for resetting Glean for tests. It has three required arguments: the configuration to use the client info to use whether to clear stores before initialization You can call it like below in every test: let dir = tempfile::tempdir().unwrap();\nlet tmpname = dir.path().to_path_buf(); let glean::Configuration { data_path: tmpname, application_id: \"app-id\".into(), upload_enabled: true, max_events: None, delay_ping_lifetime_io: false, server_endpoint: Some(\"invalid-test-host\".into()), uploader: None, use_core_mps: false,\n};\nlet client_info = glean::ClientInfoMetrics::unknown();\nglean::test_reset_glean(cfg, client_info, false); The Glean JavaScript SDK contains a helper function testResetGlean() for resetting Glean for tests. It expects the same list of arguments as Glean.initialize. Each reset of the Glean JavaScript SDK will clear stores. Calling testResetGlean will also make metrics and pings testing APIs available and replace ping uploading with a mock implementation that does not make real HTTP requests. import { testResetGlean } from \"@mozilla/glean/testing\" describe(\"myTestSuite\", () => { beforeEach(async () => { await testResetGlean(\"my-test-id\"); });\n});","breadcrumbs":"General API » Initializing » Testing API","id":"318","title":"Testing API"},"319":{"body":"Swift API docs Python API docs Rust API docs JavaScript API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Initializing » Reference","id":"319","title":"Reference"},"32":{"body":"The Glean JavaScript SDK is distributed as an npm package @mozilla/glean . This package has different entry points to access the different SDKs. @mozilla/glean/web gives access to the websites SDK @mozilla/glean/webext gives access to the web extension SDK @mozilla/glean/node gives access to the Node.js SDK [1] The Node.js SDK does not have persistent storage yet. This means, Glean does not persist state throughout application runs. For updates on the implementation of this feature in Node.js, follow Bug 1728807 . Install Glean in your JavaScript project, by running: npm install @mozilla/glean Then import Glean into your project: // Importing the Glean JavaScript SDK for use in **web extensions**\n//\n// esm\nimport Glean from \"@mozilla/glean/webext\";\n// cjs\nconst { default: Glean } = require(\"@mozilla/glean/webext\"); // Importing the Glean JavaScript SDK for use in **websites**\n//\n// esm\nimport Glean from \"@mozilla/glean/web\";\n// cjs\nconst { default: Glean } = require(\"@mozilla/glean/web\"); // Importing the Glean JavaScript SDK for use in **Node.js**\n//\n// esm\nimport Glean from \"@mozilla/glean/node\";\n// cjs\nconst { default: Glean } = require(\"@mozilla/glean/node\");","breadcrumbs":"Adding Glean to your project » JavaScript » Setting up the dependency","id":"32","title":"Setting up the dependency"},"320":{"body":"The Glean SDKs provide an API for toggling Glean's upload status after initialization. Applications instrumented with Glean are expected to provide some form of user interface to allow for toggling the upload status.","breadcrumbs":"General API » Toggling upload status » Toggling upload status","id":"320","title":"Toggling upload status"},"321":{"body":"When upload is disabled, the Glean SDK will perform the following tasks: Submit a deletion-request ping. Cancel scheduled ping uploads. Clear metrics and pings data from the client, except for the first_run_date metric. While upload is disabled, metrics aren't recorded and no data is uploaded.","breadcrumbs":"General API » Toggling upload status » Disabling upload","id":"321","title":"Disabling upload"},"322":{"body":"When upload is enabled, the Glean SDK will re-initialize its core metrics . The only core metric that is not re-initialized is the first_run_date metric. While upload is enabled all metrics are recorded as expected and pings are sent to the telemetry servers.","breadcrumbs":"General API » Toggling upload status » Enabling upload","id":"322","title":"Enabling upload"},"323":{"body":"","breadcrumbs":"General API » Toggling upload status » API","id":"323","title":"API"},"324":{"body":"Enables or disables upload. If called prior to initialize this function is a no-op. If the upload state is not actually changed in between calls to this function, it is also a no-op. import mozilla.telemetry.glean.Glean open class MainActivity : AppCompatActivity() { override fun onCreate() { // ... uploadSwitch.setOnCheckedChangeListener { _, isChecked -> if (isChecked) { Glean.setUploadEnabled(true) } else { Glean.setUploadEnabled(false) } } }\n} import mozilla.telemetry.glean.Glean Glean.INSTANCE.setUploadEnabled(false); import Glean\nimport UIKit class ViewController: UIViewController { @IBOutlet var enableSwitch: UISwitch! // ... @IBAction func enableToggled(_: Any) { Glean.shared.setUploadEnabled(enableSwitch.isOn) }\n} from glean import Glean Glean.set_upload_enabled(false) use glean; glean::set_upload_enabled(false); import Glean from \"@mozilla/glean/web\"; const uploadSwitch = document.querySelector(\"input[type=checkbox].upload-switch\");\nuploadSwitch.addEventListener(\"change\", event => { if (event.target.checked) { Glean.setUploadEnabled(true); } else { Glean.setUploadEnabled(false); }\n});","breadcrumbs":"General API » Toggling upload status » Glean.setUploadEnabled(boolean)","id":"324","title":"Glean.setUploadEnabled(boolean)"},"325":{"body":"Swift API docs Python API docs Rust API docs JavaScript API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Toggling upload status » Reference","id":"325","title":"Reference"},"326":{"body":"The Glean SDKs support tagging all their pings with experiments annotations. The annotations are useful to report that experiments were active at the time the measurement were collected. The annotations are reported in the optional experiments entry in the ping_info section of all pings. Experiment annotations are not persisted The experiment annotations set through this API are not persisted by the Glean SDKs. The application or consuming library is responsible for setting the relevant experiment annotations at each run. It's not required to define experiment IDs and branches Experiment IDs and branches don't need to be pre-defined in the Glean SDK registry files. Please also note that the extra map is a non-nested arbitrary String to String map. It also has limits on the size of the keys and values defined below.","breadcrumbs":"General API » Annotating experiments » Using the experiments API","id":"326","title":"Using the experiments API"},"327":{"body":"","breadcrumbs":"General API » Annotating experiments » Recording API","id":"327","title":"Recording API"},"328":{"body":"Annotates Glean pings with experiment data. // Annotate Glean pings with experiments data.\nGlean.setExperimentActive( experimentId = \"blue-button-effective\", branch = \"branch-with-blue-button\", extra: mapOf( \"buttonLabel\" to \"test\" )\n) // Annotate Glean pings with experiments data.\nGlean.shared.setExperimentActive( experimentId: \"blue-button-effective\", branch: \"branch-with-blue-button\", extra: [\"buttonLabel\": \"test\"]\n) from glean import Glean Glean.set_experiment_active( experiment_id=\"blue-button-effective\", branch=\"branch-with-blue-button\", extra={ \"buttonLabel\": \"test\" }\n) let mut extra = HashMap::new();\nextra.insert(\"buttonLabel\".to_string(), \"test\".to_string());\nglean::set_experiment_active( \"blue-button-effective\".to_string(), \"branch-with-blue-button\".to_string(), Some(extra),\n); C++ At present there is no dedicated C++ Experiments API for Firefox Desktop If you require one, please file a bug . JavaScript let FOG = Cc[\"@mozilla.org/toolkit/glean;1\"].createInstance(Ci.nsIFOG);\nFOG.setExperimentActive( \"blue-button-effective\", \"branch-with-blue-button\", {\"buttonLabel\": \"test\"}\n); Limits experimentId, branch, and the keys and values of the extra field are fixed at a maximum length of 100 bytes. Longer strings are truncated. (Specifically, length is measured in the number of bytes when the string is encoded in UTF-8.) extra map is limited to 20 entries. If passed a map which contains more elements than this, it is truncated to 20 elements. WARNING Which items are truncated is nondeterministic due to the unordered nature of maps. What's left may not necessarily be the first elements added. Recorded errors invalid_value : If the values of experimentId or branch are truncated for length, if the keys or values in the extra map are truncated for length, or if the extra map is truncated for the number of elements.","breadcrumbs":"General API » Annotating experiments » setExperimentActive","id":"328","title":"setExperimentActive"},"329":{"body":"Removes the experiment annotation. Should be called when the experiment ends. Glean.setExperimentInactive(\"blue-button-effective\") Glean.shared.setExperimentInactive(experimentId: \"blue-button-effective\") from glean import Glean Glean.set_experiment_inactive(\"blue-button-effective\") glean::set_experiment_inactive(\"blue-button-effective\".to_string()); C++ At present there is no dedicated C++ Experiments API for Firefox Desktop If you require one, please file a bug . JavaScript let FOG = Cc[\"@mozilla.org/toolkit/glean;1\"].createInstance(Ci.nsIFOG);\nFOG.setExperimentInactive(\"blue-button-effective\");","breadcrumbs":"General API » Annotating experiments » setExperimentInactive","id":"329","title":"setExperimentInactive"},"33":{"body":"In case of privilege-escalation attack into the context of the web extension using Glean, the malicious scripts would be able to call Glean APIs or use the browser.storage.local APIs directly. That would be a risk to Glean data, but not caused by Glean. Glean-using extensions should be careful not to relax the default Content-Security-Policy that generally prevents these attacks.","breadcrumbs":"Adding Glean to your project » JavaScript » Browser extension security considerations","id":"33","title":"Browser extension security considerations"},"330":{"body":"An experimentation enrollment identifier that is derived and provided by the application can be set through the configuration object passed into the initialize function. See the section on Initializing Glean for more information on how to set this within the Configuration object. This identifier will be set during initialization and sent along with all pings sent by Glean, unless that ping is has opted out of sending the client_id. This identifier is not persisted by Glean and must be persisted by the application if necessary for it to remain consistent between runs. Limits The experimentation ID is subject to the same limitations as a string metric type . Recorded errors The experimentation ID will produce the same errors as a string metric type .","breadcrumbs":"General API » Annotating experiments » Set an experimentation identifier","id":"330","title":"Set an experimentation identifier"},"331":{"body":"","breadcrumbs":"General API » Annotating experiments » Testing API","id":"331","title":"Testing API"},"332":{"body":"Reveals if the experiment is annotated in Glean pings. assertTrue(Glean.testIsExperimentActive(\"blue-button-effective\")) XCTAssertTrue(Glean.shared.testIsExperimentActive(experimentId: \"blue-button-effective\")) from glean import Glean assert Glean.test_is_experiment_active(\"blue-button-effective\") assert!(glean::test_is_experiment_active(\"blue-button-effective\".to_string());","breadcrumbs":"General API » Annotating experiments » testIsExperimentActive","id":"332","title":"testIsExperimentActive"},"333":{"body":"Returns the recorded experiment data including branch and extras. assertEquals( \"branch-with-blue-button\", Glean.testGetExperimentData(\"blue-button-effective\")?.branch\n) XCTAssertEqual( \"branch-with-blue-button\", Glean.testGetExperimentData(experimentId: \"blue-button-effective\")?.branch\n) from glean import Glean assert ( \"branch-with-blue-button\" == Glean.test_get_experiment_data(\"blue-button-effective\").branch\n) assert_eq!( \"branch-with-blue-button\", glean::test_get_experiment_data(\"blue-button-effective\".to_string()).branch,\n); C++ At present there is no dedicated C++ Experiments API for Firefox Desktop If you require one, please file a bug . JavaScript let FOG = Cc[\"@mozilla.org/toolkit/glean;1\"].createInstance(Ci.nsIFOG);\nAssert.equals( \"branch-with-blue-button\", FOG.testGetExperimentData(\"blue-button-effective\").branch\n);","breadcrumbs":"General API » Annotating experiments » testGetExperimentData","id":"333","title":"testGetExperimentData"},"334":{"body":"Returns the current Experimentation ID, if any. assertEquals(\"alpha-beta-gamma-delta\", Glean.testGetExperimentationId()) XCTAssertEqual( \"alpha-beta-gamma-delta\", Glean.shared.testGetExperimentationId()!, \"Experimenatation ids must match\"\n) from glean import Glean assert \"alpha-beta-gamma-delta\" == Glean.test_get_experimentation_id() assert_eq!( \"alpha-beta-gamma-delta\".to_string(), glean_test_get_experimentation_id(), \"Experimentation id must match\"\n);","breadcrumbs":"General API » Annotating experiments » testGetExperimentationId","id":"334","title":"testGetExperimentationId"},"335":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Annotating experiments » Reference","id":"335","title":"Reference"},"336":{"body":"After defining custom pings glean_parser is able to generate code from pings.yaml files in a Pings object, which must be instantiated so Glean can send pings by name.","breadcrumbs":"General API » Registering custom pings » Registering custom pings","id":"336","title":"Registering custom pings"},"337":{"body":"","breadcrumbs":"General API » Registering custom pings » API","id":"337","title":"API"},"338":{"body":"Loads custom ping metadata into your application or library. In Kotlin, this object must be registered from your startup code before calling Glean.initialize (such as in your application's onCreate method or a function called from that method). import org.mozilla.yourApplication.GleanMetrics.Pings override fun onCreate() { Glean.registerPings(Pings) Glean.initialize(applicationContext, uploadEnabled = true)\n} In Swift, this object must be registered from your startup code before calling Glean.shared.initialize (such as in your application's UIApplicationDelegate application(_:didFinishLaunchingWithOptions:) method or a function called from that method). import Glean @UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate { func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { Glean.shared.registerPings(GleanMetrics.Pings) Glean.shared.initialize(uploadEnabled = true) }\n} For Python, the pings.yaml file must be available and loaded at runtime. While the Python SDK does provide a Glean.register_ping_type function, if your project is a script (i.e. just Python files in a directory), you can load the pings.yaml before calling Glean.initialize using: from glean import load_pings pings = load_pings(\"pings.yaml\") Glean.initialize( application_id=\"my-app-id\", application_version=\"0.1.0\", upload_enabled=True,\n) If your project is a distributable Python package, you need to include the pings.yaml file using one of the myriad ways to include data in a Python package and then use pkg_resources.resource_filename() to get the filename at runtime. from glean import load_pings\nfrom pkg_resources import resource_filename pings = load_pings(resource_filename(__name__, \"pings.yaml\")) In Rust custom pings need to be registered individually. This should be done before calling glean::initialize. use your_glean_metrics::pings; glean::register_ping_type(&pings::custom_ping);\nglean::register_ping_type(&pings::search);\nglean::initialize(cfg, client_info); Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Registering custom pings » registerPings","id":"338","title":"registerPings"},"339":{"body":"Provides a way for users to gracefully shut down Glean, by blocking until it is finished performing pending tasks such as recording metrics and uploading pings.","breadcrumbs":"General API » Shut down » Shut down","id":"339","title":"Shut down"},"34":{"body":"\"Cannot find module '@mozilla/glean'\" Glean.js does not have a main package entry point. Instead it relies on a series of entry points depending on the platform you are targeting. In order to import Glean use: import Glean from '@mozilla/glean/{your-platform}' \"Module not found: Error: Can't resolve '@mozilla/glean/webext' in '...'\" Glean.js relies on Node.js' subpath exports feature to define multiple package entry points. Please make sure that you are using a supported Node.js runtime and also make sure the tools you are using support this Node.js feature.","breadcrumbs":"Adding Glean to your project » JavaScript » Common import errors","id":"34","title":"Common import errors"},"340":{"body":"Most calls to Glean APIs are dispatched [1] . This strategy is adopted because most tasks performed by the Glean SDKs involve file system read or write operations, HTTP requests and other time consuming actions. Each Glean SDK has an internal structure called \"Dispatcher\" which makes sure API calls get executed in the order they were called, while not requiring the caller to block on the completion of each of these tasks. Here, this term indicates the tasks are run asynchronously in JavaScript or in a different thread for all other SDKs.","breadcrumbs":"General API » Shut down » How the Glean SDKs execute tasks","id":"340","title":"How the Glean SDKs execute tasks"},"341":{"body":"","breadcrumbs":"General API » Shut down » API","id":"341","title":"API"},"342":{"body":"fn main() { let cfg = Configuration { // ... }; let client_info = /* ... */; glean::initialize(cfg, client_info); // Ensure the dispatcher thread winds down glean::shutdown();\n} import Glean from \"@mozilla/glean/webext\"; async function onUninstall() { // Flips Glean upload status to `false`, // which triggers sending of a `deletion-request` ping. Glean.setUploadEnabled(false); // Block on shut down to guarantee all pending pings // (including the `deletion-request` sent above) // are sent before the extension is uninstalled. await Glean.shutdown(); // Uninstall browser extension without asking for user approval before doing so. await browser.management.uninstallSelf({ showConfirmDialog: false });\n} The shutdown API is available for all JavaScript targets, even though the above example is explicitly using the webext target.","breadcrumbs":"General API » Shut down » shutdown","id":"342","title":"shutdown"},"343":{"body":"Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » Shut down » Reference","id":"343","title":"Reference"},"344":{"body":"Note: This API is currently experimental and subject to change or elimination. Please reach out to the Glean Team if you are planning on using this API in its experimental state.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Glean Event Listener","id":"344","title":"Glean Event Listener"},"345":{"body":"Glean provides an API to register a callback by which a consumer can be notified of all event metrics being recorded.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Summary","id":"345","title":"Summary"},"346":{"body":"Consumers can register a callback through this API which will be called with the base identifier of each event metric when it is recorded. The base identifier of the event consists of the category name and the event name with a dot separator: . Glean will execute the registered callbacks on a background thread independent of the thread in which the event is being recorded in order to not interfere with the collection of the event. Glean will ensure that event recordings are reported to listeners in the same order that they are recorded by using the same dispatching mechanisms used to ensure events are recorded in the order they are received.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Usage","id":"346","title":"Usage"},"347":{"body":"class TestEventListener : GleanEventListener { val listenerTag: String = \"TestEventListener\" var lastSeenId: String = \"\" var count: Int = 0 override fun onEventRecorded(id: String) { this.lastSeenId = id this.count += 1 }\n} val listener = TestEventListener()\nGlean.registerEventListener(listener.listenerTag, listener) // If necessary to unregister the listener:\nGlean.unregisterEventListener(listener.listenerTag) class TestEventListener: GleanEventListener { let listenerTag: String = \"TestEventListener\" var lastSeenId: String = \"\" var count: Int64 = 0 func onEventRecorded(_ id: String) { self.lastSeenId = id self.count += 1 }\n} let listener = TestEventListener()\nGlean.shared.registerEventListener(tag: listener.listenerTag, listener: listener) // If necessary to unregister the listener:\nGlean.shared.unregisterEventListener(listener.listenerTag) Found a bug? Edit this page on GitHub.","breadcrumbs":"General API » EXPERIMENTAL: Glean Event Listener » Examples","id":"347","title":"Examples"},"348":{"body":"Different platforms have different ways to enable each debug functionality. They may be enabled through APIs exposed on the Glean singleton, through environment variables set at run time, or through platform specific debug tools.","breadcrumbs":"Debugging » Debugging","id":"348","title":"Debugging"},"349":{"body":"Check out the platform specific guides on how to use Glean's debug functionalities. Debugging applications using the Glean Android SDK Debugging applications using the Glean iOS SDK Debugging applications using the Glean Python SDK Debugging applications using the Glean JavaScript SDK","breadcrumbs":"Debugging » Platform Specific Information","id":"349","title":"Platform Specific Information"},"35":{"body":"In JavaScript, the metrics and pings definitions must be parsed at build time. The @mozilla/glean package exposes glean_parser through the glean script. To parse your YAML registry files using this script, define a new script in your package.json file: { // ... \"scripts\": { // ... \"build:glean\": \"glean translate path/to/metrics.yaml path/to/pings.yaml -f javascript -o path/to/generated\", // Or, if you are building for a Typescript project \"build:glean\": \"glean translate path/to/metrics.yaml path/to/pings.yaml -f typescript -o path/to/generated\" }\n} Then run this script by calling: npm run build:glean","breadcrumbs":"Adding Glean to your project » JavaScript » Setting up metrics and pings code generation","id":"35","title":"Setting up metrics and pings code generation"},"350":{"body":"The Glean SDKs provides four debugging features.","breadcrumbs":"Debugging » Features","id":"350","title":"Features"},"351":{"body":"This is either true or false and will cause all subsequent pings that are submitted, to also be echoed to the device's log.","breadcrumbs":"Debugging » Log Pings","id":"351","title":"Log Pings"},"352":{"body":"This will tag all subsequent outgoing pings with the provided value, in order to identify them in the Glean Debug View .","breadcrumbs":"Debugging » Debug View Tag","id":"352","title":"Debug View Tag"},"353":{"body":"This will tag all subsequent outgoing pings with a maximum of 5 comma-separated tags.","breadcrumbs":"Debugging » Source Tags","id":"353","title":"Source Tags"},"354":{"body":"This feature is only available for the Kotlin and Swift SDKs and in Firefox Desktop via about:glean. This expects the name of a ping and forces its immediate submission. Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Send Pings","id":"354","title":"Send Pings"},"355":{"body":"This flag causes all subsequent pings that are submitted to also be echoed to the product's log. Once enabled, the only way to disable this feature is to restart or manually reset the application.","breadcrumbs":"Debugging » Log pings » Log pings","id":"355","title":"Log pings"},"356":{"body":"The Glean SDKs log warnings and errors through platform-specific logging frameworks. See the platform-specific instructions for information on how to view the logs on the platform you are on.","breadcrumbs":"Debugging » Log pings » On how to access logs","id":"356","title":"On how to access logs"},"357":{"body":"The accepted values are true or false. Any other value will be ignored.","breadcrumbs":"Debugging » Log pings » Limits","id":"357","title":"Limits"},"358":{"body":"","breadcrumbs":"Debugging » Log pings » API","id":"358","title":"API"},"359":{"body":"Enables or disables ping logging. This API can safely be called before Glean.initialize. The tag will be applied upon initialization in this case. use glean; glean.set_log_pings(true); import Glean from \"@mozilla/glean/\"; Glean.setLogPings(true);","breadcrumbs":"Debugging » Log pings » setLogPings","id":"359","title":"setLogPings"},"36":{"body":"","breadcrumbs":"Adding Glean to your project » JavaScript » Automation steps","id":"36","title":"Automation steps"},"360":{"body":"Gets the current state of ping logging. val loggingEnabled = Glean.getLogPings() let loggingEnabled = Glean.shared.getLogPings() use glean; let logging_enabled = glean.get_log_pings();","breadcrumbs":"Debugging » Log pings » getLogPings","id":"360","title":"getLogPings"},"361":{"body":"","breadcrumbs":"Debugging » Log pings » Environment variable","id":"361","title":"Environment variable"},"362":{"body":"It is also possible to enable ping logging through the GLEAN_LOG_PINGS environment variable. This variable must be set at runtime, not at compile time. It will be checked upon Glean initialization. Xcode IDE scheme editor popup screenshot To set environment variables to the process running your app in an iOS device or emulator you need to edit the scheme for your app. In the Xcode IDE, use the shortcut Cmd + < to open the scheme editor popup. The environment variables editor is under the Arguments tab on this popup. $ GLEAN_LOG_PINGS=true python my_application.py $ GLEAN_LOG_PINGS=true cargo run $ GLEAN_LOG_PINGS=true ./mach run Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Log pings » GLEAN_LOG_PINGS","id":"362","title":"GLEAN_LOG_PINGS"},"363":{"body":"Tag all subsequent outgoing pings with a given value, in order to redirect them to the Glean Debug View . \"To tag\" a ping with the Debug View Tag means that the ping request will contain the X-Debug-Id header with the given tag. Once enabled, the only way to disable this feature is to restart or manually reset the application.","breadcrumbs":"Debugging » Debug View Tag » Debug View Tag","id":"363","title":"Debug View Tag"},"364":{"body":"Any valid HTTP header value is a valid debug view tag (e.g. any value that matches the regex [a-zA-Z0-9-]{1,20}). Invalid values will be ignored.","breadcrumbs":"Debugging » Debug View Tag » Limits","id":"364","title":"Limits"},"365":{"body":"","breadcrumbs":"Debugging » Debug View Tag » API","id":"365","title":"API"},"366":{"body":"Sets the Debug View Tag to a given value. This API can safely be called before Glean.initialize. The tag will be applied upon initialization in this case. Glean.setDebugViewTag(\"my-tag\") import Glean Glean.shared.setDebugViewTag(\"my-tag\") use glean; glean.set_debug_view_tag(\"my-tag\"); import Glean from \"@mozilla/glean/\"; Glean.setDebugViewTag(\"my-tag\");","breadcrumbs":"Debugging » Debug View Tag » setDebugViewTag","id":"366","title":"setDebugViewTag"},"367":{"body":"Gets the Debug View Tag if set, otherwise returns a language-specific empty/null value. val tag = Glean.getDebugViewTag() ?: \"none\" import Glean if let tag = Glean.shared.getDebugViewTag() { ... } use glean; if let Some(tag) = glean.get_debug_view_tag() { ... };","breadcrumbs":"Debugging » Debug View Tag » getDebugViewTag","id":"367","title":"getDebugViewTag"},"368":{"body":"","breadcrumbs":"Debugging » Debug View Tag » Environment variable","id":"368","title":"Environment variable"},"369":{"body":"It is also possible to set the debug view tag through the GLEAN_DEBUG_VIEW_TAG environment variable. This variable must be set at runtime, not at compile time. It will be checked upon Glean initialization. Xcode IDE scheme editor popup screenshot To set environment variables to the process running your app in an iOS device or emulator you need to edit the scheme for your app. In the Xcode IDE, use the shortcut Cmd + < to open the scheme editor popup. The environment variables editor is under the Arguments tab on this popup. $ GLEAN_DEBUG_VIEW_TAG=\"my-tag\" python my_application.py $ GLEAN_DEBUG_VIEW_TAG=\"my-tag\" cargo run $ GLEAN_DEBUG_VIEW_TAG=\"my-tag\" ./mach run Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Debug View Tag » GLEAN_DEBUG_VIEW_TAG","id":"369","title":"GLEAN_DEBUG_VIEW_TAG"},"37":{"body":"Prefer using the Glean Dictionary While it is still possible to generate Markdown documentation, if working on a public Mozilla project rely on the Glean Dictionary for documentation. Your product will be automatically indexed by the Glean Dictionary after it gets enabled in the pipeline. One of the commands provided by glean_parser allows users to generate Markdown documentation based on the contents of their YAML registry files. To perform that translation, use the translate command with a different output format, as shown below. In your package.json, define the following script: { // ... \"scripts\": { // ... \"docs:glean\": \"glean translate path/to/metrics.yaml path/to/pings.yaml -f markdown -o path/to/docs\", }\n} Then run this script by calling: npm run docs:glean","breadcrumbs":"Adding Glean to your project » JavaScript » Documentation","id":"37","title":"Documentation"},"370":{"body":"Tag all subsequent outgoing pings with a maximum of 5 comma-separated tags. \"To tag\" a ping with Source Tags means that the ping request will contain the X-Source-Tags header with a comma separated list of the given tags. Once enabled, the only way to disable this feature is to restart or manually reset the application.","breadcrumbs":"Debugging » Source Tags » Source Tags","id":"370","title":"Source Tags"},"371":{"body":"Any valid HTTP header value is a valid source tag (e.g. any value that matches the regex [a-zA-Z0-9-]{1,20}) and values starting with the substring glean are reserved for internal Glean usage and thus are also considered invalid. If any value in the list of source tags is invalid, the whole list will be ignored. If the list of tags has more than five members, the whole list will be ignored. The special value automation is meant for tagging pings generated on automation: such pings will be specially handled on the pipeline (i.e. discarded from non-live views ).","breadcrumbs":"Debugging » Source Tags » Limits","id":"371","title":"Limits"},"372":{"body":"","breadcrumbs":"Debugging » Source Tags » API","id":"372","title":"API"},"373":{"body":"Sets the Source Tags to a given value. This API can safely be called before Glean.initialize. The tag will be applied upon initialization in this case. import mozilla.telemetry.glean.Glean Glean.setSourceTags(setOf(\"my-tag\", \"your-tag\", \"our-tag\")) Glean.INSTANCE.setSourceTags(setOf(\"my-tag\", \"your-tag\", \"our-tag\")) import Glean Glean.shared.setSourceTags([\"my-tag\", \"your-tag\", \"our-tag\"]) use glean; glean.set_source_tags([\"my-tag\", \"your-tag\", \"our-tag\"]); import Glean from \"@mozilla/glean/\"; Glean.setSourceTags([\"my-tag\", \"your-tag\", \"our-tag\"]);","breadcrumbs":"Debugging » Source Tags » setSourceTags","id":"373","title":"setSourceTags"},"374":{"body":"","breadcrumbs":"Debugging » Source Tags » Environment variable","id":"374","title":"Environment variable"},"375":{"body":"It is also possible to set the debug view tag through the GLEAN_SOURCE_TAGS environment variable. This variable must be set at runtime, not at compile time. It will be checked upon Glean initialization. Xcode IDE scheme editor popup screenshot To set environment variables to the process running your app in an iOS device or emulator you need to edit the scheme for your app. In the Xcode IDE, use the shortcut Cmd + < to open the scheme editor popup. The environment variables editor is under the Arguments tab on this popup. $ GLEAN_SOURCE_TAGS=my-tag,your-tag,our-tag python my_application.py $ GLEAN_SOURCE_TAGS=my-tag,your-tag,our-tag cargo run $ GLEAN_SOURCE_TAGS=my-tag,your-tag,our-tag ./mach run Found a bug? Edit this page on GitHub.","breadcrumbs":"Debugging » Source Tags » GLEAN_SOURCE_TAGS","id":"375","title":"GLEAN_SOURCE_TAGS"},"376":{"body":"Not sure which metric type to use? These docs contain a series of questions that can help. Reference information about each metric type is linked below. The parameters available that apply to any metric type are in the metric parameters page . There are different metrics to choose from, depending on what you want to achieve: Boolean : Records a single truth value, for example \"is a11y enabled?\" Labeled boolean : Records truth values for a set of labels, for example \"which a11y features are enabled?\" Counter : Used to count how often something happens, for example, how often a certain button was pressed. Labeled counter : Used to count how often something happens, for example which kind of crash occurred (\"uncaught_exception\" or \"native_code_crash\"). String : Records a single Unicode string value, for example the name of the OS. Labeled strings : Records multiple Unicode string values, for example to record which kind of error occurred in different stages of a login process. String List : Records a list of Unicode string values, for example the list of enabled search engines. Timespan : Used to measure how much time is spent in a single task. Timing Distribution : Used to record the distribution of multiple time measurements. Memory Distribution : Used to record the distribution of memory sizes. UUID : Used to record universally unique identifiers (UUIDs), such as a client ID. URL : Used to record URL-like strings. Datetime : Used to record an absolute date and time, such as the time the user first ran the application. Events : Records events e.g. individual occurrences of user actions, say every time a view was open and from where. Custom Distribution : Used to record the distribution of a value that needs fine-grained control of how the histogram buckets are computed. Custom distributions are only available for values that come from Gecko. Quantity : Used to record a single non-negative integer value. For example, the width of the display in pixels. Labeled Quantity : Used to record multiple non-negative integer values. For example, the dimensions of the display in pixels. Rate : Used to record the rate something happens relative to some other thing. For example, the number of HTTP connections that experienced an error relative to the number of total HTTP connections made. Text : Records a single long Unicode text, used when the limits on String are too low. Object : Record structured data.","breadcrumbs":"Metric types » Metrics","id":"376","title":"Metrics"},"377":{"body":"There are two types of metrics listed above - labeled and unlabeled metrics. If a metric is labeled , it means that for a single metric entry you define in metrics.yaml, you can record into multiple metrics under the same name, each of the same type and identified by a different string label. This is useful when you need to break down metrics by a label known at build time or run time. For example: When you want to count a different set of sub-views that users interact with, you could use viewCount[\"view1\"].add() and viewCount[\"view2\"].add(). When you want to count errors that might occur for a feature, you could use errorCount[errorName].add(). Labeled metrics come in two forms: Static labels : The labels are specified at build time in the metrics.yaml file, in the labels parameter. If a label that isn't part of this set is used at run time, it is converted to the special label __other__. The number of static labels is limited to 4096 per metric. Dynamic labels : The labels aren't known at build time, so are set at run time. Only the first 16 labels seen by Glean will be tracked. After that, any additional labels are converted to the special label __other__. Note : Be careful with using arbitrary strings as labels and make sure they can't accidentally contain identifying data (like directory paths or user input).","breadcrumbs":"Metric types » Labeled metrics","id":"377","title":"Labeled metrics"},"378":{"body":"Labels must not exceed 71 characters in length, and may comprise any printable ASCII characters.","breadcrumbs":"Metric types » Label format","id":"378","title":"Label format"},"379":{"body":"Glean has a well-defined process for requesting changes to existing metric types or suggesting the implementation of new metric types: Glean consumers need to file a bug in the Data platforms & tools::Glean Metric Types component, filling in the provided form; The triage owner of the Bugzilla component prioritizes this within 6 business days and kicks off the decision making process . Once the decision process is completed, the bug is closed with a comment outlining the decision that was made.","breadcrumbs":"Metric types » Adding or changing metric types","id":"379","title":"Adding or changing metric types"},"38":{"body":"Glean includes a \"linter\" for the YAML registry files called the glinter that catches a number of common mistakes in these files. To run the linter use the glinter command. In your package.json, define the following script: { // ... \"scripts\": { // ... \"lint:glean\": \"glean glinter path/to/metrics.yaml path/to/pings.yaml\", }\n} Then run this script by calling: npm run lint:glean Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » JavaScript » YAML registry files linting","id":"38","title":"YAML registry files linting"},"380":{"body":"JWE : Deprecated in v37.0.0 Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Deprecated metrics","id":"380","title":"Deprecated metrics"},"381":{"body":"Boolean metrics are used for reporting simple flags.","breadcrumbs":"Metric types » Boolean » Boolean","id":"381","title":"Boolean"},"382":{"body":"","breadcrumbs":"Metric types » Boolean » Recording API","id":"382","title":"Recording API"},"383":{"body":"Sets a boolean metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Flags Flags.a11yEnabled.set(System.isAccesibilityEnabled()) import org.mozilla.yourApplication.GleanMetrics.Flags; Flags.INSTANCE.a11yEnabled().set(System.isAccessibilityEnabled()); Flags.a11yEnabled.set(self.isAccessibilityEnabled) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.flags.a11y_enabled.set(is_accessibility_enabled()) use glean_metrics::flags; flags::a11y_enabled.set(system.is_accessibility_enabled()); import * as flags from \"./path/to/generated/files/flags.js\"; flags.a11yEnabled.set(this.isAccessibilityEnabled()); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::flags::a11y_enabled.Set(false); JavaScript Glean.flags.a11yEnabled.set(false); Recorded errors invalid_type : if a non-boolean value is given (JavaScript only).","breadcrumbs":"Metric types » Boolean » set","id":"383","title":"set"},"384":{"body":"","breadcrumbs":"Metric types » Boolean » Testing API","id":"384","title":"Testing API"},"385":{"body":"Gets the recorded value for a given boolean metric. Returns true or false if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Flags assertTrue(Flags.a11yEnabled.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Flags; assertTrue(Flags.INSTANCE.a11yEnabled().testGetValue()); XCTAssertTrue(Flags.a11yEnabled.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert True is metrics.flags.a11y_enabled.test_get_value() use glean_metrics::flags; assert!(flags::a11y_enabled.test_get_value(None).unwrap()); import * as flags from \"./path/to/generated/files/flags.js\"; assert(await flags.a11yEnabled.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQ(false, mozilla::glean::flags::a11y_enabled.TestGetValue().value()); JavaScript Assert.equal(false, Glean.flags.a11yEnabled.testGetValue());","breadcrumbs":"Metric types » Boolean » testGetValue","id":"385","title":"testGetValue"},"386":{"body":"Gets the number of errors recorded for a given boolean metric. import org.mozilla.yourApplication.GleanMetrics.Flags assertEquals( 0, Flags.a11yEnabled.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Flags; assertEquals( 0, Flags.INSTANCE.a11yEnabled().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Flags.a11yEnabled.testGetNumRecordedErrors(.invalidValue)) assert 0 == metrics.flags.a11y_enabled.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType; use glean_metrics::flags; assert_eq!( 0, flags::a11y_enabled.test_get_num_recorded_errors( ErrorType::InvalidValue )\n);","breadcrumbs":"Metric types » Boolean » testGetNumRecordedErrors","id":"386","title":"testGetNumRecordedErrors"},"387":{"body":"Example boolean metric definition: flags: a11y_enabled: type: boolean description: > Records whether a11y is enabled on the device. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Boolean » Metric parameters","id":"387","title":"Metric parameters"},"388":{"body":"N/A","breadcrumbs":"Metric types » Boolean » Extra metric parameters","id":"388","title":"Extra metric parameters"},"389":{"body":"Is accessibility enabled?","breadcrumbs":"Metric types » Boolean » Data questions","id":"389","title":"Data questions"},"39":{"body":"This page provides a step-by-step guide on how to integrate the Glean.js library into a Qt/QML project. Nevertheless this is just one of the required steps for integrating Glean successfully into a project. Check you the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Qt/QML » Adding Glean to your Qt/QML project","id":"39","title":"Adding Glean to your Qt/QML project"},"390":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Boolean » Reference","id":"390","title":"Reference"},"391":{"body":"Labeled booleans are used to record different related boolean flags.","breadcrumbs":"Metric types » Labeled Booleans » Labeled Booleans","id":"391","title":"Labeled Booleans"},"392":{"body":"","breadcrumbs":"Metric types » Labeled Booleans » Recording API","id":"392","title":"Recording API"},"393":{"body":"Sets one of the labels in a labeled boolean metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Accessibility Accessibility.features[\"screen_reader\"].set(isScreenReaderEnabled())\nAccessibility.features[\"high_contrast\"].set(isHighContrastEnabled()) import org.mozilla.yourApplication.GleanMetrics.Accessibility; Acessibility.INSTANCE.features()[\"screen_reader\"].set(isScreenReaderEnabled());\nAcessibility.INSTANCE.features()[\"high_contrast\"].set(isHighContrastEnabled()); Accessibility.features[\"screen_reader\"].set(isScreenReaderEnabled())\nAccessibility.features[\"high_contrast\"].set(isHighContrastEnabled()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.accessibility.features[\"screen_reader\"].set(is_screen_reader_enabled())\nmetrics.accessibility.features[\"high_contrast\"].set(is_high_contrast_enabled()) use glean_metrics::accessibility; accessibility::features.get(\"screen_reader\").set(is_screen_reader_enabled());\naccessibility::features.get(\"high_contrast\").set(is_high_contrast_enabled()); import * as acessibility from \"./path/to/generated/files/acessibility.js\"; acessibility.features[\"screen_reader\"].set(this.isScreenReaderEnabled());\nacessibility.features[\"high_contrast\"].set(this.isHighContrastEnabled()); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::accessibility::features.Get(\"screen_reader\"_ns).Set(true);\nmozilla::glean::accessibility::features.Get(\"high_contrast\"_ns).Set(false); JavaScript Glean.accessibility.features.screen_reader.set(true);\nGlean.accessibility.features[\"high_contrast\"].set(false); Recorded Errors invalid_type : if a non-boolean value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__. Limits Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Booleans » set","id":"393","title":"set"},"394":{"body":"","breadcrumbs":"Metric types » Labeled Booleans » Testing API","id":"394","title":"Testing API"},"395":{"body":"Gets the recorded value for a given label in a labeled boolean metric. Returns the count if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Accessibility // Do the booleans have the expected values?\nassertEquals(True, Accessibility.features[\"screen_reader\"].testGetValue())\nassertEquals(False, Accessibility.features[\"high_contrast\"].testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Accessibility; // Do the booleans have the expected values?\nassertEquals(True, Acessibility.INSTANCE.features()[\"screen_reader\"].testGetValue());\nassertEquals(False, Acessibility.INSTANCE.features()[\"high_contrast\"].testGetValue()); // Do the booleans have the expected values?\nXCTAssertEqual(true, Accessibility.features[\"screen_reader\"].testGetValue())\nXCTAssertEqual(false, Accessibility.features[\"high_contrast\"].testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Do the booleans have the expected values?\nassert metrics.accessibility.features[\"screen_reader\"].test_get_value()\nassert not metrics.accessibility.features[\"high_contrast\"].test_get_value() use glean_metrics::accessibility; // Do the booleans have the expected values?\nassert!(accessibility::features.get(\"screen_reader\").test_get_value(None).unwrap());\nassert!(!accessibility::features.get(\"high_contrast\").test_get_value(None).unwrap()); import * as accessibility from \"./path/to/generated/files/acessibility.js\"; assert(await accessibility.features[\"screen_reader\"].testGetValue());\nassert(!(await accessibility.features[\"high_contrast\"].testGetValue())); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQ( true, mozilla::glean::accessibility::features.Get(\"screen_reader\"_ns).TestGetValue().unwrap().ref());\nASSERT_EQ( false, mozilla::glean::accessibility::features.Get(\"high_contrast\"_ns).TestGetValue().unwrap().ref()); JavaScript Assert.equal(true, Glean.accessibility.features[\"screen_reader\"].testGetValue());\nAssert.equal(false, Glean.accessibility.features.high_contrast.testGetValue());","breadcrumbs":"Metric types » Labeled Booleans » testGetValue","id":"395","title":"testGetValue"},"396":{"body":"Gets the number of errors recorded for a given labeled boolean metric in total. import org.mozilla.yourApplication.GleanMetrics.Accessibility // Did we record any invalid labels?\nassertEquals( 0, Accessibility.features.testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n) import org.mozilla.yourApplication.GleanMetrics.Accessibility; // Did we record any invalid labels?\nassertEquals( 0, Acessibility.INSTANCE.features().testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n); // Were there any invalid labels?\nXCTAssertEqual(0, Accessibility.features.testGetNumRecordedErrors(.invalidLabel)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Did we record any invalid labels?\nassert 0 == metrics.accessibility.features.test_get_num_recorded_errors( ErrorType.INVALID_LABEL\n) use glean::ErrorType;\nuse glean_metrics::accessibility; // Did we record any invalid labels?\nassert_eq!( 1, accessibility::features.test_get_num_recorded_errors( ErrorType::InvalidLabel )\n); import * as accessibility from \"./path/to/generated/files/acessibility.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert( 1, await accessibility.features.testGetNumRecordedErrors(ErrorType.InvalidLabel)\n);","breadcrumbs":"Metric types » Labeled Booleans » testGetNumRecordedErrors","id":"396","title":"testGetNumRecordedErrors"},"397":{"body":"Example labeled boolean metric definition: accessibility: features: type: labeled_boolean description: > a11y features enabled on the device. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 labels: - screen_reader - high_contrast ...","breadcrumbs":"Metric types » Labeled Booleans » Metric parameters","id":"397","title":"Metric parameters"},"398":{"body":"labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Booleans » Extra metric parameters","id":"398","title":"Extra metric parameters"},"399":{"body":"Which accessibility features are enabled?","breadcrumbs":"Metric types » Labeled Booleans » Data questions","id":"399","title":"Data questions"},"4":{"body":"This section contains guides and essays regarding specific usage information and possibilities in each Glean SDK. Check out this section for more information on the SDK you are using.","breadcrumbs":"Glean » SDK Specific Information","id":"4","title":"SDK Specific Information"},"40":{"body":"Python >= 3.7 Qt >= 5.15.2","breadcrumbs":"Adding Glean to your project » Qt/QML » Requirements","id":"40","title":"Requirements"},"400":{"body":"Swift API docs: LabeledMetricType , BooleanMetricType Python API docs: LabeledBooleanMetricType , BooleanMetricType Rust API docs: LabeledMetric , BooleanMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Booleans » Reference","id":"400","title":"Reference"},"401":{"body":"Used to count how often something happens, say how often a certain button was pressed. A counter always starts from 0. Each time you record to a counter, its value is incremented. Unless incremented by a positive value, a counter will not be reported in pings, that means: the value 0 is never sent in a ping. If you find that you need to control the actual value sent in the ping, you may be measuring something, not just counting something, and a Quantity metric may be a better choice.","breadcrumbs":"Metric types » Counter » Counter","id":"401","title":"Counter"},"402":{"body":"When using a counter metric, it is important to let the Glean metric do the counting. Using your own variable for counting and setting the counter yourself could be problematic because it will be difficult to reset the value at the exact moment that the value is sent in a ping. Instead, just use counter.add to increment the value and let Glean handle resetting the counter.","breadcrumbs":"Metric types » Counter » Let the Glean metric do the counting","id":"402","title":"Let the Glean metric do the counting"},"403":{"body":"","breadcrumbs":"Metric types » Counter » Recording API","id":"403","title":"Recording API"},"404":{"body":"Increases the counter by a certain amount. If no amount is passed it defaults to 1. import org.mozilla.yourApplication.GleanMetrics.Controls Controls.refreshPressed.add() // Adds 1 to the counter.\nControls.refreshPressed.add(5) // Adds 5 to the counter. import org.mozilla.yourApplication.GleanMetrics.Controls; Controls.INSTANCE.refreshPressed().add(); // Adds 1 to the counter.\nControls.INSTANCE.refreshPressed().add(5); // Adds 5 to the counter. Controls.refreshPressed.add() // Adds 1 to the counter.\nControls.refreshPressed.add(5) // Adds 5 to the counter. from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.controls.refresh_pressed.add() # Adds 1 to the counter.\nmetrics.controls.refresh_pressed.add(5) # Adds 5 to the counter. use glean_metrics::controls; controls::refresh_pressed.add(1); // Adds 1 to the counter.\ncontrols::refresh_pressed.add(5); // Adds 5 to the counter. import * as controls from \"./path/to/generated/files/controls.js\"; controls.refreshPressed.add(); // Adds 1 to the counter.\ncontrols.refreshPressed.add(5); // Adds 5 to the counter. C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::controls::refresh_pressed.Add(1);\nmozilla::glean::controls::refresh_pressed.Add(5); JavaScript Glean.controls.refreshPressed.add(1);\nGlean.controls.refreshPressed.add(5); Recorded errors invalid_value : If the counter is incremented by a negative value (or, in versions up to and including 54.0.0, 0). invalid_type : If a floating point or non-number value is given. Limits Only increments; Saturates at the largest value that can be represented as a 32-bit signed integer (2147483647).","breadcrumbs":"Metric types » Counter » add","id":"404","title":"add"},"405":{"body":"","breadcrumbs":"Metric types » Counter » Testing API","id":"405","title":"Testing API"},"406":{"body":"Gets the recorded value for a given counter metric. Returns the count if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Controls assertEquals(6, Controls.refreshPressed.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Controls; assertEquals(6, Controls.INSTANCE.refreshPressed().testGetValue()); XCTAssertEqual(6, Controls.refreshPressed.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 6 == metrics.controls.refresh_pressed.test_get_value() use glean_metrics::controls; assert_eq!(6, controls::refresh_pressed.test_get_value(None).unwrap()); import * as controls from \"./path/to/generated/files/controls.js\"; assert.strictEqual(6, await controls.refreshPressed.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_TRUE(mozilla::glean::controls::refresh_pressed.TestGetValue().isOk());\nASSERT_EQ(6, mozilla::glean::controls::refresh_pressed.TestGetValue().unwrap().value()); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(6, Glean.controls.refreshPressed.testGetValue());","breadcrumbs":"Metric types » Counter » testGetValue","id":"406","title":"testGetValue"},"407":{"body":"Gets the number of errors recorded for a given counter metric. import org.mozilla.yourApplication.GleanMetrics.Controls assertEquals( 0, Controls.refreshPressed.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Controls; assertEquals( 0, Controls.INSTANCE.refreshPressed().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Controls.refreshPressed.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") from glean.testing import ErrorType assert 0 == metrics.controls.refresh_pressed.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::controls; assert_eq!( 0, controls::refresh_pressed.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); import * as controls from \"./path/to/generated/files/controls.js\";\nimport { ErrorType } from \"@mozilla/glean/error\";\nassert.strictEqual( 0, await controls.refreshPressed.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Counter » testGetNumRecordedErrors","id":"407","title":"testGetNumRecordedErrors"},"408":{"body":"Example counter metric definition: controls: refresh_pressed: type: counter description: > Counts how often the refresh button is pressed. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Counter » Metric parameters","id":"408","title":"Metric parameters"},"409":{"body":"N/A","breadcrumbs":"Metric types » Counter » Extra metric parameters","id":"409","title":"Extra metric parameters"},"41":{"body":"Glean.js' Qt/QML build is distributed as an asset with every Glean.js release. In order to download the latest version visit https://github.com/mozilla/glean.js/releases/latest . Glean.js is a QML module , so extract the contents of the downloaded file wherever you keep your other modules. Make sure that whichever directory that module is placed in, is part of the QML Import Path . After doing that, import Glean like so: import org.mozilla.Glean ","breadcrumbs":"Adding Glean to your project » Qt/QML » Setting up the dependency","id":"41","title":"Setting up the dependency"},"410":{"body":"How often was a certain button pressed?","breadcrumbs":"Metric types » Counter » Data questions","id":"410","title":"Data questions"},"411":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Counter » Reference","id":"411","title":"Reference"},"412":{"body":"Labeled counters are used to record different related counts that should sum up to a total. Each counter always starts from 0. Each time you record to a labeled counter, its value is incremented. Unless incremented by a positive value, a counter will not be reported in pings, that means: the value 0 is never sent in a ping.","breadcrumbs":"Metric types » Labeled Counters » Labeled Counters","id":"412","title":"Labeled Counters"},"413":{"body":"","breadcrumbs":"Metric types » Labeled Counters » Recording API","id":"413","title":"Recording API"},"414":{"body":"Increases one of the labels in a labeled counter metric by a certain amount. If no amount is passed it defaults to 1. import org.mozilla.yourApplication.GleanMetrics.Stability Stability.crashCount[\"uncaught_exception\"].add() // Adds 1 to the \"uncaught_exception\" counter.\nStability.crashCount[\"native_code_crash\"].add(3) // Adds 3 to the \"native_code_crash\" counter. import org.mozilla.yourApplication.GleanMetrics.Stability; Stability.INSTANCE.crashCount()[\"uncaught_exception\"].add(); // Adds 1 to the \"uncaught_exception\" counter.\nStability.INSTANCE.crashCount()[\"native_code_crash\"].add(3); // Adds 3 to the \"native_code_crash\" counter. Stability.crashCount[\"uncaught_exception\"].add() // Adds 1 to the \"uncaught_exception\" counter.\nStability.crashCount[\"native_code_crash\"].add(3) // Adds 3 to the \"native_code_crash\" counter. from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Adds 1 to the \"uncaught_exception\" counter.\nmetrics.stability.crash_count[\"uncaught_exception\"].add()\n# Adds 3 to the \"native_code_crash\" counter.\nmetrics.stability.crash_count[\"native_code_crash\"].add(3) use glean_metrics::stability; stability::crash_count.get(\"uncaught_exception\").add(1); // Adds 1 to the \"uncaught_exception\" counter.\nstability::crash_count.get(\"native_code_crash\").add(3); // Adds 3 to the \"native_code_crash\" counter. import * as stability from \"./path/to/generated/files/stability.js\"; // Adds 1 to the \"uncaught_exception\" counter.\nstability.crashCount[\"uncaught_exception\"].add();\n// Adds 3 to the \"native_code_crash\" counter.\nstability.crashCount[\"native_code_crash\"].add(3); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::stability::crash_count.Get(\"uncaught_exception\"_ns).Add(1);\nmozilla::glean::stability::crash_count.Get(\"native_code_crash\"_ns).Add(3); JavaScript Glean.stability.crashCount.uncaught_exception.add(1);\nGlean.stability.crashCount[\"native_code_crash\"].add(3); Recorded Errors invalid_value : if the counter is incremented by a negative value (or, in versions up to and including 54.0.0, 0). invalid_type : if a floating point or non-number value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__. Limits Only increments Saturates at the largest value that can be represented as a 32-bit signed integer. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Counters » add","id":"414","title":"add"},"415":{"body":"","breadcrumbs":"Metric types » Labeled Counters » Testing API","id":"415","title":"Testing API"},"416":{"body":"Gets the recorded value for a given label in a labeled counter metric. Returns the count if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Stability // Do the counters have the expected values?\nassertEquals(1, Stability.crashCount[\"uncaught_exception\"].testGetValue())\nassertEquals(3, Stability.crashCount[\"native_code_crash\"].testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Stability; // Do the counters have the expected values?\nassertEquals(1, Stability.INSTANCE.crashCount()[\"uncaught_exception\"].testGetValue());\nassertEquals(3, Stability.INSTANCE.crashCount()[\"native_code_crash\"].testGetValue()); // Do the counters have the expected values?\nXCTAssertEqual(1, Stability.crashCount[\"uncaught_exception\"].testGetValue())\nXCTAssertEqual(3, Stability.crashCount[\"native_code_crash\"].testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Do the counters have the expected values?\nassert 1 == metrics.stability.crash_count[\"uncaught_exception\"].test_get_value()\nassert 3 == metrics.stability.crash_count[\"native_code_crash\"].test_get_value() use glean_metrics::stability; // Do the counters have the expected values?\nassert_eq!(1, stability::crash_count.get(\"uncaught_exception\").test_get_value().unwrap());\nassert_eq!(3, stability::crash_count.get(\"native_code_crash\").test_get_value().unwrap()); import * as stability from \"./path/to/generated/files/stability.js\"; // Do the counters have the expected values?\nassert.strictEqual(1, await stability.crashCount[\"uncaught_exception\"].testGetValue());\nassert.strictEqual(3, await stability.crashCount[\"native_code_crash\"].testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQ( 1, mozilla::glean::stability::crash_count.Get(\"uncaught_exception\"_ns).TestGetValue().unwrap().ref());\nASSERT_EQ( 3, mozilla::glean::stability::crash_count.Get(\"native_code_crash\"_ns).TestGetValue().unwrap().ref()); JavaScript Assert.equal(1, Glean.stability.crashCount[\"uncaught_exception\"].testGetValue());\nAssert.equal(3, Glean.stability.crashCount.native_code_crash.testGetValue());","breadcrumbs":"Metric types » Labeled Counters » testGetValue","id":"416","title":"testGetValue"},"417":{"body":"Gets the number of errors recorded for a given labeled counter metric in total. import org.mozilla.yourApplication.GleanMetrics.Stabilit // Were there any invalid labels?\nassertEquals( 0, Stability.crashCount.testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n) import org.mozilla.yourApplication.GleanMetrics.Stability; // Were there any invalid labels?\nassertEquals( 0, Stability.INSTANCE.crashCount().testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n); // Were there any invalid labels?\nXCTAssertEqual(0, Stability.crashCount.testGetNumRecordedErrors(.invalidLabel)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Were there any invalid labels?\nassert 0 == metrics.stability.crash_count.test_get_num_recorded_errors( ErrorType.INVALID_LABEL\n) use glean::ErrorType; use glean_metrics::stability; // Were there any invalid labels?\nassert_eq!( 0, stability::crash_count.test_get_num_recorded_errors( ErrorType::InvalidLabel )\n); import * as stability from \"./path/to/generated/files/stability.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Were there any invalid labels?\nassert( 0, await stability.crashCount.testGetNumRecordedErrors(ErrorType.InvalidLabel)\n);","breadcrumbs":"Metric types » Labeled Counters » testGetNumRecordedErrors","id":"417","title":"testGetNumRecordedErrors"},"418":{"body":"Example labeled counter metric definition: accessibility: features: type: labeled_counter description: > Counts the number of crashes that occur in the application. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 labels: - uncaught_exception - native_code_crash ...","breadcrumbs":"Metric types » Labeled Counters » Metric parameters","id":"418","title":"Metric parameters"},"419":{"body":"labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Counters » Extra metric parameters","id":"419","title":"Extra metric parameters"},"42":{"body":"The number is the version of the release you downloaded minus its patch version. For example, if you downloaded Glean.js version 0.15.0 your import statement will be: import org.mozilla.Glean 0.15","breadcrumbs":"Adding Glean to your project » Qt/QML » Picking the correct version","id":"42","title":"Picking the correct version"},"420":{"body":"How many times did different types of crashes occur?","breadcrumbs":"Metric types » Labeled Counters » Data questions","id":"420","title":"Data questions"},"421":{"body":"Swift API docs: LabeledMetricType , CounterMetricType Python API docs: LabeledCounterMetricType , CounterMetricType Rust API docs: LabeledMetric , CounterMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Counters » Reference","id":"421","title":"Reference"},"422":{"body":"String metrics allow recording a Unicode string value with arbitrary content. This metric type does not support recording JSON blobs please get in contact with the Glean team if you're missing a type.","breadcrumbs":"Metric types » String » Strings","id":"422","title":"Strings"},"423":{"body":"Be careful using arbitrary strings and make sure they can't accidentally contain identifying data (like directory paths or user input).","breadcrumbs":"Metric types » String » Important","id":"423","title":"Important"},"424":{"body":"","breadcrumbs":"Metric types » String » Recording API","id":"424","title":"Recording API"},"425":{"body":"Set a string metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.SearchDefault // Record a value into the metric.\nSearchDefault.name.set(\"duck duck go\")\n// If it changed later, you can record the new value:\nSearchDefault.name.set(\"wikipedia\") import org.mozilla.yourApplication.GleanMetrics.SearchDefault; // Record a value into the metric.\nSearchDefault.INSTANCE.name().set(\"duck duck go\");\n// If it changed later, you can record the new value:\nSearchDefault.INSTANCE.name().set(\"wikipedia\"); // Record a value into the metric.\nSearchDefault.name.set(\"duck duck go\")\n// If it changed later, you can record the new value:\nSearchDefault.name.set(\"wikipedia\") from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Record a value into the metric.\nmetrics.search_default.name.set(\"duck duck go\")\n# If it changed later, you can record the new value:\nmetrics.search_default.name.set(\"wikipedia\") use glean_metrics::search_default; // Record a value into the metric.\nsearch_default::name.set(\"duck duck go\");\n// If it changed later, you can record the new value:\nsearch_default::name.set(\"wikipedia\"); import * as searchDefault from \"./path/to/generated/files/searchDefault.js\"; // Record a value into the metric.\nsearchDefault.name.set(\"duck duck go\");\n// If it changed later, you can record the new value:\nsearchDefault.name.set(\"wikipedia\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search_default::name.Set(\"wikipedia\"_ns); JavaScript Glean.searchDefault.name.set(\"wikipedia\"); Recorded errors invalid_overflow : if the string is too long. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_type : if a non-string value is given. Limits Fixed maximum string length: 255. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Prior to Glean v60.4.0 the limit was 100 bytes.","breadcrumbs":"Metric types » String » set","id":"425","title":"set"},"426":{"body":"","breadcrumbs":"Metric types » String » Testing API","id":"426","title":"Testing API"},"427":{"body":"Get the recorded value for a given string metric. Returns the string if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. The recorded value may have been truncated. See \"Limits\" section above. import org.mozilla.yourApplication.GleanMetrics.SearchDefault // Does the string metric have the expected value?\nassertEquals(\"wikipedia\", SearchDefault.name.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.SearchDefault; // Does the string metric have the expected value?\nassertEquals(\"wikipedia\", SearchDefault.INSTANCE.name().testGetValue()); // Does the string metric have the expected value?\nXCTAssertEqual(\"wikipedia\", SearchDefault.name.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Does the string metric have the expected value?\nassert \"wikipedia\" == metrics.search_default.name.test_get_value() use glean_metrics::search_default; // Does the string metric have the expected value?\nassert_eq!(6, search_default::name.test_get_value(None).unwrap()); import * as searchDefault from \"./path/to/generated/files/searchDefault.js\"; assert.strictEqual(\"wikipedia\", await searchDefault.name.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" // Is it clear of errors?\nASSERT_TRUE(mozilla::glean::search_default::name.TestGetValue().isOk());\n// Does it have the expected value?\nASSERT_STREQ( \"wikipedia\", mozilla::glean::search_default::name.TestGetValue().unwrap().value().get()\n); JavaScript // Does it have the expected value?\n// testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(\"wikipedia\", Glean.searchDefault.name.testGetValue());","breadcrumbs":"Metric types » String » testGetValue","id":"427","title":"testGetValue"},"428":{"body":"Gets the number of errors recorded for a given string metric. import org.mozilla.yourApplication.GleanMetrics.SearchDefault // Was the string truncated, and an error reported?\nassertEquals( 0, SearchDefault.name.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) import org.mozilla.yourApplication.GleanMetrics.SearchDefault; // Was the string truncated, and an error reported?\nassertEquals( 0, SearchDefault.INSTANCE.name().testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n); // Was the string truncated, and an error reported?\nXCTAssertEqual(0, SearchDefault.name.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Was the string truncated, and an error reported?\nassert 0 == metrics.search_default.name.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse glean_metrics::search_default; // Was the string truncated, and an error reported?\nassert_eq!( 0, search_default::name.test_get_num_recorded_errors( ErrorType::InvalidOverflow )\n); import * as searchDefault from \"./path/to/generated/files/searchDefault.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Was the string truncated, and an error reported?\nassert.strictEqual( 0, await searchDefault.name.testGetNumRecordedErrors(ErrorType.InvalidOverflow)\n);","breadcrumbs":"Metric types » String » testGetNumRecordedErrors","id":"428","title":"testGetNumRecordedErrors"},"429":{"body":"Example string metric definition: controls: refresh_pressed: type: string description: > The name of the default search engine. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » String » Metric parameters","id":"429","title":"Metric parameters"},"43":{"body":"Qt/QML projects need to setup metrics and pings code generation manually. First install the glean_parser CLI tool. pip install glean_parser","breadcrumbs":"Adding Glean to your project » Qt/QML » Consuming YAML registry files","id":"43","title":"Consuming YAML registry files"},"430":{"body":"N/A","breadcrumbs":"Metric types » String » Extra metric parameters","id":"430","title":"Extra metric parameters"},"431":{"body":"Record the operating system name with a value of \"android\". Recording the device model with a value of \"SAMSUNG-SGH-I997\".","breadcrumbs":"Metric types » String » Data questions","id":"431","title":"Data questions"},"432":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » String » Reference","id":"432","title":"Reference"},"433":{"body":"Labeled strings record multiple Unicode string values, each under a different label.","breadcrumbs":"Metric types » Labeled Strings » Labeled Strings","id":"433","title":"Labeled Strings"},"434":{"body":"","breadcrumbs":"Metric types » Labeled Strings » Recording API","id":"434","title":"Recording API"},"435":{"body":"Sets one of the labels in a labeled string metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Login Login.errorsByStage[\"server_auth\"].set(\"Invalid password\") import org.mozilla.yourApplication.GleanMetrics.Login; Login.INSTANCE.errorsByStage()[\"server_auth\"].set(\"Invalid password\"); Login.errorsByStage[\"server_auth\"].set(\"Invalid password\") from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.login.errors_by_stage[\"server_auth\"].set(\"Invalid password\") use glean_metrics::login; login::errors_by_stage.get(\"server_auth\").set(\"Invalid password\"); import * as login from \"./path/to/generated/files/login.js\"; login.errorsByStage[\"server_auth\"].set(\"Invalid password\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::login::errors_by_stage.Get(\"server_auth\"_ns).Set(\"Invalid password\"_ns); JavaScript Glean.login.errorsByStage[\"server_auth\"].set(\"Invalid password\"); Recorded Errors invalid_overflow : if the string is too long, see limits below . invalid_type : if a non-string value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__. Limits Fixed maximum string length: 100. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Strings » set","id":"435","title":"set"},"436":{"body":"","breadcrumbs":"Metric types » Labeled Strings » Testing API","id":"436","title":"Testing API"},"437":{"body":"Gets the recorded value for a given label in a labeled string metric. Returns the string if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Login // Does the metric have the expected value?\nassertTrue(Login.errorsByStage[\"server_auth\"].testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Login; // Does the metric have the expected value?\nassertTrue(Login.INSTANCE.errorsByStage()[\"server_auth\"].testGetValue()); // Does the metric have the expected value?\nXCTAssert(Login.errorsByStage[\"server_auth\"].testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Does the metric have the expected value?\nassert \"Invalid password\" == metrics.login.errors_by_stage[\"server_auth\"].testGetValue()) use glean_metrics::login; // Does the metric have the expected value?\nassert!(login::errors_by_stage.get(\"server_auth\").test_get_value()); import * as login from \"./path/to/generated/files/login.js\"; // Does the metric have the expected value?\nassert.strictEqual(\"Invalid password\", await metrics.login.errorsByStage[\"server_auth\"].testGetValue()) C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_STREQ(\"Invalid password\", mozilla::glean::login::errors_by_stage.Get(\"server_auth\"_ns) .TestGetValue() .unwrap() .ref() .get()); JavaScript Assert.equal(\"Invalid password\", Glean.login.errorsByStage[\"server_auth\"].testGetValue());","breadcrumbs":"Metric types » Labeled Strings » testGetValue","id":"437","title":"testGetValue"},"438":{"body":"Gets the number of errors recorded for a given labeled string metric in total. import org.mozilla.yourApplication.GleanMetrics.Login // Were there any invalid labels?\nassertEquals( 0, Login.errorsByStage.testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n) import org.mozilla.yourApplication.GleanMetrics.Login; // Were there any invalid labels?\nassertEquals( 0, Login.INSTANCE.errorsByStage().testGetNumRecordedErrors(ErrorType.INVALID_LABEL)\n); // Were there any invalid labels?\nXCTAssertEqual(0, Login.errorsByStage.testGetNumRecordedErrors(.invalidLabel)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Were there any invalid labels?\nassert 0 == metrics.login.errors_by_stage.test_get_num_recorded_errors( ErrorType.INVALID_LABEL\n) use glean::ErrorType;\nuse glean_metrics::login; // Were there any invalid labels?\nassert_eq!( 0, login::errors_by_stage.test_get_num_recorded_errors( ErrorType::InvalidLabel )\n); import * as login from \"./path/to/generated/files/login.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Were there any invalid labels?\nassert( 0, await login.errorsByStage.testGetNumRecordedErrors(ErrorType.InvalidLabel)\n);","breadcrumbs":"Metric types » Labeled Strings » testGetNumRecordedErrors","id":"438","title":"testGetNumRecordedErrors"},"439":{"body":"Example labeled boolean metric definition: login: errors_by_stage: type: labeled_string description: Records the error type, if any, that occur in different stages of the login process. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 labels: - server_auth - enter_email ...","breadcrumbs":"Metric types » Labeled Strings » Metric parameters","id":"439","title":"Metric parameters"},"44":{"body":"Qt/QML support was added to glean_parser in version 3.5.0 . Then call glean_parser from the command line: glean_parser translate path/to/metrics.yaml path/to/pings.yaml \\ -f javascript \\ -o path/to/generated/files \\ --option platform=qt \\ --option version=0.15 The translate command will takes a list of YAML registry file paths and an output path and parse the given YAML registry files into QML JavaScript files. The generated folder will be a QML module. Make sure wherever the generated module is placed is also part of the QML Import Path . Notice that when building for Qt/QML it is mandatory to give the translate command two extra options. --option platform=qt This option is what changes the output file from standard JavaScript to QML JavaScript. --option version= The version passed to this option will be the version of the generated QML module.","breadcrumbs":"Adding Glean to your project » Qt/QML » Make sure you have the correct glean_parser version!","id":"44","title":"Make sure you have the correct glean_parser version!"},"440":{"body":"labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Strings » Extra metric parameters","id":"440","title":"Extra metric parameters"},"441":{"body":"What kinds of errors occurred at each step in the login process?","breadcrumbs":"Metric types » Labeled Strings » Data questions","id":"441","title":"Data questions"},"442":{"body":"Swift API docs: LabeledMetricType , StringMetricType Python API docs: LabeledStringMetricType , StringMetricType Rust API docs: LabeledMetric , StringMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Strings » Reference","id":"442","title":"Reference"},"443":{"body":"Strings lists are used for recording a list of Unicode string values, such as the names of the enabled search engines. Important Be careful using arbitrary strings and make sure they can't accidentally contain identifying data (like directory paths or user input).","breadcrumbs":"Metric types » String List » String List","id":"443","title":"String List"},"444":{"body":"","breadcrumbs":"Metric types » String List » Recording API","id":"444","title":"Recording API"},"445":{"body":"Add a new string to the list. import org.mozilla.yourApplication.GleanMetrics.Search Search.engines.add(\"wikipedia\")\nSearch.engines.add(\"duck duck go\") import org.mozilla.yourApplication.GleanMetrics.Search; Search.INSTANCE.engines().add(\"wikipedia\");\nSearch.INSTANCE.engines().add(\"duck duck go\"); Search.engines.add(\"wikipedia\")\nSearch.engines.add(\"duck duck go\") from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.search.engines.add(\"wikipedia\")\nmetrics.search.engines.add(\"duck duck go\") use glean_metrics::search; search::engines.add(\"wikipedia\".to_string());\nsearch::engines.add(\"duck duck go\".to_string()); Glean.search.engines.add(\"wikipedia\");\nGlean.search.engines.add(\"duck duck go\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search::engines.Add(\"wikipedia\"_ns);\nmozilla::glean::search::engines.Add(\"duck duck go\"_ns); JavaScript Glean.search.engines.add(\"wikipedia\");\nGlean.search.engines.add(\"duck duck go\"); Recorded errors invalid_overflow : if the string is too long. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_value : if the list is too long. invalid_type : if a non-string value is given. Limits Fixed maximum string length: 100. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Fixed maximum list length: 100 items. Additional strings are dropped.","breadcrumbs":"Metric types » String List » add","id":"445","title":"add"},"446":{"body":"Set the metric to a specific list of strings. An empty list is accepted. import org.mozilla.yourApplication.GleanMetrics.Search Search.engines.set(listOf(\"wikipedia\", \"duck duck go\")) import org.mozilla.yourApplication.GleanMetrics.Search; Search.INSTANCE.engines().set(listOf(\"wikipedia\", \"duck duck go\")); Search.engines.set([\"wikipedia\", \"duck duck go\"]) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.search.engines.set([\"wikipedia\", \"duck duck go\"]) use glean_metrics::search; search::engines.set(vec![\"wikipedia\".to_string(), \"duck duck go\".to_string()]) Glean.search.engines.set([\"wikipedia\", \"duck duck go\"]); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search::engines.Set({\"wikipedia\"_ns, \"duck duck go\"_ns}); JavaScript Glean.search.engines.set([\"wikipedia\", \"duck duck go\"]); Recorded errors invalid_overflow : if any string in the list is too long, see Limits below. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_value : if the list is too long, see Limits below. invalid_type : if a non-string array is given. Limits Fixed maximum string length: 100. Longer strings are truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Fixed maximum list length: 100 items. Additional strings are dropped.","breadcrumbs":"Metric types » String List » set","id":"446","title":"set"},"447":{"body":"","breadcrumbs":"Metric types » String List » Testing API","id":"447","title":"Testing API"},"448":{"body":"Gets the recorded value for a given string list metric. Returns the list of strings if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(listOf(\"Google\", \"DuckDuckGo\"), Search.engines.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Search; assertEquals( Arrays.asList(\"Google\", \"DuckDuckGo\"), Search.INSTANCE.engines().testGetValue()\n); XCTAssertEqual([\"Google\", \"DuckDuckGo\"], Search.engines.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert [\"Google\", \"DuckDuckGo\"] == metrics.search.engines.test_get_value() use glean_metrics::search; assert_eq!( vec![\"Google\".to_string(), \"DuckDuckGo\".to_string()], search::engines.test_get_value(None).unwrap()\n); // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nconst engines = Glean.search.engines.testGetValue();\nAssert.ok(engines.includes(\"wikipedia\"));\nAssert.ok(engines.includes(\"duck duck go\")); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_EQUAL(mozilla::glean::search::engines.TestGetValue().isOk());\nnsTArray list = mozilla::glean::search::engines.TestGetValue().unwrap();\nASSERT_TRUE(list.Contains(\"wikipedia\"_ns));\nASSERT_TRUE(list.Constains(\"duck duck go\"_ns)); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nconst engines = Glean.search.engines.testGetValue();\nAssert.ok(engines.includes(\"wikipedia\"));\nAssert.ok(engines.includes(\"duck duck go\"));","breadcrumbs":"Metric types » String List » testGetValue","id":"448","title":"testGetValue"},"449":{"body":"Gets the number of errors recorded for a given string list metric. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals( 0, Search.engines.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Search; assertEquals( 0, Search.INSTANCE.engines().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Were any of the values too long, and thus an error was recorded?\nXCTAssertEqual(0, Search.engines.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.search.engines.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::search; assert_eq!( 0, search::engines.test_get_num_recorded_errors(ErrorType::InvalidValue)\n);","breadcrumbs":"Metric types » String List » testGetNumRecordedErrors","id":"449","title":"testGetNumRecordedErrors"},"45":{"body":"","breadcrumbs":"Adding Glean to your project » Qt/QML » Automation steps","id":"45","title":"Automation steps"},"450":{"body":"Example string list metric definition: search: engines: type: string_list description: > Records the name of the enabled search engines. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » String List » Metric parameters","id":"450","title":"Metric parameters"},"451":{"body":"N/A","breadcrumbs":"Metric types » String List » Extra metric parameters","id":"451","title":"Extra metric parameters"},"452":{"body":"Which search engines are enabled?","breadcrumbs":"Metric types » String List » Data questions","id":"452","title":"Data questions"},"453":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » String List » Reference","id":"453","title":"Reference"},"454":{"body":"Timespans are used to make a measurement of how much time is spent in a particular task. Irrespective of the timespan's lifetime, both start and stop must occur within the same application session. To measure the distribution of multiple timespans, see Timing Distributions . To record absolute times, see Datetimes . It is not recommended to use timespans in multiple threads, since calling start or stop out of order will be recorded as an invalid_state error.","breadcrumbs":"Metric types » Timespan » Timespan","id":"454","title":"Timespan"},"455":{"body":"","breadcrumbs":"Metric types » Timespan » Recording API","id":"455","title":"Recording API"},"456":{"body":"Starts tracking time. Uses an internal monotonic timer. import org.mozilla.yourApplication.GleanMetrics.Auth fun onShowLogin() { Auth.loginTime.start() // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void onShowLogin() { Auth.INSTANCE.loginTime().start(); // ...\n} func onShowLogin() { Auth.loginTime.start() // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def on_show_login(): metrics.auth.login_time.start() # ... use glean_metrics::auth; fn show_login() { auth::login_time.start(); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onShowLogin() { auth.loginTime.start(); // ...\n} C++ #include \"mozilla/glean/GleanMetrics.h\"\nvoid OnShowLogin() { mozilla::glean::auth::login_time.Start(); // ...\n} JavaScript function onShowLogin() { Glean.auth.loginTime.start(); // ...\n} Recorded errors invalid_state : If the metric is already tracking time (start has already been called and not canceled). Limits The maximum resolution of the elapsed duration is limited by the clock used on each platform. This also determines the behavior of a timespan over sleep: On Android, the SystemClock.elapsedRealtimeNanos() function is used, so it is limited by the accuracy and performance of that timer. The time measurement includes time spent in sleep. On iOS, the mach_absolute_time function is used, so it is limited by the accuracy and performance of that timer. The time measurement does not include time spent in sleep. On Python 3.7 and later, time.monotonic_ns() is used. On earlier versions of Python, time.monotonics() is used, which is not guaranteed to have nanosecond resolution. On other platforms time::precise_time_ns is used, which uses a high-resolution performance counter in nanoseconds provided by the underlying platform.","breadcrumbs":"Metric types » Timespan » start","id":"456","title":"start"},"457":{"body":"Stops tracking time. The metric value is set to the elapsed time. import org.mozilla.yourApplication.GleanMetrics.Auth fun onLogin() { Auth.loginTime.stop() // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void onLogin() { Auth.INSTANCE.loginTime().stop(); // ...\n} func onLogin() { Auth.loginTime.stop() // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def on_login(): metrics.auth.login_time.stop() # ... use glean_metrics::auth;; fn login() { auth::login_time.stop(); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onLogin() { auth.login_time.stop(); // ...\n} C++ #include \"mozilla/glean/GleanMetrics.h\"\nvoid OnLogin() { mozilla::glean::auth::login_time.Stop(); // ...\n} JavaScript function onLogin() { Glean.auth.loginTime.stop(); // ...\n} Recorded errors invalid_state : Calling stop without calling start first, e.g. if the start happened on a previous application run.","breadcrumbs":"Metric types » Timespan » stop","id":"457","title":"stop"},"458":{"body":"Cancels a previous start. No error is recorded if there was no previous start. import org.mozilla.yourApplication.GleanMetrics.Auth fun onLoginCancel() { Auth.loginTime.cancel() // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void onLoginCancel() { Auth.INSTANCE.loginTime().cancel(); // ...\n} func onLoginCancel() { Auth.loginTime.cancel() // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def on_login_cancel(): metrics.auth.login_time.cancel() # ... use glean_metrics::auth; fn login_cancel() { auth::login_time.cancel(); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onLoginCancel() { auth.login_time.cancel(); // ...\n} C++ #include \"mozilla/glean/GleanMetrics.h\"\nvoid OnLoginCancel() { mozilla::glean::auth::login_time.Cancel(); // ...\n} JavaScript function onLoginCancel() { Glean.auth.loginTime.cancel(); // ...\n}","breadcrumbs":"Metric types » Timespan » cancel","id":"458","title":"cancel"},"459":{"body":"Some languages support convenient auto timing of blocks of code. measure is treated as a start and stop pair for the purposes of error recording. Exceptions (if present in the language) are treated as a cancel. import org.mozilla.yourApplication.GleanMetrics.Auth Auth.loginTime.measure { // Process login flow\n} import org.mozilla.yourApplication.GleanMetrics.Auth Auth.INSTANCE.loginTime().measure() -> { // Process login flow return null;\n}); Auth.loginTime.measure { // Process login flow\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") with metrics.auth.login_time.measure(): # ... Do the login ...","breadcrumbs":"Metric types » Timespan » measure","id":"459","title":"measure"},"46":{"body":"Prefer using the Glean Dictionary While it is still possible to generate Markdown documentation, if working on a public Mozilla project rely on the Glean Dictionary for documentation. Your product will be automatically indexed by the Glean Dictionary after it gets enabled in the pipeline. One of the commands provided by glean_parser allows users to generate Markdown documentation based on the contents of their YAML registry files. To perform that translation, use the translate command with a different output format, as shown below. glean_parser translate path/to/metrics.yaml path/to/pings.yaml \\ -f markdown \\ -o path/to/docs","breadcrumbs":"Adding Glean to your project » Qt/QML » Documentation","id":"46","title":"Documentation"},"460":{"body":"Explicitly sets the timespan's value. Regardless of the time unit chosen for the metric, this API expects the raw value to be in nanoseconds .","breadcrumbs":"Metric types » Timespan » setRawNanos","id":"460","title":"setRawNanos"},"461":{"body":"This API should only be used if the code being instrumented cannot make use of start, stop, and cancel or measure. Time is hard, and this API can't help you with it. import org.mozilla.yourApplication.GleanMetrics.Auth fun afterLogin(loginElapsedNs: Long) { Auth.loginTime.setRawNanos(loginElapsedNs) // ...\n} import org.mozilla.yourApplication.GleanMetrics.Auth; void afterLogin(long loginElapsedNs) { Auth.INSTANCE.loginTime().setRawNanos(loginElapsedNs); // ...\n} func afterLogin(_ loginElapsedNs: UInt64) { Auth.loginTime.setRawNanos(loginElapsedNs) // ...\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def after_login(login_elapsed_ns): metrics.auth.login_time.set_raw_nanos(login_elapsed_ns) # ... use std::time::duration;\nuse glean_metrics::auth; fn after_login(login_elapsed: Duration) { auth::login_time.set_raw(login_elapsed); // ...\n} import * as auth from \"./path/to/generated/files/auth.js\"; function onAfterLogin(loginElapsedNs) { auth.loginTime.setRawNanos(loginElapsedNs); // ...\n}","breadcrumbs":"Metric types » Timespan » Only use this if you have to","id":"461","title":"Only use this if you have to"},"462":{"body":"Firefox Desktop's setRaw uses the units specified in the metric definition. e.g. if the Timespan's time_unit is millisecond, then the duration parameter is a count of milliseconds. C++ #include \"mozilla/glean/GleanMetrics.h\" void AfterLogin(uint32_t aDuration) { mozilla::glean::auth::login_time.SetRaw(aDuration); // ...\n} JavaScript function afterLogin(aDuration) { Glean.auth.loginTime.setRaw(aDuration); // ...\n} Recorded errors invalid_value : if attempting to record a negative elapsed duration. invalid_state : if this method is called after calling start or this method is called multiple times. invalid_type : if a negative, floating point or non-number value is given.","breadcrumbs":"Metric types » Timespan » These are different","id":"462","title":"These are different"},"463":{"body":"","breadcrumbs":"Metric types » Timespan » Testing API","id":"463","title":"Testing API"},"464":{"body":"Get the currently-stored value. Returns the timespan as a integer in the metric's time unit if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Auth assertTrue(Auth.loginTime.testGetValue() > 0) import org.mozilla.yourApplication.GleanMetrics.Auth; assertTrue(Auth.INSTANCE.loginTime().testGetValue() > 0); XCTAssert(Auth.loginTime.testGetValue() > 0) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert metrics.auth.login_time.test_get_value() > 0 use glean_metrics::auth; assert!(auth::login_time.test_get_value(None).unwrap() > 0); import * as auth from \"./path/to/generated/files/auth.js\"; assert(await auth.loginTime.testGetValue() > 0); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_TRUE(mozilla::glean::auth::login_time.TestGetValue().isOk());\nASSERT_GE(mozilla::glean::auth::login_time.TestGetValue().unwrap().value(), 0); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.ok(Glean.auth.loginTime.testGetValue() > 0);","breadcrumbs":"Metric types » Timespan » testGetValue","id":"464","title":"testGetValue"},"465":{"body":"Gets the number of errors recorded during operations on this metric. import org.mozilla.yourApplication.GleanMetrics.Auth assertEquals( 0, Auth.loginTime.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Auth; assertEquals( 0, Auth.INSTANCE.loginTime().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Auth.loginTime.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.auth.local_time.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean_metrics::auth; assert_eq!(1, auth::login_time.test_get_num_recorded_errors(ErrorType::InvalidValue)); import * as auth from \"./path/to/generated/files/auth.js\";\nimport { ErrorType } from \"@mozilla/glean/error\";; assert.strictEqual( 1, await auth.loginTime.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Timespan » testGetNumRecordedErrors","id":"465","title":"testGetNumRecordedErrors"},"466":{"body":"Example timespan metric definition: auth: login_time: type: timespan description: > Measures the time spent logging in. time_unit: millisecond bugs: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-01-01 data_sensitivity: - interaction For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Timespan » Metric parameters","id":"466","title":"Metric parameters"},"467":{"body":"time_unit Timespans have an optional time_unit parameter to specify the smallest unit of resolution that the timespan will record. The allowed values for time_unit are: nanosecond microsecond millisecond (default) second minute hour day Consider the resolution that is required by your metric, and use the largest possible value that will provide useful information so as to not leak too much fine-grained information from the client.","breadcrumbs":"Metric types » Timespan » Extra metric parameters","id":"467","title":"Extra metric parameters"},"468":{"body":"It is important to note that the value sent in the ping is truncated down to the nearest unit. Therefore, a measurement of 500 nanoseconds will be truncated to 0 microseconds.","breadcrumbs":"Metric types » Timespan » Values are truncated","id":"468","title":"Values are truncated"},"469":{"body":"How long did it take for the user to log in?","breadcrumbs":"Metric types » Timespan » Data questions","id":"469","title":"Data questions"},"47":{"body":"glean_parser includes a \"linter\" for the YAML registry files called the glinter that catches a number of common mistakes in these files. To run the linter use the glinter command. glean_parser glinter path/to/metrics.yaml path/to/pings.yaml","breadcrumbs":"Adding Glean to your project » Qt/QML » YAML registry files linting","id":"47","title":"YAML registry files linting"},"470":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Timespan » Reference","id":"470","title":"Reference"},"471":{"body":"Timing distributions are used to accumulate and store time measurement, for analyzing distributions of the timing data. To measure the distribution of single timespans, see Timespans . To record absolute times, see Datetimes . Timing distributions are recorded in a histogram where the buckets have an exponential distribution, specifically with 8 buckets for every power of 2. That is, the function from a value \\( x \\) to a bucket index is: \\[ \\lfloor 8 \\log_2(x) \\rfloor \\] This makes them suitable for measuring timings on a number of time scales without any configuration. Note Check out how this bucketing algorithm would behave on the Simulator . Timings always span the full length between start and stopAndAccumulate. If the Glean upload is disabled when calling start, the timer is still started. If the Glean upload is disabled at the time stopAndAccumulate is called, nothing is recorded. Multiple concurrent timings in different threads may be measured at the same time. Timings are always stored and sent in the payload as nanoseconds. However, the time_unit parameter controls the minimum and maximum values that will recorded: nanosecond: 1ns <= x <= 10 minutes microsecond: 1μs <= x <= ~6.94 days millisecond: 1ms <= x <= ~19 years Overflowing this range is considered an error and is reported through the error reporting mechanism. Underflowing this range is not an error and the value is silently truncated to the minimum value. Additionally, when a metric comes from GeckoView (the geckoview_datapoint parameter is present), the time_unit parameter specifies the unit that the samples are in when passed to Glean. Glean will convert all of the incoming samples to nanoseconds internally.","breadcrumbs":"Metric types » Timing Distribution » Timing Distribution","id":"471","title":"Timing Distribution"},"472":{"body":"","breadcrumbs":"Metric types » Timing Distribution » Recording API","id":"472","title":"Recording API"},"473":{"body":"Start tracking time for the provided metric. Multiple timers can run simultaneously. Returns a unique TimerId for the new timer. import mozilla.components.service.glean.GleanTimerId\nimport org.mozilla.yourApplication.GleanMetrics.Pages val timerId : GleanTimerId fun onPageStart(e: Event) { timerId = Pages.pageLoad.start()\n} import mozilla.components.service.glean.GleanTimerId;\nimport org.mozilla.yourApplication.GleanMetrics.Pages; GleanTimerId timerId; void onPageStart(Event e) { timerId = Pages.INSTANCE.pageLoad().start();\n} import Glean var timerId : GleanTimerId func onPageStart() { timerId = Pages.pageLoad.start()\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def __init__(self): self.timer_id = None def on_page_start(self, event): self.timer_id = metrics.pages.page_load.start() use glean_metrics::pages; fn on_page_start() { self.timer_id = pages::page_load.start();\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageStart() { // store this ID, you will need it later to stop or cancel your timer const timerId = pages.pageLoad.start();\n} C++ #include \"mozilla/glean/GleanMetrics.h\" auto timerId = mozilla::glean::pages::page_load.Start(); JavaScript let timerId = Glean.pages.pageLoad.start();","breadcrumbs":"Metric types » Timing Distribution » start","id":"473","title":"start"},"474":{"body":"Stops tracking time for the provided metric and associated timer id. Adds a count to the corresponding bucket in the timing distribution. This will record an error if start was not called. import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageLoaded(e: Event) { Pages.pageLoad.stopAndAccumulate(timerId)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; void onPageLoaded(Event e) { Pages.INSTANCE.pageLoad().stopAndAccumulate(timerId);\n} import Glean func onPageLoaded() { Pages.pageLoad.stopAndAccumulate(timerId)\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_loaded(self, event): metrics.pages.page_load.stop_and_accumulate(self.timer_id) use glean_metrics::pages; fn on_page_loaded() { pages::page_load.stop_and_accumulate(self.timer_id);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageLoaded() { pages.pageLoad.stopAndAccumulate(timerId);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.StopAndAccumulate(std::move(timerId)); JavaScript Glean.pages.pageLoad.stopAndAccumulate(timerId);","breadcrumbs":"Metric types » Timing Distribution » stopAndAccumulate","id":"474","title":"stopAndAccumulate"},"475":{"body":"Accumulates the provided signed samples in the metric. This is required so that the platform-specific code can provide us with 64 bit signed integers if no u64 comparable type is available. This will take care of filtering and reporting errors for any provided negative sample. Please note that this assumes that the provided samples are already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then samples are assumed to be in that unit). import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageLoaded(e: Event) { Pages.pageLoad.accumulateSamples(samples)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; void onPageLoaded(Event e) { Pages.INSTANCE.pageLoad().accumulateSamples(samples);\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_loaded(self, event): metrics.pages.page_load.accumulate_samples(samples) use glean_metrics::pages; fn on_page_loaded() { pages::page_load.accumulate_samples(samples);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageLoaded() { pages.pageLoad.accumulateSamples(samples);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.AccumulateRawSamples(samples); JavaScript Glean.pages.pageLoad.accumulateSamples(samples);","breadcrumbs":"Metric types » Timing Distribution » accumulateSamples","id":"475","title":"accumulateSamples"},"476":{"body":"Accumulates a single signed sample and appends it to the metric. Prefer this for the common use case of having a single value to avoid having to pass a collection over a foreign language interface. A signed value is required so that the platform-specific code can provide us with a 64 bit signed integer if no u64 comparable type is available. This will take care of filtering and reporting errors for a negative sample. Please note that this assumes that the provided sample is already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then sample is assumed to be in that unit). import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageLoaded(e: Event) { Pages.pageLoad.accumulateSingleSample(sample)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; void onPageLoaded(Event e) { Pages.INSTANCE.pageLoad().accumulateSingleSample(sample);\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_loaded(self, event): metrics.pages.page_load.accumulate_single_sample(sample) use glean_metrics::pages; fn on_page_loaded() { pages::page_load.accumulate_single_sample(sample);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageLoaded() { pages.pageLoad.accumulateSingleSample(sample);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.AccumulateRawDuration(aDuration); JavaScript Glean.pages.pageLoad.accumulateSingleSample(sample); Limits Samples are limited to the maximum value for the given time unit. Only non-negative values may be recorded (>= 0). Negative values are discarded and an ErrorType::InvalidValue is generated for each instance. Samples that are longer than maximum sample time for the given unit generate an ErrorType::InvalidOverflow error for each instance. Recorded errors invalid_value : If recording a negative timespan. invalid_state : If a non-existing/stopped timer is stopped again. invalid_overflow : If recording a time longer than the maximum for the given unit.","breadcrumbs":"Metric types » Timing Distribution » accumulateSingleSample","id":"476","title":"accumulateSingleSample"},"477":{"body":"For convenience one can measure the time of a function or block of code. import org.mozilla.yourApplication.GleanMetrics.Pages Pages.pageLoad.measure { // Load a page\n} import Glean Pages.pageLoad.measure { // Load a page\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") with metrics.pages.page_load.measure(): # Load a page","breadcrumbs":"Metric types » Timing Distribution » measure","id":"477","title":"measure"},"478":{"body":"Aborts a previous start call. No error is recorded if start was not called. import org.mozilla.yourApplication.GleanMetrics.Pages fun onPageError(e: Event) { Pages.pageLoad.cancel(timerId)\n} import org.mozilla.yourApplication.GleanMetrics.Pages; fun onPageError(e: Event) { Pages.INSTANCE.pageLoad().cancel(timerId);\n} import Glean func onPageError() { Pages.pageLoad.cancel(timerId)\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") class PageHandler: def on_page_error(self, event): metrics.pages.page_load.cancel(self.timer_id) use glean_metrics::pages; fn on_page_error() { pages::page_load.cancel(self.timer_id);\n} import * as pages from \"./path/to/generated/files/pages.js\"; function onPageError() { pages.pageLoad.cancel(timerId);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::pages::page_load.Cancel(std::move(timerId)); JavaScript Glean.pages.pageLoad.cancel(timerId);","breadcrumbs":"Metric types » Timing Distribution » cancel","id":"478","title":"cancel"},"479":{"body":"","breadcrumbs":"Metric types » Timing Distribution » Testing API","id":"479","title":"Testing API"},"48":{"body":"By default, the Glean.js QML module uses a minified version of the Glean.js library. It may be useful to use the unminified version of the library in order to get proper line numbers and function names when debugging crashes. The bundle provided contains the unminified version of the library. In order to use it, open the glean.js file inside the included module and change the line: .import \"glean.lib.js\" as Glean to .import \"glean.dev.js\" as Glean","breadcrumbs":"Adding Glean to your project » Qt/QML » Debugging","id":"48","title":"Debugging"},"480":{"body":"Gets the recorded value for a given timing distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Pages // Get snapshot.\nval snapshot = Pages.pageLoad.testGetValue() // Does the sum have the expected value?\nassertEquals(11, snapshot.sum) // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.count) import org.mozilla.yourApplication.GleanMetrics.Pages; // Get snapshot.\nDistributionData snapshot = pages.INSTANCE.pageLoad().testGetValue(); // Does the sum have the expected value?\nassertEquals(11, snapshot.sum); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.getCount()); // Get snapshot.\nlet snapshot = pages.pageLoad.testGetValue() // Does the sum have the expected value?\nXCTAssertEqual(11, snapshot.sum) // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nXCTAssertEqual(2, snapshot.count) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Get snapshot.\nsnapshot = metrics.pages.page_load.test_get_value() # Does the sum have the expected value?\nassert 11 == snapshot.sum # Usually you don't know the exact timing values,\n# but how many should have been recorded.\nassert 2 == snapshot.count use glean::ErrorType;\nuse glean_metrics::pages; // Get snapshot\nlet snapshot = pages::page_load.test_get_value(None).unwrap(); // Does the sum have the expected value?\nassert_eq!(11, snapshot.sum); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassert_eq!(2, snapshot.count); import * as pages from \"./path/to/generated/files/pages.js\"; const snapshot = await pages.pageLoad.testGetValue(); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassert.equal(1, snapshot.count); C++ #include \"mozilla/glean/GleanMetrics.h\" // Does it have an expected values?\nconst data = mozilla::glean::pages::page_load.TestGetValue().value().unwrap();\nASSERT_TRUE(data.sum > 0); JavaScript Assert.ok(Glean.pages.pageLoad.testGetValue().sum > 0);","breadcrumbs":"Metric types » Timing Distribution » testGetValue","id":"480","title":"testGetValue"},"481":{"body":"Gets the number of errors recorded for a given timing distribution metric. import org.mozilla.yourApplication.GleanMetrics.Pages // Assert that no errors were recorded.\nassertEquals( 0, Pages.pageLoad.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Pages; // Assert that no errors were recorded.\nassertEquals( 0, Pages.INSTANCE.pageLoad().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Assert that no errors were recorded.\nXCTAssertEqual(0, Pages.pageLoad.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Assert that no errors were recorded.\nassert 0 == metrics.pages.page_load.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::pages; assert_eq!( 0, pages::page_load.test_get_num_recorded_errors(ErrorType::InvalidValue)\n); import * as pages from \"./path/to/generated/files/pages.js\";\nimport { ErrorType } from \"@mozilla/glean/\"; assert.equal(1, await pages.pageLoad.testGetNumRecordedErrors(ErrorType.InvalidValue));","breadcrumbs":"Metric types » Timing Distribution » testGetNumRecordedErrors","id":"481","title":"testGetNumRecordedErrors"},"482":{"body":"Example timing distribution metric definition: pages: page_load: type: timing_distribution time_unit: millisecond description: > Counts how long each page takes to load bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01","breadcrumbs":"Metric types » Timing Distribution » Metric parameters","id":"482","title":"Metric parameters"},"483":{"body":"time_unit Timing distributions have an optional time_unit parameter to specify the smallest unit of resolution that the timespan will record. The allowed values for time_unit are: nanosecond (default) microsecond millisecond second minute hour day","breadcrumbs":"Metric types » Timing Distribution » Extra metric parameters","id":"483","title":"Extra metric parameters"},"484":{"body":"Timings are recorded in nanoseconds. On Android, the SystemClock.elapsedRealtimeNanos() function is used, so it is limited by the accuracy and performance of that timer. The time measurement includes time spent in sleep. On iOS, the mach_absolute_time function is used, so it is limited by the accuracy and performance of that timer. The time measurement does not include time spent in sleep. On Python 3.7 and later, time.monotonic_ns() is used. On earlier versions of Python, time.monotonics() is used, which is not guaranteed to have nanosecond resolution. In Rust, time::precise_time_ns() is used. The maximum timing value that will be recorded depends on the time_unit parameter: nanosecond: 1ns <= x <= 10 minutes microsecond: 1μs <= x <= ~6.94 days millisecond: 1ms <= x <= ~19 years Longer times will be truncated to the maximum value and an error will be recorded.","breadcrumbs":"Metric types » Timing Distribution » Limits","id":"484","title":"Limits"},"485":{"body":"How long does it take a page to load?","breadcrumbs":"Metric types » Timing Distribution » Data questions","id":"485","title":"Data questions"},"486":{"body":"Swift API docs Python API docs","breadcrumbs":"Metric types » Timing Distribution » Reference","id":"486","title":"Reference"},"487":{"body":"Please, insert your custom data below as a JSON array. Data options Generate normally distributed data Generate log-normally distributed data Generate uniformly distributed data Use custom data Properties Histogram type Functional Log base Buckets per magnitude Maximum value Time unit (time_unit) Nanoseconds Microseconds Milliseconds Note The data provided , is assumed to be in the configured time unit. The data recorded , on the other hand, is always in nanoseconds . This means that, if the configured time unit is not nanoseconds, the data will be transformed before being recorded. Notice this, by using the select field above to change the time unit and see the mean of the data recorded changing. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Timing Distribution » Simulator","id":"487","title":"Simulator"},"488":{"body":"Labeled timing distributions are used to record different related distributions of time measurements. See the Timing Distribution reference for details on bucket distribution, specifics about how Glean records time, and a histogram simulator.","breadcrumbs":"Metric types » Labeled Timing Distributions » Labeled Timing Distributions","id":"488","title":"Labeled Timing Distributions"},"489":{"body":"","breadcrumbs":"Metric types » Labeled Timing Distributions » Recording API","id":"489","title":"Recording API"},"49":{"body":"","breadcrumbs":"Adding Glean to your project » Qt/QML » Troubleshooting","id":"49","title":"Troubleshooting"},"490":{"body":"Start tracking time for the provided metric for the given label. Multiple timers for multiple labels can run simultaneously. Returns a unique TimerId for the new timer. use glean_metrics::devtools; self.start = devtools::cold_toolbox_open_delay .get(toolbox_id) .start(); C++ #include \"mozilla/glean/GleanMetrics.h\" auto timerId = mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .Start(); JavaScript const timerId = Glean.devtools.coldToolboxOpenDelay[toolbox_id].start(); Recorded Errors invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » start","id":"490","title":"start"},"491":{"body":"Stops tracking time for the provided timer from the metric for the given label. Adds a count to the corresponding bucket in the label's timing distribution. Do not use the provided TimerId after passing it to this method. use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .stop_and_accumulate(self.start); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .StopAndAccumulate(std::move(timerId)); JavaScript Glean.devtools.coldToolboxOpenDelay[toolbox_id].stopAndAccumulate(timerId); Recorded errors invalid_state : If a non-existing, cancelled, or already-stopped timer is stopped again. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » stopAndAccumulate","id":"491","title":"stopAndAccumulate"},"492":{"body":"Aborts a previous start call, consuming the supplied timer id. use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .cancel(self.start); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .Cancel(std::move(timerId)); JavaScript Glean.devtools.coldToolboxOpenDelay[toolbox_id].cancel(timerId); Recorded errors invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » cancel","id":"492","title":"cancel"},"493":{"body":"Accumulates the provided, signed samples in the metric for a given label. Where possible, have Glean do the timing for you and don't use methods like this one. If you are doing timing yourself, ensure your time source is monotonic and behaves consistently across platforms. This is required so that the platform-specific code can provide us with 64 bit signed integers if no u64 comparable type is available. This will take care of filtering and reporting errors for any provided negative sample. Please note that this assumes that the provided samples are already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then samples are assumed to be in that unit). use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .accumulate_samples(samples); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolbox_id) .AccumulateRawSamples(samples); JavaScript Glean.devtools.coldToolboxOpenDelay[toolboxId].accumulateSamples(samples); Recorded errors invalid_value : If recording a negative sample. invalid_overflow : If recording a sample longer than the maximum for the given time_unit. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » accumulateSamples","id":"493","title":"accumulateSamples"},"494":{"body":"Accumulates a single signed sample and appends it to the metric for the provided label. Prefer start() and stopAndAccumulate() where possible, but if you must record time externally please prefer this method for individual samples (avoids having to allocate and pass collections). A signed value is required so that the platform-specific code can provide us with a 64 bit signed integer if no u64 comparable type is available. This will take care of filtering and reporting errors for a negative sample. Please note that this assumes that the provided sample is already in the \"unit\" declared by the instance of the metric type (e.g. if the instance this method was called on is using TimeUnit::Second, then sample is assumed to be in that unit). use glean_metrics::devtools; devtools::cold_toolbox_open_delay .get(toolbox_id) .accumulate_single_sample(sample); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::devtools::cold_toolbox_open_delay .Get(toolboxId) .AccumulateRawDuration(aDuration); JavaScript Glean.devtools.coldToolboxOpenDelay[toolboxId].accumulateSamples(sample); Recorded errors invalid_value : If recording a negative sample. invalid_overflow : If recording a sample longer than the maximum for the given time_unit. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » accumulateSingleSample","id":"494","title":"accumulateSingleSample"},"495":{"body":"","breadcrumbs":"Metric types » Labeled Timing Distributions » Testing API","id":"495","title":"Testing API"},"496":{"body":"Gets the recorded value for a given label in a labeled timing distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::devtools; // Get the current snapshot of stored values.\nlet snapshot = devtools::cold_toolbox_open_delay.get(\"webconsole\").test_get_value(None).unwrap(); // Usually you don't know the exact timing values,\n// but you do know how many samples there are:\nassert_eq!(2, snapshot.count);\n// ...and the lower bound of how long they all took:\nassert_ge!(400, snapshot.sum); C++ #include \"mozilla/glean/GleanMetrics.h\" const data = mozilla::glean::devtools::cold_toolbox_open_delay .Get(\"webconsole\"_ns) .TestGetValue().value().unwrap();\nASSERT_TRUE(data.sum > 0); JavaScript Assert.ok(Glean.devtools.coldToolboxOpenDelay[\"webconsole\"].testGetValue().sum > 0);","breadcrumbs":"Metric types » Labeled Timing Distributions » testGetValue","id":"496","title":"testGetValue"},"497":{"body":"Gets the number of errors recorded for a given labeled timing distribution metric in total. use glean::ErrorType;\nuse glean_metrics::network; // Assert there were no negative values instrumented.\nassert_eq!( 0, devtools::cold_toolbox_open_delay.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Timing Distributions » testGetNumRecordedErrors","id":"497","title":"testGetNumRecordedErrors"},"498":{"body":"Example labeled timing distribution metric definition: devtools: cold_toolbox_open_delay: type: labeled_timing_distribution description: > Time taken to open the first DevTools toolbox, per tool being opened. time_unit: millisecond bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 175 labels: - inspector - webconsole - jsdebugger ...","breadcrumbs":"Metric types » Labeled Timing Distributions » Metric parameters","id":"498","title":"Metric parameters"},"499":{"body":"time_unit Labeled timing distributions have an optional time_unit parameter to specify the smallest unit of resolution that it will record. The allowed values for time_unit are: nanosecond (default) microsecond millisecond second minute hour day labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Timing Distributions » Extra metric parameters","id":"499","title":"Extra metric parameters"},"5":{"body":"Glossary In this book we use a lot of Glean specific terminology. In the glossary, we go through many of the terms used throughout this book and describe exactly what we mean when we use them. Changelog This section contains detailed notes about changes in Glean, per release. This Week in Glean “This Week in Glean” is a series of blog posts that the Glean Team at Mozilla is using to try to communicate better about our work. They could be release notes, documentation, hopes, dreams, or whatever: so long as it is inspired by Glean. Contribution Guidelines This section contains detailed information on where and how to include new content to this book.","breadcrumbs":"Glean » Appendix","id":"5","title":"Appendix"},"50":{"body":"The submitPing function hits a known bug in the Qt JavaScript interpreter. This bug is only reproduced in iOS devices, it does not happen in emulators. It also only happens when using the Qt debug library for iOS . There is no way around this bug other than avoiding the Qt debug library for iOS altogether until it is fixed. Refer to the the Qt debugging documentation on how to do that. Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Qt/QML » submitPing may cause crashes when debugging iOS devices","id":"50","title":"submitPing may cause crashes when debugging iOS devices"},"500":{"body":"What is the distribution of initial load times of devtools toolboxes, per tool? What is the distribution of how long it takes to load extensions' content scripts, by addon id?","breadcrumbs":"Metric types » Labeled Timing Distributions » Data questions","id":"500","title":"Data questions"},"501":{"body":"Timings are recorded in nanoseconds In Rust, time::precise_time_ns() is used. The maximum timing value that will be recorded depends on the time_unit parameter: nanosecond: 1ns <= x <= 10 minutes microsecond: 1μs <= x <= ~6.94 days millisecond: 1ms <= x <= ~19 years Longer times will be truncated to the maximum value and an error will be recorded. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Timing Distributions » Limits","id":"501","title":"Limits"},"502":{"body":"Rust API docs: LabeledMetric , TimingDistributionMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Timing Distributions » Reference","id":"502","title":"Reference"},"503":{"body":"Memory distributions are used to accumulate and store memory sizes. Memory distributions are recorded in a histogram where the buckets have an exponential distribution, specifically with 16 buckets for every power of 2. That is, the function from a value \\( x \\) to a bucket index is: \\[ \\lfloor 16 \\log_2(x) \\rfloor \\] This makes them suitable for measuring memory sizes on a number of different scales without any configuration. Note Check out how this bucketing algorithm would behave on the Simulator .","breadcrumbs":"Metric types » Memory Distribution » Memory Distribution","id":"503","title":"Memory Distribution"},"504":{"body":"","breadcrumbs":"Metric types » Memory Distribution » Recording API","id":"504","title":"Recording API"},"505":{"body":"Accumulates the provided sample in the metric. import org.mozilla.yourApplication.GleanMetrics.Memory fun allocateMemory(nbytes: Int) { // ... Memory.heapAllocated.accumulate(nbytes / 1024)\n} import org.mozilla.yourApplication.GleanMetrics.Memory; fun allocateMemory(nbytes: Int) { // ... Memory.INSTANCE.heapAllocated().accumulate(nbytes / 1024);\n} import Glean func allocateMemory(nbytes: UInt64) { // ... Memory.heapAllocated.accumulate(nbytes / 1024)\n} from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") def allocate_memory(nbytes): # ... metrics.memory.heap_allocated.accumulate(nbytes / 1024) use glean_metrics::memory; fn allocate_memory(bytes: u64) { // ... memory::heap_allocated.accumulate(bytes / 1024);\n} import * as memory from \"./path/to/generated/files/memory.js\"; function allocateMemory() { // ... memory.heapAllocated.accumulate(nbytes / 1024);\n} C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::memory::heap_allocated.Accumulate(bytes / 1024); JavaScript Glean.memory.heapAllocated.accumulate(bytes / 1024); Recorded errors invalid_value : If recording a negative memory size. invalid_value : If recording a size larger than 1 TB.","breadcrumbs":"Metric types » Memory Distribution » accumulate","id":"505","title":"accumulate"},"506":{"body":"","breadcrumbs":"Metric types » Memory Distribution » Testing API","id":"506","title":"Testing API"},"507":{"body":"Gets the recorded value for a given memory distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Memory // Get snapshot\nval snapshot = Memory.heapAllocated.testGetValue() // Does the sum have the expected value?\nassertEquals(11, snapshot.sum) // Usually you don't know the exact memory values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.count) import org.mozilla.yourApplication.GleanMetrics.Memory; // Get snapshot\nval snapshot = Memory.INSTANCE.heapAllocated().testGetValue(); // Does the sum have the expected value?\nassertEquals(11, snapshot.sum); // Usually you don't know the exact memory values,\n// but how many should have been recorded.\nassertEquals(2L, snapshot.getCount()); // Get snapshot\nlet snapshot = try! Memory.heapAllocated.testGetValue() // Does the sum have the expected value?\nXCTAssertEqual(11, snapshot.sum) // Usually you don't know the exact memory values,\n// but how many should have been recorded.\nXCTAssertEqual(2, snapshot.count) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Get snapshot.\nsnapshot = metrics.memory.heap_allocated.test_get_value() # Does the sum have the expected value?\nassert 11 == snapshot.sum # Usually you don't know the exact memory values,\n# but how many should have been recorded.\nassert 2 == snapshot.count use glean::ErrorType;\nuse glean_metrics::memory; // Get snapshot\nlet snapshot = memory::heap_allocated.test_get_value(None).unwrap(); // Does the sum have the expected value?\nassert_eq!(11, snapshot.sum); // Usually you don't know the exact timing values,\n// but how many should have been recorded.\nassert_eq!(2, snapshot.count); import * as memory from \"./path/to/generated/files/memory.js\"; // Get snapshot\nconst snapshot = await memory.heapAllocated.testGetValue(); // Does the sum have the expected value?\nassert.equal(11, snapshot.sum); // Usually you don't know the exact memory values,\n// but know how many should have been recorded.\nassert.equal(2, snapshot.count); C++ #include \"mozilla/glean/GleanMetrics.h\" // Does it have an expected values?\nconst data = mozilla::glean::memory::heap_allocated.TestGetValue().value().unwrap()\nASSERT_EQ(11 * 1024, data.sum); JavaScript const data = Glean.memory.heapAllocated.testGetValue();\nAssert.equal(11 * 1024, data.sum);","breadcrumbs":"Metric types » Memory Distribution » testGetValue","id":"507","title":"testGetValue"},"508":{"body":"Gets the number of errors recorded for a given memory distribution metric. import org.mozilla.yourApplication.GleanMetrics.Memory // Did this record a negative value?\nassertEquals( 0, Memory.heapAllocated.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Memory; // Assert that no errors were recorded.\nassertEquals( 0, Memory.INSTANCE.heapAllocated().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Did this record a negative value?\nXCTAssertEqual(0, Memory.heapAllocated.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Did this record a negative value?\nassert 0 == metrics.memory.heap_allocated.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::pages; assert_eq!( 0, pages::page_load.test_get_num_recorded_errors(ErrorType::InvalidValue)\n); import * as memory from \"./path/to/generated/files/memory.js\";\nimport { ErrorType } from \"@mozilla/glean/\"; // Did this record a negative value?\nassert.equal( 0, await memory.heapAllocated.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Memory Distribution » testGetNumRecordedErrors","id":"508","title":"testGetNumRecordedErrors"},"509":{"body":"Example memory distribution metric definition: memory: heap_allocated: type: memory_distribution memory_unit: kilobyte description: > The heap memory allocated bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01","breadcrumbs":"Metric types » Memory Distribution » Metric parameters","id":"509","title":"Metric parameters"},"51":{"body":"Glean enables the collection of behavioral metrics through events in server environments. This method does not rely on the Glean SDK but utilizes the Glean parser to generate native code for logging events in a standard format compatible with the ingestion pipeline.","breadcrumbs":"Adding Glean to your project » Server » Adding Glean to your Server Application","id":"51","title":"Adding Glean to your Server Application"},"510":{"body":"memory_unit Memory distributions have an optional memory_unit parameter, which specifies the unit the incoming memory size values are recorded in. The allowed values for memory_unit are: byte (default) kilobyte (= 2^10 = 1,024 bytes) megabyte (= 2^20 = 1,048,576 bytes) gigabyte (= 2^30 = 1,073,741,824 bytes)","breadcrumbs":"Metric types » Memory Distribution » Extra metric parameters","id":"510","title":"Extra metric parameters"},"511":{"body":"The maximum memory size that can be recorded is 1 Terabyte (240 bytes). Larger sizes will be truncated to 1 Terabyte.","breadcrumbs":"Metric types » Memory Distribution » Limits","id":"511","title":"Limits"},"512":{"body":"What is the distribution of the size of heap allocations?","breadcrumbs":"Metric types » Memory Distribution » Data questions","id":"512","title":"Data questions"},"513":{"body":"Swift API docs Python API docs Rust API docs","breadcrumbs":"Metric types » Memory Distribution » Reference","id":"513","title":"Reference"},"514":{"body":"Please, insert your custom data below as a JSON array. Data options Generate normally distributed data Generate log-normally distributed data Generate uniformly distributed data Use custom data Properties Histogram type Functional Log base Buckets per magnitude Maximum value Memory unit (memory_unit) Byte Kilobyte Megabyte Gigabyte Note The data provided , is assumed to be in the configured memory unit. The data recorded , on the other hand, is always in bytes . This means that, if the configured memory unit is not byte, the data will be transformed before being recorded. Notice this, by using the select field above to change the memory unit and see the mean of the data recorded changing. Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Memory Distribution » Simulator","id":"514","title":"Simulator"},"515":{"body":"Labeled memory distributions are used to record different related distributions of memory sizes. See the Memory Distribution reference for details on bucket distribution, and a histogram simulator.","breadcrumbs":"Metric types » Labeled Memory Distributions » Labeled Memory Distributions","id":"515","title":"Labeled Memory Distributions"},"516":{"body":"","breadcrumbs":"Metric types » Labeled Memory Distributions » Recording API","id":"516","title":"Recording API"},"517":{"body":"Accumulate the provided sample in the metric. use glean_metrics::network; network::http_upload_bandwidth .get(http_version) .accumulate(self.request_size * 8.0 / 1048576.0 / send_time.as_secs()); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::network::http_upload_bandwidth .Get(httpVersion) .Accumulate(this.mRequestSize * 8.0 / 1048576.0 / sendTime.AsSeconds()); JavaScript Glean.network.httpUploadBandwidth[httpVersion] .accumulate(requestSize * 8.0 / 1048576.0 / sendTime.asSeconds()) Recorded Errors invalid_value : if recording a memory size that is negative or over 1 TB. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Memory Distributions » accumulate","id":"517","title":"accumulate"},"518":{"body":"","breadcrumbs":"Metric types » Labeled Memory Distributions » Testing API","id":"518","title":"Testing API"},"519":{"body":"Gets the recorded value for a given label in a labeled memory distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::network; // Assert the sum of all HTTP2 samples is 42MBps.\nassert_eq!(42, network::http_upload_bandwidth.get(\"h2\").test_get_value(None).unwrap().sum); // Assert there's only the one sample\nassert_eq!(1, network::http_upload_badwidth.get(\"h2\").test_get_value(None).unwrap().count); // Buckets are indexed by their lower bound.\nassert_eq!(1, network::http_upload_bandwidth.get(\"h2\").test_get_value(None).unwrap().values[41]); C++ #include \"mozilla/glean/GleanMetrics.h\" const data = mozilla::glean::network::http_upload_bandwidth .Get(\"h2\") .TestGetValue().value().unwrap()\nASSERT_EQ(42UL, data.sum); JavaScript const data = Glean.network.httpUploadBandwidth[\"h2\"].testGetValue();\nAssert.equal(42, data.sum);","breadcrumbs":"Metric types » Labeled Memory Distributions » testGetValue","id":"519","title":"testGetValue"},"52":{"body":"This implementation of telemetry collection in server environments has some differences compared to using Glean SDK in client applications and Glean.js in the frontend of web applications. Primarily, in server environments the focus is exclusively on event-based metrics, diverging from the broader range of metric types supported by Glean. Additionally, there is no need to incorporate Glean SDK as a dependency in server applications. Instead, the Glean parser is used to generate native code for logging events.","breadcrumbs":"Adding Glean to your project » Server » Differences from using the Glean SDK","id":"52","title":"Differences from using the Glean SDK"},"520":{"body":"Gets the number of errors recorded for a given labeled custom distribution metric in total. use glean::ErrorType;\nuse glean_metrics::network; // Assert there were no negative or overlarge values instrumented.\nassert_eq!( 0, network::http_upload_bandwidth.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Memory Distributions » testGetNumRecordedErrors","id":"520","title":"testGetNumRecordedErrors"},"521":{"body":"Example labeled memory distribution metric definition: network: http_upload_bandwidth: type: labeled_memory_distribution description: > The upload bandwidth for requests larger than 10MB, per HTTP protocol version. memory_unit: megabyte bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 175 labels: - h3 - h2 - http/1.0 - http/1.1","breadcrumbs":"Metric types » Labeled Memory Distributions » Metric parameters","id":"521","title":"Metric parameters"},"522":{"body":"memory_unit Memory distributions have an optional memory_unit parameter, which specifies the unit the incoming memory size values are recorded in. The allowed values for memory_unit are: byte (default) kilobyte (= 2^10 = 1,024 bytes) megabyte (= 2^20 = 1,048,576 bytes) gigabyte (= 2^30 = 1,073,741,824 bytes) labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Memory Distributions » Extra metric parameters","id":"522","title":"Extra metric parameters"},"523":{"body":"What is the distribution of upload bandwidth rates per HTTP protocol version? What is the distribution of bytes received per DOM network API?","breadcrumbs":"Metric types » Labeled Memory Distributions » Data questions","id":"523","title":"Data questions"},"524":{"body":"The maximum memory size that can be recorded is 1 Terabyte (240 bytes). Larger sizes will be truncated to 1 Terabyte. Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Memory Distributions » Limits","id":"524","title":"Limits"},"525":{"body":"Rust API docs: LabeledMetric , MemoryDistributionMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Memory Distributions » Reference","id":"525","title":"Reference"},"526":{"body":"UUIDs metrics are used to record values that uniquely identify some entity, such as a client id.","breadcrumbs":"Metric types » UUID » UUID","id":"526","title":"UUID"},"527":{"body":"","breadcrumbs":"Metric types » UUID » Recording API","id":"527","title":"Recording API"},"528":{"body":"Sets a UUID metric to a randomly generated UUID value (UUID v4) . import org.mozilla.yourApplication.GleanMetrics.User // Generate a new UUID and record it\nUser.clientId.generateAndSet() import org.mozilla.yourApplication.GleanMetrics.User; // Generate a new UUID and record it\nUser.INSTANCE.clientId().generateAndSet(); // Generate a new UUID and record it\nUser.clientId.generateAndSet() from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Generate a new UUID and record it\nmetrics.user.client_id.generate_and_set() use uuid::Uuid;\nuse glean_metrics::user; // Generate a new UUID and record it\nuser::client_id.generate_and_set(); import * as user from \"./path/to/generated/files/user.js\"; user.clientId.generateAndSet(); C++ #include \"mozilla/glean/GleanMetrics.h\" // Generate a new UUID and record it.\nmozilla::glean::user::client_id.GenerateAndSet(); JavaScript // Generate a new UUID and record it.\nGlean.user.clientId.generateAndSet();","breadcrumbs":"Metric types » UUID » generateAndSet","id":"528","title":"generateAndSet"},"529":{"body":"Sets a UUID metric to a specific value. Accepts any UUID version. import org.mozilla.yourApplication.GleanMetrics.User // Set a UUID explicitly\nUser.clientId.set(UUID.randomUUID()) // Set a UUID explicitly import org.mozilla.yourApplication.GleanMetrics.User; // Set a UUID explicitly\nUser.INSTANCE.clientId().set(UUID.randomUUID()); User.clientId.set(UUID()) // Set a UUID explicitly import uuid from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Set a UUID explicitly\nmetrics.user.client_id.set(uuid.uuid4()) use uuid::Uuid;\nuse glean_metrics::user; // Set a UUID explicitly\nuser::client_id.set(Uuid::new_v4()); import * as user from \"./path/to/generated/files/user.js\"; const uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\nuser.clientId.set(uuid); C++ #include \"mozilla/glean/GleanMetrics.h\" // Set a specific value.\nnsCString kUuid(\"decafdec-afde-cafd-ecaf-decafdecafde\");\nmozilla::glean::user::client_id.Set(kUuid); JavaScript // Set a specific value.\nconst uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\nGlean.user.clientId.set(uuid); Recorded errors invalid_value : if the value is set to a string that is not a UUID (only applies for dynamically-typed languages, such as Python). invalid_type : if a non-string or non-UUID value is given.","breadcrumbs":"Metric types » UUID » set","id":"529","title":"set"},"53":{"body":"This method is intended for collecting user-level behavioral events in server environments. It is not suitable for collecting system-level metrics or performance data, which should be collected using cloud monitoring tools.","breadcrumbs":"Adding Glean to your project » Server » When to use server-side collection","id":"53","title":"When to use server-side collection"},"530":{"body":"","breadcrumbs":"Metric types » UUID » Testing API","id":"530","title":"Testing API"},"531":{"body":"Gets the recorded value for a given UUID metric. Returns a UUID if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.User // Was it the expected value?\nassertEquals(uuid, User.clientId.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.User; // Was it the expected value?\nassertEquals(uuid, User.INSTANCE.clientId().testGetValue()); // Was it the expected value?\nXCTAssertEqual(uuid, try User.clientId.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Was it the expected value?\nassert uuid == metrics.user.client_id.test_get_value() use uuid::Uuid;\nuse glean_metrics::user; let u = Uuid::new_v4();\n// Does it have the expected value?\nassert_eq!(u, user::client_id.test_get_value(None).unwrap()); import * as user from \"./path/to/generated/files/user.js\"; const uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\nassert(uuid, await user.clientId.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" // Is it clear of errors?\nASSERT_TRUE(mozilla::glean::user::client_id.TestGetValue().isOk());\n// Does it have an expected values?\nASSERT_STREQ(kUuid.get(), mozilla::glean::user::client_id.TestGetValue().unwrap().value().get()); JavaScript const uuid = \"decafdec-afde-cafd-ecaf-decafdecafde\";\n// testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(Glean.user.clientId.testGetValue(), uuid);","breadcrumbs":"Metric types » UUID » testGetValue","id":"531","title":"testGetValue"},"532":{"body":"Gets the number of errors recorded for a given UUID metric. import org.mozilla.yourApplication.GleanMetrics.User assertEquals( 0, User.clientId.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.User; assertEquals( 0, User.INSTANCE.clientId().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, User.clientId.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") from glean.testing import ErrorType assert 0 == metrics.user.client_id.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::user; assert_eq!( 0, user::client_id.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); import * as user from \"./path/to/generated/files/user.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; // Was the string truncated, and an error reported?\nassert.strictEqual( 0, await user.clientId.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » UUID » testGetNumRecordedErrors","id":"532","title":"testGetNumRecordedErrors"},"533":{"body":"You first need to add an entry for it to the metrics.yaml file: user: client_id: type: uuid description: > A unique identifier for the client's profile bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » UUID » Metric Parameters","id":"533","title":"Metric Parameters"},"534":{"body":"N/A","breadcrumbs":"Metric types » UUID » Extra metric parameters","id":"534","title":"Extra metric parameters"},"535":{"body":"A unique identifier for the client.","breadcrumbs":"Metric types » UUID » Data questions","id":"535","title":"Data questions"},"536":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » UUID » Reference","id":"536","title":"Reference"},"537":{"body":"URL metrics allow recording URL-like [1] strings. This metric type does not support recording data URLs - please get in contact with the Glean team if you're missing a type.","breadcrumbs":"Metric types » URL » URL","id":"537","title":"URL"},"538":{"body":"Be careful using arbitrary URLs and make sure they can't accidentally contain identifying data (like directory paths, user input or credentials). The Glean SDKs specifically do not validate if a URL is fully spec compliant, all the validations performed are the ones listed in the \"Recorded errors\" section of this page.","breadcrumbs":"Metric types » URL » Important","id":"538","title":"Important"},"539":{"body":"","breadcrumbs":"Metric types » URL » Recording API","id":"539","title":"Recording API"},"54":{"body":"Integrate glean_parser into your build system. Follow instructions for other SDK-enabled platforms, e.g. JavaScript . Use a server outputter to generate logging code. glean_parser currently supports Go , JavaScript/Typescript , Python , and Ruby . Define your metrics in metrics.yaml Request a data review for the collected data Add your product to probe-scraper","breadcrumbs":"Adding Glean to your project » Server » How to add Glean server side collection to your service","id":"54","title":"How to add Glean server side collection to your service"},"540":{"body":"Set a URL metric to a specific string value. import org.mozilla.yourApplication.GleanMetrics.Search Search.template.set(\"https://mysearchengine.com/\") import org.mozilla.yourApplication.GleanMetrics.Search; Search.INSTANCE.template().set(\"https://mysearchengine.com/\"); Search.template.set(\"https://mysearchengine.com\") // Swift's URL type is supported\nlet url = URL(string: \"https://mysearchengine.com\")!\nSearch.template.set(url: url) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.search.template.set(\"https://mysearchengine.com/\") use glean_metrics::search; search::template.set(\"https://mysearchengine.com/\"); import * as search from \"./path/to/generated/files/search.js\"; search.template.set(\"https://mysearchengine.com/\"); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::search::template.Set(\"https://mysearchengine.com/\"_ns); JavaScript Glean.search.template.set(\"https://mysearchengine.com/\");","breadcrumbs":"Metric types » URL » set","id":"540","title":"set"},"541":{"body":"Set a URL metric to a specific URL value. import * as search from \"./path/to/generated/files/search.js\"; search.template.setUrl(new URL(\"https://mysearchengine.com/\")); Recorded errors invalid_value : If the URL passed does not start with a scheme followed by a : character. If the URL passed uses the data: protocol. invalid_overflow : if the URL passed is longer than 8192 characters (before encoding). invalid_type : if a non-string value is given. Limits Fixed maximum URL length: 8192. Longer URLs are truncated and recorded along with an invalid_overflow error.","breadcrumbs":"Metric types » URL » setUrl","id":"541","title":"setUrl"},"542":{"body":"","breadcrumbs":"Metric types » URL » Testing API","id":"542","title":"Testing API"},"543":{"body":"Gets the recorded value for a given URL metric as a (unencoded) string. Returns a URL if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(\"https://mysearchengine.com/\", Search.template.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(\"https://mysearchengine.com/\", Search.INSTANCE.template().testGetValue()); XCTAssertEqual(\"https://mysearchengine.com/\", try Search.template.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert \"https://mysearchengine.com/\" == metrics.search.template.test_get_value() use glean_metrics::search; assert_eq!(\"https://mysearchengine.com/\", search::template.test_get_value(None).unwrap()); import * as search from \"./path/to/generated/files/search.js\"; assert.strictEqual(\"https://mysearchengine.com/\", await search.template.testGetValue());","breadcrumbs":"Metric types » URL » testGetValue","id":"543","title":"testGetValue"},"544":{"body":"Gets the number of errors recorded for a given counter metric. import org.mozilla.yourApplication.GleanMetrics.Search assertEquals(0, Search.template.testGetNumRecordedErrors(ErrorType.INVALID_VALUE))\nassertEquals(0, Search.template.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)) import org.mozilla.yourApplication.GleanMetrics.Search; assertEquals( 0, Search.INSTANCE.template().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); assertEquals( 0, Search.INSTANCE.template().testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n); XCTAssertEqual(0, Search.template.testGetNumRecordedErrors(.invalidValue))\nXCTAssertEqual(0, Search.template.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.search.template.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) assert 0 == metrics.search.template.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse glean_metrics::search; assert_eq!( 0, search::template.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); assert_eq!( 0, search::template.test_get_num_recorded_errors( ErrorType::InvalidOverflow )\n); import * as search from \"./path/to/generated/files/search.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await search.template.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);\nassert.strictEqual( 0, await search.template.testGetNumRecordedErrors(ErrorType.InvalidOverflow)\n);","breadcrumbs":"Metric types » URL » testGetNumRecordedErrors","id":"544","title":"testGetNumRecordedErrors"},"545":{"body":"Example URL metric definition: search: template: type: url description: > The base URL used to build the search query for the search engine. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 data_sensitivity: - web_activity For a full reference on metrics parameters common to all metric types, refer to the metrics YAML format reference page.","breadcrumbs":"Metric types » URL » Metric parameters","id":"545","title":"Metric parameters"},"546":{"body":"URL metrics can only either be on categories 3 or 4, namely \"Stored Content & Communications\" or \"Highly sensitive data\" .","breadcrumbs":"Metric types » URL » Note on data_sensitivity of URL metrics","id":"546","title":"Note on data_sensitivity of URL metrics"},"547":{"body":"N/A","breadcrumbs":"Metric types » URL » Extra metric parameters","id":"547","title":"Extra metric parameters"},"548":{"body":"What is the base URL used to build the search query for the search engine? Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » URL » Data questions","id":"548","title":"Data questions"},"549":{"body":"Datetimes are used to record an absolute date and time, for example the date and time that the application was first run. The device's offset from UTC is recorded and sent with the Datetime value in the ping. To record a single elapsed time, see Timespan . To measure the distribution of multiple timespans, see Timing Distributions .","breadcrumbs":"Metric types » Datetime » Datetime","id":"549","title":"Datetime"},"55":{"body":"Follow the standard Glean SDK guide for adding metrics to metrics.yaml file.","breadcrumbs":"Adding Glean to your project » Server » How to add a new event to your server side collection","id":"55","title":"How to add a new event to your server side collection"},"550":{"body":"","breadcrumbs":"Metric types » Datetime » Recording API","id":"550","title":"Recording API"},"551":{"body":"Sets a datetime metric to a specific date value. Defaults to now. import org.mozilla.yourApplication.GleanMetrics.Install Install.firstRun.set() // Records \"now\"\nInstall.firstRun.set(Date(2019, 3, 25)) // Records a custom datetime import org.mozilla.yourApplication.GleanMetrics.Install; Install.INSTANCE.firstRun().set(); // Records \"now\"\nInstall.INSTANCE.firstRun().set(new Date(2019, 3, 25)); // Records a custom datetime Install.firstRun.set() // Records \"now\"\nlet dateComponents = DateComponents( calendar: Calendar.current, year: 2004, month: 12, day: 9, hour: 8, minute: 3, second: 29 )\nInstall.firstRun.set(dateComponents.date!) // Records a custom datetime import datetime from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.install.first_run.set() # Records \"now\"\nmetrics.install.first_run.set(datetime.datetime(2019, 3, 25)) # Records a custom datetime use glean_metrics::install; use chrono::{FixedOffset, TimeZone}; install::first_run.set(None); // Records \"now\"\nlet custom_date = FixedOffset::east(0).ymd(2019, 3, 25).and_hms(0, 0, 0);\ninstall::first_run.set(Some(custom_date)); // Records a custom datetime import * as install from \"./path/to/generated/files/install.js\"; install.firstRun.set(); // Records \"now\"\ninstall.firstRun.set(new Date(\"March 25, 2019 00:00:00\")); // Records a custom datetime C++ #include \"mozilla/glean/GleanMetrics.h\" PRExplodedTime date = {0, 35, 10, 12, 6, 10, 2020, 0, 0, {5 * 60 * 60, 0}};\nmozilla::glean::install::first_run.Set(&date); JavaScript const value = new Date(\"2020-06-11T12:00:00\");\nGlean.install.firstRun.set(value.getTime() * 1000); Recorded errors invalid_value : setting the date time to an invalid value. invalid_type : if a non-Date object is given.","breadcrumbs":"Metric types » Datetime » set","id":"551","title":"set"},"552":{"body":"","breadcrumbs":"Metric types » Datetime » Testing API","id":"552","title":"Testing API"},"553":{"body":"Get the recorded value for a given datetime metric as a language-specific Datetime object. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Install assertEquals(Install.firstRun.testGetValue(), Date(2019, 3, 25)) import org.mozilla.yourApplication.GleanMetrics.Install; assertEquals(Install.INSTANCE.firstRun().testGetValue(), Date(2019, 3, 25)); let expectedDate = DateComponents( calendar: Calendar.current, year: 2004, month: 12, day: 9, hour: 8, minute: 3, second: 29 )\nXCTAssertEqual(expectedDate.date!, try Install.firstRun.testGetValue()) import datetime from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") value = datetime.datetime(1993, 2, 23, 5, 43, tzinfo=datetime.timezone.utc)\nassert value == metrics.install.first_run.test_get_value() use glean_metrics::install; use chrono::{FixedOffset, TimeZone}; let expected_date = FixedOffset::east(0).ymd(2019, 3, 25).and_hms(0, 0, 0);\nassert_eq!(expected_date, metrics.install.first_run.test_get_value(None)); import * as install from \"./path/to/generated/files/install.js\"; const expectedDate = new Date(\"March 25, 2019 00:00:00\");\nassert.deepStrictEqual(expectedDate, await install.firstRun.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" PRExplodedTime date{0, 35, 10, 12, 6, 10, 2020, 0, 0, {5 * 60 * 60, 0}};\nASSERT_TRUE(mozilla::glean::install::first_run.TestGetValue().isOk());\nASSERT_EQ( 0, std::memcmp( &date, mozilla::glean::install::first_run.TestGetValue().unwrap().ptr(), sizeof(date))); JavaScript const value = new Date(\"2020-06-11T12:00:00\");\n// testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(Glean.install.firstRun.testGetValue().getTime(), value.getTime());","breadcrumbs":"Metric types » Datetime » testGetValue","id":"553","title":"testGetValue"},"554":{"body":"Get the recorded value for a given datetime metric as an ISO Date String . Returns a ISO 8601 date string if data is stored. Returns a language-specific empty/null value if no data is stored. The returned string will be truncated to the metric's time unit and will include the timezone offset from UTC, e.g. 2019-03-25-05:00 (in this example, time_unit is day). import org.mozilla.yourApplication.GleanMetrics.Install assertEquals(\"2019-03-25-05:00\", Install.firstRun.testGetValueAsString()) import org.mozilla.yourApplication.GleanMetrics.Install; assertEquals(\"2019-03-25-05:00\", Install.INSTANCE.firstRun().testGetValueAsString()); assertEquals(\"2019-03-25-05:00\", try Install.firstRun.testGetValueAsString()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert \"2019-03-25-05:00\" == metrics.install.first_run.test_get_value_as_str() import * as install from \"./path/to/generated/files/install.js\"; assert.strictEqual(\"2019-03-25-05:00\", await install.firstRun.testGetValueAsString());","breadcrumbs":"Metric types » Datetime » testGetValueAsString","id":"554","title":"testGetValueAsString"},"555":{"body":"Get number of errors recorded for a given datetime metric. import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Install assertEquals(0, Install.firstRun.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)) import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Install; assertEquals( 0, Install.INSTANCE.firstRun().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); XCTAssertEqual(0, Install.firstRun.getNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.install.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::install; assert_eq!( 0, install::first_run.test_get_num_recorded_errors( ErrorType::InvalidValue )\n); import * as install from \"./path/to/generated/files/install.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await install.firstRun.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Datetime » testGetNumRecordedErrors","id":"555","title":"testGetNumRecordedErrors"},"556":{"body":"Example datetime metric definition: install: first_run: type: datetime time_unit: day description: > Records the date when the application was first run bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Datetime » Metric parameters","id":"556","title":"Metric parameters"},"557":{"body":"time_unit Datetimes have an optional time_unit parameter to specify the smallest unit of resolution that the metric will record. The allowed values for time_unit are: nanosecond microsecond millisecond (default) second minute hour day Carefully consider the required resolution for recording your metric, and choose the coarsest resolution possible.","breadcrumbs":"Metric types » Datetime » Extra metric parameters","id":"557","title":"Extra metric parameters"},"558":{"body":"When did the user first run the application?","breadcrumbs":"Metric types » Datetime » Data questions","id":"558","title":"Data questions"},"559":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Datetime » Reference","id":"559","title":"Reference"},"56":{"body":"For more technical details on how ingestion works, see the Confluence page . Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Server » Technical details - ingestion","id":"56","title":"Technical details - ingestion"},"560":{"body":"Events allow recording of e.g. individual occurrences of user actions, say every time a view was open and from where. Each event contains the following data: A timestamp, in milliseconds. The first event in any ping always has a value of 0, and subsequent event timestamps are relative to it. If sending events in custom pings, see note on event timestamp calculation throughout restarts. The name of the event. A set of key-value pairs, where the keys are predefined in the extra_keys metric parameter. Values are one of string, boolean, quantity, and are converted to string for transmission.","breadcrumbs":"Metric types » Event » Events","id":"560","title":"Events"},"561":{"body":"In the Glean JavaScript SDK (Glean.js), since version 2.0.2, events are submitted immediately by default. In all the other SDKs, events are batched and sent together by default in the events ping .","breadcrumbs":"Metric types » Event » Immediate submission or batching?","id":"561","title":"Immediate submission or batching?"},"562":{"body":"","breadcrumbs":"Metric types » Event » Recording API","id":"562","title":"Recording API"},"563":{"body":"Record a new event, with optional typed extra values. See Extra metrics parameters . Note that an enum has been generated for handling the extra_keys: it has the same name as the event metric, with Extra added. import org.mozilla.yourApplication.GleanMetrics.Views Views.loginOpened.record(Views.loginOpenedExtra(sourceOfLogin = \"toolbar\")) Note that an enum has been generated for handling the extra_keys: it has the same name as the event metric, with Extra added. Views.loginOpened.record(LoginOpenedExtra(sourceOfLogin: \"toolbar\")) Note that a class has been generated for handling the extra_keys: it has the same name as the event metric, with Extra added. from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.views.login_opened.record(metrics.views.LoginOpenedExtra(sourceOfLogin=\"toolbar\")) Note that an enum has been generated for handling the extra_keys: it has the same name as the event metric, with Keys added. use metrics::views::{self, LoginOpenedExtra}; let extra = LoginOpenedExtra { source_of_login: Some(\"toolbar\".to_string()) };\nviews::login_opened.record(extra); import * as views from \"./path/to/generated/files/views.js\"; views.loginOpened.record({ sourceOfLogin: \"toolbar\" }); C++ #include \"mozilla/glean/GleanMetrics.h\" using mozilla::glean::views::LoginOpenedExtra;\nLoginOpenedExtra extra = { .source_of_login = Some(\"value\"_ns) };\nmozilla::glean::views::login_opened.Record(std::move(extra)) JavaScript const extra = { source_of_login: \"toolbar\" }; // Extra Keys are *NOT* conjugated to camelCase\nGlean.views.loginOpened.record(extra); Recorded errors invalid_overflow : if any of the values in the extras object are greater than 500 bytes in length. (Prior to Glean 31.5.0, this recorded an invalid_value). invalid_value : if there is an attempt to record to an extra key which is not allowed i.e. an extra key that has not been listed in the YAML registry file. invalid_type : if the extra value given is not the expected type.","breadcrumbs":"Metric types » Event » record(object)","id":"563","title":"record(object)"},"564":{"body":"","breadcrumbs":"Metric types » Event » Testing API","id":"564","title":"Testing API"},"565":{"body":"Get the list of recorded events. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. Note : By default as of v2.0.2 Glean.js sets maxEvents=1 by default. If you try and call testGetValue() for a recorded event with maxEvents=1, snapshot will not include your event. For your testing instance, you can set maxEvents to a value greater than 1 to test recording events with testGetValue(). import org.mozilla.yourApplication.GleanMetrics.Views val snapshot = Views.loginOpened.testGetValue()\nassertEquals(2, snapshot.size)\nval first = snapshot.single()\nassertEquals(\"login_opened\", first.name)\nassertEquals(\"toolbar\", first.extra?.getValue(\"source_of_login\")) import org.mozilla.yourApplication.GleanMetrics.Views assertEquals(Views.INSTANCE.loginOpened().testGetValue().size) val snapshot = try! Views.loginOpened.testGetValue()\nXCTAssertEqual(2, snapshot.size)\nval first = snapshot[0]\nXCTAssertEqual(\"login_opened\", first.name)\nXCTAssertEqual(\"toolbar\", first.extra?[\"source_of_login\"]) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") snapshot = metrics.views.login_opened.test_get_value()\nassert 2 == len(snapshot)\nfirst = snapshot[0]\nassert \"login_opened\" == first.name\nassert \"toolbar\" == first.extra[\"source_of_login\"] use metrics::views; var snapshot = views::login_opened.test_get_value(None).unwrap();\nassert_eq!(2, snapshot.len());\nlet first = &snapshot[0];\nassert_eq!(\"login_opened\", first.name); let extra = event.extra.unwrap();\nassert_eq!(Some(&\"toolbar\".to_string()), extra.get(\"source_of_login\")); import * as views from \"./path/to/generated/files/views.js\"; const snapshot = await views.loginOpened.testGetValue();\nassert.strictEqual(2, snapshot.length);\nconst first = snapshot[0];\nassert.strictEqual(\"login_opened\", first.name);\nassert.strictEqual(\"toolbar\", first.extra.source_of_login); C++ #include \"mozilla/glean/GleanMetrics.h\" auto optEvents = mozilla::glean::views::login_opened.TestGetValue();\nauto events = optEvents.extract();\nASSERT_EQ(2UL, events.Length());\nASSERT_STREQ(\"login_opened\", events[0].mName.get()); // Note that the list of extra key/value pairs can be in any order.\nASSERT_EQ(1UL, events[0].mExtra.Length());\nauto extra = events[0].mExtra[0]; auto key = std::get<0>(extra);\nauto value = std::get<1>(extra); ASSERT_STREQ(\"source_of_login\"_ns, key.get())\nASSERT_STREQ(\"toolbar\", value.get());\n} JavaScript var events = Glean.views.loginOpened.testGetValue();\nAssert.equal(2, events.length);\nAssert.equal(\"login_opened\", events[0].name); Assert.equal(\"toolbar\", events[0].extra.source_of_login);","breadcrumbs":"Metric types » Event » testGetValue","id":"565","title":"testGetValue"},"566":{"body":"Get the number of errors recorded for a given event metric. import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Views assertEquals( 0, Views.loginOpened.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) import mozilla.telemetry.glean.testing.ErrorType\nimport org.mozilla.yourApplication.GleanMetrics.Views assertEquals( 0, Views.INSTANCE.loginOpened().testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) XCTAssertEqual(0, Views.loginOpened.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nfrom glean.testing import ErrorType\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.views.login_opened.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse metrics::views; assert_eq!( 0, views::login_opened.test_get_num_recorded_errors( ErrorType::InvalidOverflow, None )\n); import * as views from \"./path/to/generated/files/views.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await views.loginOpened.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Event » testGetNumRecordedErrors","id":"566","title":"testGetNumRecordedErrors"},"567":{"body":"Example event metric definition: views: login_opened: type: event description: | Recorded when the login view is opened. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 extra_keys: source_of_login: description: The source from which the login view was opened, e.g. \"toolbar\". type: string For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page. Events require lifetime: ping. Recorded events are always sent in their respective pings and then cleared. They cannot be persisted longer. The glean_parser will reject any other lifetime.","breadcrumbs":"Metric types » Event » Metric parameters","id":"567","title":"Metric parameters"},"568":{"body":"extra_keys The acceptable keys on the \"extra\" object sent with events. A maximum of 50 extra keys is allowed. Each extra key contains additional metadata: description: Required. A description of the key. type: The type of value this extra key can hold. One of string, boolean, quantity. Defaults to string. Recorded value is converted to string for transmission. Note : If not specified only the legacy API on record is available. Extras or string metrics? When designing your metrics, define properties that are slow-changing and common across all events in a given ping as string metrics. Properties specific to a single event or a subset of events should be defined as event extras.","breadcrumbs":"Metric types » Event » Extra metric parameters","id":"568","title":"Extra metric parameters"},"569":{"body":"When and from where was the login view opened?","breadcrumbs":"Metric types » Event » Data questions","id":"569","title":"Data questions"},"57":{"body":"This page provides a step-by-step guide on how to enable data from your product to be ingested by the data platform. This is just one of the required steps for integrating Glean successfully into a product. Check the full Glean integration checklist for a comprehensive list of all the steps involved in doing so.","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Enabling data to be ingested by the data platform","id":"57","title":"Enabling data to be ingested by the data platform"},"570":{"body":"In Glean.js the default value for maxEvents is 1. In all other SDKs it is 500. Once the maxEvents threshold is reached on the client an \"events\" ping is immediately sent. The extra_keys allows for a maximum of 50 keys. The keys in the extra_keys list must be written using printable ASCII characters, with a maximum length of 40 bytes, when encoded as UTF-8. The values in the extras object have a maximum length of 500 bytes when serialized and encoded as UTF-8. Longer values are truncated, and an invalid_overflow error is recorded.","breadcrumbs":"Metric types » Event » Limits","id":"570","title":"Limits"},"571":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Event » Reference","id":"571","title":"Reference"},"572":{"body":"Custom distributions are used to record the distribution of arbitrary values. It should be used only when direct control over how the histogram buckets are computed is required. Otherwise, look at the standard distribution metric types: Timing Distributions Memory Distributions Note : Custom distributions are currently not universally supported. See below for available APIs.","breadcrumbs":"Metric types » Custom Distribution » Custom Distribution","id":"572","title":"Custom Distribution"},"573":{"body":"","breadcrumbs":"Metric types » Custom Distribution » Recording API","id":"573","title":"Recording API"},"574":{"body":"Accumulate the provided samples in the metric. import org.mozilla.yourApplication.GleanMetrics.Graphics Graphics.checkerboardPeak.accumulateSamples([23]) import org.mozilla.yourApplication.GleanMetrics.Graphics; Graphics.INSTANCE.checkerboardPeak().accumulateSamples(listOf(23)); use glean_metrics::graphics; graphics::checkerboard_peak.accumulate_samples_signed(vec![23]); import * as graphics from \"./path/to/generated/files/graphics.js\"; graphics.checkerboardPeak.accumulateSamples([23]); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::graphics::checkerboard_peak.AccumulateSamples({ 23 }); JavaScript Glean.graphics.checkerboardPeak.accumulateSamples([23]);","breadcrumbs":"Metric types » Custom Distribution » accumulateSamples","id":"574","title":"accumulateSamples"},"575":{"body":"Accumulates one sample and appends it to the metric. import org.mozilla.yourApplication.GleanMetrics.Graphics Graphics.checkerboardPeak.accumulateSingleSample(23) import org.mozilla.yourApplication.GleanMetrics.Graphics; Graphics.INSTANCE.checkerboardPeak().accumulateSingleSample(23); use glean_metrics::graphics; graphics::checkerboard_peak.accumulate_single_sample(23); import * as graphics from \"./path/to/generated/files/graphics.js\"; graphics.checkerboardPeak.accumulateSingleSample(23); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::graphics::checkerboard_peak.AccumulateSingleSample(23); JavaScript Glean.graphics.checkerboardPeak.accumulateSingleSample(23); Limits The maximum value of bucket_count is 100. Only non-negative values may be recorded (>= 0). Recorded errors invalid_value: If recording a negative value.","breadcrumbs":"Metric types » Custom Distribution » accumulateSingleSample","id":"575","title":"accumulateSingleSample"},"576":{"body":"","breadcrumbs":"Metric types » Custom Distribution » Testing API","id":"576","title":"Testing API"},"577":{"body":"Gets the recorded value for a given custom distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Graphics // Get snapshot\nval snapshot = Graphics.checkerboardPeak.testGetValue() // Does the sum have the expected value?\nassertEquals(23, snapshot.sum) // Does the count have the expected value?\nassertEquals(1L, snapshot.count) // Buckets are indexed by their lower bound.\nassertEquals(1L, snapshot.values[19]) import org.mozilla.yourApplication.GleanMetrics.Graphics; // Get snapshot\nval snapshot = Graphics.INSTANCE.checkerboardPeak().testGetValue(); // Does the sum have the expected value?\nassertEquals(23, snapshot.sum); // Does the count have the expected value?\nassertEquals(1L, snapshot.count); use glean_metrics::graphics; // Does the sum have the expected value?\nassert_eq!(23, graphics::checkerboard_peak.test_get_value(None).unwrap().sum); // Does the count have the expected value?\nassert_eq!(1, graphics::checkerboard_peak.test_get_value(None).unwrap().count); // Buckets are indexed by their lower bound.\nassert_eq!(1, snapshot.values[19]) import * as graphics from \"./path/to/generated/files/graphics.js\"; // Get snapshot\nconst snapshot = await graphics.checkerboardPeak.testGetValue(); // Does the sum have the expected value?\nassert.equal(23, snapshot.sum); // Buckets are indexed by their lower bound.\nassert.equal(1, snapshot.values[19]); C++ #include \"mozilla/glean/GleanMetrics.h\" auto data = mozilla::glean::graphics::checkerboard_peak.TestGetValue().value();\nASSERT_EQ(23UL, data.sum); JavaScript let data = Glean.graphics.checkerboardPeak.testGetValue();\nAssert.equal(23, data.sum);","breadcrumbs":"Metric types » Custom Distribution » testGetValue","id":"577","title":"testGetValue"},"578":{"body":"Gets the number of errors recorded for a the custom distribution metric. import org.mozilla.yourApplication.GleanMetrics.Graphics /// Did the metric receive a negative value?\nassertEquals( 0, Graphics.checkerboardPeak.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Graphics; /// Did the metric receive a negative value?\nassertEquals( 0, Graphics.INSTANCE.checkerboardPeak().testGetNumRecordedErrors( ErrorType.INVALID_VALUE )\n) use glean::ErrorType;\nuse glean_metrics::graphics; // Were any of the values negative and thus caused an error to be recorded?\nassert_eq!( 0, graphics::checkerboard_peak.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n); import * as graphics from \"./path/to/generated/files/graphics.js\";\nimport { ErrorType } from \"@mozilla/glean/\"; // Did the metric receive a negative value?\nassert.equal( 0, graphics.checkerboardPeak.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Custom Distribution » testGetNumRecordedErrors","id":"578","title":"testGetNumRecordedErrors"},"579":{"body":"Example custom distribution metric definition: graphics: checkerboard_peak: type: custom_distribution description: > Peak number of CSS pixels checkerboarded during a checkerboard event. range_min: 1 range_max: 66355200 bucket_count: 50 histogram_type: exponential unit: pixels gecko_datapoint: CHECKERBOARD_PEAK bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01","breadcrumbs":"Metric types » Custom Distribution » Metric Parameters","id":"579","title":"Metric Parameters"},"58":{"body":"GitHub Workflows","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Requirements","id":"58","title":"Requirements"},"580":{"body":"Custom distributions have the following required parameters: range_min: (Integer) The minimum value of the first bucket range_max: (Integer) The minimum value of the last bucket bucket_count: (Integer) The number of buckets histogram_type: linear: The buckets are evenly spaced exponential: The buckets follow a natural logarithmic distribution Note Check out how these bucketing algorithms would behave on the Custom distribution simulator . Custom distributions have the following optional parameters: unit: (String) The unit of the values in the metric. For documentation purposes only -- does not affect data collection. gecko_datapoint: (String) This is a Gecko-specific property. It is the name of the Gecko metric to accumulate the data from, when using a Glean SDK in a product using GeckoView.","breadcrumbs":"Metric types » Custom Distribution » Extra metric parameters","id":"580","title":"Extra metric parameters"},"581":{"body":"Rust API docs","breadcrumbs":"Metric types » Custom Distribution » Reference","id":"581","title":"Reference"},"582":{"body":"Please, insert your custom data below as a JSON array. Data options Generate normally distributed data Generate log-normally distributed data Generate uniformly distributed data Use custom data Properties Histogram type (histogram_type) Exponential Linear Range minimum (range_min) Range maximum (range_max) Bucket count (bucket_count) Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Custom Distribution » Simulator","id":"582","title":"Simulator"},"583":{"body":"Labeled custom distributions are used to record different related distributions of arbitrary values. If your data is timing or memory based and you don't need direct control over histogram buckets, consider instead: Labeled Timing Distributions Labeled Memory Distributions","breadcrumbs":"Metric types » Labeled Custom Distributions » Labeled Custom Distributions","id":"583","title":"Labeled Custom Distributions"},"584":{"body":"","breadcrumbs":"Metric types » Labeled Custom Distributions » Recording API","id":"584","title":"Recording API"},"585":{"body":"Accumulate the provided samples in the metric. use glean_metrics::network; network::http3_late_ack_ratio .get(\"ack\") .accumulateSamples(vec![(stats.late_ack * 10000) / stats.packets_tx]);\nnetwork::http3_late_ack_ratio .get(\"pto\") .accumulateSamples(vec![(stats.pto_ack * 10000) / stats.packets_tx]); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::network::http3_late_ack_ratio .Get(\"ack\") .AccumulateSamples({(stats.late_ack * 10000) / stats.packets_tx});\nmozilla::glean::network::http3_late_ack_ratio .Get(\"pto\") .AccumulateSamples({(stats.pto_ack * 10000) / stats.packets_tx}); JavaScript Glean.network.http3LateAckRatio[\"ack\"] .accumulateSamples([(stats.late_ack * 10000) / stats.packets_tx]);\nGlean.network.http3LateAckRatio[\"pto\"] .accumulateSamples([(stats.pto_ack * 10000) / stats.packets_tx]); Recorded Errors invalid_value : if recording any negative samples invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Custom Distributions » accumulateSamples","id":"585","title":"accumulateSamples"},"586":{"body":"Accumulates one sample and appends it to the metric. use glean_metrics::network; network::http3_late_ack_ratio .get(\"ack\") .accumulateSingleSample((stats.late_ack * 10000) / stats.packets_tx);\nnetwork::http3_late_ack_ratio .get(\"pto\") .accumulateSingleSample((stats.pto_ack * 10000) / stats.packets_tx); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::network::http3_late_ack_ratio .Get(\"ack\") .AccumulateSingleSample((stats.late_ack * 10000) / stats.packets_tx);\nmozilla::glean::network::http3_late_ack_ratio .Get(\"pto\") .AccumulateSingleSample((stats.pto_ack * 10000) / stats.packets_tx); JavaScript Glean.network.http3LateAckRatio[\"ack\"] .accumulateSingleSample((stats.late_ack * 10000) / stats.packets_tx);\nGlean.network.http3LateAckRatio[\"pto\"] .accumulateSingleSample((stats.pto_ack * 10000) / stats.packets_tx); Recorded Errors invalid_value : if recording a negative sample invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Custom Distributions » accumulateSingleSample","id":"586","title":"accumulateSingleSample"},"587":{"body":"","breadcrumbs":"Metric types » Labeled Custom Distributions » Testing API","id":"587","title":"Testing API"},"588":{"body":"Gets the recorded value for a given label in a labeled custom distribution metric. Returns a struct with counts per buckets and total sum if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::network; // Assert the sum of all samples is 42.\nassert_eq!(42, network::http3_late_ack_ratio.get(\"ack\").test_get_value(None).unwrap().sum); // Assert there's only the one sample\nassert_eq!(1, network::http3_late_ack_ratio.get(\"ack\").test_get_value(None).unwrap().count); // Buckets are indexed by their lower bound.\nassert_eq!(1, network::http3_late_ack_ratio.get(\"ack\").test_get_value(None).unwrap().values[41]); C++ #include \"mozilla/glean/GleanMetrics.h\" auto data = mozilla::glean::network::http3_late_ack_ratio.Get(\"ack\").TestGetValue().value();\nASSERT_EQ(42UL, data.sum);\nASSERT_EQ(1, data.count);\nASSERT_EQ(1, data.values[41]); JavaScript let data = Glean.network.http3LateAckRatio[\"ack\"].testGetValue();\nAssert.equal(42, data.sum);\nAssert.equal(1, data.count);\nAssert.equal(1, data.values[41]);","breadcrumbs":"Metric types » Labeled Custom Distributions » testGetValue","id":"588","title":"testGetValue"},"589":{"body":"Gets the number of errors recorded for a given labeled custom distribution metric in total. use glean::ErrorType;\nuse glean_metrics::network; // Assert there were no negative values instrumented.\nassert_eq!( 0, network::http3_late_ack_ratio.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Custom Distributions » testGetNumRecordedErrors","id":"589","title":"testGetNumRecordedErrors"},"59":{"body":"At least one week before releasing your product, file a data engineering bug to enable your product's application id. This will result in your product being added to probe scraper 's repositories.yaml .","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Add your product to probe scraper","id":"59","title":"Add your product to probe scraper"},"590":{"body":"Example labeled custom distribution metric definition: network: http3_late_ack_ratio: type: labeled_custom_distribution description: > HTTP3: The ratio of spurious retransmissions per packets sent, represented as an integer permdecimille: `(spurious_retransmission / packet sent * 10000)` range_min: 1 range_max: 2000 bucket_count 100 histogram_type: exponential bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 175 labels: - ack - pto","breadcrumbs":"Metric types » Labeled Custom Distributions » Metric parameters","id":"590","title":"Metric parameters"},"591":{"body":"range_min, range_max, bucket_count, and histogram_type (Required) Labeled custom distributions have the following required parameters: range_min: (Integer) The minimum value of the first bucket range_max: (Integer) The minimum value of the last bucket bucket_count: (Integer) The number of buckets histogram_type: linear: The buckets are evenly spaced exponential: The buckets follow a natural logarithmic distribution labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Custom Distributions » Extra metric parameters","id":"591","title":"Extra metric parameters"},"592":{"body":"What is the distribution of retransmission ratios per connection? What is the distribution of how long it takes to load extensions' content scripts, by addon id?","breadcrumbs":"Metric types » Labeled Custom Distributions » Data questions","id":"592","title":"Data questions"},"593":{"body":"The maximum value of bucket_count is 100. Only non-negative integer values may be recorded (>=0). Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Custom Distributions » Limits","id":"593","title":"Limits"},"594":{"body":"Rust API docs: LabeledMetric , CustomDistributionMetricType Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Custom Distributions » Reference","id":"594","title":"Reference"},"595":{"body":"Used to record a single non-negative integer value or 0. For example, the width of the display in pixels.","breadcrumbs":"Metric types » Quantity » Quantity","id":"595","title":"Quantity"},"596":{"body":"If you need to count something (e.g. the number of times a button is pressed) prefer using the Counter metric type, which has a specific API for counting things.","breadcrumbs":"Metric types » Quantity » Do not use Quantity for counting","id":"596","title":"Do not use Quantity for counting"},"597":{"body":"","breadcrumbs":"Metric types » Quantity » Recording API","id":"597","title":"Recording API"},"598":{"body":"Sets a quantity metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Display Display.width.set(width) import org.mozilla.yourApplication.GleanMetrics.Display; Display.INSTANCE.width().set(width); Display.width.set(width) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.display.width.set(width) use glean_metrics::display; display::width.set(width); import * as display from \"./path/to/generated/files/display.js\"; display.width.set(window.innerWidth); C++ #include \"mozilla/glean/GleanMetrics.h\" mozilla::glean::display::width.Set(innerWidth); JavaScript Glean.display.width.set(innerWidth); Limits Quantities must be non-negative integers or 0. Recorded errors invalid_value : if a negative value is passed in. invalid_type : if a floating point or non-number value is given.","breadcrumbs":"Metric types » Quantity » set","id":"598","title":"set"},"599":{"body":"","breadcrumbs":"Metric types » Quantity » Testing API","id":"599","title":"Testing API"},"6":{"body":"To contact the Glean team you can: Find us in the #glean channel on chat.mozilla.org . To report issues or request changes, file a bug in Bugzilla in Data Platform & Tools :: Glean: SDK . Send an email to glean-team@mozilla.com . The Glean SDKs team is: :janerik , :dexter , :travis , :chutten , :perrymcmanis .","breadcrumbs":"Glean » Contact","id":"6","title":"Contact"},"60":{"body":"After your product has been enabled, you must submit commits to probe scraper to validate and publish metrics. Metrics will only be published from branches defined in probe scraper's repositories.yaml, or the Git default branch if not explicitly configured. This should happen on every CI run to the specified branches. Nightly jobs will then automatically add published metrics to the Glean Dictionary and other data platform tools. Enable the GitHub Workflow by creating a new file .github/workflows/glean-probe-scraper.yml with the following content: ---\nname: Glean probe-scraper\non: [push, pull_request]\njobs: glean-probe-scraper: uses: mozilla/probe-scraper/.github/workflows/glean.yaml@main","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Validate and publish metrics","id":"60","title":"Validate and publish metrics"},"600":{"body":"Gets the recorded value for a given quantity metric. Returns the quantity value if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Display // Does the quantity have the expected value?\nassertEquals(433, Display.width.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Display; // Does the quantity have the expected value?\nassertEquals(433, Display.INSTANCE.width().testGetValue()); // Does the quantity have the expected value?\nXCTAssertEqual(433, try Display.width.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Does the quantity have the expected value?\nassert 433 == metrics.display.width.test_get_value() use glean_metrics::display; // Was anything recorded?\nassert_eq!(433, display::width.test_get_value(None).unwrap()); import * as display from \"./path/to/generated/files/display.js\"; assert.strictEqual(433, await display.width.testGetValue()); C++ #include \"mozilla/glean/GleanMetrics.h\" ASSERT_TRUE(mozilla::glean::display::width.TestGetValue().isOk());\nASSERT_EQ(433, mozilla::glean::display::width.TestGetValue().unwrap().value()); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.equal(433, Glean.display.width.testGetValue());","breadcrumbs":"Metric types » Quantity » testGetValue","id":"600","title":"testGetValue"},"601":{"body":"Gets the number of errors recorded for a given quantity metric. import org.mozilla.yourApplication.GleanMetrics.Display // Did it record an error due to a negative value?\nassertEquals(0, Display.width.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)) import org.mozilla.yourApplication.GleanMetrics.Display; // Did the quantity record a negative value?\nassertEquals( 0, Display.INSTANCE.width().testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n); // Did the quantity record a negative value?\nXCTAssertEqual(0, Display.width.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Did the quantity record an negative value?\nfrom glean.testing import ErrorType\nassert 0 == metrics.display.width.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::display; assert_eq!( 0, display::width.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n); import * as display from \"./path/to/generated/files/display.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await display.width.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Quantity » testGetNumRecordedErrors","id":"601","title":"testGetNumRecordedErrors"},"602":{"body":"Example quantity metric definition: controls: refresh_pressed: type: quantity description: > The width of the display, in pixels. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 unit: pixels For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Quantity » Metric parameters","id":"602","title":"Metric parameters"},"603":{"body":"unit Quantities have the required unit parameter, which is a free-form string for documentation purposes.","breadcrumbs":"Metric types » Quantity » Extra metric parameters","id":"603","title":"Extra metric parameters"},"604":{"body":"What is the width of the display, in pixels?","breadcrumbs":"Metric types » Quantity » Data questions","id":"604","title":"Data questions"},"605":{"body":"Swift API docs Python API docs Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Quantity » Reference","id":"605","title":"Reference"},"606":{"body":"Labeled quantity metrics are used to record different related non-negative integer values. For example, the width and height of the display in pixels.","breadcrumbs":"Metric types » Labeled Quantities » Labeled Quantities","id":"606","title":"Labeled Quantities"},"607":{"body":"If you need to count some things (e.g. the number of times buttons are pressed) prefer using the Labeled Counter metric type, which has a specific API for counting things.","breadcrumbs":"Metric types » Labeled Quantities » Do not use Labeled Quantity metrics for counting","id":"607","title":"Do not use Labeled Quantity metrics for counting"},"608":{"body":"","breadcrumbs":"Metric types » Labeled Quantities » Recording API","id":"608","title":"Recording API"},"609":{"body":"Sets a quantity metric to a specific value for the given label. use glean_metrics::gfx; gfx::display.get(\"width\").set(width);\ngfx::display.get(\"height\").set(height); Limits Quantities must be non-negative integers or 0. Recorded errors invalid_value : if a negative value is passed in. invalid_type : if a floating point or non-number value is given. invalid_label : If the label contains invalid characters. Data is still recorded to the special label __other__. If the label exceeds the maximum number of allowed characters. Data is still recorded to the special label __other__.","breadcrumbs":"Metric types » Labeled Quantities » set","id":"609","title":"set"},"61":{"body":"At least one week before releasing your product, file a data engineering bug to add your library to probe scraper and be scraped for metrics as a dependency of another product. This will result in your library being added to probe scraper 's repositories.yaml . Found a bug? Edit this page on GitHub.","breadcrumbs":"Adding Glean to your project » Enable data ingestion » Add your library to probe scraper","id":"61","title":"Add your library to probe scraper"},"610":{"body":"","breadcrumbs":"Metric types » Labeled Quantities » Testing API","id":"610","title":"Testing API"},"611":{"body":"Gets the recorded value for a given label in a labeled quantity metric. Returns the quantity value if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. use glean_metrics::gfx; // Was anything recorded?\nassert_eq!(433, gfx::display.get(\"width\").test_get_value(None).unwrap());\nassert_eq!(42, gfx::display.get(\"height\").test_get_value(None).unwrap());","breadcrumbs":"Metric types » Labeled Quantities » testGetValue","id":"611","title":"testGetValue"},"612":{"body":"Gets the number of errors recorded for a given label in a labeled quantity metric. use glean::ErrorType;\nuse glean_metrics::gfx; assert_eq!( 0, gfx::display.get(\"width\").test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);\nassert_eq!( 0, gfx::display.get(\"height\").test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n);","breadcrumbs":"Metric types » Labeled Quantities » testGetNumRecordedErrors","id":"612","title":"testGetNumRecordedErrors"},"613":{"body":"Example quantity metric definition: gfx: display: type: labeled_quantity description: > The dimensions of the display, in pixels. For one-dimensional displays, uses only \"width\". Two-dimensional displays add \"height\". 3D displays gain \"depth\". bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 unit: pixels labels: - width - height - depth For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Labeled Quantities » Metric parameters","id":"613","title":"Metric parameters"},"614":{"body":"unit Labeled Quantities have the required unit parameter, which is a free-form string for documentation purposes. labels Labeled metrics may have an optional labels parameter, containing a list of known labels. The labels in this list must match the following requirements: Conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. This list itself is limited to 4096 labels. Important If the labels are specified in the metrics.yaml, using any label not listed in that file will be replaced with the special value __other__. If the labels are not specified in the metrics.yaml, only 16 different dynamic labels may be used, after which the special value __other__ will be used. Removing or changing labels, including their order in the registry file, is permitted. Avoid reusing labels that were removed in the past. It is best practice to add documentation about removed labels to the description field so that analysts will know of their existence and meaning in historical data. Special care must be taken when changing GeckoView metrics sent through the Glean SDK, as the index of the labels is used to report Gecko data through the Glean SDK.","breadcrumbs":"Metric types » Labeled Quantities » Extra metric parameters","id":"614","title":"Extra metric parameters"},"615":{"body":"What are the dimensions of the display, in pixels?","breadcrumbs":"Metric types » Labeled Quantities » Data questions","id":"615","title":"Data questions"},"616":{"body":"Labels must conform to the label format . Each label must have a maximum of 71 characters. Each label must only contain printable ASCII characters. The list of labels is limited to: 16 different dynamic labels if no static labels are defined. Additional labels will all record to the special label __other__. 100 labels if specified as static labels in metrics.yaml, see Labels . Unknown labels will be recorded under the special label __other__.","breadcrumbs":"Metric types » Labeled Quantities » Limits","id":"616","title":"Limits"},"617":{"body":"Rust API docs: LabeledMetric , QuantityMetric Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Labeled Quantities » Reference","id":"617","title":"Reference"},"618":{"body":"Used to count how often something happens relative to how often something else happens. Like how many documents use a particular CSS Property, or how many HTTP connections had an error. You can think of it like a fraction, with a numerator and a denominator. All rates start without a value. A rate with a numerator of 0 is valid and will be sent to ensure we capture the \"no errors happened\" or \"no use counted\" cases.","breadcrumbs":"Metric types » Rate » Rate","id":"618","title":"Rate"},"619":{"body":"When using a rate metric, it is important to let the Glean metric do the counting. Using your own variable for counting and setting the metric yourself could be problematic: ping scheduling will make it difficult to ensure the metric is at the correct value at the correct time. Instead, count to the numerator and denominator as you go.","breadcrumbs":"Metric types » Rate » Let the Glean metric do the counting","id":"619","title":"Let the Glean metric do the counting"},"62":{"body":"This chapter provides guidance for planning the work involved in integrating Glean into your product, for internal Mozilla customers. For a technical coding perspective, see adding Glean to your project . Glean is the standard telemetry platform required for all new Mozilla products. While there are some upfront costs to integrating Glean in your product, this pays off in easier long-term maintenance and a rich set of self-serve analysis tools. The Glean team is happy to support your telemetry integration and make it successful. Find us in #glean or email glean-team@mozilla.com .","breadcrumbs":"Integrating Glean for project managers » Integrating Glean for product managers","id":"62","title":"Integrating Glean for product managers"},"620":{"body":"","breadcrumbs":"Metric types » Rate » Recording API","id":"620","title":"Recording API"},"621":{"body":"Numerators and denominators need to be counted individually. import org.mozilla.yourApplication.GleanMetrics.Network if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnectionError.addToDenominator(1) External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : import org.mozilla.yourApplication.GleanMetrics.Network if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnections.add(1) import org.mozilla.yourApplication.GleanMetrics.Network; if (connectionHadError) { Network.INSTANCE.httpConnectionError().addToNumerator(1);\n} Network.IMPORTANT.httpConnectionError().addToDenominator(1); External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : import org.mozilla.yourApplication.GleanMetrics.Network; if (connectionHadError) { Network.INSTANCE.httpConnectionError().addToNumerator(1);\n} Network.INSTANCE.httpConnections().add(1) if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnectionError.addToDenominator(1) External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : if (connectionHadError) { Network.httpConnectionError.addToNumerator(1)\n} Network.httpConnections.add(1) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") if connection_had_error: metrics.network.http_connection_error.add_to_numerator(1) metrics.network.http_connection_error.add_to_denominator(1) External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") if connection_had_error: metrics.network.http_connection_error.add_to_numerator(1) metrics.network.http_connections.add(1) use glean_metrics::network; if connection_had_error { network::http_connection_error.add_to_numerator(1);\n} network::http_connection_error.add_to_denominator(1); External Denominators If the rate uses an external denominator, adding to the denominator must be done through the denominator's counter API : use glean_metrics::network; if connection_had_error { network::http_connection_error.add_to_numerator(1);\n} network::http_connections.add(1); import * as network from \"./path/to/generated/files/network.js\"; if (connectionHadError) { network.httpConnectionError.addToNumerator(1);\n} network.httpConnectionError.addToDenominator(1); C++ #include \"mozilla/glean/GleanMetrics.h\" if (aHadError) {\nmozilla::glean::network::http_connection_error.AddToNumerator(1);\n}\nmozilla::glean::network::http_connection_error.AddToDenominator(1); JavaScript if (aHadError) {\nGlean.network.httpConnectionError.addToNumerator(1);\n}\nGlean.network.httpConnectionError.addToDenominator(1); Recorded errors invalid_value : If either numerator or denominator is incremented by a negative value. invalid_type : If a floating point or non-number value is given. Limits Numerator and Denominator only increment. Numerator and Denominator saturate at the largest value that can be represented as a 32-bit signed integer (2147483647).","breadcrumbs":"Metric types » Rate » addToNumerator / addToDenominator","id":"621","title":"addToNumerator / addToDenominator"},"622":{"body":"","breadcrumbs":"Metric types » Rate » Testing API","id":"622","title":"Testing API"},"623":{"body":"Gets the recorded value for a given rate metric. Returns the numerator/denominator pair if data is stored. Returns a language-specific empty/null value if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Network assertEquals(Rate(1, 1), Network.httpConnectionError.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Network; assertEquals(Rate(1, 1), Network.INSTANCE.httpConnectionError().testGetValue()); XCTAssertEqual( Rate(numerator: 1, denominator: 1), Network.httpConnectionError.testGetValue()\n) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert Rate(1, 1) == metrics.network.http_connection_error.test_get_value() use glean_metrics::network; let rate = network::http_connection_error.test_get_value(None).unwrap();\nassert_eq!(1, rate.numerator);\nassert_eq!(1, rate.denominator); import * as network from \"./path/to/generated/files/network.js\"; const { numerator, denominator } = await network.httpConnectionError.testGetValue();\nassert.strictEqual(numerator, 1);\nassert.strictEqual(denominator, 1); C++ #include \"mozilla/glean/GleanMetrics.h\" auto pair = mozilla::glean::network::http_connection_error.TestGetValue().unwrap();\nASSERT_EQ(1, pair.first);\nASSERT_EQ(1, pair.second); JavaScript // testGetValue will throw NS_ERROR_LOSS_OF_SIGNIFICANT_DATA on error.\nAssert.deepEqual(\n{ numerator: 1, denominator: 1 },\nGlean.network.httpConnectionError.testGetValue()\n);","breadcrumbs":"Metric types » Rate » testGetValue","id":"623","title":"testGetValue"},"624":{"body":"import org.mozilla.yourApplication.GleanMetrics.Network assertEquals( 0, Network.httpConnectionError.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) import org.mozilla.yourApplication.GleanMetrics.Network; assertEquals( 0, Network.INSTANCE.httpConnectionError().testGetNumRecordedErrors( ErrorType.INVALID_VALUE )\n); XCTAssertEqual( 0, Network.httpConnectionError.testGetNumRecordedErrors(.invalidValue)\n) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") from glean.testing import ErrorType assert 0 == metrics.network.http_connection_error.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n) use glean::ErrorType;\nuse glean_metrics::network; assert_eq!( 0, network::http_connection_error.test_get_num_recorded_errors( ErrorType::InvalidValue, None )\n); import * as network from \"./path/to/generated/files/network.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 1, await network.httpConnectionError.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Rate » testGetNumRecordedErrors","id":"624","title":"testGetNumRecordedErrors"},"625":{"body":"Example rate metric definition: network: http_connection_error: type: rate description: > How many HTTP connections error out out of the total connections made. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Rate » Metric parameters","id":"625","title":"Metric parameters"},"626":{"body":"If several rates share the same denominator then the denominator should be defined as a counter and shared between rates using the denominator_metric property: network: http_connections: type: counter description: > Total number of http connections made. ... http_connection_error: type: rate description: > How many HTTP connections error out out of the total connections made. denominator_metric: network.http_connections ... http_connection_slow: type: rate description: > How many HTTP connections were slow, out of the total connections made. denominator_metric: network.http_connections ... The Glean JavaScript SDK does not support external denominators for Rate metrics, yet. Follow Bug 1745753 for updates on that features development.","breadcrumbs":"Metric types » Rate » External Denominators","id":"626","title":"External Denominators"},"627":{"body":"How often did an HTTP connection error? How many documents used a given CSS Property?","breadcrumbs":"Metric types » Rate » Data Questions","id":"627","title":"Data Questions"},"628":{"body":"Rust API docs Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Rate » Reference","id":"628","title":"Reference"},"629":{"body":"Records a single long Unicode text, used when the limits on String are too low.","breadcrumbs":"Metric types » Text » Text","id":"629","title":"Text"},"63":{"body":"The Glean SDKs provide support for answering basic product questions out-of-the-box, such as daily active users, product version and platform information. However, it is also a good idea to have a sense of any additional product-specific questions you are trying to answer with telemetry, and, when possible, in collaboration with a data scientist. This of course helps for your own planning, but is also invaluable for the Glean team to support you, since we will understand the ultimate goals of your product's telemetry and ensure the design will meet those goals and we can identify any new features that may be required. It is best to frame this document in the form of questions and use cases rather than as specific data points and schemas.","breadcrumbs":"Integrating Glean for project managers » Building a telemetry plan","id":"63","title":"Building a telemetry plan"},"630":{"body":"This type should only be used in special cases when other metrics don't fit. See limitations below. Reach out to the Glean team before using this.","breadcrumbs":"Metric types » Text » Important","id":"630","title":"Important"},"631":{"body":"","breadcrumbs":"Metric types » Text » Recording API","id":"631","title":"Recording API"},"632":{"body":"Sets a text metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Article Article.content.set(extractedText) import org.mozilla.yourApplication.GleanMetrics.Article; Article.INSTANCE.content().set(extractedText); Article.content.set(extractedText) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") metrics.article.content.set(extracted_text) use glean_metrics::article; article::content.set(extracted_text); import * as article from \"./path/to/generated/files/article.js\"; article.content.set(extractedText); Limits Text metrics can only be sent in custom pings . Text metrics are always of data collection category 3 (web_activity) or category 4 (highly_sensitive). Only ping and application lifetimes are allowed. Fixed maximum text length: 200 kilobytes. Longer text is truncated. This is measured in the number of bytes when the string is encoded in UTF-8. Recorded errors invalid_overflow : if the text is too long. invalid_type : if a non-string value is given.","breadcrumbs":"Metric types » Text » set","id":"632","title":"set"},"633":{"body":"","breadcrumbs":"Metric types » Text » Testing API","id":"633","title":"Testing API"},"634":{"body":"Gets the recorded value for a given text metric. Returns the string if data is stored. Returns null if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Article assertEquals(\"some content\", Article.content.testGetValue()) import org.mozilla.yourApplication.GleanMetrics.Article; assertEquals(\"some content\", Article.INSTANCE.content().testGetValue()); XCTAssertEqual(\"some content\", Article.content.testGetValue()) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") assert \"some content\" == metrics.article.content.test_get_value() use glean_metrics::article; assert_eq!(\"some content\", article::content.test_get_value(None).unwrap()); import * as article from \"./path/to/generated/files/article.js\"; assert.strictEqual(\"some content\", await article.content.testGetValue());","breadcrumbs":"Metric types » Text » testGetValue","id":"634","title":"testGetValue"},"635":{"body":"Gets the number of errors recorded for a given text metric. import org.mozilla.yourApplication.GleanMetrics.Article // Was the string truncated, and an error reported?\nassertEquals( 0, Article.content.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n) import org.mozilla.yourApplication.GleanMetrics.Article; // Was the string truncated, and an error reported?\nassertEquals( 0, Article.content.testGetNumRecordedErrors(ErrorType.INVALID_OVERFLOW)\n); // Was the string truncated, and an error reported?\nXCTAssertEqual(0, Article.content.testGetNumRecordedErrors(.invalidOverflow)) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") # Was the string truncated, and an error reported?\nassert 0 == metrics.article.content.test_get_num_recorded_errors( ErrorType.INVALID_OVERFLOW\n) use glean::ErrorType;\nuse glean_metrics::article; // Was the string truncated, and an error reported?\nassert_eq!( 0, article::content.test_get_num_recorded_errors( ErrorType::InvalidOverflow, None )\n); import * as article from \"./path/to/generated/files/article.js\";\nimport { ErrorType } from \"@mozilla/glean/error\"; assert.strictEqual( 0, await article.content.testGetNumRecordedErrors(ErrorType.InvalidValue)\n);","breadcrumbs":"Metric types » Text » testGetNumRecordedErrors","id":"635","title":"testGetNumRecordedErrors"},"636":{"body":"Example text metric definition: article: content: type: text lifetime: ping send_in_pings: - research data_sensitivity: - web_activity description: > The plaintext content of the displayed article. bugs: - https://bugzilla.mozilla.org/000000 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=000000#c3 notification_emails: - me@mozilla.com expires: 2020-10-01 For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Text » Metric parameters","id":"636","title":"Metric parameters"},"637":{"body":"What article content was displayed to the user? Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Text » Data questions","id":"637","title":"Data questions"},"638":{"body":"Record structured data.","breadcrumbs":"Metric types » Object » Object","id":"638","title":"Object"},"639":{"body":"","breadcrumbs":"Metric types » Object » Recording API","id":"639","title":"Recording API"},"64":{"body":"The technical steps for integrating Glean in your product are documented in its own chapter for supported platforms. We recommend having a member of the Glean team review this integration to catch any potential pitfalls.","breadcrumbs":"Integrating Glean for project managers » Integrating Glean into your product","id":"64","title":"Integrating Glean into your product"},"640":{"body":"Sets an object metric to a specific value. import org.mozilla.yourApplication.GleanMetrics.Party var balloons = Party.BalloonsObject()\nballoons.add(Party.BalloonsObjectItem(colour = \"red\", diameter = 5))\nballoons.add(Party.BalloonsObjectItem(colour = \"green\"))\nParty.balloons.set(balloons) var balloons: Party.BalloonsObject = []\nballoons.append(Party.BalloonsObjectItem(colour: \"red\", diameter: 5))\nballoons.append(Party.BalloonsObjectItem(colour: \"green\"))\nParty.balloons.set(balloons) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") balloons = metrics.BalloonsObject()\nballoons.append(BalloonsObjectItem(colour=\"red\", diameter=5))\nballoons.append(BalloonsObjectItem(colour=\"green\"))\nmetrics.party.balloons.set(balloons) C++ Not yet implemented. JavaScript let balloons = [ { colour: \"red\", diameter: 5 }, { colour: \"blue\", diameter: 7 },\n];\nGlean.party.balloons.set(balloons); Limits Only objects matching the specified structure will be recorded Recorded errors invalid_value : if the passed value doesn't match the predefined structure","breadcrumbs":"Metric types » Object » set","id":"640","title":"set"},"641":{"body":"","breadcrumbs":"Metric types » Object » Testing API","id":"641","title":"Testing API"},"642":{"body":"Gets the recorded value for a given object metric. Returns the data as a JSON object if data is stored. Returns null if no data is stored. Has an optional argument to specify the name of the ping you wish to retrieve data from, except in Rust where it's required. None or no argument will default to the first value found for send_in_pings. import org.mozilla.yourApplication.GleanMetrics.Party val snapshot = metric.testGetValue()!!\nassertEquals(1, snapshot.jsonArray.size) let snapshot = (try! Party.balloons.testGetValue()) as! [Any]\nXCTAssertEqual(1, snapshot.size) from glean import load_metrics\nmetrics = load_metrics(\"metrics.yaml\") snapshot = metrics.party.balloons.test_get_value()\nassert 2 == len(snapshot) C++ Not yet implemented. JavaScript // testGetValue will throw a data error on invalid value.\nAssert.equal( [ { colour: \"red\", diameter: 5 }, { colour: \"blue\", diameter: 7 }, ], Glean.party.balloons.testGetValue()\n);","breadcrumbs":"Metric types » Object » testGetValue","id":"642","title":"testGetValue"},"643":{"body":"Gets the number of errors recorded for a given text metric. import org.mozilla.yourApplication.GleanMetrics.Party assertEquals( 0, Party.balloons.testGetNumRecordedErrors(ErrorType.INVALID_VALUE)\n) XCTAssertEqual(0, Party.balloons.testGetNumRecordedErrors(.invalidValue)) from glean import load_metrics\nfrom glean.testing import ErrorType\nmetrics = load_metrics(\"metrics.yaml\") assert 0 == metrics.party.balloons.test_get_num_recorded_errors( ErrorType.INVALID_VALUE\n)","breadcrumbs":"Metric types » Object » testGetNumRecordedErrors","id":"643","title":"testGetNumRecordedErrors"},"644":{"body":"The definition for an object metric type accepts a structure parameter. This defines the accepted structure of the object using a subset of JSON schema . The allowed types are: string number boolean array object The array type takes an items parameter, that does define the element types it can hold. The object type takes a properties parameter, that defines the nested object structure. array and object metrics can be nested. No other schema parameters are allowed. All fields are optional. Data is validated against this schema at recording time. Missing values will not be serialized into the payload.","breadcrumbs":"Metric types » Object » Metric parameters","id":"644","title":"Metric parameters"},"645":{"body":"party: balloons: type: object description: A collection of balloons bugs: - https://bugzilla.mozilla.org/TODO data_reviews: - http://example.com/reviews notification_emails: - CHANGE-ME@example.com expires: never structure: type: array items: type: object properties: colour: type: string diameter: type: number For a full reference on metrics parameters common to all metric types, refer to the metrics YAML registry format reference page.","breadcrumbs":"Metric types » Object » Example object metric definition:","id":"645","title":"Example object metric definition:"},"646":{"body":"What is the crash stack after a Firefox main process crash? Found a bug? Edit this page on GitHub.","breadcrumbs":"Metric types » Object » Data questions","id":"646","title":"Data questions"},"647":{"body":"Glean-owned pings are submitted automatically Products do not need to submit Glean built-in pings, as their scheduling is managed internally. The APIs on this page are only relevant for products defining custom pings .","breadcrumbs":"Pings » Pings","id":"647","title":"Pings"},"648":{"body":"","breadcrumbs":"Pings » Submission API","id":"648","title":"Submission API"},"649":{"body":"Collect and queue a custom ping for eventual uploading. By default, if the ping doesn't currently have any events or metrics set, submit will do nothing. However, if the send_if_empty flag is set to true in the ping definition, it will always be submitted. It is not necessary for the caller to check if Glean is disabled before calling submit. If Glean is disabled submit is a no-op. For example, to submit the custom ping defined in Adding new custom pings : import org.mozilla.yourApplication.GleanMetrics.Pings\nPings.search.submit( Pings.searchReasonCodes.performed\n) import org.mozilla.yourApplication.GleanMetrics.Pings Pings.INSTANCE.search.submit( Pings.INSTANCE.searchReasonCodes.performed\n); import Glean GleanMetrics.Pings.shared.search.submit( reason: .performed\n) from glean import load_pings pings = load_pings(\"pings.yaml\") pings.search.submit(pings.search_reason_codes.PERFORMED) use glean::Pings; pings::search.submit(pings::SearchReasonCodes::Performed); import * as pings from \"./path/to/generated/files/pings.js\"; pings.search.submit(pings.searchReasonCodes.Performed); C++ mozilla::glean_pings::Search.Submit(\"performed\"_ns); JavaScript GleanPings.search.submit(\"performed\");","breadcrumbs":"Pings » submit","id":"649","title":"submit"},"65":{"body":"The Glean SDKs are a collection of cross platform libraries and tools that facilitate collection of Glean conforming telemetry from applications. Consult the list of the currently supported platforms and languages . If your product's tech stack isn't currently supported, please reach out to the Glean team: significant work will be required to create a new integration. In previous efforts, this has ranged from 1 to 3 months FTE of work, so it is important to plan for this work well in advance. While the first phase of this work generally requires the specialized expertise of the Glean team, the second half can benefit from outside developers to move faster.","breadcrumbs":"Integrating Glean for project managers » (Optional) Adapting Glean to your platform","id":"65","title":"(Optional) Adapting Glean to your platform"},"650":{"body":"","breadcrumbs":"Pings » Testing API","id":"650","title":"Testing API"},"651":{"body":"Gets a set of the currently registered ping names. Useful when debugging to know which pings are able to be sent. val knownPings = Glean.getRegisteredPingNames() let knownPings = Glean.shared.getRegisteredPingNames() let known_pings = glean.get_registered_ping_names();","breadcrumbs":"Pings » getRegisteredPingNames","id":"651","title":"getRegisteredPingNames"},"652":{"body":"Runs a validation function before the ping is collected. import org.mozilla.yourApplication.GleanMetrics.Search\nimport org.mozilla.yourApplication.GleanMetrics.Pings // Record some data.\nSearch.defaultEngine.add(5); // Instruct the ping API to validate the ping data.\nvar validatorRun = false\nPings.search.testBeforeNextSubmit { reason -> assertEquals(Pings.searchReasonCodes.performed, reason) assertEquals(5, Search.defaultEngine.testGetValue()) validatorRun = true\n} // Submit the ping.\nPings.search.submit( Pings.searchReasonCodes.performed\n) // Verify that the validator run.\nassertTrue(validatorRun) import org.mozilla.yourApplication.GleanMetrics.Search\nimport org.mozilla.yourApplication.GleanMetrics.Pings // Record some data.\nSearch.INSTANCE.defaultEngine.add(5); // Instruct the ping API to validate the ping data.\nboolean validatorRun = false;\nPings.INSTANCE.search.testBeforeNextSubmit((reason) -> { assertEquals(Pings.searchReasonCodes.performed, reason); assertEquals(5, Search.INSTANCE.defaultEngine.testGetValue()); validatorRun = true;\n}); // Submit the ping.\nPings.INSTANCE.search.submit( Pings.INSTANCE.searchReasonCodes.performed\n); // Verify that the validator run.\nassertTrue(validatorRun); // Record some data.\nSearch.defaultEngine.add(5) // Instruct the ping API to validate the ping data.\nvar validatorRun = false\nGleanMetrics.pings.shared.search.testBeforeNextSubmit { reason in XCTAssertEqual(.performed, reason, \"Unexpected reason for search ping submitted\") XCTAssertEqual(5, try Search.defaultEngine.testGetValue(), \"Unexpected value for default engine in search ping\") validatorRun = true\n} // Submit the ping.\nGleanMetrics.Pings.shared.search.submit( reason: .performed\n) // Verify that the validator run.\nXCTAssert(validatorRun, \"Expected validator to be called by now.\") from glean import load_metrics, load_pings pings = load_pings(\"pings.yaml\")\nmetrics = load_metrics(\"metrics.yaml\") # Record some data.\nmetrics.search.default_engine.add(5) # Need a mutable object and plain booleans are not.\ncallback_was_called = [False] def check_custom_ping(reason): assert reason == pings.search_reason_codes.PERFORMED assert 5 == metrics.search.default_engine.test_get_value() callback_was_called[0] = True # Instruct the ping API to validate the ping data.\npings.search.test_before_next_submit(check_custom_ping) # Submit the ping.\npings.search.submit(pings.search_reason_codes.PERFORMED) # Verify that the validator run.\nassert callback_was_called[0] use glean_metrics::{search, pings}; // Record some data.\nsearch::default_engine.add(5); // Instruct the ping API to validate the ping data.\npings::search.test_before_next_submit(move |reason| { assert_eq!(pings::SearchReasonCodes::Performed, reason); assert_eq!(5, search::default_engine.test_get_value(None).unwrap());\n}); // When the `submit` API is not directly called by the\n// test code, it may be worth checking that the validator\n// function run by using a canary boolean in the closure\n// used in `test_before_next_submit` and asserting on its\n// value after submission. // Submit the ping.\npings::search.submit(pings::SearchReasonCodes::Performed); import * as search from \"./path/to/generated/files/search.js\";\nimport * as pings from \"./path/to/generated/files/pings.js\"; // Record some data.\nsearch.defaultEngine.add(5); // Instruct the ping API to validate the ping data.\nlet validatorRun = false;\nconst p = pings.search.testBeforeNextSubmit(async reason => { assert.strictEqual(reason, \"performed\"); assert.strictEqual(await search.defaultEngine.testGetValue(), 5); validatorRun = true;\n}); // Submit the ping.\npings.search.submit(\"performed\");\n// Wait for the validation to finish.\nassert.doesNotThrow(async () => await p); // Verify that the validator run.\nassert.ok(validatorRun); JavaScript: Glean.search.defaultEngine.add(5);\nlet submitted = false;\nGleanPings.search.testBeforeNextSubmit(reason => { submitted = true; Assert.equal(5, Glean.search.defaultEngine.testGetValue());\n});\nGleanPings.search.submit();\nAssert.ok(submitted); C++: mozilla::glean::search::default_engine.Add(5);\nbool submitted = false;\nmozilla::glean_pings::Search.TestBeforeNextSubmit([&submitted](const nsACString& aReason) { submitted = true; ASSERT_EQ(false, mozilla::glean::search::default_engine.TestGetValue().unwrap().ref());\n});\nmozilla::glean_pings::Search.Submit();\nASSERT_TRUE(submitted); Found a bug? Edit this page on GitHub.","breadcrumbs":"Pings » testBeforeNextSubmit","id":"652","title":"testBeforeNextSubmit"},"653":{"body":"The Glean SDKs are available for several programming languages and development environments. Although there are different SDKs, each of them is based off of either a JavaScript core or a Rust core. These cores contain the bulk of the logic of the client libraries. Thin wrappers around them expose APIs for the target platforms. Each SDK may also send a different set of default pings and collect a different set of default metrics . Finally, each SDK may also be [1] accompanied by glean_parser, a Python command line utility that provides a list of useful development tools for developers instrumenting a project using Glean. Some SDKs are not bundled with glean_parser and it is left to the user to install it separately. Rust Core-based SDKs Rust Kotlin Swift Python JavaScript Core-based SDKs JavaScript QML","breadcrumbs":"Overview » Overview","id":"653","title":"Overview"},"654":{"body":"The code for the Rust Core-based SDKs is available on the mozilla/glean repository. These group of SDKs were previously referred to as \"language bindings\" i.e. \"the Kotlin language bindings\" or \"the Python language bindings\".","breadcrumbs":"Overview » Rust Core-based SDKs","id":"654","title":"Rust Core-based SDKs"},"655":{"body":"The Glean Rust SDK can be used with any Rust application. It can serve a wide variety of usage patterns, such as short-lived CLI applications as well as longer-running desktop or server applications. It can optionally send builtin pings at startup. It does not assume an interaction model and the integrating application is responsible to connect the respective hooks. It is available as the glean crate on crates.io.","breadcrumbs":"Overview » Rust","id":"655","title":"Rust"},"656":{"body":"The Glean Kotlin SDK is primarily used for integration with Android applications. It assumes a common interaction model for mobile applications. It sends builtin pings at startup of the integrating application. It is available standalone as org.mozilla.telemetry:glean from the Mozilla Maven instance . The Kotlin SDK can also be used from Java. See Android for more on integrating Glean on Android.","breadcrumbs":"Overview » Kotlin","id":"656","title":"Kotlin"},"657":{"body":"The Glean Swift SDK is primarily used for integration with iOS applications. It assumes a common interaction model for mobile applications. It sends builtin pings at startup of the integrating application. It is available as a standalone Xcode framework from the Glean releases page or bundled with the AppServices framework .","breadcrumbs":"Overview » Swift","id":"657","title":"Swift"},"658":{"body":"The Glean Python SDK allows integration with any Python application. It can serve a wide variety of usage patterns, such as short-lived CLI applications as well as longer-running desktop or server applications. It is available as glean-sdk on PyPI .","breadcrumbs":"Overview » Python","id":"658","title":"Python"},"659":{"body":"The code for the JavaScript Core-based SDKs is available on the mozilla/glean.js repository. This collection of SDKs is commonly referred to as Glean.js .","breadcrumbs":"Overview » JavaScript Core-based SDKs","id":"659","title":"JavaScript Core-based SDKs"},"66":{"body":"The Glean SDKs periodically send telemetry to our servers in a bundle known as a \" ping \". For mobile applications with common interaction models, such as web browsers, the Glean SDKs provide basic pings out-of-the-box . For other kinds of products, it may be necessary to carefully design what triggers the submission of a ping. It is important to have a solid telemetry plan (see above) so we can make sure the ping submission will be able to answer the telemetry questions required of the product.","breadcrumbs":"Integrating Glean for project managers » (Optional) Designing ping submission","id":"66","title":"(Optional) Designing ping submission"},"660":{"body":"The Glean JavaScript SDK allows integration with three distint JavaScript environments: websites, web extension and Node.js. It is available as @mozilla/glean on npm . This package has different entry points to access the different SDKs. @mozilla/glean/web gives access to the websites SDK @mozilla/glean/webext gives access to the web extension SDK @mozilla/glean/node gives access to the Node.js SDK","breadcrumbs":"Overview » JavaScript","id":"660","title":"JavaScript"},"661":{"body":"The Glean QML SDK allows integration with Qt/QML applications and libraries. It is available as a compressed file attached to each new Glean.js release and may be downloaded from the project GitHub releases page . Found a bug? Edit this page on GitHub.","breadcrumbs":"Overview » QML","id":"661","title":"QML"},"662":{"body":"The Glean Kotlin SDK can be used in Android applications. The integration into the build system for Android applications can be tuned to your needs. See the following chapters for details. Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Android-specific information","id":"662","title":"Android-specific information"},"663":{"body":"This chapter describes build configuration options that control the behavior of the Glean Kotlin SDK's Gradle plugin. These options are not usually required for normal use. Options can be turned on by setting a variable on the Gradle ext object before applying the Glean Gradle plugin.","breadcrumbs":"Android » Android build configuration options » Android build script configuration options","id":"663","title":"Android build script configuration options"},"664":{"body":"Overwrite the auto-generated build date. If set to 0 a static UNIX epoch time will be used. If set to a ISO8601 datetime string it will use that date. Note that any timezone offset will be ignored and UTC will be used. For other values it will throw an error. ext.gleanBuildDate = \"2022-01-03T17:30:00\"","breadcrumbs":"Android » Android build configuration options » gleanBuildDate","id":"664","title":"gleanBuildDate"},"665":{"body":"Normally, the Glean Kotlin SDK looks for metrics.yaml and pings.yaml files in the root directory of the Glean-using project. However, in some cases, these files may need to ship inside the dependencies of the project. For example, this is used in the engine-gecko component to grab the metrics.yaml from the geckoview AAR. ext.allowMetricsFromAAR = true When this flag is set, every direct dependency of your library will be searched for a metrics.yaml file, and those metrics will be treated as the metrics as if they were defined by your library. That is, API wrappers accessible from your library will be generated for those metrics. The metrics.yaml can be added to the dependency itself by calling this on each relevant build variant: variant.packageLibraryProvider.get().from(\"${topsrcdir}/path/metrics.yaml\")","breadcrumbs":"Android » Android build configuration options » allowMetricsFromAAR","id":"665","title":"allowMetricsFromAAR"},"666":{"body":"The Glean Kotlin SDK can automatically generate Markdown documentation for metrics and pings defined in the registry files, in addition to the metrics API code. ext.gleanGenerateMarkdownDocs = true Flipping the feature to true will generate a metrics.md file in $projectDir/docs at build-time. In general this is not necessary for projects using Mozilla's data ingestion infrastructure: in those cases human-readable documentation will automatically be viewable via the Glean Dictionary .","breadcrumbs":"Android » Android build configuration options » gleanGenerateMarkdownDocs","id":"666","title":"gleanGenerateMarkdownDocs"},"667":{"body":"The gleanDocsDirectory can be used to customize the path of the documentation output directory. If gleanGenerateMarkdownDocs is disabled, it does nothing. Please note that only the metrics.md will be overwritten: any other file available in the target directory will be preserved. ext.gleanDocsDirectory = \"$rootDir/docs/user/telemetry\"","breadcrumbs":"Android » Android build configuration options » gleanDocsDirectory","id":"667","title":"gleanDocsDirectory"},"668":{"body":"By default, the Glean Gradle plugin will look for metrics.yaml and pings.yaml files in the same directory that the plugin is included from in your application or library. To override this, ext.gleanYamlFiles may be set to a list of explicit paths. ext.gleanYamlFiles = [\"$rootDir/glean-core/metrics.yaml\", \"$rootDir/glean-core/pings.yaml\"]","breadcrumbs":"Android » Android build configuration options » gleanYamlFiles","id":"668","title":"gleanYamlFiles"},"669":{"body":"Expire the metrics and pings by version, using the provided major version. If enabled, expiring metrics or pings by date will produce an error. ext.gleanExpireByVersion = 25 Different products have different ways to compute the product version at build-time. For this reason the Glean Gradle plugin cannot provide an automated way to detect the product major version at build time. When using the expiration by version feature in Android, products must provide the major version by themselves.","breadcrumbs":"Android » Android build configuration options » gleanExpireByVersion","id":"669","title":"gleanExpireByVersion"},"67":{"body":"The Glean SDKs have a number of different metric types that it can collect. Metric types provide \"guardrails\" to make sure that telemetry is being collected correctly, and to present the data at analysis time more automatically. Occasionally, products need to collect data that doesn't fit neatly into one of the available metric types. Glean has a process to request and introduce more metric types and we will work with you to design something appropriate. This design and implementation work is at least 4 weeks, though we are working on the foundation to accelerate that. Having a telemetry plan (see above) will help to identify this work early.","breadcrumbs":"Integrating Glean for project managers » (Optional) New metric types","id":"67","title":"(Optional) New metric types"},"670":{"body":"By default, the Glean Gradle plugin will manage its own Python virtualenv in $gradleUserHomeDir/glean to install glean_parser. By specifying a path in ext.gleanPythonEnvDir you can reuse an existing Python virtualenv. ext.gleanPythonEnvDir = \"$buildDir/externallyManagedVenv\" glean_parser must be available in that virtualenv, the Gradle plugin will make no attempt at installing it. Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Android build configuration options » gleanPythonEnvDir","id":"670","title":"gleanPythonEnvDir"},"671":{"body":"The Glean Kotlin SDK has basic support for building Android applications that use Glean in offline mode. The Glean Kotlin SDK uses a Python script, glean_parser to generate code for metrics from the metrics.yaml and pings.yaml files when Glean-using applications are built. When online, the pieces necessary to run this script are installed automatically. For offline builds, the Python environment, and packages of glean_parser and its dependencies must be provided prior to building the Glean-using application. To build a Glean-using application in offline mode, you can either:","breadcrumbs":"Android » Android offline builds » Offline builds of Android applications that use Glean","id":"671","title":"Offline builds of Android applications that use Glean"},"672":{"body":"Set ext.gleanPythonEnvDir to your existing virtualenv before applying the plugin, see gleanPythonEnvDir .","breadcrumbs":"Android » Android offline builds » Provide an externally-managed virtualenv","id":"672","title":"Provide an externally-managed virtualenv"},"673":{"body":"In this mode Glean will setup its own virtualenv in $gradleUserHomeDir/glean, controlled by the GLEAN_PYTHON and GLEAN_PYTHON_WHEELS_DIR environment variables. Install Python 3.8 or later and ensure it's on the PATH. On Linux, installing Python from your Linux distribution's package manager is usually sufficient. On macOS, installing Python from homebrew is known to work, but other package managers may also work. On Windows, we recommend installing one of the official Python installers from python.org . Determine the version of glean_parser required. It can be really difficult to manually determine the version of glean_parser that is required for a given application, since it needs to be tracked through android-components, to glean-core and finally to glean_parser. The required version of glean_parser can be determined by running the following at the top-level of the Glean-using application: $ ./gradlew | grep \"Requires glean_parser\"\nRequires glean_parser==1.28.1 Download packages for glean_parser and its dependencies: In the root directory of the Glean-using project, create a directory called glean-wheels and cd into it. Download packages for glean_parser and its dependencies, replacing X.Y.Z with the correct version of glean_parser: $ python3 -m pip download glean_parser==X.Y.Z Build the Glean-using project using ./gradlew, but passing in the --offline flag. There are a couple of environment variables that control offline building: To override the location of the Python interpreter to use, set the GLEAN_PYTHON environment variable. If unset, the first Python interpreter on the PATH will be used. To override the location of the downloaded Python wheels, set the GLEAN_PYTHON_WHEELS_DIR environment variable. If unset ${projectDir}/glean-wheels will be used. Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Android offline builds » Provide a Python interpreter and the required wheels","id":"673","title":"Provide a Python interpreter and the required wheels"},"674":{"body":"One of the things that might be useful to collect data on in an Android application is crashes. This guide will walk through a basic strategy for instrumenting an Android application with crash telemetry using a custom ping. Note: This is a very simple example of instrumenting crashes using the Glean SDK. There will be challenges to using this approach in a production application that should be considered. For instance, when an app crashes it can be in an unknown state and may not be able to do things like upload data to a server. The recommended way of instrumenting crashes with Android Components is called lib-crash , which takes into consideration things like multiple processes and persistence.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Instrumenting Android crashes with the Glean SDK","id":"674","title":"Instrumenting Android crashes with the Glean SDK"},"675":{"body":"There are a few things that need to be installed in order to proceed, mainly Android Studio . If you include the Android SDK, Android Studio can take a little while to download and get installed. This walk-through assumes some knowledge of Android application development. Knowing where to go to create a new project and how to add dependencies to a Gradle file will be helpful in following this guide.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Before You Start","id":"675","title":"Before You Start"},"676":{"body":"Please follow the instruction in the \"Adding Glean to your project\" chapter in order to set up Glean in an Android project.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Setup Build Configuration","id":"676","title":"Setup Build Configuration"},"677":{"body":"Since crashes will be instrumented with some custom metrics, the next step will be to add a metrics.yaml file to define the metrics used to record the crash information and a pings.yaml file to define a custom ping which will give some control over the scheduling of the uploading. See \"Adding new metrics\" for more information about adding metrics. What metric type should be used to represent the crash data? While this could be implemented several ways, an event is an excellent choice, simply because events capture information in a nice concise way and they have a built-in way of passing additional information using the extras field. If it is necessary to pass along the cause of the exception or a few lines of description, events let us do that easily (with some limitations ). Now that a metric type has been chosen to represent the metric, the next step is creating the metrics.yaml. Inside of the root application folder of the Android Studio project create a new file named metrics.yaml. After adding the schema definition and event metric definition, the metrics.yaml should look like this: # Required to indicate this is a `metrics.yaml` file\n$schema: moz://mozilla.org/schemas/glean/metrics/2-0-0 crash: exception: type: event description: | Event to record crashes caused by unhandled exceptions notification_emails: - crashes@example.com bugs: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 expires: 2021-01-01 send_in_pings: - crash extra_keys: cause: description: The cause of the crash message: description: The exception message As a brief explanation, this creates a metric called exception within a metric category called crash. There is a text description and the required notification_emails, bugs, data_reviews, and expires fields. The send_in_pings field is important to note here that it has a value of - crash. This means that the crash event metric will be sent via a custom ping named crash (which hasn't been created yet). Finally, note the extra_keys field which has two keys defined, cause and message. This allows for sending additional information along with the event to be associated with these keys. Note: For Mozilla applications, a mandatory data review is required in order to collect information with the Glean SDK.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Add A Custom Metric","id":"677","title":"Add A Custom Metric"},"678":{"body":"Define the custom ping that will help control the upload scheduling by creating a pings.yaml file in the same directory as the metrics.yaml file. For more information about adding custom pings, see the section on custom pings . The name of the ping will be crash, so the pings.yaml file should look like this: # Required to indicate this is a `pings.yaml` file\n$schema: moz://mozilla.org/schemas/glean/pings/2-0-0 crash: description: > A ping to transport crash data include_client_id: true notification_emails: - crash@example.com bugs: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 data_reviews: - https://bugzilla.mozilla.org/show_bug.cgi?id=1582479 Before the newly defined metric or ping can be used, the application must first be built. This will cause the glean_parser to execute and generate the API files that represent the metric and ping that were newly defined. Note: If changes to the YAML files aren't showing up in the project, try running the clean task on the project before building any time one of the Glean YAML files has been modified. It is recommended that Glean be initialized as early in the application startup as possible, which is why it's good to use a custom Application, like the Glean Sample App GleanApplication.kt . Initializing Glean in the Application.onCreate() is ideal for this purpose. Start by adding the import statement to allow the usage of the custom ping that was created, adding the following to the top of the file: import org.mozilla.gleancrashexample.GleanMetrics.Pings Next, register the custom ping by calling Glean.registerPings(Pings) in the onCreate() function, preferably before calling Glean.initialize(). The completed function should look something like this: override fun onCreate() { super.onCreate() // Register the application's custom pings. Glean.registerPings(Pings) // Initialize the Glean library Glean.initialize(applicationContext)\n} This completes the registration of the custom ping with the Glean Kotlin SDK so that it knows about it and can manage the storage and other important details of it like sending it when send() is called.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Add A Custom Ping","id":"678","title":"Add A Custom Ping"},"679":{"body":"In order to make the custom Application class handle uncaught exceptions, extend the class definition by adding Thread.UncaughtExceptionHandler as an inherited class like this: class MainActivity : AppCompatActivity(), Thread.UncaughtExceptionHandler { ...\n} As part of implementing the Thread.UncaughtExceptionHandler interface, the custom Application needs to implement the override of the uncaughtException() function. An example of this override that records data and sends the ping could look something like this: override fun uncaughtException(thread: Thread, exception: Throwable) { Crash.exception.record( mapOf( Crash.exceptionKeys.cause to exception.cause!!.toString(), Crash.exceptionKeys.message to exception.message!! ) ) Pings.crash.submit()\n} This records data to the Crash.exception metric from the metrics.yaml. The category of the metric is crash and the name is exception so it is accessed it by calling record() on the Crash.exception object. The extra information for the cause and the message is set as well. Finally, calling Pings.crash.submit() forces the crash ping to be scheduled to be sent. The final step is to register the custom Application as the default uncaught exception handler by adding the following to the onCreate() function after Glean.initialize(this): Thread.setDefaultUncaughtExceptionHandler(this)","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Instrument The App To Record The Event","id":"679","title":"Instrument The App To Record The Event"},"68":{"body":"To use GLAM for analysis of your application's data file a ticket in the GLAM repository . A data engineer from the GLAM team will reach out to you if further information is required. Found a bug? Edit this page on GitHub.","breadcrumbs":"Integrating Glean for project managers » Integrating Glean into GLAM","id":"68","title":"Integrating Glean into GLAM"},"680":{"body":"This information didn't really get recorded by anything, as it would be rejected by the telemetry pipeline unless the application was already known. In order to collect telemetry from a new application, there is additional work that is necessary that is beyond the scope of this example. In order for data to be collected from your project, metadata must be added to the probe_scraper. The instructions for accomplishing this can be found in the probe_scraper documentation . Found a bug? Edit this page on GitHub.","breadcrumbs":"Android » Instrumenting Android crashes with Glean » Next Steps","id":"680","title":"Next Steps"},"681":{"body":"The Glean Swift SDK can be used in iOS applications. The integration into the build system for iOS applications can be tuned to your needs. See the following chapters for details. Found a bug? Edit this page on GitHub.","breadcrumbs":"iOS » iOS-specific information","id":"681","title":"iOS-specific information"},"682":{"body":"This chapter describes build configuration options that control the behavior of the Glean Swift SDK's sdk_generator.sh. These options are not usually required for normal use. Options can be passed as command-line flags.","breadcrumbs":"iOS » iOS build configuration options » iOS build script configuration options","id":"682","title":"iOS build script configuration options"},"683":{"body":"Default: $SOURCE_ROOT/$PROJECT/Generated The folder to place generated code in.","breadcrumbs":"iOS » iOS build configuration options » --output / -o / -o / -b ","id":"684","title":"--build-date / -b "},"685":{"body":"Default: none. Expire the metrics and pings by version, using the provided major version. If enabled, expiring metrics or pings by date will produce an error. bash sdk_generator.sh --expire-by-version 95 Different products have different ways to compute the product version at build-time. For this reason the sdk_generator.sh script cannot provide an automated way to detect the product major version at build time. When using the expiration by version feature in iOS, products must provide the major version by themselves.","breadcrumbs":"iOS » iOS build configuration options » --expire-by-version ","id":"685","title":"--expire-by-version "},"686":{"body":"Default: unset. The Glean Swift SDK can automatically generate Markdown documentation for metrics and pings defined in the registry files, in addition to the metrics API code. If set the documentation will be generated in the provided path. bash sdk_generator.sh --markdown $SOURCE_ROOT/docs In general this is not necessary for projects using Mozilla's data ingestion infrastructure: in those cases human-readable documentation will automatically be viewable via the Glean Dictionary .","breadcrumbs":"iOS » iOS build configuration options » --markdown / -m ","id":"686","title":"--markdown / -m "},"687":{"body":"Default: Glean The Glean namespace to use in generated code. bash sdk_generator.sh --glean-namespace AnotherGlean If you are using the combined release of application-services and the Glean Swift SDK you need to set the namespace to MozillaAppServices, e.g.: bash sdk_generator.sh --glean-namespace MozillaAppServices Found a bug? Edit this page on GitHub.","breadcrumbs":"iOS » iOS build configuration options » --glean-namespace / -g ","id":"687","title":"--glean-namespace / -g "},"688":{"body":"The Glean JavaScript SDK allows integration with three distinct JavaScript environments: websites, web extension and Node.js. It is available as @mozilla/glean on npm . This package has different entry points to access the different SDKs. @mozilla/glean/web gives access to the websites SDK @mozilla/glean/webext gives access to the web extension SDK @mozilla/glean/node gives access to the Node.js SDK Found a bug? Edit this page on GitHub.","breadcrumbs":"JavaScript » Glean JavaScript SDK","id":"688","title":"Glean JavaScript SDK"},"689":{"body":"The @mozilla/glean package exposes the glean CLI. This utility installs glean_parser in a virtual environment and allows users to execute glean_parser command through it. In order to get a list of all commands available run npx glean --help.","breadcrumbs":"JavaScript » Command Line Interface » Command Line Interface","id":"689","title":"Command Line Interface"},"69":{"body":"","breadcrumbs":"Metrics » Adding new metrics","id":"69","title":"Adding new metrics"},"690":{"body":"The glean CLI will look for / create a .venv virtual environment at the directory it is called from and install glean_parser there by default. However, it is possible to customize the directory in which it looks for a virtual environment, by setting the VIRTUAL_ENV environment variable. Example: VIRTUAL_ENV=\"my/venv/path\" npx glean --help By default Glean will try and use specific binaries based on the platform: python.exe on windows and python3 everywhere else. You can customize the Python binary used through environment variables. You are able to define both GLEAN_PYTHON and GLEAN_PIP. Example: Mac: export GLEAN_PYTHON=\nexport GLEAN_PIP=